:root {
  color-scheme: light dark;
  --bg: #ffffff;
  --bg-soft: #f6f6f4;
  --bg-muted: #efefec;
  --text: #111111;
  --text-soft: #4f4f4b;
  --text-muted: #76766f;
  --line: rgba(17, 17, 17, 0.1);
  --line-strong: rgba(17, 17, 17, 0.18);
  --card: #ffffff;
  --card-warm: #fbfbf8;
  --accent: #111111;
  --accent-soft: #e9e9e4;
  --blue: #006adc;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-ring: 0 0 0 1px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 0 0 1px rgba(0,0,0,.08), 0 18px 60px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.08);
  --container: 1180px;
  --nav-height: 72px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #080808;
    --bg-soft: #111111;
    --bg-muted: #181818;
    --text: #f6f6f3;
    --text-soft: #c7c7c0;
    --text-muted: #8b8b84;
    --line: rgba(255,255,255,.11);
    --line-strong: rgba(255,255,255,.18);
    --card: #111111;
    --card-warm: #151515;
    --accent: #f7f7f2;
    --accent-soft: #202020;
    --shadow-ring: 0 0 0 1px rgba(255,255,255,.12);
    --shadow-card: 0 0 0 1px rgba(255,255,255,.12), 0 18px 60px rgba(0,0,0,.35), 0 2px 8px rgba(0,0,0,.25);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "liga" 1, "kern" 1;
  background: var(--bg);
  color: var(--text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection { background: rgba(0,106,220,.18); }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  transform: translateY(-140%);
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 100;
}
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-height);
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  border-bottom: 1px solid transparent;
  backdrop-filter: saturate(180%) blur(18px);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 12px 40px rgba(0,0,0,.04); }
.nav-shell {
  width: min(var(--container), calc(100% - 32px));
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -.03em; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center;
  background: var(--text); color: var(--bg);
  font-size: 14px; font-weight: 700;
}
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--text-soft); font-size: 14px; font-weight: 500; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  color: var(--bg) !important;
  background: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-ring);
}
.nav-toggle { display: none; background: none; border: 0; color: var(--text); width: 42px; height: 42px; border-radius: 50%; }
.nav-toggle span:not(.sr-only) { display:block; width:18px; height:1.5px; background:currentColor; margin:5px auto; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }
.eyebrow {
  margin: 0 0 16px;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.06em; }
h1 {
  font-size: clamp(3.25rem, 7.2vw, 6.15rem);
  line-height: .94;
  margin-bottom: 28px;
  max-width: 940px;
}
h2 { font-size: clamp(2.35rem, 5vw, 4.6rem); line-height: .98; margin-bottom: 20px; }
h3 { letter-spacing: -.035em; }
p { color: var(--text-soft); line-height: 1.62; }

