/* ============================================================
   Topher — "The Emotional Field"
   A dark, luminous, emotional landing page.
   ============================================================ */

/* The emotion color is a registered custom property so it can
   interpolate smoothly inside gradients when it changes. */
@property --emotion {
  syntax: "<color>";
  inherits: true;
  initial-value: #E8826B;
}
@property --emotion-2 {
  syntax: "<color>";
  inherits: true;
  initial-value: #D26A52;
}

:root {
  --void:    #1A1821;
  --void-2:  #242029;
  --void-3:  #2A273378;
  --ink:     #F2EEE9;
  --mute:    #9B9099;
  --faint:   #5F5763;
  --hair:    rgba(243, 233, 221, 0.10);
  --hair-2:  rgba(243, 233, 221, 0.05);

  /* Brand */
  --coral:      #E8826B;
  --coral-deep: #D26A52;
  --cream:      #F3E9DD;

  /* Emotional hues — coral is the house accent; warm/violet/red carry real emotion */
  --calm:    #E8826B;  /* coral — house / routine */
  --warm:    #E0A85C;  /* amber — anxious */
  --grief:   #7B86C9;  /* soft violet — grieving */
  --anger:   #D9655A;  /* warm red — angry */
  --care:    #E8826B;  /* coral — safe / positive */

  --emotion:   #E8826B;
  --emotion-2: #D26A52;

  --sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Helvetica Neue", Arial, sans-serif;
  --serif: "Quicksand", "Hanken Grotesk", system-ui, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --maxw: 1180px;

  --field-fade: 1600ms;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--void);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* The whole :root transitions its emotion color; everything that
   references var(--emotion) cross-fades over ~1.6s. */
:root {
  transition: --emotion var(--field-fade) cubic-bezier(.4,0,.2,1),
              --emotion-2 var(--field-fade) cubic-bezier(.4,0,.2,1);
}

