/* ============================================================
   Tahani Real Estate Brokers — Careers / Recruitment Funnel
   Design system: Dubai-luxury × tech-recruiting
   ============================================================ */

:root {
  /* Warm charcoal canvas */
  --bg:        oklch(0.17 0.012 70);
  --bg-2:      oklch(0.21 0.014 72);
  --surface:   oklch(0.235 0.015 74);
  --surface-2: oklch(0.275 0.016 76);
  --line:      oklch(0.36 0.02 78 / 0.55);
  --line-soft: oklch(0.40 0.02 80 / 0.22);

  /* Gold accent family (shared chroma/lightness, hue varies subtly) */
  --gold:      oklch(0.80 0.115 85);
  --gold-2:    oklch(0.86 0.10 90);
  --gold-deep: oklch(0.66 0.115 70);
  --gold-glow: oklch(0.80 0.12 85 / 0.40);

  /* Text */
  --ink:       oklch(0.97 0.006 85);
  --ink-soft:  oklch(0.80 0.012 85);
  --ink-mute:  oklch(0.64 0.012 85);
  --ink-faint: oklch(0.52 0.012 85);

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-lg: 26px;

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--gold); color: oklch(0.18 0.01 70); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: clamp(72px, 10vw, 140px); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.eyebrow--center::before { display: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.04; letter-spacing: -0.03em; margin: 0; }
.serif { font-family: var(--font-serif); font-weight: 400; font-style: italic; letter-spacing: -0.01em; }
.gold-text { color: var(--gold); }

.h-sec { font-size: clamp(32px, 4.6vw, 60px); }
.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-soft); line-height: 1.55; max-width: 56ch; }

.section-head { max-width: 740px; }
.section-head .lead { margin-top: 18px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 15.5px;
  letter-spacing: -0.01em;
  padding: 15px 26px; border-radius: 100px; border: 1px solid transparent;
  transition: transform .35s var(--ease), background .3s var(--ease), box-shadow .35s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: oklch(0.24 0.02 70);
  box-shadow: 0 8px 28px -8px var(--gold-glow), inset 0 1px 0 oklch(1 0 0 / 0.35);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px var(--gold-glow), inset 0 1px 0 oklch(1 0 0 / 0.45); }
.btn--ghost {
  background: oklch(1 0 0 / 0.04); color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: oklch(1 0 0 / 0.09); transform: translateY(-2px); border-color: var(--gold); }
.btn--lg { padding: 18px 34px; font-size: 16.5px; }
.btn--block { width: 100%; }

.arrow-ico { transition: transform .35s var(--ease); }
.btn:hover .arrow-ico { transform: translateX(4px); }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  padding-block: 14px;
  transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: oklch(0.16 0.012 70 / 0.82);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--line-soft);
  padding-block: 10px;
}
.header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 11px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--gold-2), var(--gold-deep));
  color: oklch(0.2 0.02 70); font-family: var(--font-display); font-weight: 800; font-size: 20px;
  box-shadow: 0 6px 18px -6px var(--gold-glow);
}
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.02em; line-height: 1; }
.brand__name span { display: block; font-family: var(--font-body); font-weight: 600; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 15px; font-weight: 600; color: var(--ink-soft); transition: color .25s; }
.nav a:hover { color: var(--ink); }
.header__cta { display: flex; align-items: center; gap: 14px; }

.menu-btn { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: oklch(1 0 0 / 0.04); color: var(--ink); align-items: center; justify-content: center; }
.menu-btn svg { width: 22px; height: 22px; }

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 90; display: none; }
.drawer.is-open { display: block; }
.drawer__scrim { position: absolute; inset: 0; background: oklch(0.1 0.01 70 / 0.6); backdrop-filter: blur(6px); }
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 360px);
  background: var(--bg-2); border-left: 1px solid var(--line);
  padding: 22px; display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform .4s var(--ease);
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.drawer__panel a { padding: 15px 12px; border-radius: 12px; font-family: var(--font-display); font-weight: 600; font-size: 19px; border-bottom: 1px solid var(--line-soft); }
.drawer__panel a:hover { background: oklch(1 0 0 / 0.04); }
.drawer__panel .btn { margin-top: 18px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-bottom: clamp(40px, 6vw, 70px); padding-top: 130px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg image-slot { width: 100%; height: 100%; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, oklch(0.16 0.012 70 / 0.55) 0%, oklch(0.16 0.012 70 / 0.2) 30%, oklch(0.16 0.012 70 / 0.75) 72%, var(--bg) 100%),
    linear-gradient(90deg, oklch(0.15 0.012 70 / 0.85) 0%, oklch(0.15 0.012 70 / 0.1) 60%);
}
.hero__glow {
  position: absolute; z-index: 0; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  top: -10%; right: -8%; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow), transparent 62%);
  filter: blur(20px); opacity: 0.7;
  animation: floatGlow 11s var(--ease) infinite alternate;
  pointer-events: none;
}
@keyframes floatGlow { to { transform: translate(-6%, 8%) scale(1.12); opacity: 0.95; } }

