/* ============================================================
   Focuscare — "From hello to follow-up, handled"
   Warm wellness-clinic art direction.
   Poppins (headings) + Inter (body). Coral / sage / cream.
   ============================================================ */

:root {
  --cream:      #FBF7F2;
  --cream-deep: #F6EEE4;
  --surface:    #FFFFFF;
  --ink:        #2A2420;
  --ink-soft:   #4A4038;
  --secondary:  #7A6E64;
  --hairline:   #EFE7DD;
  --hairline-2: #E7DCCE;

  --coral:      #F26D5B;
  --coral-hover:#E0503B;
  --coral-tint: #FCE7E2;
  --sage:       #6B9080;
  --sage-tint:  #E4EEE9;
  --peach:      #FBD9BE;
  --peach-tint: #FDEEDF;

  --shadow-sm: 0 1px 2px rgba(42,36,32,.05), 0 2px 6px rgba(42,36,32,.04);
  --shadow-md: 0 4px 12px rgba(42,36,32,.06), 0 12px 30px rgba(42,36,32,.07);
  --shadow-lg: 0 10px 24px rgba(42,36,32,.08), 0 28px 60px rgba(42,36,32,.12);
  --shadow-coral: 0 10px 26px rgba(242,109,91,.28);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-pill: 999px;

  --maxw: 1140px;
  --gutter: clamp(20px, 5vw, 56px);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }

::selection { background: var(--coral-tint); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: .55em;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.section { padding-block: clamp(64px, 9vw, 128px); }
.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head h2 {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  margin-top: .5rem;
}
.section-head p {
  margin-top: 1.1rem;
  color: var(--secondary);
  font-size: 1.08rem;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .98rem;
  letter-spacing: -0.01em;
  padding: .85em 1.5em;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: var(--shadow-coral);
}
.btn-primary:hover { background: var(--coral-hover); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(242,109,91,.36); }
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--hairline-2);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--coral); color: var(--coral-hover); transform: translateY(-2px); }
.btn-lg { padding: 1em 1.7em; font-size: 1.02rem; }

@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
}

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: saturate(140%) blur(12px);
  background: rgba(251,247,242,.78);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--hairline);
  background: rgba(251,247,242,.92);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 11px;
  background: linear-gradient(140deg, var(--coral), #F79178);
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(242,109,91,.35);
  flex: none;
}
.brand-mark svg { width: 20px; height: 20px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: .95rem;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--coral-hover); }

.nav-right { display: flex; align-items: center; gap: 1.1rem; }
.built-by {
  display: inline-flex;
  align-items: center;
  gap: .35em;
  font-size: .82rem;
  color: var(--secondary);
  font-weight: 500;
  padding: .4em .8em;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline-2);
  background: var(--surface);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.built-by:hover { border-color: var(--sage); color: var(--sage); }
.built-by svg { width: 12px; height: 12px; }

.nav-cta { display: none; }
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }

@media (max-width: 899px) {
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .built-by .built-full { display: none; }
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  padding-top: clamp(48px, 8vw, 92px);
  padding-bottom: clamp(56px, 9vw, 120px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bg::before {
  content: "";
  position: absolute;
  top: -18%; right: -8%;
  width: 620px; height: 620px;
  background: radial-gradient(circle at center, rgba(242,109,91,.16), transparent 62%);
  filter: blur(8px);
}
.hero-bg::after {
  content: "";
  position: absolute;
  bottom: -22%; left: -12%;
  width: 560px; height: 560px;
  background: radial-gradient(circle at center, rgba(107,144,128,.14), transparent 62%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(40px, 6vw, 64px);
  align-items: center;
}
@media (min-width: 980px) {
  .hero-inner { grid-template-columns: 1.02fr 1fr; }
}

.hero-copy { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: .84rem;
  font-weight: 500;
  color: var(--sage);
  background: var(--sage-tint);
  padding: .5em 1em;
  border-radius: var(--r-pill);
  margin-bottom: 1.4rem;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 0 rgba(107,144,128,.5);
  animation: pulse-dot 2.6s var(--ease) infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(107,144,128,.45); }
  70% { box-shadow: 0 0 0 9px rgba(107,144,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(107,144,128,0); }
}
h1.hero-title {
  font-size: clamp(2.5rem, 6.4vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
h1.hero-title .accent {
  color: var(--coral);
  position: relative;
  white-space: nowrap;
}
.hero-lead {
  margin-top: 1.5rem;
  font-size: clamp(1.06rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 30em;
}
.hero-actions {
  margin-top: 2.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}
.hero-note {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: .5em;
  font-size: .9rem;
  color: var(--secondary);
}
.hero-note svg { width: 16px; height: 16px; color: var(--sage); flex: none; }

/* ---- Signature "consultation flow" visual ---- */
.flow {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  padding: clamp(22px, 3.4vw, 34px);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.flow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(251,247,242,.5));
  pointer-events: none;
}
.flow-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.flow-head .lbl {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .82rem;
  color: var(--secondary);
  letter-spacing: .02em;
}
.flow-timer {
  font-family: var(--font-head);
  font-variant-numeric: tabular-nums;
  font-size: .8rem;
  color: var(--sage);
  background: var(--sage-tint);
  padding: .25em .7em;
  border-radius: var(--r-pill);
}

/* flow step base for reveal choreography */
.flow-step {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.flow.play .flow-step { opacity: 1; transform: none; }
.flow.play .flow-step[data-step="1"] { transition-delay: .15s; }
.flow.play .flow-step[data-step="2"] { transition-delay: 1.0s; }
.flow.play .flow-step[data-step="3"] { transition-delay: 1.9s; }
.flow.play .flow-step[data-step="4"] { transition-delay: 2.9s; }

/* Start pill */
.step-start {
  position: relative;
  display: flex;
  align-items: center;
  gap: .8rem;
  background: var(--coral);
  color: #fff;
  border-radius: var(--r-pill);
  padding: .9rem 1.2rem;
  font-family: var(--font-head);
  font-weight: 500;
  box-shadow: var(--shadow-coral);
  overflow: hidden;
}
.step-start .play-ico {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  display: grid; place-items: center;
  flex: none;
}
.step-start .play-ico svg { width: 14px; height: 14px; }
.step-start .ripple {
  position: absolute;
  left: 26px; top: 50%;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.7);
  transform: translate(-50%,-50%) scale(.4);
  opacity: 0;
}
.flow.play .step-start .ripple {
  animation: ripple 2.6s var(--ease-out) .6s infinite;
}
@keyframes ripple {
  0% { transform: translate(-50%,-50%) scale(.4); opacity: .7; }
  100% { transform: translate(-50%,-50%) scale(3.4); opacity: 0; }
}

/* Transcript strip */
.step-transcript {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 1rem 1.1rem;
}
.step-transcript .cap {
  display: flex; align-items: center; gap: .5em;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--secondary);
  margin-bottom: .7rem;
}
.wave {
  display: inline-flex; align-items: center; gap: 2px; height: 12px; margin-left: auto;
}
.wave i {
  width: 3px; border-radius: 2px; background: var(--coral);
  height: 40%;
}
.flow.play .wave i { animation: wave 1.1s var(--ease) infinite; }
.wave i:nth-child(2){ animation-delay:.12s } .wave i:nth-child(3){ animation-delay:.24s }
.wave i:nth-child(4){ animation-delay:.36s } .wave i:nth-child(5){ animation-delay:.48s }
@keyframes wave { 0%,100%{ height:25% } 50%{ height:100% } }

.tline { display: flex; gap: .6rem; font-size: .86rem; margin-top: .5rem; }
.tline .who {
  font-weight: 600; color: var(--sage); flex: none; min-width: 62px;
}
.tline.pt .who { color: var(--coral-hover); }
.tline .txt { color: var(--ink-soft); }

/* SOAP note card */
.step-soap {
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-md);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-sm);
}
.step-soap .cap {
  display: flex; align-items: center; gap: .5em;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sage); margin-bottom: .8rem;
}
.step-soap .cap svg { width: 14px; height: 14px; }
.soap-rows { display: grid; gap: .55rem; }
.soap-row { display: flex; align-items: baseline; gap: .7rem; font-size: .86rem; }
.soap-row .k {
  font-family: var(--font-head); font-weight: 600; color: var(--coral);
  width: 20px; flex: none; text-align: center;
  background: var(--coral-tint); border-radius: 6px; font-size: .8rem;
  line-height: 1.5;
}
.soap-row .v { color: var(--ink-soft); }

/* Follow-up chip */
.step-followup {
  display: flex; align-items: center; gap: .8rem;
  background: var(--sage-tint);
  border: 1px solid #d5e4dd;
  border-radius: var(--r-md);
  padding: .85rem 1rem;
}
.step-followup .fu-ico {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--sage); color: #fff; display: grid; place-items: center; flex: none;
}
.step-followup .fu-ico svg { width: 18px; height: 18px; }
.step-followup .fu-txt { font-size: .85rem; }
.step-followup .fu-txt strong { font-family: var(--font-head); font-weight: 600; display: block; color: var(--ink); }
.step-followup .fu-txt span { color: var(--secondary); }
.fu-channels { margin-left: auto; display: flex; gap: .4rem; }
.fu-channels i {
  width: 26px; height: 26px; border-radius: 8px; background: #fff;
  border: 1px solid #d5e4dd; display: grid; place-items: center; color: var(--sage);
}
.fu-channels i svg { width: 14px; height: 14px; }

