/* ============================================================
   design.osiris.one — trades-only web studio (an Osiris company)
   Static build. Brand tokens derived from the Osiris identity.
   ============================================================ */

:root {
  /* Brand orange */
  --orange:        #d9540b;   /* primary action */
  --orange-light:  #F98B33;
  --orange-deep:   #D8500A;
  --orange-core:   #F26F1C;   /* logo gradient core */

  /* Deepest-dark / midnight base (Osiris signature) */
  --ink:           #0d0d0f;
  --ink-2:         #15171C;

  /* Light neutrals (paper — DEFAULT theme) */
  --paper:         #f4f2ec;
  --surface:       #ffffff;
  --text:          #16150f;
  --text-2:        #46443b;
  --muted:         #6f6d63;
  --faint:         #a8a59b;
  --line:          #e4e1d8;
  --line-2:        #d8d4c8;

  --green:         #38C878;   /* live / available */

  --font-display:  'Space Grotesk', system-ui, sans-serif;
  --font-body:     'Hanken Grotesk', system-ui, sans-serif;
  --font-mono:     'Space Mono', ui-monospace, monospace;

  --maxw: 1180px;
}

/* MIDNIGHT (dark) theme — unlayered override, opt-in via html.dark */
html.dark {
  --paper:   #131316;
  --surface: #1a1a1f;
  --text:    #f4f3ef;
  --text-2:  #c8c7c1;
  --muted:   #9a9a94;
  --faint:   #6a6a64;
  --line:    rgba(255,255,255,.10);
  --line-2:  rgba(255,255,255,.16);
  --orange:  #ec5f0f;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);          /* behind any over-scroll matches page surface */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--orange); color: #fff; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* shared eyebrow / headings */
.eyebrow {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--orange-deep);
}
.eyebrow.on-dark { color: var(--orange-deep); }
.h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 4.2vw, 48px); line-height: 1.05;
  letter-spacing: -.01em; margin: 12px 0 0;
}
.lede { font-size: 18px; color: var(--muted); line-height: 1.55; margin: 16px 0 0; }

/* ---------- keyframes ---------- */
@keyframes irisGlow   { 0%,100%{opacity:.5} 50%{opacity:.95} }
@keyframes ringDrift  { to{transform:rotate(360deg)} }
@keyframes spinSlow   { to{transform:rotate(360deg)} }
@keyframes marquee    { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes ctaPulse   { 0%,100%{box-shadow:0 10px 28px rgba(239,94,14,.38)} 50%{box-shadow:0 16px 44px rgba(239,94,14,.62)} }
@keyframes livePulse  { 0%{box-shadow:0 0 0 0 rgba(56,200,120,.5)} 70%{box-shadow:0 0 0 8px rgba(56,200,120,0)} 100%{box-shadow:0 0 0 0 rgba(56,200,120,0)} }
@keyframes heroIn     { from{transform:translateY(24px);opacity:0} to{transform:none;opacity:1} }
@keyframes bgDrift    { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-2.5%,2%) scale(1.05)} }
@keyframes floaty     { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-11px)} }

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

/* focus visibility */
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(244,242,236,.82); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-in {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px; height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand .mark { width: 38px; height: auto; flex: none; }
.brand .lockup { display: flex; flex-direction: column; line-height: 1; }
.brand .name {
  font-family: var(--font-display); font-weight: 800; font-size: 23px;
  letter-spacing: -.02em; color: var(--text);
}
.brand .name b { color: var(--orange); font-weight: 800; }
.brand .sub {
  font-family: var(--font-mono); font-weight: 500; font-size: 9px;
  letter-spacing: .34em; color: var(--muted); margin-top: 5px;
}

.header-right { display: flex; align-items: center; gap: 16px; }

.navpill {
  position: relative; display: flex; align-items: center; gap: 2px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: 4px;
}
.navpill .ind {
  position: absolute; top: 4px; left: 4px; height: 34px; width: 0;
  border-radius: 10px; background: rgba(239,94,14,.16);
  border: 1px solid rgba(239,94,14,.34); opacity: 0;
  transition: left .3s cubic-bezier(.4,0,.2,1), width .3s cubic-bezier(.4,0,.2,1), opacity .22s;
  pointer-events: none; z-index: 0;
}
.navpill a {
  position: relative; z-index: 1; padding: 8px 15px; border-radius: 10px;
  font-weight: 600; font-size: 14.5px; color: var(--text-2);
  text-decoration: none; transition: color .2s;
}
.navpill a:hover { color: var(--text); }

.avail { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; padding: 0 2px; white-space: nowrap; }
.avail .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: livePulse 2s ease-out infinite; flex: none; }
.avail span.t { font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: .03em; color: var(--text-2); }