.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__eyebrow { margin-bottom: 22px; }
.hero h1 { font-size: clamp(38px, 5vw, 78px); letter-spacing: -0.035em; max-width: 14ch; }
.hero h1 .serif { font-size: 1.02em; padding-right: 0.26em; }
.hero__sub { margin-top: 26px; font-size: clamp(17px, 1.7vw, 21px); color: var(--ink-soft); max-width: 50ch; line-height: 1.55; }
.hero__cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__trust { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; color: var(--ink-mute); font-size: 14px; }
.hero__trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex: none; }
.hero__trust b { color: var(--ink); font-weight: 700; }

.hero__scroll { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3; color: var(--ink-mute); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero__scroll .line { width: 1px; height: 36px; background: linear-gradient(var(--gold), transparent); animation: scrollPulse 2.2s ease-in-out infinite; transform-origin: top; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(0.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- Stats band ---------- */
.stats { border-block: 1px solid var(--line-soft); background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(28px, 4vw, 52px) clamp(18px, 2.5vw, 36px); border-left: 1px solid var(--line-soft); }
.stat:first-child { border-left: none; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 4.4vw, 60px); letter-spacing: -0.04em; line-height: 1; background: linear-gradient(170deg, var(--ink), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__num .unit { font-size: 0.5em; }
.stat__label { margin-top: 12px; color: var(--ink-mute); font-size: 14px; font-weight: 600; line-height: 1.4; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; padding-block: 20px; border-bottom: 1px solid var(--line-soft); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span { font-family: var(--font-display); font-weight: 700; font-size: clamp(15px, 1.4vw, 18px); color: var(--ink-faint); letter-spacing: 0.02em; display: inline-flex; align-items: center; gap: 56px; white-space: nowrap; }
.marquee span::after { content: "✦"; color: var(--gold); font-size: 0.7em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Why join (feature) ---------- */
.why__hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 64px); align-items: stretch;
  margin-top: 54px;
}
.feature-ai {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(155deg, var(--surface-2), var(--bg-2));
  border: 1px solid var(--line); padding: clamp(28px, 3.5vw, 46px);
  display: flex; flex-direction: column; justify-content: space-between; gap: 30px;
}
.feature-ai::before { content: ""; position: absolute; top: -40%; right: -20%; width: 80%; height: 90%; background: radial-gradient(circle, var(--gold-glow), transparent 65%); opacity: .5; filter: blur(10px); }
.feature-ai__tag { position: relative; align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); padding: 8px 14px; border: 1px solid var(--line); border-radius: 100px; background: oklch(0.18 0.01 70 / 0.6); }
.feature-ai h3 { position: relative; font-size: clamp(28px, 3.2vw, 44px); }
.feature-ai p { position: relative; color: var(--ink-soft); max-width: 42ch; }
.feature-ai__demo { position: relative; display: flex; flex-direction: column; gap: 10px; }
.lead-row { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 14px; background: oklch(0.18 0.01 70 / 0.55); border: 1px solid var(--line-soft); opacity: 0; transform: translateY(8px); }
.is-in .lead-row { animation: leadIn .6s var(--ease) forwards; }
.is-in .lead-row:nth-child(2) { animation-delay: .15s; }
.is-in .lead-row:nth-child(3) { animation-delay: .3s; }
@keyframes leadIn { to { opacity: 1; transform: translateY(0); } }
.lead-row__pulse { width: 38px; height: 38px; border-radius: 50%; flex: none; display: grid; place-items: center; background: oklch(0.8 0.12 85 / 0.14); color: var(--gold); }
.lead-row__pulse svg { width: 18px; height: 18px; }
.lead-row__txt { flex: 1; min-width: 0; }
.lead-row__txt b { display: block; font-size: 14.5px; font-weight: 700; }
.lead-row__txt span { font-size: 12.5px; color: var(--ink-mute); }
.lead-row__badge { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: oklch(0.85 0.13 150); padding: 5px 10px; border-radius: 100px; background: oklch(0.85 0.13 150 / 0.12); white-space: nowrap; }

.why__list { display: flex; flex-direction: column; gap: 14px; }
.why-item { display: flex; gap: 18px; padding: 22px 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line-soft); transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease); }
.why-item:hover { transform: translateX(6px); border-color: var(--gold); background: var(--surface-2); }
.why-item__ico { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; background: oklch(0.8 0.12 85 / 0.12); color: var(--gold); border: 1px solid var(--line-soft); }
.why-item__ico svg { width: 22px; height: 22px; }
.why-item h4 { font-size: 18px; font-weight: 700; font-family: var(--font-display); letter-spacing: -0.02em; }
.why-item p { margin: 6px 0 0; font-size: 14.5px; color: var(--ink-mute); line-height: 1.5; }

/* ---------- Offer cards ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
.offer-card {
  position: relative; padding: clamp(24px, 2.6vw, 34px); border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line-soft); overflow: hidden;
  display: flex; flex-direction: column; gap: 16px; min-height: 230px;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.offer-card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(120% 100% at 100% 0%, var(--gold-glow), transparent 50%); opacity: 0; transition: opacity .4s var(--ease); pointer-events: none; }
.offer-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.offer-card:hover::after { opacity: .5; }
.offer-card__num { font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--gold); letter-spacing: 0.05em; }
.offer-card__ico { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(160deg, var(--surface-2), var(--bg-2)); border: 1px solid var(--line); color: var(--gold); }
.offer-card__ico svg { width: 26px; height: 26px; }
.offer-card h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; }
.offer-card p { margin: 0; color: var(--ink-mute); font-size: 14.5px; line-height: 1.55; }
.offer-card--wide { grid-column: span 2; flex-direction: row; align-items: center; gap: 28px; background: linear-gradient(140deg, var(--surface-2), var(--bg-2)); }
.offer-card--wide .offer-card__body { flex: 1; }

/* ---------- Who we're looking for ---------- */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 54px; }
.who-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(28px, 3vw, 40px); }
.who-card image-slot { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.who-card__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, oklch(0.14 0.01 70 / 0.2) 0%, oklch(0.14 0.01 70 / 0.55) 45%, oklch(0.13 0.01 70 / 0.92) 100%); }
.who-card__body { position: relative; z-index: 2; }
.who-card__kicker { font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.who-card h3 { font-size: clamp(26px, 2.6vw, 34px); margin-top: 12px; }
.who-card p { color: var(--ink-soft); margin: 14px 0 18px; font-size: 15.5px; max-width: 40ch; }
.who-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.who-tags span { font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 100px; background: oklch(1 0 0 / 0.07); border: 1px solid var(--line); color: var(--ink); backdrop-filter: blur(6px); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 54px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line-soft); }
.step__n { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: oklch(0.2 0.02 70); width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(180deg, var(--gold-2), var(--gold)); box-shadow: 0 6px 18px -8px var(--gold-glow); }
.step h4 { margin-top: 22px; font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.step p { margin: 8px 0 0; color: var(--ink-mute); font-size: 14px; line-height: 1.5; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 50px; right: -12px; width: 24px; height: 1px; background: var(--line); z-index: 2; }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
.tst { padding: clamp(24px, 2.6vw, 32px); border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: 22px; }
.tst__stars { display: flex; gap: 4px; color: var(--gold); }
.tst__stars svg { width: 18px; height: 18px; }
.tst__quote { font-family: var(--font-display); font-weight: 500; font-size: clamp(18px, 1.7vw, 21px); line-height: 1.4; letter-spacing: -0.02em; color: var(--ink); }
.tst__person { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.tst__person image-slot { width: 52px; height: 52px; flex: none; }
.tst__person b { display: block; font-size: 15px; font-weight: 700; }
.tst__person span { font-size: 13px; color: var(--ink-mute); }
.tst--feature { grid-column: span 1; background: linear-gradient(155deg, var(--surface-2), var(--bg-2)); border-color: var(--line); }

/* ---------- Application form ---------- */
.apply { position: relative; overflow: hidden; }
.apply__glow { position: absolute; z-index: 0; width: 50vw; height: 50vw; max-width: 560px; max-height: 560px; left: -8%; bottom: -20%; border-radius: 50%; background: radial-gradient(circle, var(--gold-glow), transparent 65%); opacity: .35; filter: blur(20px); pointer-events: none; }
.apply__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.apply__pitch { position: sticky; top: 110px; }
.apply__pitch .h-sec { margin-top: 18px; }
.apply__pitch .lead { margin-top: 18px; }
.apply__perks { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; list-style: none; padding: 0; }
.apply__perks li { display: flex; align-items: center; gap: 12px; font-size: 15.5px; color: var(--ink-soft); }
.apply__perks svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

.form-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 40px); box-shadow: 0 40px 90px -40px oklch(0.1 0.01 70 / 0.8); }
.form-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.form-card__head h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.form-card__head span { font-size: 13px; color: var(--ink-mute); font-weight: 600; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; color: var(--ink-soft); letter-spacing: 0.01em; }
.field label .req { color: var(--gold); }
.field input, .field select {
  font-family: var(--font-body); font-size: 15.5px; color: var(--ink);
  background: oklch(0.18 0.01 70 / 0.7); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 16px; width: 100%;
  transition: border-color .25s, box-shadow .25s, background .25s;
  appearance: none;
}
.field input::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); background: oklch(0.2 0.01 70 / 0.9); }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b59a63' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.field select:invalid { color: var(--ink-faint); }
.input-prefix { position: relative; }
.input-prefix span { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); font-size: 15px; color: var(--ink-mute); font-weight: 600; pointer-events: none; }
.input-prefix input { padding-left: 58px; }
.field.has-error input, .field.has-error select { border-color: oklch(0.66 0.17 25); box-shadow: 0 0 0 3px oklch(0.66 0.17 25 / 0.18); }
.field__err { font-size: 12.5px; color: oklch(0.74 0.15 25); font-weight: 600; height: 0; overflow: hidden; opacity: 0; transition: opacity .2s; }
.field.has-error .field__err { height: auto; opacity: 1; }