::selection { background: color-mix(in srgb, var(--emotion) 40%, transparent); color: #fff; }

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

/* ---------- The Emotional Field ---------------------------- */
.field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.field__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  will-change: transform, opacity;
  mix-blend-mode: screen;
}
.field__blob--a {
  width: 70vw; height: 70vw;
  top: -18vw; left: -8vw;
  background: radial-gradient(circle at 50% 50%,
    color-mix(in srgb, var(--emotion) 62%, transparent) 0%,
    transparent 62%);
  animation: breatheA 11s ease-in-out infinite;
}
.field__blob--b {
  width: 60vw; height: 60vw;
  bottom: -22vw; right: -12vw;
  background: radial-gradient(circle at 50% 50%,
    color-mix(in srgb, var(--emotion-2) 50%, transparent) 0%,
    transparent 60%);
  animation: breatheB 13s ease-in-out infinite;
}
.field__blob--c {
  width: 46vw; height: 46vw;
  top: 32%; left: 38%;
  background: radial-gradient(circle at 50% 50%,
    color-mix(in srgb, var(--emotion) 32%, transparent) 0%,
    transparent 60%);
  animation: breatheC 17s ease-in-out infinite;
}
/* A fine grain + a settling darkness so the field never looks garish */
.field__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 120% 90% at 50% 0%, transparent 30%, var(--void) 92%),
    linear-gradient(180deg, transparent 60%, var(--void) 100%);
}
.field__grain {
  position: absolute; inset: -50%;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes breatheA {
  0%,100% { transform: scale(1) translate(0,0);     opacity: .85; }
  50%     { transform: scale(1.12) translate(2%,1%); opacity: 1; }
}
@keyframes breatheB {
  0%,100% { transform: scale(1.05) translate(0,0);  opacity: .7; }
  50%     { transform: scale(.94) translate(-2%,-1%); opacity: .95; }
}
@keyframes breatheC {
  0%,100% { transform: scale(.92);  opacity: .5; }
  50%     { transform: scale(1.08); opacity: .8; }
}

/* Content sits above the field */
.shell { position: relative; z-index: 1; }

/* ---------- The ambient mind (hero) ----------------------- */
.brain {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.brain__img,
.brain__tint,
.brain__glow {
  position: absolute;
  top: 34%;
  right: clamp(-180px, -8vw, -30px);
  width: min(74vw, 900px);
  aspect-ratio: 1200 / 1055;
  transform: translateY(-50%);
}
/* the glass-brain image (transparent PNG) — its own alpha defines the shape */
.brain__img {
  background: url("assets/brain-hero.png") center / contain no-repeat;
  opacity: .9;
  animation: brainBreath 11s ease-in-out infinite;
  will-change: transform;
}
/* recolours the brain toward the active emotion. Clipped with a CSS radial
   mask (not an image mask — those need CORS-clean pixels and get dropped),
   so the colour blend self-limits to the bright brain and fades out before
   the layer's box edges — no rectangle. */
.brain__tint {
  background: var(--emotion);
  -webkit-mask-image: radial-gradient(ellipse 56% 64% at 52% 52%, #000 32%, transparent 76%);
          mask-image: radial-gradient(ellipse 56% 64% at 52% 52%, #000 32%, transparent 76%);
  mix-blend-mode: color;
  opacity: .66;
}
/* emotion-coloured bloom that breathes over the firing core */
.brain__glow {
  background: radial-gradient(ellipse 44% 42% at 48% 52%, color-mix(in srgb, var(--emotion) 80%, transparent) 0%, transparent 60%);
  mix-blend-mode: screen;
  opacity: .42;
  animation: glowBreath 11s ease-in-out infinite;
}
@keyframes brainBreath {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50%      { transform: translateY(-50%) scale(1.035); }
}
@keyframes glowBreath {
  0%, 100% { opacity: .32; }
  50%      { opacity: .54; }
}
/* living neural sparks — pure emotion colour, layered on the glass brain */
.brain canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .45;
  filter: blur(0.6px);
  mix-blend-mode: screen;
}
/* keeps the headline side dark + readable; brain stays atmosphere */
.brain__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--void) 0%, var(--void) 14%, color-mix(in srgb, var(--void) 72%, transparent) 36%, color-mix(in srgb, var(--void) 32%, transparent) 54%, transparent 70%),
    radial-gradient(ellipse 74% 60% at 20% 52%, var(--void) 0%, color-mix(in srgb, var(--void) 45%, transparent) 46%, transparent 66%),
    linear-gradient(0deg, var(--void) 0%, transparent 14%);
}