.btn-book {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px;
  color: #fff; text-decoration: none; background: var(--orange); padding: 11px 19px;
  border-radius: 12px; box-shadow: 0 6px 18px rgba(239,94,14,.34);
  transition: transform .18s, background .18s;
}
.btn-book:hover { background: var(--orange-deep); transform: translateY(-1px); }
.btn-book svg { width: 15px; height: 15px; }

.nav-toggle {
  width: 42px; height: 42px; display: none; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 11px; cursor: pointer; color: var(--text);
}
.nav-toggle svg { width: 20px; height: 20px; }

.mobile-menu { display: none; background: var(--paper); border-top: 1px solid var(--line); padding: 14px 24px 22px; }
.mobile-menu.open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a { font-weight: 600; font-size: 17px; color: var(--text); text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--line); }
.mobile-menu a.cta { margin-top: 12px; text-align: center; font-weight: 700; font-size: 16px; color: #fff; background: var(--orange); padding: 14px; border-radius: 13px; border: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--surface); color: var(--text); overflow: hidden; }
.hero .bg {
  position: absolute; inset: -10%;
  background: radial-gradient(60% 70% at 82% 30%, rgba(239,94,14,.13), transparent 62%),
              radial-gradient(50% 60% at 8% 100%, rgba(216,80,10,.07), transparent 60%);
  pointer-events: none; animation: bgDrift 20s ease-in-out infinite;
}
.spot { position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .35s ease; }
.hero .rings {
  position: absolute; right: -90px; top: 50%; transform: translateY(-50%);
  width: 620px; height: 620px; opacity: .4; pointer-events: none;
  animation: ringDrift 90s linear infinite;
}
.hero-in {
  position: relative; max-width: var(--maxw); margin: 0 auto; padding: 78px 24px 86px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 48px;
}
.hero-copy { flex: 1 1 460px; min-width: 300px; }
.hero-copy .eyebrow { animation: heroIn .7s both; }
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(38px, 5.6vw, 68px); line-height: 1.02; letter-spacing: -.01em;
  margin: 20px 0 0; animation: heroIn .8s .08s both;
}
.hero .lede { font-size: clamp(17px,1.9vw,20px); color: var(--muted); max-width: 50ch; margin: 22px 0 0; animation: heroIn .8s .16s both; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; animation: heroIn .8s .24s both; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 17px;
  color: #fff; text-decoration: none; background: var(--orange); padding: 16px 28px;
  border-radius: 15px; box-shadow: 0 10px 28px rgba(239,94,14,.38);
  transition: transform .2s, background .18s; animation: ctaPulse 3.4s ease-in-out infinite;
}
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px) scale(1.02); }
.btn-primary svg { width: 18px; height: 18px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 17px;
  color: var(--text); text-decoration: none; background: var(--surface);
  border: 1.5px solid var(--line-2); padding: 16px 26px; border-radius: 15px;
  transition: background .18s, border-color .18s, color .18s;
}
.btn-ghost:hover { background: var(--surface); border-color: var(--orange); color: var(--orange-deep); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 28px; font-size: 13.5px; font-weight: 600; color: var(--muted); animation: heroIn .8s .32s both; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust i { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); font-style: normal; }

