/* ============================================================
   LAMINAR — design tokens + marketing site styles
   Coral-forward, bold & graphic. Bricolage Grotesque + Hanken Grotesk.
   ============================================================ */

:root {
  /* brand coral (sampled from logo #FC4557) */
  --coral:      #FB4357;
  --coral-600:  #EC3149;
  --coral-700:  #C9213B;
  --coral-300:  #FF99A4;
  --coral-100:  #FFE0E4;
  --coral-50:   #FFF1F2;

  /* warm neutrals */
  --ink:        #1C1418;
  --ink-700:    #463A3F;
  --ink-500:    #756468;
  --ink-300:    #B7A9AD;
  --line:       #EEE3E0;
  --paper:      #FFFCFB;
  --cream:      #FFF2EE;
  --cream-deep: #FCE9E3;

  /* semantic risk states */
  --ok:       #138a63;
  --ok-bg:    #E1F2EB;
  --watch:    #C9820A;
  --watch-bg: #FBEED4;
  --alert:    var(--coral-700);
  --alert-bg: #FFE3E6;

  --radius:   18px;
  --radius-lg: 28px;
  --radius-sm: 11px;
  --shadow-sm: 0 1px 2px rgba(28,20,24,.05), 0 6px 16px -10px rgba(28,20,24,.18);
  --shadow-md: 0 2px 4px rgba(28,20,24,.04), 0 24px 48px -22px rgba(201,33,59,.28);
  --shadow-lg: 0 40px 90px -40px rgba(201,33,59,.40);

  --maxw: 1180px;
  --font-display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.04; letter-spacing: -.02em; margin: 0; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
section { position: relative; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .55em;
  color: var(--coral-700);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--coral); border-radius: 2px;
}
.eyebrow.on-dark { color: #fff; }
.eyebrow.on-dark::before { background: #fff; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--coral); --fg: #fff;
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-body); font-weight: 700; font-size: 1.02rem;
  background: var(--bg); color: var(--fg);
  padding: 16px 26px; border-radius: 100px; border: 0; cursor: pointer;
  transition: transform .18s cubic-bezier(.2,.8,.2,1), box-shadow .2s, background .2s;
  box-shadow: 0 10px 24px -10px rgba(201,33,59,.6);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(201,33,59,.7); }
.btn:active { transform: translateY(0); }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }
.btn--ghost {
  --bg: transparent; --fg: var(--ink);
  box-shadow: inset 0 0 0 2px var(--line);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--coral); }