/* ---------- Shared layout ---------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--emotion);
  box-shadow: 0 0 12px var(--emotion);
}

.serif { font-family: var(--serif); font-weight: 500; }
.em {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  color: color-mix(in srgb, var(--emotion) 72%, var(--ink));
}
.strike {
  position: relative;
  color: var(--mute);
  font-weight: 400;
}
.strike::after {
  content: "";
  position: absolute; left: -2%; right: -2%; top: 54%;
  height: 2px;
  background: var(--mute);
  transform: scaleX(var(--strike, 1));
  transform-origin: left;
  opacity: .65;
}

/* ---------- Nav ------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  background: color-mix(in srgb, var(--void) 72%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .4s, background .4s;
}
.nav--scrolled { border-bottom-color: var(--hair); }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 500; letter-spacing: -0.01em; font-size: 20px; }
.brand__mark {
  width: 34px; height: 32px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  animation: markPulse 11s ease-in-out infinite;
}
.brand__mark svg { width: 100%; height: 100%; display: block; }
.brand__ai { color: var(--coral); }
@keyframes markPulse { 0%,100%{ transform: scale(1);} 50%{ transform: scale(1.08);} }

.nav__links {
  display: flex; align-items: center; gap: 30px;
}
.nav__links a {
  font-size: 14px; font-weight: 500; letter-spacing: -0.005em;
  color: var(--mute);
  transition: color .25s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a.is-active { color: var(--coral); }

.nav__lang {
  display: inline-flex; align-items: center;
  border: 1px solid var(--hair); border-radius: 999px; overflow: hidden;
  margin-left: 14px;
}
.nav__lang span, .nav__lang a {
  padding: 5px 11px; font-size: 12px; font-weight: 700; font-family: var(--mono);
  color: var(--mute); transition: color .25s ease, background .25s ease;
}
.nav__lang .is-active {
  color: var(--coral);
  background: color-mix(in srgb, var(--coral) 14%, transparent);
}
.nav__lang a:hover { color: var(--ink); }

.nav__cta {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.02em;
  color: var(--ink);
  padding: 9px 16px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  background: color-mix(in srgb, var(--emotion) 7%, transparent);
  transition: border-color .3s, background .3s, transform .3s;
  white-space: nowrap;
}
.nav__cta:hover { border-color: color-mix(in srgb, var(--emotion) 50%, transparent); background: color-mix(in srgb, var(--emotion) 14%, transparent); transform: translateY(-1px); }
.nav__cta .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--care); box-shadow: 0 0 10px var(--care); }

/* ---------- Sticky mobile call ---------------------------- */
.mobile-call {
  display: none;
  position: fixed;
  left: 14px; right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  align-items: center; justify-content: center; gap: 11px;
  padding: 16px 20px;
  border-radius: 16px;
  font-family: var(--sans); font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  color: #211D29;
  background: var(--emotion);
  border: 1px solid color-mix(in srgb, var(--emotion) 60%, #fff);
  box-shadow: 0 18px 40px -16px color-mix(in srgb, var(--emotion) 90%, transparent), inset 0 1px 0 rgba(255,255,255,0.3);
}
.mobile-call .dot { width: 8px; height: 8px; border-radius: 50%; flex: none; background: #211D29; opacity: .55; animation: markPulse 2.4s ease-in-out infinite; }
.mobile-call svg { width: 18px; height: 18px; flex: none; }

/* ---------- Hero ------------------------------------------ */
.hero { padding: clamp(56px, 9vh, 120px) 0 80px; position: relative; }
.hero .wrap { position: relative; z-index: 2; }
.hero__head { max-width: 880px; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 6.4vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 26px 0 0;
  text-wrap: balance;
}
.hero h1 .em { font-weight: 400; }
.hero__sub {
  margin: 28px 0 0;
  max-width: 560px;
  font-size: clamp(17px, 2.1vw, 21px);
  color: var(--mute);
  line-height: 1.55;
}
.hero__sub strong { color: var(--ink); font-weight: 500; }

.hero__proof {
  margin-top: 26px;
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.02em;
  color: var(--mute);
  padding: 9px 15px 9px 13px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  background: color-mix(in srgb, var(--void-2) 60%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__proof .dot {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: var(--care); box-shadow: 0 0 10px var(--care);
  animation: markPulse 2.6s ease-in-out infinite;
}

/* ---------- Console (the signature) ----------------------- */
.console {
  margin-top: 52px;
  border: 1px solid var(--hair);
  border-radius: 22px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--emotion) 6%, transparent), transparent 40%),
    color-mix(in srgb, var(--void-2) 84%, transparent);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 40px 90px -50px rgba(0,0,0,0.9),
    0 0 100px -40px color-mix(in srgb, var(--emotion) 40%, transparent);
  overflow: hidden;
}
.console__bar {
  display: flex; align-items: center; gap: 20px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--hair-2);
  flex-wrap: wrap;
}
.console__live {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute);
  white-space: nowrap;
}
.console__live .pip { width: 7px; height: 7px; border-radius: 50%; background: var(--anger); box-shadow: 0 0 10px var(--anger); animation: pip 1.6s ease-in-out infinite; }
@keyframes pip { 0%,100%{opacity:1;} 50%{opacity:.3;} }

.tabs { display: flex; gap: 6px; margin-left: auto; flex-wrap: wrap; }
.tab {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.01em;
  color: var(--mute);
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: color .3s, background .3s, border-color .3s;
  white-space: nowrap;
}
.tab:hover { color: var(--ink); }
.tab[aria-selected="true"] {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--emotion) 45%, transparent);
  background: color-mix(in srgb, var(--emotion) 14%, transparent);
}
.tab .swatch { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 7px; vertical-align: middle; }

