/* ============================================================
   INTROWIZE — Homepage Stylesheet v2
   Standalone. DM Sans · Brand palette · Warm & personal
   ============================================================ */

   
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400;1,9..40,500&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --magenta:      #BA0A90;
  --purple:       #903EBD;
  --gold-light:   #EECF6D;
  --gold-deep:    #D5AC4E;
  --ink:          #1A0E18;
  --ink-mid:      #3D2438;
  --ink-soft:     #6B5065;
  --surface:      #FFFBF4;
  --surface-warm: #FDF5E8;
  --card:         #FFFFFF;
  --line:         #EDE0DC;
  --line-strong:  #D9C8C2;

  --grad-brand:   linear-gradient(135deg, var(--magenta) 0%, var(--purple) 100%);
  --grad-gold:    linear-gradient(135deg, var(--gold-light) 0%, var(--gold-deep) 100%);
  --grad-dark:    linear-gradient(160deg, #1A0E18 0%, #2C1228 100%);

  --shadow-sm:    0 2px 8px rgba(26,14,24,0.06);
  --shadow-md:    0 8px 28px rgba(26,14,24,0.10);
  --shadow-lg:    0 24px 56px rgba(186,10,144,0.18);

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-pill:999px;

  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1180px;
  --gutter: clamp(20px, 5vw, 80px);

  /* ── Type scale (bumped up) ── */
  --text-xs:   13px;
  --text-sm:   15px;
  --text-base: 17px;   /* body base — up from 15px */
  --text-md:   19px;
  --text-lg:   22px;
  --text-xl:   clamp(22px, 2.2vw, 30px);
  --text-2xl:  clamp(28px, 3.6vw, 50px);
  --text-3xl:  clamp(36px, 5.5vw, 72px);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: var(--text-base); }
body {
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: 1.65;
  background: var(--surface);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; border: none; }
ul { list-style: none; }

/* ── Layout ─────────────────────────────────────────────── */
.wrap { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 8vw, 104px); }
.section--warm { background: var(--surface-warm); }

/* ── Type ───────────────────────────────────────────────── */
/* Eyebrow — small label above headlines */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--magenta);
  border-radius: 2px;
  flex-shrink: 0;
}
.eyebrow--centered { justify-content: center; }
.eyebrow--centered::before { display: none; }
.eyebrow--light { color: var(--gold-light); }
.eyebrow--light::before { background: var(--gold-light); }

/* Headline sizes — weight + size only, no font switch */
.display { font-size: var(--text-3xl); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; }
.h2      { font-size: var(--text-2xl); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; }
.h3      { font-size: var(--text-xl);  font-weight: 700; line-height: 1.2;  letter-spacing: -0.01em; }
.h4      { font-size: var(--text-md);  font-weight: 700; line-height: 1.3; }

/* Body sizes */
.body-lg  { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.7;  color: var(--ink-soft); }
.body-md  { font-size: var(--text-base);           line-height: 1.65; color: var(--ink-soft); }
.body-sm  { font-size: var(--text-sm);             line-height: 1.6;  color: var(--ink-soft); }
.caption  { font-size: var(--text-xs);             line-height: 1.5;  color: var(--ink-soft); }

/* Colour accents on text */
.gold    { background: var(--grad-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.magenta { color: var(--magenta); }

/* ── Buttons ────────────────────────────────────────────── */
/* Primary rule: ONE primary CTA per viewport at a time */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: var(--text-sm);     /* 15px — slightly smaller than body so it reads as action */
  border-radius: var(--r-pill);
  padding: 15px 30px;
  min-height: 52px;              /* meets 44px touch target with margin */
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.btn-primary:hover { box-shadow: 0 28px 60px rgba(186,10,144,0.30); transform: translateY(-1px); }

.btn-gold {
  background: var(--grad-gold);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(213,172,78,0.30);
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 24px 48px rgba(213,172,78,0.40); }

.btn-ghost-light {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.18); }

.btn-outline {
  background: transparent;
  color: var(--magenta);
  border: 1.5px solid var(--magenta);
}
.btn-outline:hover { background: rgba(186,10,144,0.06); }

.btn-lg { padding: 18px 38px; font-size: var(--text-base); min-height: 58px; }

/* Nav-specific button — smaller than full .btn */
.btn-nav {
  padding: 9px 20px !important;
  min-height: 36px !important;
  font-size: 13px !important;
}

/* Login link — text-only, sits beside Register button */
.nav__login {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.15s;
  white-space: nowrap;
}
.nav__login:hover { color: var(--ink); }

/* ════════════════════════════════════════════════════════
   NAV — Glassmorphism, fixed
   ════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,251,244,0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: 12px;
  height: 72px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo { height: 52px; width: auto; }          /* Logo height matches Register Now button */
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--ink); }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__inner {
    height: 64px;
    padding-inline: 16px;
    padding-bottom: 10px;
    gap: 12px;
    align-items: flex-end;
  }
  .nav__logo { height: 32px; }
  .nav__cta .btn {
    padding: 10px 16px;
    font-size: 13px;
    min-height: 40px;
  }
}