/* file upload */
.upload { position: relative; }
.upload input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload__drop { display: flex; align-items: center; gap: 14px; padding: 16px; border: 1px dashed var(--line); border-radius: 12px; background: oklch(0.18 0.01 70 / 0.5); transition: border-color .25s, background .25s; }
.upload:hover .upload__drop { border-color: var(--gold); background: oklch(0.2 0.01 70 / 0.7); }
.upload__ico { width: 40px; height: 40px; border-radius: 10px; flex: none; display: grid; place-items: center; background: oklch(0.8 0.12 85 / 0.12); color: var(--gold); }
.upload__ico svg { width: 20px; height: 20px; }
.upload__txt b { display: block; font-size: 14.5px; font-weight: 700; }
.upload__txt span { font-size: 12.5px; color: var(--ink-mute); }
.upload.has-file .upload__drop { border-style: solid; border-color: oklch(0.85 0.13 150 / 0.6); }
.upload.has-file .upload__ico { background: oklch(0.85 0.13 150 / 0.14); color: oklch(0.85 0.13 150); }

.form-foot { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--ink-mute); line-height: 1.45; }
.form-consent input { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--gold); flex: none; }
.form-note { font-size: 12.5px; color: var(--ink-faint); text-align: center; }

/* success state */
.form-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: clamp(30px, 4vw, 56px) 20px; }
.form-card.is-done .form-body { display: none; }
.form-card.is-done .form-success { display: flex; }
.success-check { width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; background: oklch(0.85 0.13 150 / 0.14); color: oklch(0.85 0.13 150); border: 1px solid oklch(0.85 0.13 150 / 0.4); margin-bottom: 24px; animation: pop .5s var(--ease); }
.success-check svg { width: 38px; height: 38px; }
@keyframes pop { 0% { transform: scale(.6); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
.form-success h3 { font-size: 28px; font-weight: 700; }
.form-success p { color: var(--ink-soft); max-width: 38ch; margin: 14px 0 26px; }

/* ---------- FAQ ---------- */
.faq__grid { margin-top: 48px; display: grid; gap: 12px; max-width: 900px; }
.faq-item { border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--surface); overflow: hidden; transition: border-color .3s; }
.faq-item.is-open { border-color: var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px clamp(20px, 2.5vw, 30px); background: none; border: none; color: var(--ink); text-align: left; font-family: var(--font-display); font-weight: 600; font-size: clamp(17px, 1.7vw, 20px); letter-spacing: -0.02em; }
.faq-q__ico { width: 34px; height: 34px; flex: none; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold); transition: transform .35s var(--ease), background .3s; }
.faq-q__ico svg { width: 18px; height: 18px; }
.faq-item.is-open .faq-q__ico { transform: rotate(45deg); background: var(--gold); color: oklch(0.2 0.02 70); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a__inner { padding: 0 clamp(20px, 2.5vw, 30px) 26px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; max-width: 70ch; }

.faq__foot { margin-top: 34px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; color: var(--ink-mute); font-size: 15px; }

/* ---------- CTA banner ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 70px); background: linear-gradient(150deg, var(--surface-2), var(--bg-2)); border: 1px solid var(--line); text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 50% 0%, var(--gold-glow), transparent 60%); opacity: .4; }
.cta-band__in { position: relative; }
.cta-band h2 { font-size: clamp(30px, 4vw, 54px); max-width: 18ch; margin-inline: auto; }
.cta-band p { color: var(--ink-soft); margin: 18px auto 30px; max-width: 48ch; font-size: 17px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line-soft); background: var(--bg-2); padding-block: clamp(48px, 6vw, 80px) 32px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand p { color: var(--ink-mute); font-size: 14.5px; margin: 18px 0 0; max-width: 32ch; line-height: 1.6; }
.footer__col h5 { font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; }
.footer__col a, .footer__col p { display: block; color: var(--ink-mute); font-size: 14.5px; margin-bottom: 12px; transition: color .25s; }
.footer__col a:hover { color: var(--ink); }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-soft); transition: border-color .25s, color .25s, transform .25s; }
.socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
.footer__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; color: var(--ink-faint); font-size: 13px; }
.footer__bottom a { color: var(--ink-mute); }

/* ---------- Scroll reveal ----------
   Base (no JS / no .reveal-on): everything visible.
   .reveal-on (set by inline head script when JS runs): hide until is-in.
   .reveal-anim: enable the transition — added one frame after in-view
   items are already marked is-in, so above-the-fold content snaps in
   instantly (screenshot-proof) and only scrolled-to items animate. */
.reveal-on .reveal { opacity: 0; transform: translateY(26px); }
.reveal-on .reveal.is-in { opacity: 1; transform: none; }
.reveal-on.reveal-anim .reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-on.reveal-anim .reveal[data-d="1"] { transition-delay: .07s; }
.reveal-on.reveal-anim .reveal[data-d="2"] { transition-delay: .14s; }
.reveal-on.reveal-anim .reveal[data-d="3"] { transition-delay: .21s; }
.reveal-on.reveal-anim .reveal[data-d="4"] { transition-delay: .28s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal-on .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .offer-grid, .steps, .tst-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-card--wide { grid-column: span 2; }
  .step:not(:last-child)::after { display: none; }
  .apply__grid { grid-template-columns: 1fr; }
  .apply__pitch { position: static; }
}
@media (max-width: 860px) {
  .nav, .header__cta .btn--ghost { display: none; }
  .menu-btn { display: flex; }
  .why__hero { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat { border-left: none; border-top: 1px solid var(--line-soft); }
  .stat:nth-child(odd) { border-left: none; }
  .stat:nth-child(even) { border-left: 1px solid var(--line-soft); }
  .stat:nth-child(-n+2) { border-top: none; }
  .offer-grid, .steps, .tst-grid, .form-grid { grid-template-columns: 1fr; }
  .offer-card--wide { grid-column: span 1; flex-direction: column; align-items: flex-start; }
  .footer__top { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(40px, 12vw, 60px); }
}

/* ============================================================
   CREATIVE / ENGAGEMENT LAYER
   ============================================================ */

/* ---- Hero two-column + live engine feed ---- */
.hero__grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(32px, 5vw, 72px); align-items: center; width: 100%; }
.hero__col { min-width: 0; }

.hero__live { display: inline-flex; align-items: center; gap: 12px; white-space: nowrap; padding: 8px 16px 8px 14px; border-radius: 100px; border: 1px solid var(--line); background: oklch(0.16 0.01 70 / 0.55); backdrop-filter: blur(10px); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 22px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: oklch(0.82 0.16 150); box-shadow: 0 0 0 0 oklch(0.82 0.16 150 / 0.6); animation: livePulse 2s ease-out infinite; flex: none; }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 oklch(0.82 0.16 150 / 0.55); } 70% { box-shadow: 0 0 0 9px oklch(0.82 0.16 150 / 0); } 100% { box-shadow: 0 0 0 0 oklch(0.82 0.16 150 / 0); } }
.hero__live .clock { color: var(--gold); letter-spacing: 0.06em; font-variant-numeric: tabular-nums; white-space: nowrap; }
.hero__live .sep { width: 1px; height: 12px; background: var(--line); }