.console__body {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 440px;
}
.console__call {
  padding: 30px 30px 34px;
  border-right: 1px solid var(--hair-2);
  display: flex; flex-direction: column;
}
.console__brain {
  padding: 30px 30px 34px;
  background: color-mix(in srgb, var(--void) 30%, transparent);
  position: relative;
}
.panel-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 22px;
  display: flex; align-items: center; justify-content: space-between;
}

/* call bubbles */
.turns { display: flex; flex-direction: column; gap: 18px; flex: 1; }
.turn { max-width: 92%; opacity: 0; transform: translateY(10px); }
.turn.in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
.turn__who {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 8px;
}
.turn__bubble {
  padding: 15px 18px;
  border-radius: 16px;
  font-size: 16.5px; line-height: 1.5;
  letter-spacing: -0.005em;
}
.turn--caller .turn__bubble {
  background: color-mix(in srgb, var(--ink) 6%, transparent);
  border: 1px solid var(--hair-2);
  border-top-left-radius: 5px;
  color: color-mix(in srgb, var(--ink) 86%, var(--mute));
}
.turn--topher { align-self: flex-end; max-width: 94%; }
.turn--topher .turn__who { text-align: right; color: color-mix(in srgb, var(--emotion) 70%, var(--mute)); }
.turn--topher .turn__bubble {
  background: color-mix(in srgb, var(--emotion) 16%, var(--void-2));
  border: 1px solid color-mix(in srgb, var(--emotion) 32%, transparent);
  border-top-right-radius: 5px;
  color: var(--ink);
  box-shadow: 0 18px 40px -30px color-mix(in srgb, var(--emotion) 80%, transparent);
}
.typing { display: inline-flex; gap: 4px; padding: 4px 0; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--mute); animation: typing 1.2s infinite; }
.typing i:nth-child(2){ animation-delay: .15s; } .typing i:nth-child(3){ animation-delay: .3s; }
@keyframes typing { 0%,60%,100%{ transform: translateY(0); opacity:.4;} 30%{ transform: translateY(-5px); opacity:1;} }

/* brain trace */
.trace { display: flex; flex-direction: column; gap: 18px; }
.trace__row { opacity: 0; transform: translateY(8px); }
.trace__row.in { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s ease; }
.trace__k {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 7px;
}
.trace__v { font-size: 17px; color: var(--ink); letter-spacing: -0.01em; }
.trace__v .accent { color: color-mix(in srgb, var(--emotion) 78%, var(--ink)); font-weight: 500; }

.meter { display: flex; align-items: center; gap: 14px; }
.meter__track { flex: 1; height: 6px; border-radius: 999px; background: color-mix(in srgb, var(--ink) 8%, transparent); overflow: hidden; }
.meter__fill {
  height: 100%; width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--emotion) 55%, transparent), var(--emotion));
  box-shadow: 0 0 16px color-mix(in srgb, var(--emotion) 70%, transparent);
  transition: width 1.1s cubic-bezier(.3,.7,.3,1);
}
.meter__num { font-family: var(--mono); font-size: 14px; color: var(--ink); min-width: 42px; text-align: right; font-variant-numeric: tabular-nums; }

.blocked {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; line-height: 1.4;
  padding: 10px 14px;
  border-radius: 11px;
  background: color-mix(in srgb, var(--anger) 9%, transparent);
  border: 1px solid color-mix(in srgb, var(--anger) 24%, transparent);
  color: color-mix(in srgb, var(--ink) 84%, var(--mute));
}
.blocked__x { color: var(--anger); font-family: var(--mono); font-weight: 600; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; flex: none; }
.blocked s { text-decoration-color: color-mix(in srgb, var(--anger) 70%, transparent); }
.blocked--none {
  background: color-mix(in srgb, var(--care) 9%, transparent);
  border-color: color-mix(in srgb, var(--care) 24%, transparent);
}
.blocked--none .blocked__x { color: var(--care); }

