:root {
  --ink: #0b1220;
  --ink-soft: #111c2f;
  --slate: #445065;
  --muted: #6e7889;
  --line: #dce1e8;
  --line-dark: rgba(255,255,255,.12);
  --paper: #f7f6f2;
  --white: #ffffff;
  --orange: #f1742e;
  --orange-dark: #d85b18;
  --green: #55b489;
  --sand: #eee9df;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 25px 70px rgba(5, 13, 25, .16);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 78px;
  color: white;
  background: rgba(11, 18, 32, .72);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(18px);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 760; letter-spacing: -.03em; }
.brand > span:last-child > span { color: var(--orange); }
.brand-mark {
  width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 10px; background: var(--orange); color: var(--white);
  font-weight: 850; font-size: 18px; line-height: 1; position: relative;
}
.brand-mark::after { content: ""; position: absolute; width: 7px; height: 2px; background: currentColor; right: 4px; bottom: 5px; transform: rotate(45deg); border-radius: 4px; }
.desktop-nav { display: flex; align-items: center; gap: 31px; margin-left: auto; }
.desktop-nav a { color: rgba(255,255,255,.68); font-size: 14px; font-weight: 580; transition: color .2s ease; }
.desktop-nav a:hover { color: white; }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.button {
  border: 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 0 20px; border-radius: 12px; font-weight: 720; font-size: 14px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--orange); color: white; box-shadow: 0 10px 28px rgba(241,116,46,.22); }
.button-primary:hover { background: var(--orange-dark); box-shadow: 0 13px 34px rgba(241,116,46,.3); }
.button-dark { background: var(--ink); color: white; }
.button-dark:hover { background: #18243a; }
.button-ghost { border: 1px solid rgba(255,255,255,.2); color: white; background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.09); }
.button-outline { border: 1px solid var(--line); background: transparent; }
.button-outline:hover { border-color: var(--ink); }
.button-small { min-height: 40px; padding-inline: 15px; border-radius: 10px; font-size: 13px; }
.button-large { min-height: 58px; padding-inline: 26px; }
.button-full { width: 100%; }
.button-link { background: transparent; border: 0; padding: 0; cursor: pointer; }
.text-link { color: rgba(255,255,255,.82); display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14px; }
.text-link:hover { color: white; }