.hero-visual { flex: 1 1 360px; min-width: 260px; display: flex; justify-content: center; align-items: center; position: relative; min-height: 330px; animation: heroIn .9s .2s both; }
.hero-visual .glow { position: absolute; width: 330px; height: 330px; border-radius: 50%; background: radial-gradient(circle, rgba(239,94,14,.2), transparent 66%); filter: blur(22px); animation: irisGlow 6s ease-in-out infinite; }
.hero-visual .orbit { position: absolute; width: 360px; height: 360px; opacity: .55; pointer-events: none; animation: spinSlow 30s linear infinite; }
.hero-visual .eye { position: relative; width: min(64vw, 360px); height: auto; filter: drop-shadow(0 12px 40px rgba(239,94,14,.22)); }
.search-card {
  position: absolute; left: 50%; bottom: -10px; transform: translateX(-50%); z-index: 4;
  width: min(88vw, 330px); background: var(--surface); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px); border: 1px solid var(--line);
  border-radius: 18px; padding: 14px 15px; box-shadow: 0 26px 60px rgba(20,18,10,.12);
  animation: floaty 6.5s ease-in-out infinite;
}
.search-card .bar { display: flex; align-items: center; gap: 10px; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px; }
.search-card .bar .q { font-size: 13.5px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: opacity .28s ease, transform .28s ease; }
.search-card .res { display: flex; align-items: center; gap: 11px; margin-top: 12px; }
.search-card .res .ic { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(135deg, var(--orange-light), var(--orange-deep)); display: flex; align-items: center; justify-content: center; flex: none; box-shadow: 0 6px 14px rgba(239,94,14,.4); }
.search-card .res .txt { flex: 1; min-width: 0; }
.search-card .res .txt .a { font-size: 12.5px; font-weight: 700; color: var(--text); line-height: 1.15; }
.search-card .res .txt .a em { color: var(--orange-deep); font-style: normal; }
.search-card .res .txt .b { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .08em; color: var(--muted); margin-top: 3px; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--paper); border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); padding: 15px 0; overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee .track { display: flex; width: max-content; animation: marquee 36s linear infinite; }
.marquee .grp { display: flex; align-items: center; }
.marquee .kw { font-family: var(--font-mono); font-size: 13px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding: 0 24px; white-space: nowrap; }
.marquee .sep { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); flex: none; }

/* ============================================================
   SECTIONS (light)
   ============================================================ */
.section { padding: clamp(64px, 8vw, 108px) 0; }
.section.light { background: var(--paper); }
.section.white { background: var(--surface); border-top: 1px solid var(--line); }

.sec-head { max-width: 640px; margin-bottom: 44px; }
.sec-head.wide { max-width: 680px; }

/* ---------- proof / work ---------- */
.work-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 44px; }
.work-head .col { max-width: 620px; }
.badge-live {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono);
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text); background: var(--surface); border: 1px solid var(--line); padding: 9px 15px;
  border-radius: 999px; white-space: nowrap;
}
.badge-live .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: livePulse 2s ease-out infinite; }

/* featured mobile-first card */
.feature {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px,4vw,52px); align-items: center; background: var(--surface); color: var(--text);
  border: 1px solid var(--line); border-radius: 26px; padding: clamp(30px,4vw,52px); margin-bottom: 30px; position: relative; overflow: hidden;
}
.feature .glow { position: absolute; inset: 0; background: radial-gradient(60% 90% at 88% 12%, rgba(239,94,14,.1), transparent 58%); pointer-events: none; }
.feature .col { position: relative; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono);
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange-deep); background: rgba(239,94,14,.12); border: 1px solid rgba(239,94,14,.3);
  padding: 7px 13px; border-radius: 999px;
}
.feature h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px,3.4vw,38px); line-height: 1.08; letter-spacing: -.01em; margin: 16px 0 0; }
.feature p { font-size: 17px; color: var(--muted); line-height: 1.55; margin: 14px 0 0; max-width: 42ch; }
.feature .demo-link {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 24px; font-weight: 700; font-size: 15.5px;
  color: #fff; text-decoration: none; background: var(--orange); padding: 13px 22px; border-radius: 13px;
  transition: background .18s, transform .18s;
}
.feature .demo-link:hover { background: var(--orange-deep); transform: translateY(-2px); }
.feature .demo-link svg { width: 16px; height: 16px; }
.feature .frame-col { position: relative; display: flex; justify-content: center; }