/* connector line down the flow */
.flow-step[data-step]:not(:last-child)::after { }

/* ---------------- Trust band ---------------- */
.band {
  background: var(--surface);
  border-block: 1px solid var(--hairline);
}
.band-grid {
  display: grid;
  gap: 1.5rem;
  padding-block: clamp(40px, 6vw, 64px);
}
@media (min-width: 760px) { .band-grid { grid-template-columns: repeat(3,1fr); gap: 2.5rem; } }
.band-item { display: flex; gap: 1rem; align-items: flex-start; }
.band-item .ico {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  display: grid; place-items: center;
}
.band-item .ico svg { width: 22px; height: 22px; }
.band-item:nth-child(1) .ico { background: var(--coral-tint); color: var(--coral-hover); }
.band-item:nth-child(2) .ico { background: var(--sage-tint); color: var(--sage); }
.band-item:nth-child(3) .ico { background: var(--peach-tint); color: #C67B3E; }
.band-item h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.band-item p { font-size: .95rem; color: var(--secondary); }

/* ---------------- How a session runs ---------------- */
.steps {
  display: grid;
  gap: 1.2rem;
  counter-reset: step;
}
@media (min-width: 860px) { .steps { grid-template-columns: repeat(4,1fr); } }
.step-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-card .num {
  counter-increment: step;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  color: var(--coral);
  display: inline-flex; align-items: center; gap: .5em;
  margin-bottom: 1rem;
}
.step-card .num::before {
  content: "0" counter(step);
  background: var(--coral-tint);
  border-radius: 8px;
  padding: .25em .55em;
  font-variant-numeric: tabular-nums;
}
.step-card .s-ico {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--cream); border: 1px solid var(--hairline);
  display: grid; place-items: center; color: var(--ink);
  margin-bottom: 1rem;
}
.step-card .s-ico svg { width: 20px; height: 20px; }
.step-card h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.step-card p { font-size: .92rem; color: var(--secondary); }
/* connector arrow */
@media (min-width: 860px) {
  .step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%; right: -0.85rem;
    width: 12px; height: 12px;
    border-top: 2px solid var(--hairline-2);
    border-right: 2px solid var(--hairline-2);
    transform: translateY(-50%) rotate(45deg);
    z-index: 1;
  }
}

/* ---------------- Follow-ups feature (split) ---------------- */
.split {
  display: grid;
  gap: clamp(36px, 5vw, 60px);
  align-items: center;
}
@media (min-width: 920px) { .split { grid-template-columns: 1fr 1fr; } }
.split.reverse .split-media { order: -1; }
@media (min-width: 920px) { .split.reverse .split-media { order: 0; } }