.btn--white { --bg: #fff; --fg: var(--coral-700); box-shadow: 0 12px 30px -12px rgba(0,0,0,.4); }
.btn--lg { padding: 19px 32px; font-size: 1.1rem; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-color: var(--line); }
.nav__in { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -.03em; }
.brand img { width: 34px; height: 34px; }
.nav__links { display: flex; gap: 34px; align-items: center; }
.nav__links a { font-weight: 600; font-size: .98rem; color: var(--ink-700); transition: color .15s; }
.nav__links a:hover { color: var(--coral-700); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__burger { display: none; }

/* ---------- hero ---------- */
.hero { background: var(--coral); color: #fff; overflow: hidden; padding: 64px 0 0; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(2.7rem, 6.2vw, 5.4rem); letter-spacing: -.035em; }
.hero h1 em { font-style: normal; color: var(--ink); }
.hero__lede { font-size: clamp(1.05rem, 1.5vw, 1.3rem); max-width: 30ch; margin-top: 26px; color: rgba(255,255,255,.92); }
.hero__cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero__trust { display: flex; gap: 10px; align-items: center; margin-top: 34px; font-size: .92rem; color: rgba(255,255,255,.85); }
.hero__pad { padding-bottom: 84px; }

/* flowing laminar streamlines (decorative) */
.streamlines { position: absolute; inset: 0; pointer-events: none; opacity: .5; }
.streamlines path { fill: none; stroke: #fff; stroke-width: 1.4; }

/* hero product card */
.phone {
  position: relative; z-index: 2;
  background: #fff; border-radius: 34px; padding: 14px;
  box-shadow: var(--shadow-lg);
  width: 330px; max-width: 100%; margin-inline: auto;
  color: var(--ink);
}
.phone__screen { background: var(--paper); border-radius: 24px; overflow: hidden; }

/* generic UI mock bits reused on marketing page */
.mock-head { display:flex; align-items:center; justify-content:space-between; padding: 16px 18px 12px; }
.mock-greet { font-weight: 700; font-family: var(--font-display); font-size: 1.05rem; }
.mock-sub { font-size: .76rem; color: var(--ink-500); }
.mock-av { width: 34px; height: 34px; border-radius: 50%; background: var(--cream-deep); display:grid; place-items:center; color: var(--coral-700); font-weight:800; font-size:.85rem; }

.bp-card { margin: 6px 14px 12px; background: var(--ink); color:#fff; border-radius: 18px; padding: 16px 18px; }
.bp-card .lab { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.bp-card .val { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; line-height: 1; margin-top: 6px; }
.bp-card .val span { font-size: 1rem; color: rgba(255,255,255,.55); font-weight: 600; }
.pill { display:inline-flex; align-items:center; gap:6px; font-size:.74rem; font-weight:700; padding:5px 11px; border-radius:100px; }
.pill.ok { background: var(--ok-bg); color: var(--ok); }
.pill.watch { background: var(--watch-bg); color: var(--watch); }
.pill.alert { background: var(--alert-bg); color: var(--alert); }
.pill.dot::before { content:""; width:7px; height:7px; border-radius:50%; background:currentColor; }

.sym-row { display:flex; gap:8px; flex-wrap:wrap; padding: 4px 14px 14px; }
.sym-chip { font-size:.78rem; font-weight:600; padding:8px 12px; border-radius:100px; background:var(--cream); color:var(--ink-700); border:1px solid var(--line); white-space:nowrap; }
.sym-chip.sel { background: var(--coral-50); border-color: var(--coral-300); color: var(--coral-700); }

/* ---------- generic section ---------- */
.sec { padding: 110px 0; }
.sec--cream { background: var(--cream); }
.sec--ink { background: var(--ink); color: #fff; }
.sec-head { max-width: 760px; }
.sec-head h2 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); }
.sec-head .eyebrow { margin-bottom: 22px; }
.sec-head p { color: var(--ink-500); font-size: 1.18rem; margin-top: 20px; }
.sec--ink .sec-head p { color: rgba(255,255,255,.72); }

/* big stat band */
.band { background: var(--ink); color:#fff; padding: 78px 0; }
.band__grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.stat .n { font-family: var(--font-display); font-weight:700; font-size: clamp(2.6rem,5vw,4.2rem); letter-spacing:-.03em; color: var(--coral-300); line-height:1; }
.stat .t { margin-top: 14px; color: rgba(255,255,255,.74); font-size: 1.02rem; max-width: 30ch; }
.band__note { margin-top: 40px; font-size:.85rem; color: rgba(255,255,255,.4); }

/* problem cards */
.prob-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 60px; }
.prob {
  background: var(--paper); border:1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .2s, box-shadow .2s;
}
.prob:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.prob .ico { width:48px; height:48px; border-radius: 13px; background: var(--coral-50); color: var(--coral-700); display:grid; place-items:center; margin-bottom: 20px; }
.prob h3 { font-size: 1.35rem; margin-bottom: 10px; }
.prob p { color: var(--ink-500); font-size: 1rem; }

/* solution split */
.split { display:grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items:center; }
.signal-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.signal {
  display:flex; align-items:center; gap: 13px; padding: 15px 16px;
  background: var(--paper); border:1px solid var(--line); border-radius: 14px; font-weight:600; font-size:.98rem;
  transition: border-color .2s, transform .2s;
}
.signal:hover { border-color: var(--coral-300); transform: translateX(3px); }
.signal .s-ico { width:34px;height:34px;border-radius:9px; display:grid;place-items:center; background:var(--coral-50); color:var(--coral-700); flex:none; }

/* how it works */
.steps { display:grid; grid-template-columns: repeat(5,1fr); gap: 0; margin-top: 64px; counter-reset: step; }
.step { padding: 0 22px; position: relative; }
.step:not(:last-child)::after {
  content:""; position:absolute; top: 26px; right: -1px; width: 100%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--coral-300) 0 7px, transparent 7px 14px);
  z-index: 0;
}
.step__num {
  width: 54px; height: 54px; border-radius: 50%; background: var(--coral); color:#fff;
  display:grid; place-items:center; font-family: var(--font-display); font-weight:700; font-size:1.3rem;
  position: relative; z-index: 1; margin-bottom: 22px; box-shadow: 0 10px 22px -10px rgba(201,33,59,.6);
}
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: .94rem; color: var(--ink-500); }

/* who it's for */
.who-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 56px; }
.who {
  border-radius: var(--radius-lg); padding: 44px; position:relative; overflow:hidden;
}
.who--moms { background: var(--coral); color:#fff; }
.who--teams { background: var(--ink); color:#fff; }
.who h3 { font-size: 1.9rem; margin-bottom: 8px; }
.who > p { opacity:.85; margin-bottom: 26px; }
.who ul { list-style:none; margin:0; padding:0; display:flex; flex-wrap:wrap; gap:10px; }
.who li { background: rgba(255,255,255,.16); padding: 9px 15px; border-radius: 100px; font-weight:600; font-size:.95rem; }
.who--moms li { background: rgba(255,255,255,.2); }

/* why it matters */
.why-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 56px; }
.why {
  display:flex; gap: 20px; padding: 30px; border-radius: var(--radius);
  background: var(--paper); border:1px solid var(--line);
}
.why .big { font-family: var(--font-display); font-weight:700; font-size: 2.4rem; color: var(--coral); line-height:1; flex:none; width: 86px; }
.why h3 { font-size: 1.2rem; margin-bottom: 6px; }
.why p { font-size:.98rem; color: var(--ink-500); }

/* about */
.about-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items:center; }
.about-cards { display:grid; gap: 16px; }
.about-card { padding: 26px 28px; border-radius: var(--radius); background: var(--paper); border:1px solid var(--line); }
.about-card h4 { font-size: 1.15rem; margin-bottom: 6px; }
.about-card p { color: var(--ink-500); font-size:.98rem; }

/* image placeholder slot */
.slot {
  position: relative; border-radius: var(--radius-lg); overflow:hidden;
  background-color: var(--cream-deep);
  background-image: repeating-linear-gradient(135deg, rgba(201,33,59,.07) 0 2px, transparent 2px 11px);
  display:grid; place-items:center; min-height: 320px; border:1px dashed var(--coral-300);
}
.slot__tag { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size:.78rem; color: var(--coral-700); background: rgba(255,255,255,.7); padding:7px 13px; border-radius: 100px; text-align:center; }

/* leadership / team */
.team-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 56px; }
.team-card {
  background: var(--paper); border:1px solid var(--line); border-radius: var(--radius-lg);
  padding: 42px 32px; text-align:center; transition: transform .2s, box-shadow .2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card .avatar {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 22px;
  display:grid; place-items:center; font-family: var(--font-display); font-weight:700;
  font-size: 1.75rem; letter-spacing: -.01em;
  background: var(--coral-50); color: var(--coral-700); border: 1.5px solid var(--coral-100);
  overflow: hidden;
}
.team-card .avatar img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
}
.team-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.team-card .role { color: var(--coral-700); font-weight:700; font-size:.8rem; letter-spacing:.12em; text-transform:uppercase; }