.hero { min-height: calc(100svh - var(--nav-height)); display: grid; align-items: center; overflow: clip; padding-top: 78px; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(0, 106, 220, .13), transparent 27%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(390px, .77fr); gap: 70px; align-items: center; position: relative; }
.hero-lede { font-size: clamp(1.08rem, 1.6vw, 1.35rem); max-width: 760px; margin-bottom: 32px; }
.cta-row { display:flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.button {
  display:inline-flex; align-items:center; justify-content:center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible, button:focus-visible { outline: 3px solid color-mix(in srgb, var(--blue) 52%, transparent); outline-offset: 3px; }
.button-primary { background: var(--text); color: var(--bg); box-shadow: var(--shadow-card); }
.button-secondary { background: var(--card); color: var(--text); box-shadow: var(--shadow-ring); }
.hero-notes { display:flex; flex-wrap:wrap; gap:8px; color: var(--text-muted); font-size: 13px; }
.hero-notes span { padding: 8px 10px; background: var(--card); border-radius: 999px; box-shadow: var(--shadow-ring); }

.hero-device { position: relative; min-height: 560px; }
.browser-card, .phone-card, .case-desktop, .case-mobile, .compare-card, .benefit, .feature, .quote-form, .testimonial-card {
  background: var(--card);
  box-shadow: var(--shadow-card);
}
.browser-card { border-radius: 24px; overflow: hidden; }
.hero-browser { transform: rotate(-1.2deg); }
.browser-top { height: 46px; display:flex; align-items:center; gap:8px; padding: 0 16px; border-bottom: 1px solid var(--line); color: var(--text-muted); }
.browser-top span { width: 10px; height: 10px; border-radius: 50%; background: var(--accent-soft); box-shadow: inset 0 0 0 1px var(--line); }
.browser-top p { margin:0 auto; font: 500 12px/1 "Geist Mono"; color: var(--text-muted); }
.mock-site { padding: 18px; background: linear-gradient(180deg, var(--card), var(--bg-soft)); }
.mock-hero { min-height: 260px; border-radius: 20px; display:flex; align-items:end; padding: 30px; background: linear-gradient(135deg, #141414, #3c3a33); color: white; overflow:hidden; position:relative; }
.mock-hero::after { content:""; position:absolute; width: 260px; height: 260px; right:-50px; top:-30px; background: radial-gradient(circle, rgba(255,255,255,.28), transparent 62%); }
.mock-hero p { color: rgba(255,255,255,.7); font:600 12px/1 "Geist Mono"; text-transform:uppercase; letter-spacing:.08em; }
.mock-hero h2 { font-size: 34px; letter-spacing: -.05em; max-width: 430px; color:#fff; margin-bottom: 20px; }
.mock-hero span { display:inline-flex; border-radius:999px; background:#fff; color:#111; padding:10px 14px; font-weight:600; font-size:13px; }
.mock-row { display:grid; grid-template-columns: repeat(3,1fr); gap:12px; margin: 14px 0; }
.mock-row div { height:84px; border-radius:16px; background: var(--card); box-shadow: var(--shadow-ring); }
.mock-content { display:grid; grid-template-columns:1fr .8fr; gap:14px; }
.mock-list, .mock-photo { min-height:150px; border-radius:18px; background:var(--card); box-shadow:var(--shadow-ring); padding:18px; }
.mock-list span { display:block; height:12px; margin-bottom:13px; border-radius:999px; background:var(--accent-soft); }
.mock-list span:nth-child(2){ width:74%; }.mock-list span:nth-child(3){ width:58%; }
.mock-photo { background: linear-gradient(135deg, var(--accent-soft), var(--bg-muted)); }
.phone-card { position:absolute; right:-8px; bottom:20px; width:170px; height:330px; border-radius:32px; padding:12px; transform: rotate(4deg); }
.phone-notch { width:56px; height:6px; border-radius:999px; background:var(--accent-soft); margin:0 auto 12px; }
.phone-screen { height:100%; border-radius:24px; background:linear-gradient(180deg, var(--bg-soft), var(--card)); padding:22px 16px; }
.phone-screen p { font:600 11px/1 "Geist Mono"; text-transform:uppercase; color:var(--blue); }
.phone-screen h3 { font-size:22px; line-height:1; margin-bottom:26px; }
.phone-screen div { height:46px; border-radius:14px; background:var(--card); box-shadow:var(--shadow-ring); margin-bottom:10px; }

.section-heading { max-width: 840px; margin-bottom: 48px; }
.section-heading p:not(.eyebrow) { max-width: 680px; font-size: 18px; }
.section-heading.compact { max-width: 560px; margin-bottom: 0; }
.work { background: var(--bg); }
.case-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:18px; }
.case-card { border-radius: var(--radius-lg); background: var(--card-warm); overflow:hidden; box-shadow: var(--shadow-ring); }
.case-card.wide-case { grid-column: 1 / -1; display:grid; grid-template-columns: 1.1fr .9fr; }
.case-media { min-height: 390px; padding: 34px; display:grid; place-items:center; position:relative; overflow:hidden; }
.case-media.concrete { background: linear-gradient(135deg, #ede7dc, #f8f7f3); }
.case-media.auto { background: linear-gradient(135deg, #101010, #323232); }
.case-media.hvac { background: linear-gradient(135deg, #e9eef4, #fbfbfb); }
.case-media.screenshot { padding: 22px; min-height: 390px; align-items: stretch; }
.case-media.screenshot img {
  width: 100%;
  height: 100%;
  min-height: 346px;
  object-fit: cover;
  object-position: top center;
  border-radius: 22px;
  box-shadow: 0 18px 60px rgba(0,0,0,.18), 0 0 0 1px rgba(255,255,255,.4);
  transition: transform .35s ease, box-shadow .35s ease;
}
.case-media.screenshot:hover img { transform: translateY(-4px) scale(1.015); box-shadow: 0 24px 80px rgba(0,0,0,.22), 0 0 0 1px rgba(255,255,255,.5); }
.case-desktop { width:min(500px,100%); min-height:260px; border-radius:20px; padding:28px; position:relative; z-index:1; }
.case-logo { display:grid; place-items:center; width:42px; height:42px; border-radius:12px; background:var(--text); color:var(--bg); font-weight:700; margin-bottom:30px; }
.case-desktop h3 { font-size:35px; line-height:1; margin-bottom:8px; }
.case-desktop p { margin-bottom:30px; }
.case-bars i, .service-grid i { display:block; border-radius:14px; background: var(--accent-soft); }
.case-bars { display:grid; gap:10px; }.case-bars i { height:30px; }.case-bars i:nth-child(2){ width:78%; }.case-bars i:nth-child(3){ width:56%; }
.dark-preview { background:#0e0e0e; color:#fff; box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 22px 80px rgba(0,0,0,.45); }
.dark-preview p { color:rgba(255,255,255,.68); }
.dark-preview .case-logo { background:#fff; color:#111; }
.light-beam { height:92px; border-radius:999px; background: radial-gradient(ellipse at left, rgba(255,255,255,.9), rgba(255,255,255,.06) 58%, transparent 70%); filter: blur(.2px); }
.service-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; }.service-grid i { height:54px; }
.case-mobile { position:absolute; width:120px; height:220px; right:28px; bottom:24px; border-radius:25px; padding:18px 12px; z-index:2; }
.case-mobile span { display:block; width:42px; height:5px; border-radius:999px; background:var(--accent-soft); margin:0 auto 22px; }
.case-mobile strong { display:block; font-size:15px; line-height:1.1; margin-bottom:22px; }
.case-mobile em { display:block; height:36px; border-radius:12px; background:var(--accent-soft); margin-bottom:8px; }
.case-body { padding: 30px; }
.case-meta { display:flex; justify-content:space-between; gap:16px; align-items:center; margin-bottom:18px; color:var(--text-muted); font:600 12px/1 "Geist Mono"; text-transform:uppercase; letter-spacing:.06em; }
.case-meta a { color:var(--blue); text-transform:none; letter-spacing:0; font-family:"Geist"; font-size:13px; }
.case-body h3 { font-size:28px; line-height:1.05; margin-bottom:14px; }
.case-body ul { margin:22px 0 0; padding:0; list-style:none; color:var(--text-soft); display:grid; gap:8px; }
.case-body li::before { content:""; display:inline-block; width:7px; height:7px; border-radius:50%; background:var(--text); margin-right:10px; transform: translateY(-1px); }

.why { background: var(--bg-soft); }
.split { display:grid; grid-template-columns: .78fr 1.22fr; gap:28px; align-items:start; margin-bottom:32px; }
.proof-strip {
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
  align-self:stretch;
}
.proof-strip div {
  min-height: 188px;
  border-radius: var(--radius);
  padding:22px;
  background:var(--card);
  box-shadow:var(--shadow-ring);
}
.proof-strip span {
  display:block;
  margin-bottom:34px;
  font:600 12px/1 "Geist Mono";
  color:var(--text-muted);
  letter-spacing:.06em;
}
.proof-strip strong { display:block; font-size:19px; letter-spacing:-.035em; margin-bottom:8px; }
.proof-strip p { margin:0; font-size:14px; line-height:1.52; }
.comparison { grid-column: 1 / -1; display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap:14px; }
.compare-card { border-radius: var(--radius); padding:28px; }
.compare-card.muted { opacity:.84; box-shadow:var(--shadow-ring); }
.compare-card.strong { background: var(--text); color: var(--bg); }
.compare-card.strong p, .compare-card.strong li { color: color-mix(in srgb, var(--bg) 74%, transparent); }
.compare-label { font:600 12px/1 "Geist Mono"; text-transform:uppercase; letter-spacing:.06em; color:var(--text-muted); }
.compare-card h3 { font-size:25px; line-height:1.08; }
.compare-card ul { padding-left:20px; color:var(--text-soft); line-height:1.7; }
.benefit-grid { display:grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap:14px; margin-top:30px; }
.benefit { border-radius:var(--radius); padding:24px; box-shadow:var(--shadow-ring); }
.benefit span { display:grid; place-items:center; width:38px; height:38px; border-radius:12px; background:var(--accent-soft); font-weight:700; margin-bottom:30px; }
.benefit h3 { font-size:21px; margin-bottom:8px; }.benefit p { font-size:15px; margin-bottom:0; }

.process { background: var(--bg); }
.timeline { display:grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap:12px; padding:0; margin:0; list-style:none; counter-reset:item; }
.timeline li { border-radius:var(--radius); padding:24px; background:var(--card); box-shadow:var(--shadow-ring); min-height:260px; }
.timeline span { display:inline-flex; margin-bottom:50px; font:600 12px/1 "Geist Mono"; color:var(--text-muted); }
.timeline h3 { font-size:22px; line-height:1.08; }.timeline p { font-size:15px; margin:0; }

.difference { background:#0b0b0b; color:#f7f7f2; }
.difference p { color:rgba(247,247,242,.7); }
.feature-grid { display:grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap:14px; }
.feature { border-radius:var(--radius); padding:30px; background:rgba(255,255,255,.055); box-shadow:0 0 0 1px rgba(255,255,255,.1); }
.feature h3 { font-size:24px; }.feature p { margin:0; }

.testimonial-section { background: var(--bg-soft); }
.testimonial-shell { display:grid; grid-template-columns: .8fr 1.2fr; gap:40px; align-items:center; }
.testimonial-card { border-radius:var(--radius-lg); padding:34px; }
.placeholder-label { font:600 12px/1.35 "Geist Mono"; text-transform:uppercase; letter-spacing:.06em; color:var(--text-muted); }
blockquote { margin:0 0 22px; font-size: clamp(1.6rem, 3vw, 2.7rem); line-height:1.08; letter-spacing:-.055em; }
cite { color:var(--text-muted); font-style:normal; }

.faq { background: var(--bg); }
.faq-grid { display:grid; grid-template-columns: .72fr 1.28fr; gap:60px; align-items:start; }
.accordion { display:grid; gap:10px; }
details { border-radius:16px; background:var(--card); box-shadow:var(--shadow-ring); padding:0 20px; }
summary { cursor:pointer; list-style:none; padding:22px 0; font-weight:600; letter-spacing:-.02em; display:flex; align-items:center; justify-content:space-between; gap:20px; }
summary::-webkit-details-marker { display:none; }
summary::after { content:"+"; color:var(--text-muted); font-size:22px; }
details[open] summary::after { content:"–"; }
details p { padding-bottom:22px; margin-bottom:0; max-width:720px; }

.final-cta { background: linear-gradient(180deg, var(--bg-soft), var(--bg)); }
.quote-grid { display:grid; grid-template-columns: .85fr 1.15fr; gap:52px; align-items:start; }
.quote-copy { position:sticky; top:110px; }
.quote-copy h2 { max-width:620px; }
.contact-options { display:flex; flex-direction:column; gap:10px; margin-top:28px; color:var(--text-soft); }
.contact-options a { width:max-content; border-bottom:1px solid var(--line-strong); }
.quote-form { border-radius:var(--radius-lg); padding:30px; display:grid; gap:16px; }
.quote-form label { display:grid; gap:8px; color:var(--text-soft); font-size:14px; font-weight:500; }
input, textarea { width:100%; border:0; border-radius:14px; background:var(--bg-soft); color:var(--text); padding:15px 16px; box-shadow:var(--shadow-ring); resize:vertical; }
textarea { min-height:130px; }
.form-button { width:100%; border:0; cursor:pointer; margin-top:4px; }
.form-note { font-size:13px; text-align:center; margin:0; color:var(--text-muted); }

.site-footer { padding:34px 0; border-top:1px solid var(--line); background:var(--bg); }
.footer-grid { display:flex; justify-content:space-between; gap:24px; align-items:center; color:var(--text-muted); font-size:14px; }
.footer-grid strong { color:var(--text); }.footer-grid p { margin:6px 0 0; font-size:14px; }
.footer-grid nav { display:flex; gap:18px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform:none; }
}

@media (max-width: 980px) {
  :root { --nav-height: 64px; }
  .section { padding: 78px 0; }
  .nav-toggle { display:block; }
  .nav-links {
    position:absolute; top:64px; left:16px; right:16px;
    display:none; flex-direction:column; align-items:stretch;
    padding:16px; background:var(--card); border-radius:20px; box-shadow:var(--shadow-card);
  }
  .nav-links.is-open { display:flex; }
  .nav-links a { padding:12px; }
  .nav-cta { text-align:center; }
  .hero-grid, .split, .faq-grid, .quote-grid, .testimonial-shell { grid-template-columns:1fr; }
  .proof-strip { grid-template-columns:1fr; }
  .hero-device { min-height:500px; }
  .case-card.wide-case { grid-template-columns:1fr; }
  .benefit-grid, .feature-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .timeline { grid-template-columns:1fr; }
  .timeline li { min-height:auto; }
  .timeline span { margin-bottom:26px; }
  .quote-copy { position:static; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 64px 0; }
  h1 { font-size: clamp(3rem, 16vw, 4.4rem); }
  h2 { font-size: clamp(2.1rem, 11vw, 3.2rem); }
  .hero { padding-top:42px; }
  .hero-grid { gap:36px; }
  .hero-device { min-height:auto; }
  .phone-card { display:none; }
  .hero-browser { transform:none; }
  .mock-hero { min-height:210px; padding:22px; }
  .mock-hero h2 { font-size:26px; }
  .mock-row, .mock-content, .case-grid, .comparison, .benefit-grid, .feature-grid { grid-template-columns:1fr; }
  .case-media { min-height:320px; padding:20px; }
  .case-media.screenshot { min-height: 300px; padding: 14px; }
  .case-media.screenshot img { min-height: 272px; border-radius: 18px; }
  .case-mobile { width:100px; height:180px; right:18px; bottom:18px; }
  .case-desktop h3 { font-size:28px; }
  .quote-form { padding:20px; }
  .footer-grid { flex-direction:column; align-items:flex-start; }
}