/* ---------- The shift ------------------------------------- */
.shift { padding: clamp(90px, 16vh, 200px) 0; text-align: center; }
.shift p {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 5.4vw, 68px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 auto;
  max-width: 16ch;
  text-wrap: balance;
}

/* ---------- Pillars --------------------------------------- */
.section { padding: clamp(70px, 11vh, 130px) 0; }
.section__head { max-width: 680px; margin-bottom: 56px; }
.section__head h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.08; letter-spacing: -0.03em;
  margin: 18px 0 0; text-wrap: balance;
}
.section__head p { margin: 18px 0 0; color: var(--mute); font-size: 18px; max-width: 540px; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar {
  --tint: var(--calm);
  padding: 32px 28px 36px;
  border: 1px solid var(--hair);
  border-radius: 18px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--tint) 9%, transparent), transparent 46%),
    color-mix(in srgb, var(--void-2) 70%, transparent);
  position: relative; overflow: hidden;
  transition: transform .5s cubic-bezier(.3,.7,.3,1), border-color .5s;
}
.pillar:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--tint) 40%, transparent); }
.pillar__icon {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--tint) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--tint) 30%, transparent);
  margin-bottom: 22px;
}
.pillar__icon::before {
  content: ""; width: 13px; height: 13px; border-radius: 50%;
  background: var(--tint); box-shadow: 0 0 16px var(--tint);
}
.pillar h3 { font-family: var(--serif); font-weight: 600; font-size: 25px; letter-spacing: -0.022em; margin: 0 0 12px; line-height: 1.15; }
.pillar h3 em { color: color-mix(in srgb, var(--tint) 72%, var(--ink)); }
.pillar p { margin: 0; color: var(--mute); font-size: 16px; line-height: 1.55; }
.pillar__tag {
  margin-top: 22px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: color-mix(in srgb, var(--tint) 65%, var(--mute));
}

/* ---------- Care Brief ------------------------------------ */
.brief { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.brief__copy h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(30px, 4.6vw, 56px); line-height: 1.06; letter-spacing: -0.03em; margin: 18px 0 0;
  text-wrap: balance;
}
.brief__copy p { color: var(--mute); font-size: 18px; margin: 22px 0 0; max-width: 460px; }
.brief__list { list-style: none; padding: 0; margin: 30px 0 0; display: flex; flex-direction: column; gap: 14px; }
.brief__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: color-mix(in srgb, var(--ink) 82%, var(--mute)); }
.brief__list .tick { color: var(--care); font-family: var(--mono); flex: none; margin-top: 1px; }