/* animated underline draw on accent word */
.draw { position: relative; display: inline-block; }
.draw::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0.06em; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-deep)); transform: scaleX(0); transform-origin: left; }
.reveal-on.reveal-anim .draw::after { animation: drawLine 1s var(--ease) 0.5s forwards; }
@media (prefers-reduced-motion: reduce) { .draw::after { transform: scaleX(1); } }
@keyframes drawLine { to { transform: scaleX(1); } }

/* live engine feed card */
.hero__feed { position: relative; border-radius: var(--radius-lg); border: 1px solid var(--line); background: linear-gradient(160deg, oklch(0.24 0.015 74 / 0.92), oklch(0.19 0.012 72 / 0.92)); backdrop-filter: blur(14px); padding: 20px; box-shadow: 0 40px 90px -40px oklch(0.08 0.01 70 / 0.9); overflow: hidden; }
.hero__feed::before { content: ""; position: absolute; top: -50%; right: -30%; width: 70%; height: 90%; background: radial-gradient(circle, var(--gold-glow), transparent 65%); opacity: .4; filter: blur(10px); pointer-events: none; }
.feed__head { position: relative; display: flex; align-items: center; gap: 10px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); padding-bottom: 16px; margin-bottom: 4px; border-bottom: 1px solid var(--line-soft); }
.feed__head .clock { margin-left: auto; color: var(--gold); font-variant-numeric: tabular-nums; letter-spacing: 0.04em; white-space: nowrap; }
.feed__rows { position: relative; display: flex; flex-direction: column; gap: 10px; padding-top: 14px; min-height: 232px; }
.feed-row { display: flex; align-items: center; gap: 13px; padding: 12px 13px; border-radius: 13px; background: oklch(0.17 0.01 70 / 0.6); border: 1px solid var(--line-soft); opacity: 1; transform: none; }
.feed-row.is-new { animation: feedIn .55s var(--ease); }
@keyframes feedIn { to { opacity: 1; transform: none; } }
.feed-row.is-leaving { animation: feedOut .45s var(--ease) forwards; }
@keyframes feedOut { to { opacity: 0; transform: translateY(-8px); } }
.feed-row__ico { width: 34px; height: 34px; border-radius: 9px; flex: none; display: grid; place-items: center; background: oklch(0.8 0.12 85 / 0.13); color: var(--gold); }
.feed-row__ico svg { width: 17px; height: 17px; }
.feed-row__ico.is-green { background: oklch(0.82 0.16 150 / 0.14); color: oklch(0.84 0.14 150); }
.feed-row__txt { flex: 1; min-width: 0; }
.feed-row__txt b { display: block; font-size: 13.5px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feed-row__txt span { font-size: 11.5px; color: var(--ink-mute); }
.feed-row__time { font-size: 11px; font-weight: 600; color: var(--ink-faint); white-space: nowrap; font-variant-numeric: tabular-nums; }
.feed__foot { position: relative; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line-soft); display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--ink-mute); }
.feed__foot b { color: var(--ink); font-weight: 700; }