.section-dark { color: white; background: var(--ink); }
.hero { min-height: 770px; padding: 148px 0 86px; position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: auto -15% -45% 35%; height: 640px; background: radial-gradient(circle, rgba(241,116,46,.16), transparent 64%); pointer-events: none; }
.hero-grid-bg { position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 58px 58px; mask-image: linear-gradient(to bottom, black 0%, rgba(0,0,0,.9) 50%, transparent 100%); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .95fr) minmax(520px, 1.05fr); align-items: center; gap: 70px; }
.hero-copy { padding-top: 10px; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.68); text-transform: uppercase; letter-spacing: .13em; font-size: 11px; font-weight: 780; }
.eyebrow > span { width: 23px; height: 2px; background: var(--orange); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin: 20px 0 23px; max-width: 720px; font-size: clamp(50px, 6.2vw, 82px); line-height: .98; letter-spacing: -.058em; font-weight: 760; }
.hero-lede { max-width: 650px; color: rgba(255,255,255,.69); font-size: 18px; line-height: 1.62; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-top: 34px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-proof div { display: flex; flex-direction: column; gap: 5px; }
.hero-proof strong { font-size: 15px; }
.hero-proof span { color: rgba(255,255,255,.48); font-size: 12px; }
.back-link { display: inline-block; margin-bottom: 28px; color: rgba(255,255,255,.56); font-size: 13px; font-weight: 700; }
.back-link:hover { color: white; }

.product-stage { position: relative; min-height: 520px; display: grid; place-items: center; }
.stage-glow { position: absolute; width: 430px; height: 430px; border-radius: 50%; background: rgba(241,116,46,.12); filter: blur(70px); }
.quote-window { width: min(100%, 580px); position: relative; z-index: 2; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; overflow: hidden; background: #f9fafb; color: var(--ink); box-shadow: 0 45px 90px rgba(0,0,0,.38); transform: perspective(1100px) rotateY(-4deg) rotateX(1.5deg); }
.window-topbar { height: 48px; padding: 0 16px; display: flex; align-items: center; background: white; border-bottom: 1px solid #e7e9ee; }
.window-dots { display: flex; gap: 5px; }
.window-dots span { width: 7px; height: 7px; border-radius: 50%; background: #d7dae0; }
.window-title { margin: 0 auto; color: #667085; font-size: 10px; font-weight: 730; }
.status-pill { padding: 4px 8px; background: #fff1e8; color: #c65212; border-radius: 20px; font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.quote-body { display: grid; grid-template-columns: 52px 1fr; min-height: 390px; }
.quote-sidebar { padding: 13px 10px; display: flex; flex-direction: column; align-items: center; gap: 14px; background: #111a2b; }
.sidebar-logo { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 7px; background: var(--orange); color: white; font-size: 11px; font-weight: 800; margin-bottom: 9px; }
.sidebar-item { width: 23px; height: 5px; border-radius: 4px; background: rgba(255,255,255,.16); }
.sidebar-item.active { background: rgba(255,255,255,.7); }
.quote-content { padding: 24px; }
.quote-heading-row { display: flex; align-items: start; justify-content: space-between; gap: 16px; }
.quote-heading-row > div { display: flex; flex-direction: column; gap: 4px; }
.quote-heading-row strong { font-size: 15px; }
.mini-label { color: #98a0ad; font-size: 7px; letter-spacing: .14em; font-weight: 800; }
.mini-tag, .revision-chip { color: #5a687e; background: #eef1f4; border-radius: 20px; padding: 5px 8px; font-size: 8px; font-weight: 700; }
.config-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 19px 0; }
.config-field { padding: 10px 11px; border: 1px solid #e4e7eb; border-radius: 8px; background: white; display: flex; flex-direction: column; gap: 4px; }
.config-field span { color: #8b94a2; font-size: 7px; }
.config-field strong { font-size: 9px; }
.line-items { border: 1px solid #e4e7eb; border-radius: 9px; overflow: hidden; background: white; }
.line-item { min-height: 35px; padding: 0 12px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; border-top: 1px solid #edf0f3; font-size: 9px; }
.line-item:first-child { border-top: 0; }
.line-item > span { display: flex; align-items: center; gap: 7px; color: #4e596a; }
.line-head { min-height: 28px; background: #f5f6f8; color: #8b94a2; font-size: 7px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.line-icon { width: 8px; height: 8px; border-radius: 3px; background: #d8dee7; }
.line-icon.material { background: #f4ad83; }.line-icon.labor { background: #89b7d2; }.line-icon.install { background: #80c9a6; }
.quote-total { margin-top: 12px; padding: 12px 14px; border-radius: 9px; background: #111a2b; color: white; display: flex; align-items: center; justify-content: space-between; }
.quote-total > div { display: flex; flex-direction: column; gap: 2px; }
.quote-total span { color: rgba(255,255,255,.5); font-size: 7px; }
.quote-total strong { font-size: 11px; }
.quote-total .total-value { text-align: right; }
.quote-total .total-value strong { color: #ffb185; font-size: 17px; }
.quote-footer-row { margin-top: 12px; display: flex; align-items: center; justify-content: space-between; }
.generate-button { padding: 8px 10px; border-radius: 7px; background: var(--orange); color: white; font-size: 8px; font-weight: 800; }
.floating-card { position: absolute; z-index: 3; min-width: 126px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.17); border-radius: 13px; background: rgba(21,31,50,.92); box-shadow: 0 16px 40px rgba(0,0,0,.3); backdrop-filter: blur(12px); display: grid; grid-template-columns: 1fr auto; gap: 3px 10px; animation: float 4.5s ease-in-out infinite; }
.floating-card span { grid-column: 1 / -1; color: rgba(255,255,255,.48); font-size: 8px; text-transform: uppercase; letter-spacing: .09em; }
.floating-card strong { font-size: 12px; }.floating-card i { font-style: normal; color: var(--green); font-weight: 800; font-size: 11px; }
.margin-card { right: -10px; top: 110px; }.speed-card { left: -7px; bottom: 85px; animation-delay: -2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.problem-section { padding: 112px 0 122px; }
.narrow-center { max-width: 820px; text-align: center; }
.section-kicker { color: var(--orange-dark); font-size: 10px; line-height: 1; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.section-kicker.light { color: #ffae7f; }
h2 { margin: 15px 0 22px; font-size: clamp(38px, 4.5vw, 62px); line-height: 1.04; letter-spacing: -.045em; font-weight: 750; }
.narrow-center p, .section-heading-row > p, .split-heading > p { color: var(--slate); font-size: 17px; line-height: 1.7; }
.pain-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pain-card { min-height: 245px; padding: 35px 34px 38px; border-left: 1px solid var(--line); }
.pain-card:last-child { border-right: 1px solid var(--line); }
.card-number { color: #99a1ae; font-size: 11px; font-weight: 800; }
.pain-card h3 { margin: 46px 0 11px; font-size: 23px; letter-spacing: -.025em; }
.pain-card p { margin: 0; color: var(--muted); line-height: 1.63; font-size: 14px; }

.industry-section { padding: 112px 0 124px; background: var(--white); }
.section-heading-row, .split-heading { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 70px; }
.section-heading-row h2, .split-heading h2 { margin-bottom: 0; }
.section-heading-row > p, .split-heading > p { margin-bottom: 4px; }
.industry-grid { margin-top: 62px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.industry-card { min-height: 570px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fbfbfa; display: flex; flex-direction: column; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.industry-card:hover { transform: translateY(-5px); border-color: #c8ced7; box-shadow: 0 22px 55px rgba(12,20,34,.08); }
.industry-card.featured { border-color: rgba(241,116,46,.45); background: linear-gradient(180deg, #fff8f3 0%, #fbfbfa 60%); }
.industry-topline { display: flex; justify-content: space-between; color: #8b94a2; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.live-tag { color: var(--orange-dark); }
.industry-icon { height: 118px; margin: 44px 0 30px; position: relative; display: flex; align-items: flex-end; gap: 7px; }
.cabinet-icon span { display: block; width: 49px; border: 1.5px solid #18243a; border-radius: 4px; position: relative; background: #fff; }
.cabinet-icon span::after { content: ""; position: absolute; width: 3px; height: 3px; right: 7px; top: 50%; border-radius: 50%; background: var(--orange); }
.cabinet-icon span:nth-child(1), .cabinet-icon span:nth-child(4) { height: 85px; }.cabinet-icon span:nth-child(2) { height: 112px; }.cabinet-icon span:nth-child(3) { height: 69px; }
.trim-icon { align-items: center; }
.trim-icon span { height: 18px; border-radius: 3px; background: #d6b997; border: 1px solid #9a7650; position: absolute; left: 0; transform-origin: left center; }
.trim-icon span:nth-child(1) { width: 185px; transform: rotate(-7deg); }.trim-icon span:nth-child(2) { width: 215px; transform: rotate(4deg); top: 53px; }.trim-icon span:nth-child(3) { width: 155px; transform: rotate(-1deg); top: 78px; background: #e1c9aa; }
.metal-icon { align-items: center; perspective: 400px; }
.metal-icon span { position: absolute; width: 90px; height: 72px; border: 1px solid #78869a; background: linear-gradient(135deg, #ecf0f3, #bac3ce); transform: rotateY(-24deg) rotateX(5deg); box-shadow: 7px 7px 0 rgba(68,80,101,.12); }
.metal-icon span:nth-child(1) { left: 0; }.metal-icon span:nth-child(2) { left: 43px; top: 25px; }.metal-icon span:nth-child(3) { left: 86px; top: 8px; }.metal-icon span:nth-child(4) { left: 129px; top: 34px; }
.industry-card h3 { margin: 0 0 13px; font-size: 27px; letter-spacing: -.035em; }
.industry-card > p { color: var(--slate); line-height: 1.65; font-size: 14px; }
.feature-list { margin: 16px 0 28px; padding: 0; list-style: none; }
.feature-list li { position: relative; padding: 10px 0 10px 20px; border-top: 1px solid #e7e9ed; color: #4c5869; font-size: 13px; }
.feature-list li::before { content: ""; position: absolute; left: 0; top: 15px; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.card-link { margin-top: auto; display: flex; align-items: center; justify-content: space-between; width: 100%; padding-top: 21px; border-top: 1px solid #dfe3e8; font-weight: 760; font-size: 13px; text-align: left; }
.card-link span { font-size: 19px; }

.workflow-section { padding: 122px 0; }
.workflow-layout { display: grid; grid-template-columns: .84fr 1.16fr; gap: 90px; align-items: start; }
.workflow-copy { position: sticky; top: 120px; }
.workflow-copy h2 { font-size: clamp(39px, 4.4vw, 58px); }
.workflow-copy p { margin-bottom: 30px; max-width: 450px; color: var(--slate); font-size: 16px; line-height: 1.7; }
.workflow-steps { border-top: 1px solid var(--line); }
.workflow-step { display: grid; grid-template-columns: 52px 1fr; gap: 24px; padding: 35px 0 37px; border-bottom: 1px solid var(--line); }
.workflow-step > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--sand); color: var(--orange-dark); font-size: 11px; font-weight: 850; }
.workflow-step h3 { margin: 1px 0 9px; font-size: 22px; letter-spacing: -.025em; }
.workflow-step p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; }

.benefits-section { padding: 0 0 120px; }
.benefits-shell { padding: 78px; border-radius: var(--radius-lg); background: var(--ink); color: white; display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; overflow: hidden; position: relative; }
.benefits-shell::after { content: ""; position: absolute; width: 400px; height: 400px; right: -140px; bottom: -180px; border-radius: 50%; background: rgba(241,116,46,.18); filter: blur(20px); }
.benefit-lead, .benefit-list { position: relative; z-index: 1; }
.benefit-lead h2 { font-size: 52px; }
.benefit-lead p { color: rgba(255,255,255,.58); line-height: 1.7; }
.benefit-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 23px 0; border-top: 1px solid rgba(255,255,255,.13); }
.benefit-list > div:last-child { border-bottom: 1px solid rgba(255,255,255,.13); }
.benefit-list span { color: #ffae7f; font-size: 10px; font-weight: 800; }
.benefit-list p { margin: 0; color: rgba(255,255,255,.62); line-height: 1.6; }
.benefit-list strong { color: white; }

.final-cta { padding: 105px 0; background: #ece7dc; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.cta-inner h2 { max-width: 760px; margin-bottom: 16px; font-size: clamp(39px,4.7vw,64px); }
.cta-inner p { max-width: 720px; margin: 0; color: var(--slate); line-height: 1.65; }
.cta-inner .button { flex: 0 0 auto; }
.site-footer { padding: 32px 0; background: var(--ink); color: white; }
.footer-row { min-height: 50px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand { font-size: 16px; }
.footer-brand .brand-mark { width: 29px; height: 29px; font-size: 15px; border-radius: 8px; }
.footer-row p { margin: 0; color: rgba(255,255,255,.45); font-size: 12px; }
.footer-row > div { display: flex; gap: 22px; }
.footer-row a, .footer-row button { color: rgba(255,255,255,.66); font-size: 12px; font-weight: 700; background: none; border: 0; padding: 0; cursor: pointer; }
.footer-row a:hover, .footer-row button:hover { color: white; }

.vertical-hero { min-height: 790px; }
.vertical-intro { padding: 115px 0 125px; background: white; }
.feature-grid { margin-top: 62px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-card { min-height: 285px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fbfbfa; }
.feature-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 48px; border-radius: 12px; background: #fff0e7; color: var(--orange-dark); font-size: 18px; font-weight: 800; }
.feature-card h3 { margin-bottom: 12px; font-size: 21px; letter-spacing: -.025em; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.built-for-section { padding: 125px 0; background: #eeeae1; }
.built-for-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.built-for-copy h2 { font-size: clamp(42px,4.7vw,62px); }
.built-for-copy > p { color: var(--slate); font-size: 16px; line-height: 1.7; }
.check-list { list-style: none; margin: 35px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; }
.check-list li { position: relative; padding-left: 24px; color: #3f4a5b; font-size: 13px; line-height: 1.5; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--orange-dark); font-weight: 900; }
.cabinet-diagram { min-height: 520px; padding: 45px; border-radius: 24px; background: #111a2b; color: white; position: relative; overflow: hidden; }
.cabinet-diagram::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 36px 36px; }
.diagram-label { position: relative; z-index: 1; color: rgba(255,255,255,.38); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.cabinet-stack { position: relative; z-index: 1; margin: 24px 0 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cab-row { min-height: 62px; padding: 13px; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; background: rgba(255,255,255,.05); display: flex; align-items: center; justify-content: space-between; }
.cab-row span { font-size: 12px; }.cab-row b { color: #ffac7a; font-size: 20px; }
.diagram-flow { position: relative; z-index: 1; display: flex; gap: 9px; justify-content: center; margin: 8px 0 19px; }
.diagram-flow span { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }.diagram-flow span:nth-child(2){opacity:.6}.diagram-flow span:nth-child(3){opacity:.3}
.pricing-block { position: relative; z-index: 1; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; overflow: hidden; }
.pricing-block > div { min-height: 43px; padding: 0 15px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.09); }
.pricing-block > div:first-child { border-top: 0; }.pricing-block span { color: rgba(255,255,255,.5); font-size: 10px; }.pricing-block b { font-size: 11px; }
.pricing-block .pricing-total { min-height: 55px; background: rgba(241,116,46,.13); }.pricing-block .pricing-total b { color: #ffad7e; font-size: 20px; }
.diagram-label.bottom { margin-top: 16px; text-align: right; }
.roi-section { padding: 0 0 120px; }
.roi-shell { padding: 70px; border-radius: 24px; background: var(--ink); color: white; }
.roi-shell > div:first-child { display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.roi-shell h2 { margin-bottom: 0; max-width: 680px; }
.roi-math { margin-top: 55px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.13); display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 24px; align-items: center; }
.roi-math > div { display: flex; flex-direction: column; gap: 7px; }
.roi-math strong { color: #ffad7e; font-size: 32px; letter-spacing: -.035em; }
.roi-math span { color: rgba(255,255,255,.48); font-size: 11px; line-height: 1.5; }.roi-math .math-symbol { color: rgba(255,255,255,.3); font-size: 24px; }

.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(7,13,23,.78); backdrop-filter: blur(9px); }
.modal-panel { position: relative; width: min(100%, 610px); max-height: calc(100vh - 40px); overflow-y: auto; padding: 42px; border-radius: 22px; background: white; box-shadow: 0 35px 100px rgba(0,0,0,.35); animation: modalIn .22s ease-out both; }
@keyframes modalIn { from { opacity: 0; transform: translateY(12px) scale(.98); } }
.modal-close { position: absolute; right: 17px; top: 14px; width: 36px; height: 36px; border: 0; border-radius: 50%; background: #f1f3f5; color: #5d6674; cursor: pointer; font-size: 23px; line-height: 1; }
.modal-kicker { color: var(--orange-dark); font-size: 10px; font-weight: 850; letter-spacing: .16em; }
.modal-panel h2 { margin: 13px 0 12px; font-size: 38px; }
.modal-panel > p { color: var(--slate); line-height: 1.6; }
.waitlist-form { margin-top: 27px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.waitlist-form label, .signin-form label { display: flex; flex-direction: column; gap: 7px; margin-bottom: 13px; }
.waitlist-form label > span, .signin-form label > span { color: #3e4858; font-size: 11px; font-weight: 760; }
input, select, textarea { width: 100%; border: 1px solid #d9dee5; border-radius: 10px; background: white; color: var(--ink); outline: none; transition: border-color .2s, box-shadow .2s; }
input, select { height: 47px; padding: 0 13px; }
textarea { resize: vertical; min-height: 92px; padding: 12px 13px; }
input:focus, select:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(241,116,46,.12); }
.waitlist-form small { display: block; margin-top: 12px; color: #8a929f; text-align: center; font-size: 10px; }
.form-success { padding: 28px 0 4px; text-align: center; }
.success-icon { width: 58px; height: 58px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: #e3f5ec; color: #26865e; font-size: 24px; font-weight: 900; }
.form-success h3 { font-size: 27px; margin-bottom: 9px; }.form-success p { color: var(--slate); line-height: 1.6; }

.signin-page { min-height: 100vh; background: white; }
.signin-shell { min-height: 100vh; display: grid; grid-template-columns: minmax(440px, .9fr) minmax(520px, 1.1fr); }
.signin-brand-panel { min-height: 100vh; padding: 42px 55px; background: var(--ink); color: white; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.signin-brand-panel::before { content: ""; position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 55px 55px; }
.signin-brand-panel::after { content: ""; position: absolute; width: 480px; height: 480px; left: 45%; bottom: -270px; border-radius: 50%; background: rgba(241,116,46,.22); filter: blur(35px); }
.brand-light, .signin-pitch, .signin-copyright { position: relative; z-index: 1; }
.signin-pitch { margin: auto 0; max-width: 600px; }
.signin-pitch h1 { margin-top: 25px; font-size: clamp(45px,5vw,70px); }
.signin-pitch > p { max-width: 550px; color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.7; }
.signin-quote-preview { width: min(100%, 420px); margin-top: 45px; padding: 19px; border: 1px solid rgba(255,255,255,.14); border-radius: 15px; background: rgba(255,255,255,.06); backdrop-filter: blur(10px); }
.preview-top, .preview-total { display: flex; align-items: center; justify-content: space-between; }.preview-top { color: rgba(255,255,255,.68); font-size: 10px; }.preview-top b { color: #ffad7e; }
.preview-lines { margin: 18px 0; display: flex; flex-direction: column; gap: 9px; }.preview-lines span { height: 7px; border-radius: 5px; background: rgba(255,255,255,.1); }.preview-lines span:nth-child(2){width:78%}.preview-lines span:nth-child(3){width:62%}
.preview-total { padding-top: 15px; border-top: 1px solid rgba(255,255,255,.12); }.preview-total span { color: rgba(255,255,255,.42); font-size: 9px; }.preview-total strong { color: #ffad7e; font-size: 22px; }
.signin-copyright { color: rgba(255,255,255,.33); font-size: 11px; }
.signin-form-panel { display: grid; place-items: center; padding: 55px; background: #fbfbfa; }
.signin-card { width: min(100%, 440px); }
.signin-card h2 { margin: 13px 0 10px; font-size: 40px; }.signin-card > p { color: var(--slate); line-height: 1.6; font-size: 14px; }
.signin-form { margin-top: 30px; }
.signin-options { display: flex; align-items: center; justify-content: space-between; margin: 2px 0 20px; }
.checkbox-label { flex-direction: row !important; align-items: center; gap: 8px !important; margin: 0 !important; color: var(--slate); font-size: 12px; }
.checkbox-label input { width: 16px; height: 16px; accent-color: var(--orange); }
.forgot-link { border: 0; background: none; color: var(--orange-dark); font-size: 12px; font-weight: 700; cursor: pointer; }
.signin-notice { margin-top: 14px; padding: 12px 14px; border-radius: 10px; background: #fff1e8; color: #7f3510; font-size: 11px; line-height: 1.5; }
.signin-notice strong { display: block; margin-bottom: 3px; }
.signin-divider { display: flex; align-items: center; gap: 12px; margin: 26px 0 17px; color: #8a929f; font-size: 10px; }
.signin-divider::before, .signin-divider::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.back-home { display: block; margin-top: 22px; color: var(--muted); text-align: center; font-size: 12px; font-weight: 700; }
.mobile-signin-logo { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }.reveal-delay-1 { transition-delay: .08s; }.reveal-delay-2 { transition-delay: .16s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .hero-layout { grid-template-columns: 1fr; gap: 45px; }
  .hero { padding-top: 135px; }
  .hero-copy { max-width: 760px; }
  .product-stage { min-height: 500px; width: min(100%, 690px); margin: 0 auto; }
  .industry-grid { grid-template-columns: 1fr; }
  .industry-card { min-height: 0; }
  .industry-icon { width: 240px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .built-for-layout { grid-template-columns: 1fr; }
  .cabinet-diagram { width: min(100%, 620px); }
  .signin-shell { grid-template-columns: .85fr 1.15fr; }
  .signin-brand-panel { padding-inline: 40px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { height: 70px; }
  .desktop-nav { display: none; }
  .nav-wrap { gap: 12px; }
  .nav-actions { margin-left: auto; }
  .brand { font-size: 16px; }.brand-mark { width: 30px; height: 30px; border-radius: 8px; font-size: 15px; }
  .hero { min-height: auto; padding: 122px 0 72px; }
  h1 { font-size: clamp(48px, 13vw, 68px); }
  .hero-lede { font-size: 16px; }
  .product-stage { min-height: 450px; }
  .quote-window { transform: none; }
  .margin-card { right: 0; }.speed-card { left: 0; }
  .problem-section, .industry-section, .workflow-section, .vertical-intro, .built-for-section { padding-top: 86px; padding-bottom: 90px; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card, .pain-card:last-child { min-height: 190px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .pain-card:last-child { border-bottom: 0; }.pain-card h3 { margin-top: 30px; }
  .section-heading-row, .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .workflow-layout { grid-template-columns: 1fr; gap: 55px; }
  .workflow-copy { position: static; }
  .benefits-shell { grid-template-columns: 1fr; gap: 45px; padding: 52px 36px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 235px; }
  .check-list { grid-template-columns: 1fr; }
  .roi-shell { padding: 50px 35px; }
  .roi-math { grid-template-columns: 1fr; }
  .roi-math .math-symbol { transform: rotate(90deg); justify-self: start; }
  .signin-shell { grid-template-columns: 1fr; }
  .signin-brand-panel { display: none; }
  .signin-form-panel { min-height: 100vh; padding: 45px 22px; }
  .mobile-signin-logo { display: inline-flex; margin-bottom: 50px; }
}

@media (max-width: 560px) {
  .nav-actions .button-ghost { display: none; }
  .button-small { min-height: 38px; padding-inline: 12px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 19px; }
  .hero-proof { grid-template-columns: 1fr 1fr; }
  .hero-proof div:last-child { display: none; }
  .product-stage { min-height: 370px; margin-top: 5px; }
  .quote-window { border-radius: 14px; }
  .quote-body { grid-template-columns: 38px 1fr; }
  .quote-sidebar { padding-inline: 6px; }
  .quote-content { padding: 15px; }
  .config-grid { gap: 6px; }
  .floating-card { min-width: 105px; padding: 10px; }.margin-card { top: 56px; right: -3px; }.speed-card { bottom: 28px; left: -2px; }
  .line-item:nth-child(3) { display: none; }
  h2 { font-size: 38px; }
  .industry-card { padding: 23px; }
  .benefits-section { padding-bottom: 80px; }.benefits-shell { padding: 42px 24px; }.benefit-lead h2 { font-size: 42px; }
  .final-cta { padding: 80px 0; }
  .footer-row { flex-wrap: wrap; }.footer-row p { order: 3; flex-basis: 100%; }
  .cabinet-diagram { min-height: 465px; padding: 28px; }
  .modal-panel { padding: 36px 22px 28px; }
  .modal-panel h2 { font-size: 32px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .signin-card h2 { font-size: 36px; }
}
