/* ===== Reset & Variables ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cyan-50: #ecfeff;
  --cyan-100: #cffafe;
  --cyan-200: #a5f3fc;
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;
  --cyan-700: #0e7490;
  --cyan-800: #155e75;
  --cyan-900: #164e63;
  --cyan-950: #083344;

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --white: #ffffff;
  --bg: #fafcfe;
  --bg-alt: #f0f7fa;
  --text: #1a2b3c;
  --text-muted: #5a6d7e;
  --border: #d8e6ef;
  --border-light: #e8f1f6;

  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;

  --font-display: 'LINE Seed JP', 'Noto Sans JP', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm: 0 1px 3px rgba(8, 51, 68, 0.04), 0 1px 2px rgba(8, 51, 68, 0.03);
  --shadow: 0 4px 16px rgba(8, 51, 68, 0.06), 0 1px 3px rgba(8, 51, 68, 0.04);
  --shadow-lg: 0 12px 40px rgba(8, 51, 68, 0.08), 0 4px 12px rgba(8, 51, 68, 0.04);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 1px 12px rgba(8, 51, 68, 0.06);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--cyan-700);
}

.nav-logo-icon {
  font-size: 1.4rem;
  color: var(--cyan-500);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.25s;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--cyan-600);
}

.nav-cta {
  background: var(--cyan-600) !important;
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: background 0.25s, transform 0.25s !important;
}

.nav-cta:hover {
  background: var(--cyan-700) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cyan-700);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--white) 0%, var(--cyan-50) 40%, #e0f7fc 70%, var(--cyan-100) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12), transparent 70%);
  top: -15%;
  right: -8%;
  animation: orbFloat1 20s ease-in-out infinite;
}

.hero-orb--2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(14, 116, 144, 0.08), transparent 70%);
  bottom: -5%;
  left: -5%;
  animation: orbFloat2 25s ease-in-out infinite;
}

.hero-orb--3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1), transparent 70%);
  top: 45%;
  left: 35%;
  animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.1); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.05); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 20px); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 182, 212, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 50%, black 20%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  animation: heroFadeIn 1.2s var(--ease-out) both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cyan-600);
  margin-bottom: 20px;
  animation: heroFadeIn 1.2s var(--ease-out) 0.2s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 24px;
  animation: heroFadeIn 1.2s var(--ease-out) 0.35s both;
}

.hero-accent {
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-700));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.9;
  animation: heroFadeIn 1.2s var(--ease-out) 0.5s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeIn 1.2s var(--ease-out) 0.65s both;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--slate-400);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  animation: heroFadeIn 1.2s var(--ease-out) 1s both;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan-400), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s, background 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-600));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.25);
}

.btn--primary:hover {
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.35);
}

.btn--ghost {
  background: var(--white);
  color: var(--cyan-700);
  border: 1.5px solid var(--cyan-200);
  box-shadow: var(--shadow-sm);
}

.btn--ghost:hover {
  background: var(--cyan-50);
  border-color: var(--cyan-300);
}

.btn--full {
  width: 100%;
}

/* ===== Section Common ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan-500);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
}

/* ===== Numbers ===== */
.numbers {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.numbers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 800px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.number-card {
  text-align: center;
  padding: 36px 16px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), box-shadow 0.3s;
}

.number-card:hover {
  box-shadow: var(--shadow);
}

.number-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.number-value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--cyan-600);
  line-height: 1;
}

.number-unit {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cyan-500);
  margin-left: 4px;
}

.number-label {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== About ===== */
.about {
  padding: 100px 0;
  background: var(--bg-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.about-message-inner {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.about-message-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--cyan-400), var(--cyan-600));
}

.about-message-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cyan-700);
  margin-bottom: 16px;
}

.about-message-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 2;
}

.about-message-name {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  text-align: right;
}

.about-message-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 2px;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-detail-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.about-detail-card:hover {
  border-color: var(--cyan-200);
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.about-detail-icon {
  font-size: 1.1rem;
  color: var(--cyan-500);
  margin-bottom: 8px;
}

.about-detail-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.about-detail-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== Activities ===== */
.activities {
  padding: 100px 0;
  background: var(--white);
}

.activities-list {
  display: flex;
  flex-direction: column;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  transition: padding-left 0.3s var(--ease-out), background 0.3s;
}

.activity-item:first-child {
  border-top: 1px solid var(--border-light);
}

.activity-item:hover {
  padding-left: 12px;
}

.activity-num {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--cyan-500);
  min-width: 32px;
}

.activity-body {
  flex: 1;
}

.activity-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 4px;
}

