@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ---------- Design tokens ---------- */
:root {
  --background: #F7F4EC;
  --foreground: #212121;
  --card: #F7F4EC;
  --muted: #EDE8DC;
  --muted-foreground: #666666;
  --border: #E0D9C8;

  --primary: #1D6B6B;       /* teal */
  --primary-foreground: #F7F4EC;
  --accent: #A01C6B;        /* plum */
  --gold: #C8A24A;
  --gold-light: #E8C88A;
  --teal-light: #8FE0E0;
  --plum-light: #F0A0D0;
  --destructive: #D64545;
  --destructive-bg: rgba(214, 69, 69, 0.1);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;

  --radius: 0.25rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) { .wrap { padding: 0 40px; } }

.italic { font-style: italic; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.eyebrow .rule { height: 1px; width: 48px; background: var(--gold); }
.eyebrow span {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.eyebrow.center { justify-content: center; }

.horizon-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--primary); }
.btn-gold:hover { background: var(--gold-light); }
.btn-primary { background: var(--primary); color: var(--primary-foreground); }
.btn-primary:hover { background: #185656; }
.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}
.btn-outline:hover { background: var(--muted); }
.btn-full { width: 100%; }
.btn-nav {
  padding: 10px 20px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 600;
}
.btn-nav:hover { background: #185656; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.navbar .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 1024px) { .navbar .row { height: 80px; } }
.navbar .logo img { height: 40px; width: auto; }
@media (min-width: 1024px) { .navbar .logo img { height: 48px; } }
.nav-links { display: none; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(33,33,33,0.7);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-toggle {
  display: inline-flex;
  background: none;
  border: none;
  padding: 8px;
  color: var(--foreground);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-progress { height: 1px; background: var(--border); }
.nav-progress-bar { height: 100%; background: var(--gold); width: 0%; transition: width 50ms linear; }

.mobile-menu {
  display: none;
  background: rgba(247,244,236,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu .inner { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.mobile-menu a { font-size: 1rem; font-weight: 500; color: rgba(33,33,33,0.8); }
.mobile-menu .btn { width: 100%; text-align: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s;
}
.hero-video.active { opacity: 1; }
.hero-gradient-1 {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, rgba(29,107,107,0.65), rgba(29,107,107,0.3), rgba(160,28,107,0.3));
}
.hero-gradient-2 {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent, rgba(0,0,0,0.2));
}
.hero-watermark {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}
.hero-watermark span {
  font-family: var(--font-display);
  font-size: 20vw;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-left: -2vw;
}
.hero-dots {
  position: absolute;
  bottom: 96px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 12px; z-index: 20;
}
.hero-dots button { background: none; border: none; padding: 4px; }
.hero-dots .bar {
  height: 4px; width: 16px;
  background: rgba(255,255,255,0.4);
  border-radius: 999px;
  transition: all 0.5s;
}
.hero-dots .bar.active { width: 40px; background: var(--gold); }
.hero-content {
  position: relative; z-index: 10;
  width: 100%;
  padding: 96px 0 64px;
}
.hero-content .inner { max-width: 720px; }
.hero-tagline { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.hero-tagline .rule { height: 1px; width: 48px; background: var(--gold); }
.hero-tagline span { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.2em; }
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1280px) { .hero h1 { font-size: 4.5rem; } }
.hero p.lede {
  margin-top: 32px;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  font-weight: 300;
  max-width: 640px;
}
.hero-ctas { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }
.hero-label { margin-top: 24px; }
.hero-label span { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-indicator span { color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; }
.scroll-indicator svg { animation: bob 2s infinite; color: var(--gold); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ---------- Section shells ---------- */
section { padding: 96px 0; }
@media (min-width: 1024px) { section { padding: 128px 0; } }
.section-muted { background: rgba(29,107,107,0.03); }
.section-primary { background: var(--primary); color: var(--primary-foreground); }

/* ---------- About ---------- */
.about-grid { display: grid; gap: 64px; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 96px; } }
.about-grid h2 { font-size: 1.875rem; font-weight: 700; line-height: 1.25; }
@media (min-width: 1024px) { .about-grid h2 { font-size: 3rem; } }
.about-grid p { margin-top: 32px; font-size: 1.125rem; color: var(--muted-foreground); line-height: 1.7; }
.card-box { padding: 24px; border: 1px solid var(--border); background: rgba(237,232,220,0.5); margin-bottom: 32px; }
.card-box:last-child { margin-bottom: 0; }
.card-box .head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.card-box h3 { font-size: 1.125rem; font-weight: 600; }
.card-box p { margin-top: 0; color: var(--muted-foreground); }

.values-title { font-size: 1.5rem; font-weight: 700; text-align: center; margin-bottom: 56px; }
@media (min-width: 1024px) { .values-title { font-size: 1.875rem; } }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 80px; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(5, 1fr); } }
.value-item { text-align: center; }
.value-icon {
  width: 48px; height: 48px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(200,162,74,0.3);
  transition: background 0.2s;
}
.value-item:hover .value-icon { background: rgba(200,162,74,0.1); }
.value-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.value-item p { font-size: 0.875rem; color: var(--muted-foreground); }

/* ---------- Companies ---------- */
.companies-head h2 { font-size: 1.875rem; font-weight: 700; margin-bottom: 24px; max-width: 640px; }
@media (min-width: 1024px) { .companies-head h2 { font-size: 3rem; } }
.companies-head p { font-size: 1.125rem; color: var(--muted-foreground); max-width: 620px; margin-bottom: 56px; }
.blades { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 1024px) { .blades { flex-direction: row; } }
.blade {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 400px;
  transition: flex 0.7s ease-out;
}
@media (min-width: 1024px) { .blade { min-height: 550px; flex: 1; } }
.blade.active { flex: 3; }
.blade img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.blade:hover img { transform: scale(1.05); }
.blade-overlay { position: absolute; inset: 0; background: rgba(29,107,107,0.7); transition: all 0.7s; }
.blade.active .blade-overlay { background: linear-gradient(to top, rgba(29,107,107,0.9), rgba(29,107,107,0.4), transparent); }
.blade-content { position: relative; z-index: 10; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
@media (min-width: 1024px) { .blade-content { padding: 32px; } }
.blade-eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }
.blade-content h3 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
@media (min-width: 1024px) { .blade-content h3 { font-size: 1.5rem; } }
.blade-body { max-height: 0; opacity: 0; overflow: hidden; transition: all 0.5s; }
.blade.active .blade-body { max-height: 300px; opacity: 1; }
.blade-body p { color: rgba(255,255,255,0.8); font-size: 0.875rem; margin-bottom: 16px; max-width: 400px; }
.blade-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.blade-tags span { padding: 4px 12px; font-size: 0.75rem; font-weight: 500; color: var(--gold); border: 1px solid rgba(200,162,74,0.3); background: rgba(200,162,74,0.1); }
.blade-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-size: 0.875rem; font-weight: 600; }

/* ---------- Supai ---------- */
.supai-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .supai-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.supai-grid h2 { font-size: 1.875rem; font-weight: 700; line-height: 1.25; }
@media (min-width: 1024px) { .supai-grid h2 { font-size: 3rem; } }
.supai-quote { margin-top: 8px; font-family: var(--font-display); font-style: italic; font-size: 1.125rem; color: var(--accent); }
.supai-grid > div:first-child p.lede { margin-top: 32px; font-size: 1.125rem; color: var(--muted-foreground); line-height: 1.7; }
.supai-location { display: flex; align-items: center; gap: 8px; margin-top: 24px; font-size: 0.875rem; color: var(--muted-foreground); }
.supai-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.supai-feature { display: flex; gap: 12px; align-items: flex-start; }
.supai-feature .icon { width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(200,162,74,0.3); background: rgba(200,162,74,0.05); }
.supai-feature h4 { font-size: 0.875rem; font-weight: 600; }
.supai-feature p { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 2px; }
.supai-images { display: flex; flex-direction: column; gap: 16px; }
.supai-images .img-wrap { position: relative; overflow: hidden; }
.supai-images .img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(29,107,107,0.2), transparent); }
.supai-images .ar-43 { aspect-ratio: 4/3; }
.supai-images .ar-169 { aspect-ratio: 16/9; }
.supai-images img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Why ---------- */
.why-head { text-align: center; margin-bottom: 64px; }
.why-head .eyebrow { justify-content: center; }
.why-head h2 { font-size: 1.875rem; font-weight: 700; }
@media (min-width: 1024px) { .why-head h2 { font-size: 3rem; } }
.why-head p { margin-top: 24px; font-size: 1.125rem; color: rgba(247,244,236,0.7); max-width: 640px; margin-left: auto; margin-right: auto; }
.why-grid { display: grid; gap: 24px; }
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card { padding: 32px; border: 1px solid rgba(247,244,236,0.1); transition: border-color 0.2s; }
.why-card:hover { border-color: rgba(200,162,74,0.3); }
.why-card .icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(200,162,74,0.3); margin-bottom: 24px; }
.why-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
.why-card p { color: rgba(247,244,236,0.7); font-size: 0.875rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 64px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 96px; } }
.contact-grid h2 { font-size: 1.875rem; font-weight: 700; }
@media (min-width: 1024px) { .contact-grid h2 { font-size: 3rem; } }
.contact-grid > div:first-child p.lede { margin-top: 32px; font-size: 1.125rem; color: var(--muted-foreground); line-height: 1.7; }
.contact-items { margin-top: 48px; display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item .icon { width: 40px; height: 40px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(200,162,74,0.3); }
.contact-item .label { font-size: 0.875rem; font-weight: 600; }
.contact-item a, .contact-item p.detail { color: var(--muted-foreground); }
.contact-item a:hover { color: var(--gold); }
.contact-arc { margin-top: 56px; padding: 24px; border: 1px solid var(--border); background: rgba(237,232,220,0.5); }
.contact-arc .row { display: flex; align-items: center; justify-content: space-between; }
.contact-arc .city p:first-child { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; }
.contact-arc .city p:last-child { font-size: 0.75rem; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-arc .line { flex: 1; margin: 0 24px; position: relative; }
.contact-arc .line .bar { height: 1px; background: rgba(200,162,74,0.4); }
.contact-arc .line .dot { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }

.form-box { padding: 32px; border: 1px solid var(--border); background: var(--card); }
.form-box h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.form-box .horizon-rule { margin-bottom: 24px; }
.form-row { display: grid; gap: 16px; margin-bottom: 20px; }
@media (min-width: 640px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--foreground);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--primary); outline-offset: 1px; }
.field { margin-bottom: 20px; }
.form-success { text-align: center; padding: 48px 32px; border: 1px solid var(--border); }
.form-success .icon { width: 64px; height: 64px; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(200,162,74,0.3); background: rgba(200,162,74,0.1); }
.form-success h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.form-success p { color: var(--muted-foreground); }