.split-copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.split-copy > p { margin-top: 1.1rem; color: var(--secondary); font-size: 1.06rem; }
.feature-list { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.feature-list li { display: flex; gap: .9rem; align-items: flex-start; }
.feature-list .chk {
  width: 26px; height: 26px; border-radius: 8px; flex: none;
  background: var(--sage-tint); color: var(--sage);
  display: grid; place-items: center;
}
.feature-list .chk svg { width: 15px; height: 15px; }
.feature-list strong { font-family: var(--font-head); font-weight: 600; color: var(--ink); display: block; font-size: 1rem; }
.feature-list span { color: var(--secondary); font-size: .95rem; }

/* reminder chips visual */
.reminder-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  padding: clamp(22px,3vw,30px);
  box-shadow: var(--shadow-lg);
}
.reminder-card .rc-head {
  display: flex; align-items: center; gap: .7rem; margin-bottom: 1.3rem;
  padding-bottom: 1.1rem; border-bottom: 1px solid var(--hairline);
}
.reminder-card .rc-head .plan-ico {
  width: 40px; height: 40px; border-radius: 11px; flex: none;
  background: var(--coral-tint); color: var(--coral-hover); display: grid; place-items: center;
}
.reminder-card .rc-head .plan-ico svg { width: 20px; height: 20px; }
.reminder-card .rc-head h3 { font-size: 1.05rem; }
.reminder-card .rc-head p { font-size: .84rem; color: var(--secondary); }
.chips { display: grid; gap: .8rem; }
.chip {
  display: flex; align-items: center; gap: .8rem;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: .8rem .9rem;
}
.chip .c-ico {
  width: 34px; height: 34px; border-radius: 10px; flex: none;
  display: grid; place-items: center;
}
.chip.sms .c-ico { background: var(--sage-tint); color: var(--sage); }
.chip.email .c-ico { background: var(--peach-tint); color: #C67B3E; }
.chip.miss .c-ico { background: var(--coral-tint); color: var(--coral-hover); }
.chip .c-ico svg { width: 17px; height: 17px; }
.chip .c-body { flex: 1; min-width: 0; }
.chip .c-body strong { font-family: var(--font-head); font-weight: 600; font-size: .9rem; display: block; }
.chip .c-body span { font-size: .8rem; color: var(--secondary); }
.chip .c-tag {
  font-size: .68rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  padding: .3em .6em; border-radius: var(--r-pill); flex: none;
}
.chip.sms .c-tag, .chip.email .c-tag { background: var(--sage-tint); color: var(--sage); }
.chip.miss .c-tag { background: var(--coral-tint); color: var(--coral-hover); }

/* ---------------- Product tour (screenshots) ---------------- */
.tour { background: var(--surface); border-block: 1px solid var(--hairline); }
.shot { margin-top: clamp(28px, 4vw, 44px); }
.shot + .shot { margin-top: clamp(40px, 6vw, 72px); }
.shot-frame {
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline-2);
  background: var(--cream);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.browser-bar {
  display: flex; align-items: center; gap: .5rem;
  padding: .7rem 1rem;
  background: var(--cream-deep);
  border-bottom: 1px solid var(--hairline);
}
.browser-bar .dots { display: flex; gap: 6px; }
.browser-bar .dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--hairline-2); }
.browser-bar .dots i:nth-child(1){ background:#F0A79A }
.browser-bar .dots i:nth-child(2){ background:#F6D08A }
.browser-bar .dots i:nth-child(3){ background:#9FC7B4 }
.browser-bar .url {
  margin-left: .6rem;
  font-size: .78rem; color: var(--secondary);
  background: var(--surface);
  border: 1px solid var(--hairline);
  padding: .3em .9em; border-radius: var(--r-pill);
  font-family: var(--font-body);
  display: inline-flex; align-items: center; gap: .45em;
}
.browser-bar .url svg { width: 12px; height: 12px; color: var(--sage); }
.shot-frame img { width: 100%; display: block; }
.shot-cap {
  margin-top: 1.1rem;
  display: flex; gap: .7rem; align-items: flex-start;
  max-width: 620px;
}
.shot-cap .cap-num {
  font-family: var(--font-head); font-weight: 600; font-size: .78rem;
  color: var(--coral); background: var(--coral-tint);
  padding: .3em .6em; border-radius: 8px; flex: none;
}
.shot-cap p { font-size: .96rem; color: var(--ink-soft); }
.shot-cap strong { font-family: var(--font-head); color: var(--ink); font-weight: 600; }

@media (min-width: 900px) {
  .shot-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(24px,3vw,40px); align-items: center; }
  .shot-grid.rev .shot-cap-block { order: -1; }
  .shot-cap { margin-top: 0; flex-direction: column; }
}
.shot-cap-block .eyebrow { margin-bottom: .8rem; }
.shot-cap-block h3 { font-size: clamp(1.3rem,2.4vw,1.7rem); margin-bottom: .7rem; }
.shot-cap-block p { color: var(--secondary); font-size: 1rem; }

/* ---------------- Feature grid ---------------- */
.fgrid {
  display: grid;
  gap: 1.2rem;
}
@media (min-width: 680px) { .fgrid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px) { .fgrid { grid-template-columns: repeat(3,1fr); } }
.fcard {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 1.7rem 1.5rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--hairline-2); }
.fcard .f-ico {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--cream); border: 1px solid var(--hairline);
  display: grid; place-items: center; color: var(--coral-hover);
  margin-bottom: 1.2rem;
}
.fcard .f-ico svg { width: 23px; height: 23px; }
.fcard h3 { font-size: 1.14rem; margin-bottom: .5rem; }
.fcard p { font-size: .94rem; color: var(--secondary); }