.activity-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.activity-arrow {
  color: var(--cyan-500);
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}

.activity-item:hover .activity-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Join ===== */
.join {
  padding: 100px 0;
  background: var(--bg-alt);
}

.join-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.join-left .section-tag {
  text-align: left;
}

.join-left .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.join-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.9;
}

.join-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.join-merit {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.join-merit:hover {
  border-color: var(--cyan-200);
  box-shadow: var(--shadow);
}

.join-merit-icon {
  color: var(--cyan-500);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.join-merit h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.join-merit p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== Branches ===== */
.branches {
  padding: 100px 0;
  background: var(--white);
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.branch-card {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.branch-card:hover {
  border-color: var(--cyan-200);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.branch-card--featured {
  background: linear-gradient(135deg, var(--cyan-50), var(--white));
  border-color: var(--cyan-100);
}

.branch-region {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cyan-700);
  margin-bottom: 10px;
}

.branch-list {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Officers */
.officers {
  margin-top: 48px;
}

.officers-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 20px;
  text-align: center;
}

.officers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.officer {
  text-align: center;
  padding: 20px 12px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: box-shadow 0.3s;
}

.officer:hover {
  box-shadow: var(--shadow);
}

.officer-role {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan-600);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.officer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
}

/* ===== News ===== */
.news {
  padding: 100px 0;
  background: var(--bg-alt);
}

.news-list {
  display: flex;
  flex-direction: column;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  transition: padding-left 0.3s;
}

.news-item:first-child {
  border-top: 1px solid var(--border-light);
}

.news-item:hover {
  padding-left: 8px;
}

.news-date {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  min-width: 90px;
  flex-shrink: 0;
}

.news-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(239, 68, 68, 0.08);
  color: #dc2626;
  flex-shrink: 0;
}

.news-badge--info {
  background: rgba(6, 182, 212, 0.08);
  color: var(--cyan-700);
}

.news-title {
  font-size: 0.88rem;
  color: var(--text);
  flex: 1;
}

/* ===== Member Login ===== */
.member-login {
  padding: 80px 0;
  background: var(--white);
}

.login-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 48px;
  background: linear-gradient(135deg, var(--cyan-50), var(--white));
  border: 1px solid var(--cyan-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.login-left h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.login-left p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.login-field label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 5px;
  font-weight: 500;
}

.login-field input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.login-field input:focus {
  border-color: var(--cyan-400);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.login-field input::placeholder {
  color: var(--slate-400);
}

.login-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.login-note a {
  color: var(--cyan-600);
  text-decoration: underline;
}

/* ===== Contact ===== */
.contact {
  padding: 100px 0;
  background: var(--bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 24px;
}

.contact-detail {
  margin-bottom: 20px;
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan-600);
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}

.contact-detail p:last-child {
  font-size: 0.88rem;
  color: var(--text);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 5px;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--cyan-400);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--slate-400);
}

.form-field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M3 4.5L6 8l3-3.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== Footer ===== */
.footer {
  padding: 48px 0 24px;
  background: var(--cyan-950);
  color: var(--white);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer .nav-logo-icon {
  color: var(--cyan-300);
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--cyan-100);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--slate-400);
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--cyan-300);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(103, 232, 249, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 0.72rem;
  color: var(--slate-500);
  transition: color 0.25s;
}

.footer-bottom-links a:hover {
  color: var(--cyan-300);
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--slate-500);
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100svh;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 40px;
    gap: 0;
    transition: right 0.45s var(--ease-out);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 0.95rem;
    color: var(--text) !important;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-cta {
    margin-top: 16px;
    text-align: center;
    color: var(--white) !important;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-sub {
    font-size: 0.88rem;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .number-card {
    padding: 28px 12px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-message-inner {
    padding: 28px;
  }

  .activity-item {
    gap: 16px;
    padding: 20px 0;
  }

  .activity-body h3 {
    font-size: 0.92rem;
  }

  .activity-body p {
    font-size: 0.8rem;
  }

  .activity-arrow {
    display: none;
  }

  .join-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .branches-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .officers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .branch-card {
    padding: 20px;
  }

  .news-item {
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 0;
  }

  .news-date {
    min-width: auto;
  }

  .news-title {
    flex-basis: 100%;
    font-size: 0.85rem;
  }

  .login-card {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .section-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    padding: 0 8px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 0.88rem;
  }

  .number-value {
    font-size: 2rem;
  }

  .branches-grid {
    grid-template-columns: 1fr;
  }

  .officers-grid {
    grid-template-columns: 1fr 1fr;
  }
}