/* count-up tabular */
.stat__num { font-variant-numeric: tabular-nums; }

/* ---- Manifesto statement ---- */
.manifesto { border-block: 1px solid var(--line-soft); background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.manifesto__in { max-width: 1000px; }
.manifesto p { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 3.6vw, 46px); line-height: 1.18; letter-spacing: -0.03em; color: var(--ink-mute); }
.manifesto p b { color: var(--ink); font-weight: 700; }
.manifesto p .serif { color: var(--gold); }

/* ---- Eight AI agents engine ---- */
.engine { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(20px, 3vw, 40px); margin-top: 54px; align-items: stretch; }
.engine__list { display: flex; flex-direction: column; gap: 6px; }
.agent-tab { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 14px; border: 1px solid transparent; background: none; color: var(--ink-soft); text-align: left; cursor: pointer; transition: background .3s var(--ease), border-color .3s var(--ease), color .3s; width: 100%; }
.agent-tab:hover { background: var(--surface); }
.agent-tab.is-active { background: var(--surface-2); border-color: var(--line); color: var(--ink); }
.agent-tab__n { font-family: var(--font-display); font-weight: 800; font-size: 13px; color: var(--ink-faint); width: 26px; flex: none; font-variant-numeric: tabular-nums; transition: color .3s; }
.agent-tab.is-active .agent-tab__n { color: var(--gold); }
.agent-tab__ico { width: 36px; height: 36px; border-radius: 10px; flex: none; display: grid; place-items: center; background: oklch(0.18 0.01 70 / 0.5); border: 1px solid var(--line-soft); color: var(--ink-mute); transition: color .3s, background .3s; }
.agent-tab.is-active .agent-tab__ico { background: oklch(0.8 0.12 85 / 0.14); color: var(--gold); }
.agent-tab__ico svg { width: 18px; height: 18px; }
.agent-tab__label b { display: block; font-size: 14.5px; font-weight: 700; font-family: var(--font-display); letter-spacing: -0.01em; }
.agent-tab__label span { font-size: 12px; color: var(--ink-faint); }