/* ════════════════════════════════════════════════════════
   HERO — Split screen, Z-pattern scan
   Image bleeds left edge (emotional hook)
   Headline + CTA on right (rational follow-through)
   ════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 55fr 45fr;
  padding-top: 72px;
}

.hero__image-panel {
  position: relative;
  overflow: hidden;
  background: var(--ink-mid);
  min-height: 560px;
}
.hero__image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(160deg, #2C1228 0%, #1A0E18 60%, #0F0A18 100%);
  color: rgba(255,255,255,0.2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__image-placeholder .ph-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__content-panel {
  background: var(--grad-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
.hero__content-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(186,10,144,0.28), transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(144,62,189,0.22), transparent 50%);
  pointer-events: none;
}
.hero__content-panel > * { position: relative; z-index: 1; }

/* Live indicator pill */
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  align-self: flex-start;
}
.hero__tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.7); }
}

/* Hero headline — largest element, commands the eye first */
.hero__headline {
  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 22px;
}

/* Hero body — secondary, visually quieter */
.hero__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 360px;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}

/* Trust signals — smallest, last in the Z-path */
.hero__trust {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  line-height: 1.45;
}
.hero__trust-item svg { flex-shrink: 0; opacity: 0.55; }

@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; grid-template-rows: 44vh auto; min-height: unset; }
  .hero__image-placeholder { min-height: 44vh; }
  .hero__content-panel { padding: 40px 24px 56px; }
  .hero__sub { max-width: none; }
  .hero__headline { font-size: clamp(30px, 7vw, 48px); }
}

/* ════════════════════════════════════════════════════════
   STATUS STRIP
   ════════════════════════════════════════════════════════ */
.status-strip {
  background: var(--grad-brand);
  padding: 16px var(--gutter);
}
.status-strip__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.status-strip__left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
.status-strip__text {
  font-size: var(--text-sm);
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}
.status-strip__text span { color: var(--gold-light); font-weight: 700; }
.status-strip__cta {
  font-size: var(--text-xs);
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0.85;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.status-strip__cta:hover { opacity: 1; }

/* ════════════════════════════════════════════════════════
   HOW IT WORKS
   Line removed. Spacing tightened.
   ════════════════════════════════════════════════════════ */
.how { padding-block: clamp(52px, 6vw, 80px); }     /* tighter than other sections */
.how__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(36px, 4vw, 52px);
}
.how__header .h2 { margin-bottom: 12px; }

/* 3-column grid — NO connecting line */
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
}

.how__step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: box-shadow 0.2s ease;
}
.how__step:hover { box-shadow: var(--shadow-md); }