/* phone */
.phone {
  justify-self: center;
  width: 340px; max-width: 100%;
  border-radius: 42px;
  padding: 12px;
  background: linear-gradient(160deg, #1a222e, #0a0e15);
  border: 1px solid var(--hair);
  box-shadow:
    0 60px 120px -40px rgba(0,0,0,0.9),
    0 0 90px -50px color-mix(in srgb, var(--emotion) 60%, transparent),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.phone__screen {
  border-radius: 32px;
  background: var(--void);
  overflow: hidden;
  height: 640px;
  position: relative;
  border: 1px solid var(--hair-2);
}
.phone__notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 110px; height: 26px; background: #05080c; border-radius: 999px; z-index: 5; }
.phone__top { padding: 30px 22px 16px; }
.phone__date { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }
.phone__title { font-family: var(--serif); font-weight: 600; font-size: 27px; letter-spacing: -0.022em; margin: 8px 0 2px; }
.phone__title em { color: color-mix(in srgb, var(--emotion) 72%, var(--ink)); }
.phone__meta { color: var(--faint); font-size: 13px; }
.care-list { padding: 8px 14px 22px; display: flex; flex-direction: column; gap: 10px; }
.care-card {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 15px 15px;
  border-radius: 15px;
  background: color-mix(in srgb, var(--ce) 10%, var(--void-2));
  border: 1px solid color-mix(in srgb, var(--ce) 26%, transparent);
}
.care-card__dot { width: 11px; height: 11px; border-radius: 50%; flex: none; margin-top: 4px; background: var(--ce); box-shadow: 0 0 12px var(--ce); }
.care-card__name { font-weight: 500; font-size: 15.5px; }
.care-card__name span { font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ce); margin-left: 8px; }
.care-card__why { font-size: 13.5px; color: var(--mute); margin-top: 3px; line-height: 1.45; }

/* ---------- Guarantees ------------------------------------ */
.guarantees { border-top: 1px solid var(--hair-2); border-bottom: 1px solid var(--hair-2); }
.guard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hair-2); border-left: 1px solid var(--hair-2); border-right: 1px solid var(--hair-2); }
.guard {
  background: var(--void);
  padding: 40px 34px 44px;
}
.guard__n { font-family: var(--mono); font-size: 12px; color: var(--faint); letter-spacing: 0.1em; }
.guard h3 { font-family: var(--serif); font-weight: 600; font-size: 24px; letter-spacing: -0.02em; margin: 16px 0 12px; line-height: 1.18; }
.guard p { margin: 0; color: var(--mute); font-size: 15.5px; line-height: 1.55; }

/* ---------- Pricing --------------------------------------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.tier {
  display: flex; flex-direction: column;
  padding: 34px 30px 34px;
  border: 1px solid var(--hair);
  border-radius: 20px;
  background: color-mix(in srgb, var(--void-2) 60%, transparent);
}
.tier--feat {
  border-color: color-mix(in srgb, var(--emotion) 45%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--emotion) 12%, transparent), transparent 50%),
    color-mix(in srgb, var(--void-2) 80%, transparent);
  box-shadow: 0 40px 90px -50px color-mix(in srgb, var(--emotion) 70%, transparent);
  position: relative;
}
.tier__flag {
  position: absolute; top: 22px; right: 26px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: color-mix(in srgb, var(--emotion) 80%, var(--ink));
}
.tier__name { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }
.tier__price { font-family: var(--serif); font-weight: 600; font-size: 52px; letter-spacing: -0.04em; margin: 18px 0 2px; }
.tier__price sub { font-family: var(--mono); font-size: 13px; color: var(--faint); letter-spacing: 0; vertical-align: baseline; }
.tier__line { color: var(--mute); font-size: 15px; min-height: 44px; }
.tier__feats { list-style: none; padding: 0; margin: 22px 0 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tier__feats li { display: flex; gap: 11px; font-size: 15px; color: color-mix(in srgb, var(--ink) 80%, var(--mute)); align-items: flex-start; }
.tier__feats .tick { color: var(--emotion); font-family: var(--mono); flex: none; margin-top: 1px; }
.tier__btn {
  display: block; text-align: center;
  padding: 14px; border-radius: 12px;
  font-family: var(--sans); font-size: 15px; font-weight: 500; letter-spacing: -0.005em;
  border: 1px solid var(--hair);
  color: var(--ink);
  transition: background .3s, border-color .3s, transform .3s;
}
.tier__btn:hover { border-color: color-mix(in srgb, var(--emotion) 50%, transparent); transform: translateY(-1px); }
.tier--feat .tier__btn { background: var(--emotion); color: #211D29; border-color: transparent; font-weight: 600; }
.tier--feat .tier__btn:hover { background: color-mix(in srgb, var(--emotion) 85%, #fff); }
.tiers__anchor { text-align: center; margin-top: 40px; }
.tiers__anchor p { font-family: var(--serif); font-style: normal; font-weight: 500; font-size: clamp(20px, 2.6vw, 27px); letter-spacing: -0.02em; color: color-mix(in srgb, var(--ink) 86%, var(--mute)); margin: 0; }

/* ---------- Final CTA ------------------------------------- */
.final { padding: clamp(100px, 18vh, 220px) 0; text-align: center; }
.final h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(36px, 6.2vw, 84px); line-height: 1.04; letter-spacing: -0.035em;
  margin: 0 auto; max-width: 15ch; text-wrap: balance;
}
.final__dial {
  margin-top: 44px;
  display: inline-flex; flex-direction: column; align-items: center; gap: 18px;
}
.dial {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 18px 30px 18px 22px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--emotion) 16%, var(--void-2));
  border: 1px solid color-mix(in srgb, var(--emotion) 40%, transparent);
  box-shadow: 0 30px 70px -40px color-mix(in srgb, var(--emotion) 90%, transparent), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform .3s, box-shadow .3s;
}
.dial:hover { transform: translateY(-2px); box-shadow: 0 40px 90px -40px color-mix(in srgb, var(--emotion) 100%, transparent), inset 0 1px 0 rgba(255,255,255,0.08); }
.dial__ic { width: 46px; height: 46px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--emotion); color: #211D29; }
.dial__ic svg { width: 22px; height: 22px; }
.dial__no { font-family: var(--serif); font-weight: 600; font-size: clamp(24px, 4vw, 38px); letter-spacing: -0.02em; color: var(--ink); white-space: nowrap; }
.dial__sub { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); }