/* iPhone frame (ported from ios-frame.jsx) */
.iphone-scale { transform: scale(.86); transform-origin: center top; }
.iphone {
  width: 402px; height: 720px; border-radius: 48px; overflow: hidden; position: relative;
  background: #000; box-shadow: 0 40px 80px rgba(20,18,10,.18), 0 0 0 1px rgba(255,255,255,.06);
}
.iphone .island { position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 126px; height: 37px; border-radius: 24px; background: #000; z-index: 50; }
.iphone .statusbar {
  position: absolute; top: 0; left: 0; right: 0; height: 54px; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; padding: 20px 30px 0;
  pointer-events: none;
}
.iphone .statusbar .time { font-family: -apple-system, "SF Pro", system-ui; font-weight: 600; font-size: 16px; color: #fff; }
.iphone .statusbar .icons { display: flex; align-items: center; gap: 7px; }
.iphone .screen { position: absolute; inset: 0; padding-top: 54px; background: var(--surface); }
.iphone iframe { width: 402px; height: 666px; border: 0; display: block; pointer-events: none; background: #fff; }
.iphone .home-ind { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); width: 139px; height: 5px; border-radius: 100px; background: rgba(255,255,255,.7); z-index: 60; }

/* demo cards grid */
.demo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); gap: 26px; }
.demo-card {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  box-shadow: 0 1px 2px rgba(20,18,10,.04); transition: transform .22s, box-shadow .22s;
}
.demo-card:hover { transform: translateY(-6px); box-shadow: 0 26px 56px rgba(20,18,10,.16); }
.demo-card.placeholder { border-style: dashed; border-color: var(--line-2); }
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; background: var(--paper); border-bottom: 1px solid var(--line); }
.browser-bar .d { width: 11px; height: 11px; border-radius: 50%; }
.browser-bar .d.r { background: #E2554A; } .browser-bar .d.y { background: #F4B740; } .browser-bar .d.g { background: #3FB57A; }
.browser-bar .d.off { background: var(--line-2); }
.browser-bar .url { margin-left: 10px; flex: 1; font-family: var(--font-mono); font-size: 11px; color: var(--faint); background: var(--surface); border: 1px solid var(--line); border-radius: 7px; padding: 5px 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.live-wrap { height: 236px; position: relative; overflow: hidden; background: var(--surface); }
.live-wrap iframe { position: absolute; top: 0; left: 0; width: 1280px; height: 549px; border: 0; transform: scale(.4375); transform-origin: top left; pointer-events: none; }
.live-badge {
  position: absolute; top: 10px; right: 10px; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text); background: var(--surface); border: 1px solid var(--line); padding: 5px 9px; border-radius: 999px;
}
.live-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: livePulse 2s ease-out infinite; }
.demo-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.trade-tag { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.trade-tag.plumbing { color: #0E7C86; background: #E2F2F2; }
.trade-tag.electrical { color: #2438C2; background: #E8ECFD; }
.trade-tag.hvac { color: #A4684A; background: #FDF1E6; }
.sample-tag { font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); background: var(--paper); border: 1px solid var(--line); padding: 5px 10px; border-radius: 999px; }
.demo-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: -.01em; margin: 0; }
.demo-body p { font-size: 15.5px; color: var(--muted); margin: 8px 0 0; line-height: 1.5; }
.demo-body .go { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-weight: 700; font-size: 14.5px; color: var(--orange-deep); }
.demo-body .go svg { width: 15px; height: 15px; }
.demo-card.placeholder .live-wrap { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; background: linear-gradient(135deg, rgba(239,94,14,.08), var(--paper)); }
.demo-card.placeholder .go { color: var(--muted); }

/* ---------- problem ---------- */
.problem { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(56px,7vw,92px) 0; }
.problem .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; align-items: center; }
.problem h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px,3.8vw,42px); line-height: 1.08; letter-spacing: -.01em; margin: 12px 0 0; }
.problem .list { display: flex; flex-direction: column; gap: 18px; }
.problem .item { display: flex; gap: 14px; align-items: flex-start; }
.problem .item svg { width: 22px; height: 22px; flex: none; margin-top: 2px; color: var(--orange-deep); }
.problem .item p { font-size: 17px; color: var(--text-2); line-height: 1.5; }
.problem .item strong { color: var(--text); }

