:root {
  --ink: #0e1726;
  --ink-2: #1a2436;
  --ink-3: #243049;
  --text: #1c2433;
  --muted: #5b6577;
  --line: #e7e1d6;
  --bg: #fffaf2;
  --tint: #fbf1e2;
  --card: #ffffff;
  --sun: #ff7a1a;
  --sun-2: #ffb547;
  --sun-deep: #e8590c;
  --green: #17a673;
  --red: #d64545;
  --radius: 18px;
  --shadow: 0 1px 2px rgba(14, 23, 38, 0.05), 0 12px 40px -12px rgba(14, 23, 38, 0.18);
  --display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); line-height: 1.08; letter-spacing: -0.02em; margin: 0; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0; }

.wrap { width: min(1180px, 100% - 40px); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; border-radius: 6px; }

.grad { background: linear-gradient(95deg, var(--sun-deep), var(--sun) 40%, var(--sun-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sun-deep); margin-bottom: 16px; }
.eyebrow--light { color: var(--sun-2); }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.18); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 62ch; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 22px; border-radius: 999px; font-weight: 600; font-size: 1rem; text-decoration: none; border: 1.5px solid transparent; cursor: pointer; transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease; font-family: inherit; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: linear-gradient(180deg, #ff8a2a, var(--sun-deep)); color: #fff; box-shadow: 0 8px 22px -8px rgba(232, 89, 12, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.25); }
.btn--primary:hover { box-shadow: 0 12px 28px -8px rgba(232, 89, 12, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.25); transform: translateY(-1px); }
.btn--ghost { background: transparent; border-color: rgba(14, 23, 38, 0.18); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(14, 23, 38, 0.03); }
.btn--sm { padding: 9px 16px; font-size: 0.92rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: progress; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255, 250, 242, 0.82); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
.logo { display: inline-flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 800; font-size: 1.35rem; letter-spacing: -0.02em; text-decoration: none; color: var(--ink); }
.logo--light { color: #fff; }
.nav__links { display: flex; gap: 28px; }
.nav__links a { text-decoration: none; font-size: 0.95rem; font-weight: 500; color: var(--muted); transition: color 0.15s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__toggle { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line); background: #fff; cursor: pointer; position: relative; }
.nav__toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.2s, top 0.2s; }
.nav__toggle span:first-child { top: 16px; }
.nav__toggle span:last-child { top: 24px; }
.nav.is-open .nav__toggle span:first-child { top: 20px; transform: rotate(45deg); }
.nav.is-open .nav__toggle span:last-child { top: 20px; transform: rotate(-45deg); }

/* Hero */
.hero { position: relative; padding: clamp(40px, 7vw, 90px) 0 clamp(60px, 8vw, 110px); overflow: hidden; }
.hero__glow { position: absolute; inset: -30% -10% auto auto; width: 760px; height: 760px; background: radial-gradient(circle at center, rgba(255, 181, 71, 0.45), rgba(255, 122, 26, 0.12) 45%, transparent 70%); pointer-events: none; }
.hero__grid { position: relative; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero__ticks { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 0.92rem; color: var(--muted); }
.hero__ticks li::before { content: "✓"; color: var(--green); font-weight: 700; margin-right: 7px; }

.hero__visual { position: relative; display: flex; justify-content: center; padding: 30px 0; }
.phone { width: min(380px, 100%); background: var(--ink); border-radius: 30px; padding: 14px; box-shadow: 0 40px 80px -30px rgba(14, 23, 38, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06) inset; transform: rotate(-2deg); color: #fff; }
.phone__bar { display: flex; justify-content: space-between; font-size: 0.78rem; color: #aab4c5; padding: 4px 6px 12px; }
.phone__bar .live { color: #5fe0a8; }
.roof { width: 100%; height: auto; border-radius: 16px; overflow: hidden; }
.roof .panels rect { opacity: 0; transform-box: fill-box; transform-origin: center; animation: drop 0.35s ease-out forwards; }
@keyframes drop { from { opacity: 0; transform: scale(1.35); } to { opacity: 1; transform: scale(1); } }
.phone__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
.phone__stats div, .phone__save { background: var(--ink-2); border-radius: 12px; padding: 10px 12px; }
.phone__stats small, .phone__save small { display: block; font-size: 0.7rem; color: #8d98ab; }
.phone__stats b { font-family: var(--display); font-size: 1.05rem; }
.phone__save { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.phone__save b { font-family: var(--display); font-size: 1.5rem; color: var(--sun-2); }
.phone__save svg { width: 120px; height: 40px; }

.float { position: absolute; display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 14px; padding: 10px 14px 10px 10px; box-shadow: var(--shadow); font-size: 0.85rem; line-height: 1.3; animation: bob 6s ease-in-out infinite; }
.float b { display: block; color: var(--ink); }
.float small { color: var(--muted); font-size: 0.76rem; }
.float--wa { left: -10px; top: 18%; }
.float--sign { right: -6px; bottom: 10%; animation-delay: -3s; }
.wa, .check { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.wa { background: #25d366; }
.check { background: #e7f7ef; color: var(--green); font-weight: 800; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Strip */
.strip { border-block: 1px solid var(--line); background: #fff; }
.strip__inner { display: flex; align-items: center; gap: 22px; padding: 18px 0; overflow-x: auto; scrollbar-width: none; }
.strip__inner::-webkit-scrollbar { display: none; }
.strip__inner > span { font-size: 0.85rem; color: var(--muted); white-space: nowrap; }
.strip ul { display: flex; gap: 10px; list-style: none; margin: 0; padding: 0; }
.strip li { white-space: nowrap; font-size: 0.88rem; font-weight: 600; color: var(--ink); background: var(--tint); border: 1px solid #f1e2c9; padding: 6px 13px; border-radius: 999px; }

/* Sections */
.section { padding: clamp(70px, 10vw, 120px) 0; }
.section--tint { background: var(--tint); }
.section--dark { background: var(--ink); color: #c9d1de; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .lead { color: #a7b1c2; }
.section__head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 64px); }
.section__head h2 { margin-bottom: 18px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .lead { margin-inline: auto; }

/* Flow */
.flow { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: s; }
.flow__step { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.flow__step:not(:last-child)::after { content: ""; position: absolute; top: 44px; right: -14px; width: 10px; height: 10px; border-top: 2px solid var(--sun); border-right: 2px solid var(--sun); transform: rotate(45deg); z-index: 1; }
.flow__n { display: inline-block; font-family: var(--display); font-weight: 800; font-size: 0.9rem; color: var(--sun-deep); background: #fff1e2; border-radius: 8px; padding: 3px 9px; margin-bottom: 14px; }
.flow__step h3 { margin-bottom: 8px; }
.flow__step p { color: var(--muted); font-size: 0.95rem; }

/* Bento */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card { background: var(--ink-2); border: 1px solid rgba(255, 255, 255, 0.07); border-radius: var(--radius); padding: 26px; transition: border-color 0.2s, transform 0.2s; }
.card:hover { border-color: rgba(255, 181, 71, 0.4); transform: translateY(-2px); }
.card--xl { grid-column: span 2; grid-row: span 2; display: flex; flex-direction: column; }
.card--wide { grid-column: span 2; }
.card__icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(255, 122, 26, 0.14); color: var(--sun-2); font-size: 1.25rem; font-weight: 700; margin-bottom: 18px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.95rem; color: #a7b1c2; }
.card--xl h3 { font-size: 1.6rem; }
.mini-grid { margin-top: auto; padding-top: 28px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.mini-grid span { aspect-ratio: 1.6; border-radius: 4px; background: linear-gradient(180deg, #3a67e0, #1f3f96); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12); }
.mini-grid span.shade { background: linear-gradient(180deg, #ffb547, #e8590c); }
.pipeline { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pipeline span { font-size: 0.82rem; background: var(--ink-3); border-radius: 999px; padding: 5px 12px; color: #c9d1de; }
.pipeline b { color: #fff; margin-left: 4px; }
.pipeline .hot { background: rgba(23, 166, 115, 0.2); color: #6ee7b7; }

/* Calculator */
.calc { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 20px; align-items: start; }
.calc__form, .calc__out { background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: clamp(22px, 3vw, 34px); }
.calc__form { display: grid; gap: 18px; }
.calc label > span, .form label > span { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
input, select { width: 100%; font: inherit; font-size: 1rem; color: var(--ink); background: #fff; border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 14px; transition: border-color 0.15s, box-shadow 0.15s; appearance: none; -webkit-appearance: none; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235b6577' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
input:focus, select:focus { outline: none; border-color: var(--sun); box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.15); }
.money { position: relative; }
.money i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-style: normal; color: var(--muted); }
.money input { padding-left: 30px; }
input[type="range"] { padding: 0; border: 0; height: 6px; margin-top: 12px; border-radius: 999px; background: linear-gradient(90deg, var(--sun) var(--p, 20%), #eee3d2 var(--p, 20%)); }
input[type="range"]:focus { box-shadow: none; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--sun); box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); cursor: pointer; }
input[type="range"]::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: #fff; border: 3px solid var(--sun); cursor: pointer; }
.calc__note { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

.calc__out { background: var(--ink); border-color: var(--ink); color: #fff; display: grid; gap: 14px; }
.calc__hero { background: linear-gradient(135deg, #ff8a2a, var(--sun-deep)); border-radius: 18px; padding: 20px 22px; display: grid; }
.calc__hero small { font-size: 0.82rem; opacity: 0.9; }
.calc__hero b { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.2rem); line-height: 1.1; }
.calc__hero span { font-size: 0.9rem; opacity: 0.92; }
.calc__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.calc__grid div { background: var(--ink-2); border-radius: 14px; padding: 12px 14px; min-width: 0; }
.calc__grid small, .calc__chartHead small { display: block; font-size: 0.74rem; color: #8d98ab; }
.calc__grid b { font-family: var(--display); font-size: 1.2rem; white-space: nowrap; }
.calc__grid .pos b { color: #6ee7b7; }
.calc__chart { background: var(--ink-2); border-radius: 14px; padding: 14px 16px 10px; }
.calc__chartHead { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.calc__chartHead b { font-family: var(--display); font-size: 1.4rem; color: var(--sun-2); }
#oChart { width: 100%; height: 130px; }
.calc__axis { display: flex; justify-content: space-between; font-size: 0.72rem; color: #8d98ab; margin-top: 4px; }

/* Compare */
.table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: 22px; -webkit-overflow-scrolling: touch; }
.compare { width: 100%; border-collapse: collapse; min-width: 760px; font-size: 0.95rem; }
.compare th, .compare td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare thead th { font-family: var(--display); font-size: 1.02rem; color: var(--ink); background: #fffdf9; }
.compare tbody th { font-weight: 600; color: var(--ink); width: 28%; }
.compare td { color: var(--muted); }
.compare .us { background: #fff5e8; color: var(--ink); font-weight: 600; }
.compare thead .us { background: var(--ink); color: #fff; }
.compare td::before { display: inline-block; width: 20px; font-weight: 800; }
.compare td.y::before { content: "✓"; color: var(--green); }
.compare td.n::before { content: "✕"; color: var(--red); }
.compare td.p::before { content: "◐"; color: #d08a1a; }

/* Pricing */
.toggle { display: inline-flex; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 4px; margin-top: 26px; }
.toggle button { font: inherit; font-size: 0.92rem; font-weight: 600; border: 0; background: transparent; padding: 8px 18px; border-radius: 999px; cursor: pointer; color: var(--muted); }
.toggle button.is-on { background: var(--ink); color: #fff; }
.toggle em { font-style: normal; font-size: 0.75rem; color: var(--sun-2); margin-left: 4px; }
.toggle button:not(.is-on) em { color: var(--sun-deep); }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 30px 28px; display: flex; flex-direction: column; }
.plan--pop { border: 2px solid var(--sun); box-shadow: 0 30px 60px -30px rgba(232, 89, 12, 0.45); }
.plan__badge { position: absolute; top: -13px; left: 28px; background: var(--sun); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
.plan h3 { font-size: 1.4rem; }
.plan__for { color: var(--muted); font-size: 0.92rem; margin: 4px 0 20px; }
.plan__price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 22px; }
.plan__price b { font-family: var(--display); font-size: 2.6rem; color: var(--ink); letter-spacing: -0.02em; }
.plan__price span { color: var(--muted); font-size: 0.9rem; }
.plan ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 11px; font-size: 0.95rem; }
.plan li { padding-left: 26px; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.fineprint { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 22px; }

/* FAQ */
.faq { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: start; }
.faq .section__head { position: sticky; top: 100px; }
.faq__list { display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 0 22px; }
.faq summary { list-style: none; cursor: pointer; font-weight: 600; font-size: 1.05rem; color: var(--ink); padding: 20px 30px 20px 0; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.5rem; font-weight: 400; color: var(--sun-deep); transition: transform 0.2s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 20px; }

/* CTA / form */
.cta { position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; width: 700px; height: 700px; left: -250px; bottom: -420px; background: radial-gradient(circle, rgba(255, 122, 26, 0.35), transparent 65%); pointer-events: none; }
.cta__grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.cta h2 { margin-bottom: 18px; }
.cta__perks { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.cta__perks li { padding-left: 30px; position: relative; color: #dfe5ee; }
.cta__perks li::before { content: "☀"; position: absolute; left: 0; color: var(--sun-2); }
.form { background: #fff; border-radius: 24px; padding: clamp(22px, 3vw, 34px); display: grid; gap: 16px; color: var(--text); box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.6); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form .hp { position: absolute; left: -9999px; }
.form__msg { font-size: 0.92rem; font-weight: 500; min-height: 1.2em; }
.form__msg.ok { color: var(--green); }
.form__msg.err { color: var(--red); }
.form__legal { font-size: 0.78rem; color: var(--muted); }
.form.is-done .form__row, .form.is-done button, .form.is-done .form__legal { display: none; }
.form.is-done .form__msg { font-size: 1.1rem; text-align: center; padding: 30px 0; }

/* Footer */
.footer { background: #0a111d; color: #8d98ab; padding: 56px 0 28px; font-size: 0.92rem; }
.footer__inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 32px; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
.footer__inner p { margin-top: 12px; }
.footer nav { display: flex; flex-wrap: wrap; gap: 14px 26px; align-content: flex-start; }
.footer nav a { text-decoration: none; }
.footer nav a:hover { color: #fff; }
.footer__base { padding-top: 22px; font-size: 0.82rem; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* Legal pages */
.legal { padding: 60px 0 100px; }
.legal .wrap { max-width: 760px; }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 10px; }
.legal h2 { font-size: 1.4rem; margin: 36px 0 10px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }

/* Responsive */
@media (max-width: 1020px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav.is-open .nav__links { display: flex; flex-direction: column; gap: 0; position: absolute; top: 68px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--line); padding: 8px 20px 18px; }
  .nav.is-open .nav__links a { padding: 12px 0; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .hero__grid, .calc, .cta__grid, .faq { grid-template-columns: 1fr; }
  .faq .section__head { position: static; }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .flow__step::after { display: none; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}
@media (max-width: 640px) {
  .wrap { width: calc(100% - 32px); }
  .nav__cta .btn { display: none; }
  .hero__actions .btn { width: 100%; }
  .flow, .bento { grid-template-columns: 1fr; }
  .card--xl, .card--wide { grid-column: auto; grid-row: auto; }
  .calc__grid { grid-template-columns: repeat(2, 1fr); }
  .form__row { grid-template-columns: 1fr; }
  .float { font-size: 0.78rem; }
  .float--wa { left: -4px; top: 2%; }
  .float--sign { right: -4px; bottom: 0; }
  .phone { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .roof .panels rect { opacity: 1; }
  .reveal { opacity: 1; transform: none; }
}

/* Let grid children shrink below their content width */
.calc__out > *, .form > *, .calc__form > *, .hero__grid > *, .calc > *, .cta__grid > *, .faq > *, .plans > *, .bento > *, .flow > * { min-width: 0; }
.calc__grid b { white-space: normal; }