/* ---------------- Day band ---------------- */
.day {
  background: linear-gradient(160deg, #2E2823, #3A322B);
  color: var(--cream);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.day::before {
  content: ""; position: absolute; top: -30%; right: -10%;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(242,109,91,.28), transparent 62%);
  pointer-events: none;
}
.day::after {
  content: ""; position: absolute; bottom: -34%; left: -8%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(107,144,128,.24), transparent 64%);
  pointer-events: none;
}
.day-inner { position: relative; z-index: 1; max-width: 760px; }
.day .eyebrow { color: #F79178; }
.day .eyebrow::before { background: #F79178; }
.day h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); margin-top: .6rem; }
.day > .day-inner > p { margin-top: 1.2rem; color: rgba(251,247,242,.78); font-size: 1.1rem; }
.day-points {
  margin-top: 2.4rem;
  display: grid; gap: 1.6rem;
}
@media (min-width: 720px) { .day-points { grid-template-columns: repeat(3,1fr); } }
.day-point .dp-ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(251,247,242,.08);
  border: 1px solid rgba(251,247,242,.14);
  display: grid; place-items: center; color: #F79178;
  margin-bottom: 1rem;
}
.day-point .dp-ico svg { width: 21px; height: 21px; }
.day-point h3 { color: #fff; font-size: 1.1rem; margin-bottom: .4rem; }
.day-point p { color: rgba(251,247,242,.66); font-size: .93rem; }

/* ---------------- Tech chips ---------------- */
.tech { text-align: center; }
.tech .eyebrow { justify-content: center; }
.tech .eyebrow::before { display: none; }
.tech h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-top: .6rem; }
.tech p { color: var(--secondary); margin-top: .9rem; max-width: 520px; margin-inline: auto; }
.chip-row {
  margin-top: 2.2rem;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem;
}
.tchip {
  display: inline-flex; align-items: center; gap: .55em;
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-pill);
  padding: .6em 1.15em;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .92rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.tchip:hover { transform: translateY(-3px); border-color: var(--coral); }
.tchip svg { width: 17px; height: 17px; color: var(--coral-hover); }

/* ---------------- CTA ---------------- */
.cta-wrap {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-wrap::before {
  content: ""; position: absolute; top: -40%; left: 50%;
  width: 620px; height: 500px; transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(242,109,91,.12), transparent 62%);
  pointer-events: none;
}
.cta-wrap .eyebrow { justify-content: center; }
.cta-wrap h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-top: .6rem; position: relative; }
.cta-wrap p { color: var(--secondary); margin-top: 1.1rem; font-size: 1.1rem; max-width: 34em; margin-inline: auto; position: relative; }
.cta-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; position: relative; }
.cta-alt { margin-top: 1.4rem; font-size: .9rem; color: var(--secondary); position: relative; }
.cta-alt a { color: var(--coral-hover); font-weight: 600; }
.cta-alt a:hover { text-decoration: underline; }

/* ---------------- Footer ---------------- */
.site-footer {
  border-top: 1px solid var(--hairline);
  background: var(--cream-deep);
  padding-block: clamp(48px, 6vw, 72px);
  margin-top: clamp(48px,7vw,96px);
}
.footer-top {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--hairline);
}
@media (min-width: 780px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { color: var(--secondary); font-size: .95rem; max-width: 32ch; }
.footer-col h4 {
  font-family: var(--font-head); font-size: .78rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--secondary); margin-bottom: 1rem; font-weight: 600;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.footer-col a { color: var(--ink-soft); font-size: .95rem; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--coral-hover); }
.footer-col a .ext { width: 12px; height: 12px; display: inline; vertical-align: -1px; opacity: .6; }