/* demo CTA */
.cta { background: var(--coral); color:#fff; border-radius: 36px; padding: 80px 64px; text-align:center; position:relative; overflow:hidden; }
.cta h2 { font-size: clamp(2.2rem,5vw,4rem); max-width: 16ch; margin-inline:auto; }
.cta p { max-width: 46ch; margin: 22px auto 38px; font-size: 1.2rem; color: rgba(255,255,255,.9); }
.cta__row { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* footer */
.foot { background: var(--ink); color: rgba(255,255,255,.7); padding: 72px 0 40px; }
.foot__top { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot__brand { display:flex; align-items:center; gap:11px; font-family:var(--font-display); font-weight:800; font-size:1.5rem; color:#fff; margin-bottom: 18px; }
.foot__brand img { width:32px; height:32px; }
.foot p.fdesc { max-width: 34ch; font-size:.96rem; }
.foot h5 { color:#fff; font-family: var(--font-body); font-size:.8rem; letter-spacing:.12em; text-transform:uppercase; margin: 0 0 16px; }
.foot ul { list-style:none; margin:0; padding:0; display:grid; gap:11px; }
.foot a { font-size:.96rem; transition: color .15s; }
.foot a:hover { color:#fff; }
.foot__bot { display:flex; justify-content:space-between; align-items:center; padding-top: 28px; font-size:.84rem; color: rgba(255,255,255,.45); flex-wrap:wrap; gap:14px; }
.foot__bot .disc { max-width: 60ch; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero__grid, .split, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .band__grid, .prob-grid, .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .who-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); gap: 18px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .step::after { display:none; }
  .nav__links { display:none; }
  .foot__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .sec { padding: 76px 0; }
  .wrap { padding-inline: 20px; }
  .steps { grid-template-columns: 1fr; }
  .cta { padding: 56px 26px; border-radius: 26px; }
  .foot__top { grid-template-columns: 1fr; }
  .hero { padding-top: 36px; }
}