.engine__panel { position: relative; border-radius: var(--radius-lg); border: 1px solid var(--line); overflow: hidden; background: linear-gradient(155deg, var(--surface-2), var(--bg-2)); padding: clamp(28px, 3.5vw, 48px); display: flex; flex-direction: column; }
.engine__panel::before { content: ""; position: absolute; top: -30%; right: -15%; width: 70%; height: 80%; background: radial-gradient(circle, var(--gold-glow), transparent 62%); opacity: .45; filter: blur(12px); pointer-events: none; }
.engine__bignum { position: relative; font-family: var(--font-display); font-weight: 800; font-size: clamp(64px, 9vw, 120px); line-height: 0.85; letter-spacing: -0.05em; background: linear-gradient(160deg, var(--ink) 20%, var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: 0.95; }
.engine__live { position: absolute; top: clamp(28px, 3.5vw, 48px); right: clamp(28px, 3.5vw, 48px); display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: oklch(0.84 0.14 150); }
.engine__live .live-dot { width: 7px; height: 7px; }
.engine__role { position: relative; margin-top: 10px; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold); }
.engine__title { position: relative; margin-top: 12px; font-size: clamp(26px, 3vw, 40px); font-weight: 700; letter-spacing: -0.03em; max-width: 16ch; }
.engine__desc { position: relative; margin-top: 16px; color: var(--ink-soft); font-size: clamp(15px, 1.5vw, 17px); max-width: 48ch; line-height: 1.55; }
.engine__metric { position: relative; margin-top: auto; padding-top: 26px; display: inline-flex; align-items: center; gap: 12px; }
.engine__metric .val { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.02em; color: var(--gold); }
.engine__metric .lbl { font-size: 13px; color: var(--ink-mute); max-width: 22ch; line-height: 1.35; }
.engine__panel .swap { animation: swapIn .5s var(--ease); }
@keyframes swapIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.engine__note { margin-top: 22px; display: flex; align-items: center; gap: 12px; color: var(--ink-mute); font-size: 14.5px; }
.engine__note svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