/* ---------- services / packages ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; align-items: stretch; }
.pkg { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 30px 28px; }
.pkg.dark { background: var(--surface); color: var(--text); border-color: var(--orange); position: relative; box-shadow: 0 24px 56px rgba(20,18,10,.12); }
.pkg .kicker { font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.pkg.dark .kicker { color: var(--orange-deep); }
.pkg h3 { font-family: var(--font-display); font-weight: 800; font-size: 27px; letter-spacing: -.01em; margin: 6px 0 0; }
.pkg.dark h3 { color: var(--text); }
.pkg .desc { font-size: 15px; color: var(--muted); margin: 10px 0 0; line-height: 1.5; }
.pkg.dark .desc { color: var(--muted); }
.pkg .rule { height: 1px; background: var(--line); margin: 22px 0; }
.pkg.dark .rule { background: var(--line); }
.pkg ul { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pkg li { display: flex; gap: 10px; font-size: 15px; color: var(--text-2); }
.pkg.dark li { color: var(--text-2); }
.pkg li svg { width: 18px; height: 18px; flex: none; margin-top: 1px; color: var(--orange); }
.pkg.dark li svg { color: var(--orange); }
.pkg .popular { position: absolute; top: -12px; left: 28px; font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: var(--orange); padding: 6px 13px; border-radius: 999px; box-shadow: 0 8px 18px rgba(239,94,14,.4); }
.pkg .cta { margin-top: 24px; text-align: center; font-weight: 700; font-size: 15.5px; text-decoration: none; padding: 13px; border-radius: 13px; transition: border-color .18s, background .18s; }
.pkg .cta.outline { color: var(--text); background: var(--surface); border: 1.5px solid var(--line-2); }
.pkg .cta.outline:hover { border-color: var(--orange); }
.pkg .cta.solid { color: #fff; background: var(--orange); padding: 14px; }
.pkg .cta.solid:hover { background: var(--orange-deep); }

/* care plan band */
.care { margin-top: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: clamp(28px,4vw,44px); display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; align-items: center; position: relative; overflow: hidden; }
.care .glow { position: absolute; inset: 0; background: radial-gradient(60% 120% at 90% 10%, rgba(239,94,14,.08), transparent 60%); pointer-events: none; }
.care .col { position: relative; }
.care h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px,3.4vw,38px); line-height: 1.08; letter-spacing: -.01em; color: var(--text); margin: 16px 0 0; }
.care p { font-size: 17px; color: var(--muted); line-height: 1.55; margin: 14px 0 0; max-width: 46ch; }
.care .feats { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; }
.care .feat { display: flex; gap: 9px; align-items: center; font-size: 14.5px; color: var(--text-2); }
.care .feat i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex: none; }

/* ---------- how it works ---------- */
.progress-track { position: relative; height: 2px; background: var(--line); border-radius: 2px; margin-bottom: 30px; overflow: hidden; }
.progress-track .fill { position: absolute; left: 0; top: 0; height: 100%; width: 0; background: linear-gradient(90deg, var(--orange-light), var(--orange)); transition: width 1.5s cubic-bezier(.4,0,.2,1); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 30px 26px; transition: transform .2s, box-shadow .2s; }
.step:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(20,18,10,.10); }
.step .num { font-family: var(--font-display); font-weight: 800; font-size: 40px; color: var(--orange); line-height: 1; }
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 21px; margin: 14px 0 0; }
.step p { font-size: 15.5px; color: var(--muted); line-height: 1.55; margin: 10px 0 0; }
.section.white .step { background: var(--paper); }

