/* =====================================================================
   APOLLO — Refined Cosmic Minimalism
   RTL Hebrew landing page
   ===================================================================== */

:root{
  /* palette */
  --void:    #050507;
  --ink:     #0A0A0B;
  --ink-2:   #16171A;
  --paper:   #FFFFFF;
  --mist:    #F4F5F6;
  --mist-2:  #ECEEF0;
  --line:    rgba(10,10,11,.10);
  --line-d:  rgba(255,255,255,.12);

  --muted:   #6B6F76;
  --muted-d: rgba(255,255,255,.56);

  /* accent — electric turquoise (used ONCE per screen) */
  --accent:  #12D9C4;
  --accent-2:#0FB9A8;
  --accent-glow: rgba(18,217,196,.45);

  /* type — Google Sans for Latin, Heebo for Hebrew (per-glyph fallback) */
  --display: "Google Sans", "Heebo", system-ui, sans-serif;
  --body:    "Google Sans", "Heebo", system-ui, sans-serif;

  /* rhythm */
  --pad-x: clamp(20px, 6vw, 120px);
  --maxw: 1280px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; overflow-x:hidden; overflow-x:clip; }
body{
  font-family:var(--body);
  background:var(--paper);
  color:var(--ink);
  line-height:1.6;
  width:100%; max-width:100%;
  position:relative;
  /* hidden = universal fallback; clip overrides it where supported (iOS<16 lacks clip) */
  overflow-x:hidden;
  overflow-x:clip;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
::selection{ background:var(--accent); color:var(--ink); }

h1,h2,h3{ font-family:var(--display); font-weight:700; line-height:1.04; letter-spacing:-.015em; }

/* shared kicker */
.section-kicker{
  font-family:var(--display);
  font-weight:600;
  font-size:.78rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--accent-2);
  margin-bottom:1.4rem;
}
.section-kicker--light{ color:var(--accent); }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  font-family:var(--display); font-weight:600; font-size:1rem;
  padding:.95rem 2rem; border-radius:999px; border:0; cursor:pointer;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  white-space:nowrap;
}
.btn--accent{
  background:var(--accent); color:#03100E;
  box-shadow:none;
}
.btn--accent:hover{ transform:translateY(-2px); background:#1AE7D2; }
.btn--block{ width:100%; padding:1.1rem; font-size:1.05rem; }

/* =====================================================================
   SCROLL PROGRESS + TOPBAR
   ===================================================================== */
.scroll-progress{ position:fixed; inset:0 0 auto 0; height:2px; z-index:120; background:transparent; }
.scroll-progress__bar{ display:block; height:100%; width:0; background:linear-gradient(90deg,var(--accent),var(--accent-2)); }

.topbar{
  position:fixed; inset:0 0 auto 0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:18px var(--pad-x);
  transition:background .4s var(--ease), backdrop-filter .4s, padding .4s, border-color .4s;
  border-bottom:1px solid transparent;
}
.topbar.is-stuck{
  background:rgba(8,8,10,.72);
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
  border-bottom-color:var(--line-d);
  padding-top:13px; padding-bottom:13px;
}
.topbar__logo img{ height:26px; width:auto; opacity:.96; }
.topbar__nav{ display:flex; align-items:center; gap:clamp(14px,2vw,34px); }
.topbar__nav a{
  font-family:var(--display); font-weight:500; font-size:.95rem;
  color:rgba(255,255,255,.82); transition:color .25s;
}
.topbar__nav a:hover{ color:#fff; }
.topbar__cta{
  border:1px solid rgba(255,255,255,.28); border-radius:999px;
  padding:.5rem 1.15rem; color:#fff !important;
}
.topbar__cta:hover{ border-color:var(--accent); color:var(--accent) !important; }
@media(max-width:760px){
  .topbar__nav a:not(.topbar__cta){ display:none; }
  .topbar{ padding-top:14px; padding-bottom:14px; }
  .topbar__logo img{ height:24px; }
  .topbar__cta{ padding:.45rem 1rem; font-size:.9rem; }
}

/* =====================================================================
   01 · HERO
   ===================================================================== */
/* normal full-screen hero — scrolls away naturally (no pin, no fixed cover) */
.hero{ position:relative; height:100svh; min-height:620px; overflow:hidden; background:var(--void); z-index:0; }
.hero__media{ position:absolute; inset:0; }
.hero__video{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
  object-position:var(--hero-x, 50%) center;   /* horizontal crop of the astronaut */
  filter:saturate(1.05) contrast(1.03);
}
@media(max-width:760px){
  .hero__video{ --hero-x:30%; }                /* on mobile push the astronaut further right */
}
/* short / landscape phones: the 620px min-height would make the fixed hero
   taller than the screen and push the title out of view — let it shrink to
   the viewport and pull the content block up so everything stays visible */
@media(max-height:620px){
  .hero{ min-height:0; }
  .hero__content{ bottom:clamp(56px,12vh,110px); }
  .hero__scrollcue{ display:none; }
}
.hero__scrim{
  position:absolute; inset:0;
  background:
    radial-gradient(120% 80% at 75% 30%, rgba(5,5,7,0) 0%, rgba(5,5,7,.35) 55%, rgba(5,5,7,.85) 100%),
    linear-gradient(0deg, rgba(5,5,7,.92) 2%, rgba(5,5,7,.18) 38%, rgba(5,5,7,.30) 100%);
}
.hero__grain{
  position:absolute; inset:0; opacity:.5; mix-blend-mode:overlay; pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.hero__content{
  position:absolute; z-index:3; inset:auto var(--pad-x) clamp(96px,16vh,180px) var(--pad-x);
  max-width:min(760px, 88vw);
  display:flex; flex-direction:column; align-items:flex-start;
}
/* each revealable line; block-reveal panels must NOT clip Hebrew ascenders/descenders */
.hero-line{ position:relative; max-width:100%; }
.hero-line.block-reveal{ overflow:visible; }
.hero__logo-wrap{ display:inline-block; margin-bottom:clamp(1.4rem, 3vh, 2.2rem); }
.hero__logo{
  height:clamp(28px, 3.6vw, 44px); width:auto; display:block;
  filter:drop-shadow(0 2px 20px rgba(0,0,0,.45));
}
.hero__title{
  display:flex; flex-direction:column; align-items:flex-start;
  color:#fff; font-weight:700;
  font-size:clamp(2.1rem, 5.2vw, 4.4rem); line-height:1.06;
  text-shadow:0 2px 40px rgba(0,0,0,.4);
}
.hero__title .line{ display:block; }
.hero__title em{ font-style:normal; color:var(--accent); }
.hero__subline{
  margin-top:1.6rem; color:rgba(255,255,255,.82);
  font-size:clamp(1.05rem,2vw,1.4rem); font-weight:400; max-width:34ch;
}

.hero__scrollcue{
  position:absolute; z-index:3; left:var(--pad-x); bottom:42px;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  color:rgba(255,255,255,.7);
}
.hero__scrollcue-label{ font-family:var(--display); font-size:.7rem; letter-spacing:.2em; text-transform:uppercase; }
.hero__scrollcue-line{ width:1px; height:54px; background:linear-gradient(rgba(255,255,255,.7),transparent); position:relative; overflow:hidden; }
.hero__scrollcue-line::after{
  content:""; position:absolute; inset:0; background:var(--accent);
  animation:cue 1.9s var(--ease) infinite;
}
@keyframes cue{ 0%{transform:translateY(-100%)} 60%,100%{transform:translateY(100%)} }

.hero__brand{ position:absolute; z-index:3; left:var(--pad-x); top:auto; bottom:42px; display:none; }
/* small logo handled by topbar; keep hidden duplicate off */

/* =====================================================================
   02 · ABOUT — word ignite
   ===================================================================== */
.about{
  background:var(--paper);
  min-height:100svh;
  display:flex; align-items:center; justify-content:center;
  padding:clamp(70px,10vh,130px) var(--pad-x);
}
.about__inner{ max-width:1080px; margin:0 auto; text-align:center; }
.about__inner .section-kicker{ text-align:center; }
.about__text{
  font-family:var(--display); font-weight:600;
  font-size:clamp(1.5rem, 3.6vw, 2.9rem);
  line-height:1.36; letter-spacing:-.01em;
}
.about__text .w{ color:rgba(10,10,11,.16); transition:color .15s linear; }
.about__text .w.lit{ color:var(--ink); }
.about__text .w.peak{ color:var(--accent-2); }

/* =====================================================================
   03 · WHAT WE SOLVE — floating cards over sky
   ===================================================================== */
.solve{ position:relative; height:100svh; overflow:hidden; }
.solve__sky{
  position:absolute; inset:0; z-index:0;
  background:
    radial-gradient(90% 70% at 78% -10%, rgba(18,217,196,.12), transparent 55%),
    linear-gradient(180deg, #8FC3E8 0%, #B9DEF3 42%, #E4F4FB 100%);
}
/* heading stays at the top while the cards rise behind it */
.solve__copy{
  position:absolute; z-index:5; top:calc(50% + 3vh); left:0; right:0;
  transform:translateY(-50%);                  /* vertically centred, nudged a bit below middle */
  padding:0 var(--pad-x); text-align:center; pointer-events:none;
}
.solve__copy .section-kicker{ text-align:center; }
.solve__title{ font-size:clamp(2rem,4.6vw,3.4rem); margin-bottom:1rem; }
.solve__lead{ font-size:clamp(1.05rem,1.6vw,1.25rem); color:#3C4047; max-width:44ch; margin:0 auto; }

/* cloud layers — depth field that rises with the cards */
.solve__clouds{ position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.solve__clouds--back{ z-index:2; }
.solve__clouds--front{ z-index:4; }
.cloud{
  position:absolute; left:var(--x); top:0;
  width:clamp(260px, 34vw, 560px); height:auto;
  transform-origin:center center; will-change:transform;
  visibility:hidden; user-select:none;
}
.cloud--front{ filter:blur(2px); }
.solve.is-static .cloud{ display:none; }     /* clouds are an animation-only layer */
@media(max-width:760px){ .cloud{ width:clamp(150px, 46vw, 300px); } }

/* full-screen field; each card is positioned on --x and animated up the Y axis by JS */
.solve__field{ position:absolute; inset:0; z-index:3; pointer-events:none; }
.float-card{
  position:absolute; left:var(--x); top:0;
  width:max-content; max-width:340px; text-align:center;
  /* PERF: frosted look via a semi-opaque white instead of backdrop-filter.
     backdrop-filter:blur() re-samples + blurs the backdrop behind EVERY card
     on EVERY frame — with ~10 moving cards that's the main scroll-jank source.
     Over the already-soft sky/clouds, an opaque frost reads near-identically. */
  background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.74));
  border:1px solid rgba(255,255,255,.9);
  box-shadow:0 34px 80px -24px rgba(20,60,80,.42), 0 3px 10px rgba(20,60,80,.07);
  border-radius:20px; padding:1.35rem 1.75rem;
  font-family:var(--display); font-weight:500; font-size:1.32rem;
  line-height:1.35; color:var(--ink);
  /* keep each card on its own GPU layer & isolate its paint from siblings */
  will-change:transform; transform:translateZ(0); backface-visibility:hidden;
  contain:layout paint; visibility:hidden; /* revealed by JS once positioned below screen */
}

/* static fallback (no-JS / reduced-motion / shot) and small screens */
.solve.is-static{ height:auto; }
.solve.is-static .solve__copy{ position:static; padding-top:clamp(90px,12vh,140px); }
.solve.is-static .solve__field{
  position:static; display:flex; flex-wrap:wrap; justify-content:center; align-content:flex-start;
  gap:14px; padding:44px var(--pad-x) clamp(80px,12vh,140px);
}
.solve.is-static .float-card{
  position:static; left:auto; top:auto; transform:none!important;
  visibility:visible!important; opacity:1!important; max-width:none;
}
/* mobile: keep the SAME pinned rising effect — just scale the elements down to fit */
@media(max-width:760px){
  .solve__copy{ top:calc(50% + 2vh); }
  .solve__title{ font-size:clamp(1.6rem,6.6vw,2.2rem); }
  .solve__lead{ font-size:.98rem; max-width:30ch; }
  .float-card{
    max-width:68vw; padding:.85rem 1.15rem; border-radius:14px;
    font-size:1.05rem; line-height:1.32;
    /* pull every card toward the centre (×0.42 of its offset from 50%)
       so the edge cards don't get cut off by the screen width */
    left:calc(50% + (var(--x) - 50%) * 0.42);
  }
  /* the big foreground clouds are decorative — drop their blur filter on
     mobile (cheap win) since they're already soft and semi-transparent */
  .cloud--front{ filter:none; }
}

/* =====================================================================
   04 · APOLLO METHOD — natural-scroll vertical timeline (white)
   ===================================================================== */
.method{ background:var(--paper); color:var(--ink); position:relative; }
.method__sticky{
  position:sticky; top:0; height:100svh; min-height:600px;
  display:flex; flex-direction:column; justify-content:center; align-items:center;
  padding:clamp(96px,16vh,150px) var(--pad-x) clamp(40px,7vh,70px); overflow:hidden;
}
.method__head{ position:absolute; top:clamp(54px,9vh,104px); right:var(--pad-x); left:var(--pad-x); text-align:center; z-index:5; }
.method__intro{ color:var(--muted); font-size:clamp(.95rem,1.4vw,1.15rem); }

/* vertical text scroller (only the centered step is "lit") */
.method__scroller{
  position:relative; height:60vh; max-height:600px; overflow:hidden;
  width:100%; max-width:720px; margin:0 auto;
}
.method__steps{ list-style:none; position:absolute; inset:0; will-change:transform; }
.method-step{
  position:absolute; left:0; right:0;
  display:flex; gap:clamp(14px,1.8vw,28px); align-items:flex-start;
  text-align:right; padding:clamp(14px,2.2vh,26px) 2px;
  opacity:.18; transition:opacity .45s var(--ease), filter .45s var(--ease);
  filter:blur(1px);
}
.method-step.is-active{ opacity:1; filter:none; }
.method-step__letter{
  font-family:var(--display); font-weight:700; line-height:1;
  font-size:clamp(2.4rem,4.4vw,4rem);
  color:var(--mist-2); flex:0 0 auto; padding-top:.18em;
  transition:color .45s var(--ease);
}
.method-step.is-active .method-step__letter{ color:var(--accent); }
.method-step__body h3{ display:flex; align-items:baseline; gap:.7rem; flex-wrap:wrap; margin-bottom:.7rem; }
.method-step__en{ font-size:clamp(2rem,4.4vw,3.4rem); color:var(--ink); }
.method-step__he{ font-family:var(--body); font-weight:600; font-size:clamp(1.05rem,2vw,1.6rem); color:var(--muted); transition:color .45s var(--ease); }
.method-step.is-active .method-step__he{ color:var(--accent-2); }
.method-step__body p{ color:var(--muted); font-size:clamp(1rem,1.4vw,1.2rem); max-width:46ch; line-height:1.55; }

/* soft top/bottom fades so steps dissolve at the edges (Apple-style) */
.method__fade{ position:absolute; left:0; right:0; height:26%; z-index:3; pointer-events:none; }
.method__fade--top{ top:0; background:linear-gradient(var(--paper), rgba(255,255,255,0)); }
.method__fade--bottom{ bottom:0; background:linear-gradient(rgba(255,255,255,0), var(--paper)); }

@media(max-width:860px){
  .method__head{ position:static; margin-bottom:clamp(20px,4vh,40px); }
  .method__sticky{ justify-content:flex-start; padding-top:clamp(70px,11vh,110px); }
  .method__scroller{ height:54vh; }
  .method-step__body p{ max-width:38ch; }
}
@media(max-width:480px){
  .method__scroller{ height:56vh; }
  .method-step{ gap:12px; }
  .method-step__en{ font-size:clamp(1.7rem,8.5vw,2.4rem); }
  .method-step__letter{ font-size:clamp(2rem,9vw,3rem); }
  .method-step__body p{ font-size:.96rem; max-width:34ch; }
}

/* =====================================================================
   05 · SOLUTIONS — video showcase + WhatsApp demo
   ===================================================================== */
.solutions{ background:var(--mist); padding:clamp(110px,16vh,170px) 0; overflow:hidden; }
.solutions__head{ text-align:center; padding:0 var(--pad-x); margin-bottom:clamp(48px,7vh,80px); }
.solutions__head .section-kicker{ text-align:center; }
.solutions__title{ font-size:clamp(2rem,4.6vw,3.4rem); }

/* ---- showcase: full-bleed video cards with WhatsApp demo on top ---- */
.showcases{
  display:flex; flex-direction:column; gap:clamp(48px,7vw,96px);
  padding:0 var(--pad-x);
}
/* The card is just an expanding frame/window. As it scrolls to the
   centre it grows to the screen edges (JS animates its side margins);
   the video + scrim are pinned to the viewport centre at a fixed
   100vw, so the card only reveals MORE of them — it never zooms. */
.showcase{
  position:relative; isolation:isolate; overflow:hidden;
  border-radius:clamp(20px,2.4vw,34px);
  min-height:clamp(460px,62vh,580px);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 50px 100px -40px rgba(8,30,28,.55);
}
.showcase__bg{
  position:absolute; top:0; bottom:0; left:50%; transform:translateX(-50%);
  z-index:-2;
  width:100vw; height:100%; object-fit:cover;   /* fixed size → no zoom */
}
.showcase__scrim{
  position:absolute; top:0; bottom:0; left:50%; transform:translateX(-50%);
  width:100vw; z-index:-1;
  background:
    linear-gradient(255deg, rgba(3,16,14,.30) 0%, rgba(3,16,14,.78) 70%),
    radial-gradient(120% 120% at 80% 0%, rgba(18,217,196,.20), transparent 55%);
}
/* content box — anchored at the card's rest width (set by JS as
   --inner-w) and centred, so copy + mockups never move or scale. */
.showcase__inner{
  width:var(--inner-w, 100%); max-width:100%;
  direction:ltr;                 /* lay columns L→R: phone left, copy right */
  display:grid; align-items:center;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:clamp(20px,4vw,60px);
  padding:clamp(36px,5vw,72px);
}

/* copy column (right) */
.showcase__copy{ grid-column:2; direction:rtl; color:#fff; max-width:46ch; }
.showcase__copy .section-kicker{ text-align:start; margin-bottom:.8rem; }
.showcase__title{ font-size:clamp(1.9rem,3.4vw,3rem); color:#fff; }
.showcase__sub{
  color:rgba(255,255,255,.78); font-size:clamp(1.02rem,1.3vw,1.2rem);
  line-height:1.6; margin:1.1rem 0 0;
}

/* phone column (left) */
.showcase__phone{ grid-column:1; display:grid; place-items:center; }

.phone{
  position:relative; width:clamp(260px,30vw,330px); aspect-ratio:9 / 19;
  background:#0b141a; border-radius:42px;
  padding:12px; direction:rtl;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 40px 80px -28px rgba(0,0,0,.6), inset 0 0 0 2px rgba(0,0,0,.4);
}
.phone__notch{
  position:absolute; top:14px; left:50%; transform:translateX(-50%); z-index:3;
  width:42%; height:22px; background:#000; border-radius:0 0 16px 16px;
}
.wa{
  position:relative; height:100%; border-radius:32px; overflow:hidden;
  display:flex; flex-direction:column;
  background:#0b141a;
  background-image:radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size:18px 18px;
}
.wa__bar{
  display:flex; align-items:center; gap:8px;
  padding:30px 12px 10px; background:#1f2c33; color:#e9edef;
  box-shadow:0 1px 0 rgba(0,0,0,.25);
}
.wa__back{ font-size:1.4rem; line-height:1; color:#e9edef; }
.wa__avatar{
  width:30px; height:30px; border-radius:50%; display:grid; place-items:center;
  background:var(--accent-2); color:#03100e; font-weight:700; font-size:.9rem;
  font-family:var(--display);
}
.wa__id{ display:flex; flex-direction:column; line-height:1.15; }
.wa__id b{ font-size:.82rem; font-weight:600; }
.wa__status{ font-size:.66rem; color:#8aa0a8; }

.wa__chat{
  flex:1; display:flex; flex-direction:column; gap:7px;
  padding:14px 10px; overflow:hidden; justify-content:flex-end;
}
.wa__msg{
  position:relative; max-width:82%; min-width:5.6rem; padding:7px 10px 16px; border-radius:10px;
  font-size:.78rem; line-height:1.42; color:#e9edef;
  box-shadow:0 1px 1px rgba(0,0,0,.25); word-wrap:break-word;
  opacity:0; transform:translateY(8px) scale(.98);
  transition:opacity .45s var(--ease), transform .45s var(--ease);
}
.wa__msg--in{ background:#202c33; margin-inline-start:auto; border-top-left-radius:3px; }
.wa__msg--out{ background:#005c4b; margin-inline-end:auto; border-top-right-radius:3px; }
.wa__meta{
  position:absolute; bottom:3px; inset-inline-end:9px;
  font-size:.58rem; color:rgba(233,237,239,.55); display:flex; gap:3px; align-items:center;
}
.wa__tick{ color:#53bdeb; letter-spacing:-2px; }

.wa__input{
  display:flex; align-items:center; gap:8px; padding:8px 10px 12px; background:#0b141a;
}
.wa__field{
  flex:1; background:#1f2c33; color:#8aa0a8; border-radius:18px;
  padding:8px 12px; font-size:.74rem;
}
.wa__send{
  width:32px; height:32px; border-radius:50%; background:var(--accent-2);
  color:#03100e; display:grid; place-items:center; font-size:.85rem; transform:scaleX(-1);
}

/* ---- Instagram post (card 2) ---- */
.showcase__post{ grid-column:1; display:grid; place-items:center; }
.ig{
  direction:rtl; width:clamp(290px,32vw,360px);
  background:#000; color:#f5f5f5; border-radius:16px; overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 40px 80px -28px rgba(0,0,0,.6);
  font-size:.8rem; line-height:1.4;
}
.ig__bar{ display:flex; align-items:center; gap:8px; padding:9px 12px; }
.ig__avatar{
  width:30px; height:30px; border-radius:50%; display:grid; place-items:center; flex:0 0 auto;
  background:conic-gradient(from 210deg, #12d9c4, #0fb9a8, #2a7);
  color:#03100e; font-weight:700; font-family:var(--display); font-size:.9rem;
}
.ig__user{ display:flex; align-items:center; gap:5px; flex:1; min-width:0; }
.ig__user b{ font-weight:600; font-size:.82rem; }
.ig__sep{ color:#a8a8a8; }
.ig__follow{ color:#4aa3ff; font-weight:600; font-size:.82rem; }
.ig__more{ margin-inline-start:auto; letter-spacing:1px; color:#f5f5f5; font-size:1rem; }

.ig__media{ position:relative; aspect-ratio:4 / 5; background:#111; }
.ig__media img{ width:100%; height:100%; object-fit:cover; display:block; }
.ig__index{
  position:absolute; top:10px; right:10px;
  background:rgba(0,0,0,.55); color:#fff; font-weight:600; font-size:.64rem;
  padding:3px 8px; border-radius:11px; backdrop-filter:blur(2px);
}

.ig__actions{ display:flex; align-items:center; justify-content:space-between; padding:8px 13px 4px; }
.ig__left{ display:flex; align-items:center; gap:15px; }
.ig__icon{ display:block; }
.ig__likes{ padding:0 14px; font-weight:600; margin-bottom:5px; }
.ig__caption{ padding:0 14px; }
.ig__caption b{ font-weight:600; margin-inline-end:5px; }
.ig__time{ padding:0 14px 14px; margin-top:7px; color:#a8a8a8; font-size:.62rem; letter-spacing:.02em; }

/* gentle reveal + a little heart-beat on the like when the card scrolls in */
.ig{ opacity:0; transform:translateY(16px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.showcase.is-on .ig{ opacity:1; transform:none; }
.showcase.is-on .ig__icon--like{ animation:igLike .6s var(--ease) .5s both; transform-origin:center; }
@keyframes igLike{ 0%{ transform:scale(1); } 40%{ transform:scale(1.28); } 70%{ transform:scale(.94); } 100%{ transform:scale(1); } }

/* ---- Apollo OS screenshot (card 3) — plain image, no browser chrome ---- */
.showcase__os{ grid-column:1; display:grid; place-items:center; }
.os-shot{
  /* landscape shot — allow it to grow a bit past its column (into the gap,
     not the copy) so it reads larger than the old 540px Safari frame */
  width:min(122%,620px); line-height:0;
  border-radius:16px; overflow:hidden;
  box-shadow:0 40px 80px -28px rgba(0,0,0,.6);
}
.os-shot img{ width:100%; height:auto; display:block; }

.os-shot{ opacity:0; transform:translateY(16px) scale(.985); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.showcase.is-on .os-shot{ opacity:1; transform:none; }

/* staggered reveal once the showcase scrolls into view */
.showcase.is-on .wa__msg{ opacity:1; transform:none; }
.showcase.is-on .wa__msg:nth-child(1){ transition-delay:.20s; }
.showcase.is-on .wa__msg:nth-child(2){ transition-delay:.75s; }
.showcase.is-on .wa__msg:nth-child(3){ transition-delay:1.35s; }
.showcase.is-on .wa__msg:nth-child(4){ transition-delay:1.95s; }
.showcase.is-on .wa__msg:nth-child(5){ transition-delay:2.55s; }
.showcase.is-on .wa__msg:nth-child(6){ transition-delay:3.15s; }
/* "typing…" disappears once the conversation has played out */
.showcase.is-on .wa__status{ animation:waOnline 0s linear 3.3s forwards; }
@keyframes waOnline{ to{ font-size:0; } }

@media(max-width:860px){
  .showcase__inner{ grid-template-columns:1fr; gap:clamp(28px,6vw,40px); text-align:center;
    padding:clamp(34px,8vw,56px) clamp(12px,3.5vw,20px); }   /* tighter side padding so the min-width mockups fit */
  .showcase__phone, .showcase__post, .showcase__os{ grid-column:auto; order:1; }
  .showcase__copy{ grid-column:auto; order:2; max-width:none; text-align:center; }
  .showcase__copy .section-kicker{ text-align:center; }
  .os-shot{ width:100%; }
}

/* =====================================================================
   06 · START A PROCESS — toggle
   ===================================================================== */
.start{ background:var(--paper); padding:clamp(110px,16vh,180px) var(--pad-x); overflow:hidden; }
.start__head{ text-align:center; max-width:760px; margin:0 auto clamp(48px,7vh,72px); }
.start__head .section-kicker{ text-align:center; }
.start__title{ font-size:clamp(2rem,4.6vw,3.2rem); margin-bottom:2.2rem; }

.toggle{
  position:relative; display:inline-flex; gap:4px; padding:5px;
  background:var(--mist); border-radius:999px; border:1px solid var(--line);
}
.toggle__pill{
  position:absolute; top:5px; bottom:5px; inset-inline-start:5px; width:calc(50% - 7px);
  background:var(--ink); border-radius:999px; transition:transform .45s var(--ease);
  z-index:0;
}
.toggle__btn{
  position:relative; z-index:1; border:0; background:transparent; cursor:pointer;
  font-family:var(--display); font-weight:600; font-size:1rem;
  padding:.7rem 1.6rem; border-radius:999px; color:var(--ink);
  transition:color .35s; white-space:nowrap;
}
.toggle__btn.is-active{ color:#fff; }

.start__cards{ position:relative; max-width:680px; margin:0 auto; min-height:480px; }
.start-card{
  position:absolute; inset:0;
  background:var(--paper); border:1px solid var(--line); border-radius:28px;
  padding:clamp(30px,4vw,52px);
  transform-origin:center;
  transition:transform .6s var(--ease), opacity .6s var(--ease),
             filter .6s var(--ease), box-shadow .6s var(--ease);
  /* unfocused state: pushed to the side, smaller, blurred, sitting behind */
  transform:translateX(-22%) scale(.88) rotate(-2.5deg);
  opacity:.5; filter:blur(4px); z-index:1; cursor:pointer;
  box-shadow:0 26px 60px -44px rgba(10,20,30,.3);
}
.start-card.is-active{
  position:relative; z-index:3; cursor:default;
  transform:none; opacity:1; filter:none;
  box-shadow:0 50px 100px -38px rgba(10,40,40,.34);
}
.start-card__tag{
  display:inline-block; font-family:var(--display); font-weight:600; font-size:.78rem;
  letter-spacing:.04em; color:var(--accent-2);
  background:rgba(18,217,196,.10); border:1px solid rgba(18,217,196,.25);
  padding:.35rem .9rem; border-radius:999px; margin-bottom:1.4rem;
}
.start-card h3{ font-size:clamp(1.7rem,3vw,2.4rem); margin-bottom:.6rem; }
.start-card__sub{ color:var(--muted); font-size:1.1rem; margin-bottom:1.6rem; }
.start-card ul{ list-style:none; margin-bottom:2.2rem; }
.start-card li{ position:relative; padding-right:1.8rem; margin-bottom:.85rem; color:#2A2D33; font-size:1.05rem; }
.start-card li::before{
  content:""; position:absolute; right:0; top:.62em; width:8px; height:8px;
  border-radius:50%; background:var(--accent);
}

/* mobile: the stacked / rotated / blurred back-card peeks past the screen
   edge and the fixed 480px frame leaves dead space. Collapse to a single,
   full-width card — the toggle above still swaps which one is shown. */
@media(max-width:600px){
  .start__cards{ min-height:0; }
  .start-card{
    position:relative; inset:auto;
    transform:none; opacity:1; filter:none; cursor:default;
    box-shadow:0 26px 60px -44px rgba(10,20,30,.3);
  }
  .start-card:not(.is-active){ display:none; }
  .toggle__btn{ padding:.7rem 1.1rem; font-size:.95rem; }
}

/* =====================================================================
   07 · CONTACT — black
   ===================================================================== */
.contact{ background:var(--void); color:#fff; padding:clamp(110px,16vh,180px) var(--pad-x); }
.contact__inner{
  max-width:var(--maxw); margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr; gap:clamp(40px,6vw,90px); align-items:center;
}
.contact__title{ font-size:clamp(2.2rem,5vw,3.8rem); margin-bottom:1.4rem; }
.contact__sub{ color:var(--muted-d); font-size:clamp(1.05rem,1.6vw,1.25rem); max-width:36ch; }

.contact__form{ display:flex; flex-direction:column; gap:18px; }
.field{ position:relative; }
.field input, .field textarea{
  width:100%; background:rgba(255,255,255,.04);
  border:1px solid var(--line-d); border-radius:16px;
  padding:1.3rem 1.2rem .6rem; color:#fff;
  font-family:var(--body); font-size:1.05rem; resize:vertical;
  transition:border-color .3s, background .3s;
}
.field textarea{ padding-top:1.5rem; min-height:104px; }
.field input:focus, .field textarea:focus{ outline:none; border-color:var(--accent); background:rgba(18,217,196,.05); }
.field label{
  position:absolute; right:1.2rem; top:1.05rem; color:var(--muted-d);
  font-size:1.05rem; pointer-events:none; transform-origin:right top;
  transition:transform .25s var(--ease), color .25s;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label{
  transform:translateY(-.7rem) scale(.74); color:var(--accent);
}
.field__opt{ opacity:.6; }
.contact__wa{
  text-align:center; margin-top:.4rem; color:var(--muted-d);
  font-family:var(--display); font-weight:500; transition:color .25s; text-decoration:underline; text-underline-offset:3px;
}
.contact__wa:hover{ color:var(--accent); }
.contact__status{ text-align:center; font-size:.95rem; min-height:1.2em; color:var(--accent); }

@media(max-width:860px){
  .contact__inner{ grid-template-columns:1fr; }
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer{ background:#000; color:rgba(255,255,255,.7); padding:clamp(60px,9vh,90px) var(--pad-x) 36px; }
.footer__grid{
  max-width:var(--maxw); margin:0 auto;
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; align-items:start;
}
.footer__logo{ height:42px; width:auto; margin-bottom:1.2rem; opacity:.95; }
.footer__rights{ font-size:.85rem; color:rgba(255,255,255,.5); }
.footer__col{ display:flex; flex-direction:column; gap:.85rem; }
.footer__col a{ font-size:.98rem; color:rgba(255,255,255,.72); transition:color .25s; width:fit-content; }
.footer__col a:hover{ color:var(--accent); }
.footer__social-title{ font-family:var(--display); font-weight:600; margin-bottom:1.1rem; color:#fff; }
.footer__icons{ display:flex; gap:14px; }
.footer__icons a{
  width:40px; height:40px; border-radius:50%; border:1px solid rgba(255,255,255,.16);
  display:grid; place-items:center; color:rgba(255,255,255,.8);
  transition:border-color .25s, color .25s, transform .25s;
}
.footer__icons a:hover{ border-color:var(--accent); color:var(--accent); transform:translateY(-3px); }
.footer__sub{
  max-width:var(--maxw); margin:clamp(40px,6vh,64px) auto 0; padding-top:24px;
  border-top:1px solid rgba(255,255,255,.10);
  font-size:.85rem; color:rgba(255,255,255,.5);
}
.footer__credit strong{ color:rgba(255,255,255,.8); font-family:var(--display); font-weight:600; }
@media(max-width:860px){
  .footer__grid{ grid-template-columns:1fr 1fr; gap:34px; }
  .footer__brand{ grid-column:1 / -1; }
}
@media(max-width:520px){
  .footer__grid{ grid-template-columns:1fr; }
}

/* =====================================================================
   BLOCK REVEAL — a panel wipes in to "deliver" the heading, then
   wipes out leaving the text behind it
   ===================================================================== */
.block-reveal{ position:relative; display:inline-block; overflow:hidden; vertical-align:top; }
.block-reveal .br-text{ display:inline-block; opacity:0; }
.block-reveal .br-cover{
  position:absolute; inset:-8% -2%;
  transform:scaleX(0); transform-origin:right center;
  z-index:2; pointer-events:none;
  background:var(--ink);
}
.br-cover--void{ background:var(--void); }
.br-cover--void::after{ background:var(--accent); }
/* thin leading edge so the panel reads as a solid object in motion */
.block-reveal .br-cover::after{
  content:""; position:absolute; top:0; bottom:0; inset-inline-start:0;
  width:3px; background:var(--accent);
  box-shadow:0 0 18px 1px var(--accent-glow);
}
.br-cover--accent{ background:var(--accent); }
.br-cover--accent::after{ background:var(--ink); box-shadow:none; }
.br-cover--light{ background:#fff; }
.br-cover--light::after{ background:var(--accent); box-shadow:none; }

/* =====================================================================
   reveal util + reduced motion
   ===================================================================== */
[data-reveal]{ opacity:0; transform:translateY(26px); }
[data-rise]{ opacity:0; transform:translateY(115%); }
[data-block-reveal]{ opacity:0; } /* hidden until JS wraps + animates */

/* Animations are forced on for every visitor — the reduced-motion
   static fallback was intentionally removed so the site looks the
   same on every machine regardless of OS "reduce motion" settings. */