/* ---- Earnings calculator ---- */
.calc { position: relative; overflow: hidden; }
.calc__glow { position: absolute; z-index: 0; width: 46vw; height: 46vw; max-width: 520px; max-height: 520px; right: -8%; top: -10%; border-radius: 50%; background: radial-gradient(circle, var(--gold-glow), transparent 65%); opacity: .3; filter: blur(20px); pointer-events: none; }
.calc__card { position: relative; z-index: 1; border-radius: var(--radius-lg); border: 1px solid var(--line); background: linear-gradient(155deg, var(--surface-2), var(--bg-2)); padding: clamp(28px, 4vw, 56px); display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.calc__controls .field-label { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.calc__controls .field-label .v { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--gold); letter-spacing: -0.01em; text-transform: none; }
.calc-block { margin-bottom: 30px; }
.calc-block:last-child { margin-bottom: 0; }
input[type=range].calc-range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 100px; background: var(--surface); margin-top: 16px; cursor: pointer; outline: none; accent-color: var(--gold); }
input[type=range].calc-range::-webkit-slider-runnable-track { height: 6px; border-radius: 100px; }
input[type=range].calc-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(180deg, var(--gold-2), var(--gold)); border: 3px solid var(--bg-2); box-shadow: 0 4px 14px -2px var(--gold-glow); margin-top: -10px; cursor: pointer; transition: transform .2s; }
input[type=range].calc-range::-webkit-slider-thumb:active { transform: scale(1.12); }
input[type=range].calc-range::-moz-range-thumb { width: 26px; height: 26px; border-radius: 50%; background: var(--gold); border: 3px solid var(--bg-2); box-shadow: 0 4px 14px -2px var(--gold-glow); cursor: pointer; }
.seg { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.seg button { flex: 1; min-width: 76px; padding: 12px 10px; border-radius: 11px; border: 1px solid var(--line); background: oklch(0.18 0.01 70 / 0.5); color: var(--ink-soft); font-family: var(--font-body); font-weight: 700; font-size: 14px; cursor: pointer; transition: border-color .25s, background .25s, color .25s; }
.seg button:hover { border-color: var(--gold); }
.seg button.is-active { background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: oklch(0.24 0.02 70); border-color: transparent; }
.calc__result { text-align: center; padding: clamp(24px, 3vw, 40px); border-radius: var(--radius); background: oklch(0.16 0.01 70 / 0.55); border: 1px solid var(--line-soft); }
.calc__result .cap { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }
.calc__big { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 6vw, 68px); line-height: 1; letter-spacing: -0.04em; margin: 14px 0 4px; background: linear-gradient(160deg, var(--ink), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; font-variant-numeric: tabular-nums; }
.calc__big .cur { font-size: 0.42em; vertical-align: 0.5em; -webkit-text-fill-color: var(--gold); color: var(--gold); margin-right: 4px; }
.calc__per { font-size: 14px; color: var(--ink-mute); }
.calc__sub { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-soft); font-size: 13.5px; color: var(--ink-soft); }
.calc__sub b { color: var(--gold); }
.calc__note { margin-top: 20px; font-size: 12px; color: var(--ink-faint); line-height: 1.5; }

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero { align-items: center; padding-top: 130px; }
  .engine { grid-template-columns: 1fr; }
  .engine__list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .calc__card { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero__feed { display: none; }
  .engine__list { grid-template-columns: 1fr; }
  .agent-tab__label span { display: none; }
}