/* ---------- Footer ---------------------------------------- */
.footer { border-top: 1px solid var(--hair-2); padding: 56px 0 70px; }
.footer__top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
.footer__brand { font-size: 19px; display: flex; align-items: center; gap: 10px; font-weight: 500; }
.footer__brand .brand__mark { width: 32px; height: 30px; }
.footer__honesty { max-width: 620px; display: flex; flex-direction: column; gap: 12px; }
.honest {
  display: flex; gap: 11px;
  font-family: var(--mono); font-size: 12.5px; line-height: 1.55; letter-spacing: 0.01em;
  color: var(--mute);
}
.honest::before { content: "—"; color: var(--faint); flex: none; }
.footer__base { margin-top: 44px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--faint); font-family: var(--mono); letter-spacing: 0.02em; }

/* ---------- Reveal ----------------------------------------
   Robust pattern: content is VISIBLE by default and the entrance
   is a pure enhancement animation added on scroll-in. If the
   animation never runs (no-JS, throttled capture), content still
   shows — it can never be permanently hidden. */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.reveal.in { animation: fadeUp .9s cubic-bezier(.2,.7,.2,1); }

/* ---------- Responsive ------------------------------------ */
@media (max-width: 900px) {
  .console__body { grid-template-columns: 1fr; }
  .console__call { border-right: none; border-bottom: 1px solid var(--hair-2); }
  .pillars { grid-template-columns: 1fr; }
  .brief { grid-template-columns: 1fr; gap: 44px; }
  .brief__copy { order: 0; }
  .guard-grid { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .tier--feat { order: -1; }
}
@media (max-width: 700px) {
  .mobile-call { display: flex; }
  .nav__cta { display: none; }
  .nav__links { display: none; }
  .nav__lang { display: none; }
  body { padding-bottom: 88px; }
  .footer { padding-bottom: 40px; }
  /* keep the brain present but subordinate to full-width hero text */
  .brain { opacity: .5; }
  .brain__img, .brain__tint, .brain__glow { width: 150vw; right: -52vw; top: 40%; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap, .nav__inner { padding-left: 20px; padding-right: 20px; }
  .console__bar { gap: 12px; }
  .tabs { width: 100%; }
  .console__call, .console__brain { padding: 22px 20px 26px; }
  .turn { max-width: 100%; }
  .dial { flex-wrap: wrap; justify-content: center; text-align: center; padding: 20px 24px; }
}

/* ---------- Reduced motion -------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .field__blob, .brand__mark, .console__live .pip { animation: none !important; }
  :root { transition: --emotion .3s linear, --emotion-2 .3s linear; }
  .reveal, .turn, .trace__row { opacity: 1 !important; transform: none !important; transition: none !important; }
  .meter__fill { transition: width .3s linear; }
}