.how__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  font-size: var(--text-md);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(186,10,144,0.22);
}
.how__step-title {
  font-size: var(--text-md);    /* 19px — larger than body, smaller than h3 */
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.how__step-body {
  font-size: var(--text-base);  /* 17px base */
  line-height: 1.65;
  color: var(--ink-soft);
}

@media (max-width: 640px) {
  .how__grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ════════════════════════════════════════════════════════
   PLANS
   Hierarchy: Registration (1 CTA) → Package info (no CTAs yet)
   ════════════════════════════════════════════════════════ */
.plans { padding-block: clamp(64px, 8vw, 104px); }

.plans__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.plans__header .h2 { margin-bottom: 14px; }

/* Step 1 — Registration. This is the only active CTA in this section. */
.plans__reg {
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 48px;
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 40px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
@media (max-width: 560px) { .plans__reg { grid-template-columns: 1fr; } }

.plans__reg-inner { display: flex; align-items: flex-start; gap: 18px; }
.plans__reg-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.plans__reg-tag {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 5px;
}
.plans__reg-title {
  font-size: var(--text-xl);
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}
.plans__reg-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.plans__reg-desc span {
  display: inline-block;
  background: rgba(238,207,109,0.15);
  color: var(--gold-light);
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 6px;
  font-size: var(--text-xs);
}

.plans__reg-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.plans__reg-price {
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 800;
  color: #fff;
  text-align: right;
  white-space: nowrap;
}
.plans__reg-price small {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* Two package cards — informational, no CTAs yet */
.plans__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Pool-not-ready notice — replaces the register button on plan cards */
.plans__pool-notice {
  text-align: center;
  padding: 28px 0 8px;
}
.plans__pool-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(238,207,109,0.12);
  border: 1px solid rgba(213,172,78,0.3);
  border-radius: var(--r-pill);
  padding: 9px 18px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold-deep);
}

/* Card base */
.plan-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.plan-card:hover { transform: translateY(-2px); }

/* Light card — Package 1 */
.plan-card--light {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.plan-card--light:hover { box-shadow: var(--shadow-md); }

/* Dark card — Package 2. Entire card is dark. */
.plan-card--dark {
  background: var(--grad-dark);
  border: 2px solid rgba(186,10,144,0.35);
  box-shadow: 0 0 0 1px rgba(186,10,144,0.1), var(--shadow-md);
}
.plan-card--dark:hover { box-shadow: 0 0 0 1px rgba(186,10,144,0.2), 0 20px 48px rgba(26,14,24,0.4); }

.plan-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(238,207,109,0.13);
  border: 1px solid rgba(238,207,109,0.22);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
  align-self: flex-start;
}

/* Card inner padding consistent */
.plan-card__top  { padding: 32px 30px 24px; }
.plan-card__body { padding: 24px 30px 30px; flex: 1; display: flex; flex-direction: column; }

/* Labels + name */
.plan-card__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.plan-card--light .plan-card__label { color: var(--ink-soft); }
.plan-card--dark  .plan-card__label { color: rgba(255,255,255,0.45); }

.plan-card__name { font-size: clamp(22px, 2vw, 28px); font-weight: 800; margin-bottom: 10px; line-height: 1.15; }
.plan-card--light .plan-card__name { color: var(--ink); }
.plan-card--dark  .plan-card__name { color: #fff; }

.plan-card__desc { font-size: var(--text-base); line-height: 1.6; }
.plan-card--light .plan-card__desc { color: var(--ink-soft); }
.plan-card--dark  .plan-card__desc { color: rgba(255,255,255,0.6); }

/* Price */
.plan-card__price-row { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; margin-top: 20px; padding-top: 20px; border-top: 1px solid; }
.plan-card--light .plan-card__price-row { border-color: var(--line); }
.plan-card--dark  .plan-card__price-row { border-color: rgba(255,255,255,0.1); }

.plan-card__price { font-size: clamp(32px, 3vw, 42px); font-weight: 800; letter-spacing: -0.03em; }
.plan-card--light .plan-card__price { color: var(--ink); }
.plan-card--dark  .plan-card__price { color: #fff; }

.plan-card__price-note { font-size: var(--text-sm); font-weight: 500; line-height: 1.4; }
.plan-card--light .plan-card__price-note { color: var(--ink-soft); }
.plan-card--dark  .plan-card__price-note { color: rgba(255,255,255,0.45); }

/* Features list */
.plan-card__includes {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.plan-card--light .plan-card__includes { color: var(--ink-soft); }
.plan-card--dark  .plan-card__includes { color: rgba(255,255,255,0.35); }

.plan-card__features { display: flex; flex-direction: column; gap: 13px; flex: 1; margin-bottom: 24px; }

.plan-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: var(--text-base);
  line-height: 1.45;
}
.plan-card--light .plan-card__feature { color: var(--ink); }
.plan-card--dark  .plan-card__feature { color: rgba(255,255,255,0.88); }

.plan-card__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-card--light .plan-card__check { background: rgba(186,10,144,0.09); }
.plan-card--dark  .plan-card__check { background: rgba(238,207,109,0.14); }

/* Extra note */
.plan-card__extra {
  font-size: var(--text-sm);
  line-height: 1.5;
  border-radius: var(--r-sm);
  padding: 12px 14px;
  margin-bottom: 20px;
}
.plan-card--light .plan-card__extra { background: var(--surface-warm); color: var(--ink-soft); }
.plan-card--dark  .plan-card__extra { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); }

/* Pool-not-ready notice inside card (replaces CTA button) */
.plan-card__coming {
  margin-top: auto;
  border-top: 1px solid;
  padding-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: 600;
}
.plan-card--light .plan-card__coming { border-color: var(--line); color: var(--ink-soft); }
.plan-card--dark  .plan-card__coming { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.45); }
.plan-card__coming-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--gold-deep);
}