.footer-bottom {
  padding-top: 2rem;
  display: flex; flex-wrap: wrap; gap: 1.2rem;
  align-items: center; justify-content: space-between;
}
.footer-credit {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .9rem; color: var(--secondary);
}
.bs-lockup {
  display: inline-flex; align-items: center; gap: .45em;
  font-family: var(--font-head); font-weight: 600; color: var(--ink);
  padding: .35em .7em; border-radius: var(--r-pill);
  border: 1px solid var(--hairline-2); background: var(--surface);
  transition: border-color .2s var(--ease);
}
.bs-lockup:hover { border-color: var(--coral); }
.bs-lockup .bs { color: var(--coral-hover); }
.footer-tag { font-size: .88rem; color: var(--secondary); max-width: 44ch; }
.footer-legal { font-size: .82rem; color: var(--secondary); }

/* ---------------- Reveal animation ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .flow-step { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-badge .dot, .flow.play .wave i, .flow.play .step-start .ripple { animation: none !important; }
  * { scroll-behavior: auto !important; }
}

/* ---------------- Contact page ---------------- */
.page-hero {
  padding-top: clamp(48px, 7vw, 84px);
  padding-bottom: clamp(24px, 4vw, 44px);
}
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.03em; }
.page-hero p { margin-top: 1.2rem; color: var(--secondary); font-size: 1.12rem; max-width: 34em; }

.contact-grid {
  display: grid;
  gap: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(56px, 8vw, 100px);
  align-items: start;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.1fr .9fr; } }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-lg);
}
.field { margin-bottom: 1.3rem; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .92rem;
  margin-bottom: .5rem;
  color: var(--ink);
}
.field label .req { color: var(--coral); }
.field input, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-md);
  padding: .85em 1em;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #B3A89C; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: var(--surface);
  box-shadow: 0 0 0 4px var(--coral-tint);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-actions { margin-top: 1.6rem; }
.form-actions .btn { width: 100%; }
.form-reassure {
  margin-top: 1rem;
  font-size: .86rem; color: var(--secondary);
  display: flex; align-items: center; gap: .5em; justify-content: center;
}
.form-reassure svg { width: 15px; height: 15px; color: var(--sage); flex: none; }

.contact-aside { display: grid; gap: 1.2rem; }
.aside-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.aside-card .a-ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--coral-tint); color: var(--coral-hover);
  display: grid; place-items: center; margin-bottom: 1rem;
}
.aside-card:nth-child(2) .a-ico { background: var(--sage-tint); color: var(--sage); }
.aside-card .a-ico svg { width: 22px; height: 22px; }
.aside-card h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.aside-card p { color: var(--secondary); font-size: .94rem; }
.aside-card a.a-link {
  display: inline-flex; align-items: center; gap: .4em;
  margin-top: .8rem; color: var(--coral-hover); font-weight: 600; font-size: .95rem;
}
.aside-card a.a-link:hover { text-decoration: underline; }
.aside-card a.a-link svg { width: 14px; height: 14px; }

/* ---------------- Thank-you page ---------------- */
.thanks {
  min-height: 62vh;
  display: grid; place-items: center;
  text-align: center;
  padding-block: clamp(56px, 9vw, 120px);
}
.thanks-inner { max-width: 520px; }
.success-badge {
  width: 84px; height: 84px; margin: 0 auto 1.8rem;
  border-radius: 50%;
  background: var(--sage-tint);
  border: 1px solid #cfe1d9;
  display: grid; place-items: center;
  color: var(--sage);
  position: relative;
}
.success-badge::after {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 2px solid var(--sage-tint);
  animation: badge-pulse 2.8s var(--ease) infinite;
}
@keyframes badge-pulse { 0%{ transform: scale(.9); opacity:.7 } 100%{ transform: scale(1.25); opacity:0 } }
.success-badge svg { width: 40px; height: 40px; }
.thanks h1 { font-size: clamp(2rem, 4.6vw, 3rem); }
.thanks p { margin-top: 1.1rem; color: var(--secondary); font-size: 1.1rem; }
.thanks-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; }
.thanks-alt { margin-top: 1.4rem; font-size: .9rem; color: var(--secondary); }
.thanks-alt a { color: var(--coral-hover); font-weight: 600; }
.thanks-alt a:hover { text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
  .success-badge::after { animation: none; }
}

/* skip link */
.skip {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--coral); color: #fff; padding: .6em 1.1em; border-radius: var(--r-pill);
  font-weight: 600; font-size: .9rem;
}
.skip:focus { left: 12px; }