/* Honeypot — visually hidden, off-screen, skipped by keyboard & AT; bots fill it */
.hp-field { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

/* ============================================================
   PRODUCTION ADDITIONS (real images replace design-tool slots,
   form states, monogram avatars)
   ============================================================ */
.hero__bg .hero__img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.who-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }

/* testimonial monogram avatar (no fabricated faces) */
.tst__avatar { width: 52px; height: 52px; flex: none; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 19px; color: oklch(0.22 0.02 70); background: linear-gradient(150deg, var(--gold-2), var(--gold-deep)); box-shadow: 0 6px 18px -6px var(--gold-glow); }
.tst__person b { display: block; font-size: 15px; font-weight: 700; }
.tst__person span { font-size: 13px; color: var(--ink-mute); }

/* form-level alert + submit loading */
.form-alert { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 12px; font-size: 13.5px; font-weight: 600; background: oklch(0.66 0.17 25 / 0.12); border: 1px solid oklch(0.66 0.17 25 / 0.4); color: oklch(0.82 0.13 25); }
.form-alert.is-show { display: block; }
.btn.is-loading { opacity: 0.75; pointer-events: none; }
.btn.is-loading .arrow-ico { display: none; }
.cf-turnstile-slot:not(:empty) { margin-top: 4px; }