@media (max-width: 680px) {
  .plans__cards { grid-template-columns: 1fr; }
  .plan-card__top  { padding: 24px 22px 20px; }
  .plan-card__body { padding: 20px 22px 24px; }
}

/* ════════════════════════════════════════════════════════
   ABOUT SUNALI
   ════════════════════════════════════════════════════════ */
.about { padding-block: clamp(64px, 8vw, 104px); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.about__image-wrap { position: relative; }
.about__photo-ph {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  background: var(--grad-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  overflow: hidden;
}
.about__photo-ph .ph-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__card {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 210px;
}
.about__card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about__card-text { font-size: var(--text-sm); font-weight: 600; color: var(--ink); line-height: 1.3; }
.about__card-text span { display: block; font-size: var(--text-xs); font-weight: 400; color: var(--ink-soft); margin-top: 2px; }

.about__content { display: flex; flex-direction: column; gap: 20px; }
.about__name { font-size: var(--text-xs); font-weight: 700; color: var(--magenta); letter-spacing: 0.08em; text-transform: uppercase; }
.about__story { display: flex; flex-direction: column; gap: 16px; }
.about__story p { font-size: var(--text-base); line-height: 1.75; color: var(--ink-soft); }
.about__story strong { color: var(--ink); font-weight: 700; }
.about__sig {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--ink);
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.about__sig-line { width: 24px; height: 2px; background: var(--magenta); border-radius: 2px; flex-shrink: 0; }

@media (max-width: 768px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__image-wrap { max-width: 380px; margin-inline: auto; }
  .about__card { right: 0; bottom: -12px; }
}

/* ════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════ */
.faq { padding-block: clamp(64px, 8vw, 104px); }
.faq__header {
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.faq__header .h2 { margin-bottom: 12px; }

.faq__list { max-width: 740px; margin-inline: auto; }

.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }

.faq__q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  font-size: var(--text-base);   /* body-size question text */
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  line-height: 1.4;
}
.faq__q:hover { color: var(--magenta); }

.faq__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}
.faq__item.open .faq__icon { background: var(--magenta); border-color: var(--magenta); }
.faq__icon svg { transition: transform 0.2s ease; }
.faq__item.open .faq__icon svg { transform: rotate(45deg); }
.faq__item.open .faq__icon svg path { stroke: white; }

.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq__item.open .faq__a { max-height: 400px; }
.faq__a-inner {
  padding-bottom: 22px;
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--ink-soft);
}
.faq__a-inner a { color: var(--magenta); font-weight: 600; }

/* ════════════════════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--grad-dark);
  padding-block: clamp(64px, 8vw, 100px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 50%, rgba(186,10,144,0.28), transparent 52%),
    radial-gradient(circle at 76% 50%, rgba(144,62,189,0.22), transparent 50%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band__wrap { max-width: 600px; margin-inline: auto; padding-inline: var(--gutter); }

.cta-band__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.cta-band__headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}
.cta-band__sub {
  font-size: var(--text-base);
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
}
.cta-band__note {
  margin-top: 16px;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  padding-block: 52px 32px;
}
.footer__inner { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter); }
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__logo { height: 50px; opacity: 0.88; }        /* Logo space */
.footer__tagline { font-size: var(--text-sm); line-height: 1.55; color: rgba(255,255,255,0.4); max-width: 240px; }

.footer__links { display: flex; gap: 52px; flex-wrap: wrap; }
.footer__link-group { display: flex; flex-direction: column; gap: 10px; }
.footer__link-title { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.footer__link-group a { font-size: var(--text-sm); color: rgba(255,255,255,0.38); transition: color 0.15s; }
.footer__link-group a:hover { color: rgba(255,255,255,0.8); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__legal { font-size: var(--text-xs); color: rgba(255,255,255,0.28); line-height: 1.5; }

/* ── Scroll animations ──────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: none; }