/* ---------- Footer ---------- */
.impact-bar { border-bottom: 1px solid rgba(247,244,236,0.1); }
.impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; text-align: center; padding: 64px 0; }
@media (min-width: 1024px) { .impact-grid { grid-template-columns: repeat(4, 1fr); } }
.impact-grid .stat { font-size: 1.875rem; font-weight: 700; color: var(--gold); }
@media (min-width: 1024px) { .impact-grid .stat { font-size: 2.25rem; } }
.impact-grid .label { margin-top: 8px; font-size: 0.875rem; color: rgba(247,244,236,0.6); text-transform: uppercase; letter-spacing: 0.05em; }
.footer-main { padding: 56px 0; }
.footer-grid { display: grid; gap: 48px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-brand img { height: 48px; width: auto; filter: brightness(0) invert(1); }
.footer-brand p.tag { margin-top: 16px; font-size: 0.875rem; color: rgba(247,244,236,0.6); max-width: 280px; }
.footer-brand p.slogan { margin-top: 8px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(247,244,236,0.2); transition: all 0.2s; }
.footer-social a:hover { border-color: rgba(200,162,74,0.5); background: rgba(200,162,74,0.1); }
.footer-col h4 { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 16px; color: rgba(247,244,236,0.8); }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.875rem; color: rgba(247,244,236,0.6); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; flex-direction: column; gap: 16px; align-items: center; justify-content: space-between; font-size: 0.75rem; color: rgba(247,244,236,0.4); padding-top: 32px; margin-top: 48px; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }

/* ---------- Auth pages ---------- */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 16px; }
.auth-box { width: 100%; max-width: 420px; }
.auth-head { text-align: center; margin-bottom: 40px; }
.auth-head .icon-badge { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 16px; background: var(--primary); margin-bottom: 16px; }
.auth-head h1 { font-size: 1.875rem; font-weight: 700; letter-spacing: -0.01em; }
.auth-head p { color: var(--muted-foreground); margin-top: 8px; }
.auth-card { background: var(--card); border-radius: 16px; border: 1px solid var(--border); padding: 32px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.auth-footer { text-align: center; font-size: 0.875rem; color: var(--muted-foreground); margin-top: 24px; }
.auth-footer a { color: var(--primary); font-weight: 500; }
.auth-footer a:hover { text-decoration: underline; }
.auth-divider { position: relative; margin: 24px 0; text-align: center; }
.auth-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; border-top: 1px solid var(--border); }
.auth-divider span { position: relative; background: var(--card); padding: 0 12px; font-size: 0.75rem; text-transform: uppercase; color: var(--muted-foreground); }
.auth-error { margin-bottom: 16px; padding: 12px; border-radius: 8px; background: var(--destructive-bg); color: var(--destructive); font-size: 0.875rem; }
.field-icon { position: relative; }
.field-icon svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--muted-foreground); }
.field-icon input { padding-left: 40px; height: 48px; }
.field.tight { margin-bottom: 16px; }
.field-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.field-head a { font-size: 0.75rem; color: var(--primary); }
.field-head a:hover { text-decoration: underline; }
.btn-h48 { height: 48px; }
.otp-group { display: flex; justify-content: center; gap: 8px; margin-bottom: 24px; }
.otp-group input {
  width: 44px; height: 52px; text-align: center; font-size: 1.25rem;
  border: 1px solid var(--border); border-radius: 8px; background: var(--background);
}
.otp-group input:focus { outline: 2px solid var(--primary); }
.otp-resend { text-align: center; font-size: 0.875rem; color: var(--muted-foreground); margin-top: 16px; }
.otp-resend button { background: none; border: none; color: var(--primary); font-weight: 500; padding: 0; }
.otp-resend button:hover { text-decoration: underline; }
.notice-box { margin-top: 24px; padding: 12px 16px; border-radius: 8px; background: rgba(29,107,107,0.08); color: var(--primary); font-size: 0.8125rem; text-align: center; }

/* Utility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