/* ---------- why trades-only ---------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 48px; align-items: center; }
.why h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px,3.8vw,44px); line-height: 1.08; letter-spacing: -.01em; margin: 12px 0 0; }
.why .cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why .card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 22px; transition: transform .2s, box-shadow .2s; }
.why .card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(20,18,10,.10); }
.why .card b { font-family: var(--font-display); font-weight: 800; font-size: 17px; }
.why .card p { font-size: 14px; color: var(--muted); margin: 7px 0 0; line-height: 1.5; }

/* ---------- more than a website (ops) ---------- */
.ops-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.ops { border: 1px solid var(--line); border-radius: 16px; padding: 22px 22px 24px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.ops:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(20,18,10,.09); border-color: var(--orange-light); }
.ops svg { width: 22px; height: 22px; color: var(--orange); }
.ops b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 17px; margin: 13px 0 0; }
.ops p { font-size: 14px; color: var(--muted); margin: 6px 0 0; line-height: 1.5; }

/* ---------- testimonials (placeholder) ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.tst { background: var(--surface); border: 1px dashed var(--line-2); border-radius: 18px; padding: 28px 26px; }
.tst .mark { fill: var(--line); }
.tst p { font-size: 17px; color: var(--faint); line-height: 1.55; margin: 16px 0 0; font-style: italic; }
.tst .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.tst .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--line); }
.tst .who b { font-weight: 700; font-size: 15px; color: var(--faint); }
.tst .who span { font-size: 13px; color: var(--faint); }

/* trust / what-you-get cards (reuse .tst-grid) */
.trust { background: var(--surface); border: 1px solid var(--line-2); border-radius: 18px; padding: 30px 28px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.trust:hover { transform: translateY(-3px); border-color: var(--orange); box-shadow: 0 14px 40px rgba(0,0,0,.07); }
.trust .ic { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; background: rgba(217,84,11,.10); color: var(--orange); margin-bottom: 18px; }
.trust .ic svg { width: 24px; height: 24px; }
.trust h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--text); margin: 0 0 9px; letter-spacing: -.01em; }
.trust p { font-size: 15.5px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.price { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 28px 26px; position: relative; }
.price.pop { border: 1.5px solid var(--orange); }
.price.dark { background: var(--surface); color: var(--text); border: 1.5px solid var(--orange); }
.price .kicker { font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.price.pop .kicker { color: var(--orange-deep); }
.price.dark .kicker { color: var(--orange-deep); }
.price .amount { display: flex; align-items: baseline; gap: 6px; margin: 14px 0 0; }
.price .amount .from { font-size: 15px; color: var(--muted); }
.price.dark .amount .from { color: var(--muted); }
.price .amount .big { font-family: var(--font-display); font-weight: 800; font-size: 38px; letter-spacing: -.01em; }
.price.dark .amount .big { color: var(--text); }
.price .amount .per { font-size: 15px; color: var(--muted); }
.price.dark .amount .per { color: var(--muted); }
.price .note { font-size: 14px; color: var(--faint); margin: 6px 0 0; }
.price.dark .note { color: var(--faint); }
.price .popular { position: absolute; top: -11px; right: 20px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--orange); padding: 5px 11px; border-radius: 999px; }
.price-disclaimer { font-size: 13px; color: var(--faint); margin: 22px 0 0; }

/* ============================================================
   FINAL CTA / BOOK
   ============================================================ */
.book { position: relative; background: var(--paper); color: var(--text); overflow: hidden; padding: clamp(64px,8vw,104px) 0; }
.book .bg { position: absolute; inset: 0; background: radial-gradient(55% 80% at 80% 10%, rgba(239,94,14,.1), transparent 60%), radial-gradient(50% 70% at 10% 100%, rgba(216,80,10,.06), transparent 60%); pointer-events: none; }
.book-in { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 48px; align-items: center; }
.book h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px,4.4vw,50px); line-height: 1.04; letter-spacing: -.01em; margin: 14px 0 0; }
.book .lede { color: var(--muted); max-width: 46ch; }
.book .contacts { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 26px; font-size: 15px; font-weight: 600; color: var(--text-2); }
.book .contacts a { display: inline-flex; align-items: center; gap: 9px; color: var(--text); text-decoration: none; }
.book .contacts svg { width: 18px; height: 18px; color: var(--orange-deep); }

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: clamp(24px,3vw,34px); box-shadow: 0 24px 56px rgba(20,18,10,.08); }
.form-card form { display: flex; flex-direction: column; gap: 14px; }
.form-card .title { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--text); margin-bottom: 2px; }
.form-card input, .form-card select, .form-card textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--text);
  background: var(--paper); border: 1.5px solid var(--line-2);
  border-radius: 13px; padding: 14px 16px; outline: none; transition: border-color .15s;
}
.form-card input::placeholder, .form-card textarea::placeholder { color: var(--faint); }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { border-color: var(--orange); }
.form-card select option { color: var(--text); background: var(--surface); }
.form-card textarea { resize: vertical; }
.form-card button { margin-top: 4px; font-family: inherit; font-weight: 700; font-size: 16px; color: #fff; background: var(--orange); border: none; padding: 15px; border-radius: 13px; cursor: pointer; transition: background .18s; }
.form-card button:hover { background: var(--orange-deep); }
.form-card button:disabled { opacity: .65; cursor: default; }
.form-card .small { font-size: 12.5px; color: var(--muted); text-align: center; margin: 2px 0 0; }
.form-card .err { font-size: 13px; color: var(--orange-deep); text-align: center; margin: 0; display: none; }
.form-card .err.show { display: block; }
.form-done { display: none; flex-direction: column; align-items: center; text-align: center; padding: 18px 8px 12px; }
.form-done.show { display: flex; }
.form-done .check { width: 62px; height: 62px; border-radius: 50%; background: rgba(239,94,14,.16); border: 1.5px solid rgba(239,94,14,.4); display: flex; align-items: center; justify-content: center; }
.form-done .check svg { width: 30px; height: 30px; color: var(--orange); }
.form-done h3 { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--text); margin-top: 18px; }
.form-done p { font-size: 15.5px; color: var(--muted); line-height: 1.55; margin: 10px 0 0; max-width: 34ch; }
.form-done button { margin-top: 22px; font-family: inherit; font-weight: 700; font-size: 14.5px; color: var(--text); background: var(--surface); border: 1.5px solid var(--line-2); padding: 12px 22px; border-radius: 12px; cursor: pointer; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--paper); color: var(--text); border-top: 1px solid var(--line); padding: 56px 0 36px; }
.foot-grid { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
.foot-about { max-width: 300px; }
.foot-about p { font-size: 14.5px; color: var(--muted); line-height: 1.55; margin: 18px 0 0; }
.foot-col h4 { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.foot-col .links { display: flex; flex-direction: column; gap: 11px; }
.foot-col a { font-size: 15px; color: var(--text-2); text-decoration: none; }
.foot-col a:hover { color: var(--text); }
.foot-cta { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; color: #fff; text-decoration: none; background: var(--orange); padding: 13px 22px; border-radius: 13px; }
.foot-cta:hover { background: var(--orange-deep); }
.foot-bottom { max-width: var(--maxw); margin: 40px auto 0; padding: 24px 24px 0; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.foot-bottom span { font-size: 13px; color: var(--faint); }
.foot-bottom .tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }

/* sticky mobile CTA */
.mobile-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; display: none;
  align-items: center; justify-content: center; gap: 9px; font-weight: 700; font-size: 16px;
  color: #fff; text-decoration: none; background: var(--orange); padding: 16px; border-radius: 15px;
  box-shadow: 0 12px 30px rgba(239,94,14,.5);
}
.mobile-cta svg { width: 18px; height: 18px; }

/* ============================================================
   RESPONSIVE — desktop/mobile nav swap + grids
   ============================================================ */
@media (max-width: 899px) {
  .header-desktop { display: none; }
  .nav-toggle { display: flex; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 78px; }
  .demo-grid { grid-template-columns: 1fr; }
  .why .cards { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}
@media (max-width: 560px) {
  .care .feats { grid-template-columns: 1fr; }
  .why .cards { grid-template-columns: 1fr; }
  .iphone-scale { transform: scale(.74); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  html.js [data-reveal] { opacity: 1; transform: none; }
}
