:root {
  --ink: #101827;
  --muted: #5f6672;
  --cream: #fbf8f3;
  --paper: #ffffff;
  --orange: #e8651a;
  --orange-deep: #a3420b;
  --orange-soft: #fff0e4;
  --green: #0f8a60;
  --green-soft: #e8f8f1;
  --line: #e9e3da;
  --shadow: 0 24px 60px rgba(34, 27, 20, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand { margin-right: auto; display: inline-flex; }
.brand img { width: 190px; height: auto; object-fit: contain; }
.site-header nav { display: flex; gap: 28px; color: #3f4651; font-size: 14px; font-weight: 600; }
.site-header nav a:hover { color: var(--orange); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: linear-gradient(135deg, var(--orange), #c94e0c); box-shadow: 0 12px 28px rgba(232, 101, 26, .24); }
.button-link { color: var(--orange-deep); }
.button-small { min-height: 42px; padding: 0 18px; font-size: 14px; }
.button-ghost { border-color: #d8d0c5; background: rgba(255,255,255,.55); }

.section-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.hero {
  min-height: 700px;
  padding: 74px 0 84px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 70px;
  align-items: center;
}
.hero-copy { max-width: 610px; }
.eyebrow, .overline {
  margin: 0 0 18px;
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 9px; }
.eyebrow span { width: 26px; height: 2px; background: var(--orange); }
h1 { max-width: 720px; margin: 0; font-size: clamp(43px, 5vw, 68px); line-height: 1.02; letter-spacing: -.055em; }
.hero-lead { max-width: 590px; margin: 24px 0 0; color: var(--muted); font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 32px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 22px; padding: 0; margin: 26px 0 0; list-style: none; color: #4a515b; font-size: 13px; font-weight: 600; }
.trust-list span { display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 5px; color: var(--green); background: var(--green-soft); border-radius: 50%; }

.calculator-card {
  position: relative;
  padding: 30px;
  background: var(--paper);
  border: 1px solid rgba(225, 215, 202, .9);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.calculator-card::before {
  content: "";
  position: absolute;
  inset: -16px -18px auto auto;
  width: 100px;
  height: 100px;
  z-index: -1;
  background: radial-gradient(circle, rgba(232,101,26,.2), transparent 70%);
}
.calculator-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.calculator-head h2 { margin: 0; font-size: 27px; letter-spacing: -.035em; }
.overline { margin-bottom: 8px; }
.live-badge { display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; border-radius: 999px; color: var(--green); background: var(--green-soft); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.live-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(15,138,96,.12); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
.form-grid label { display: grid; gap: 8px; color: #505762; font-size: 12px; font-weight: 700; }
.form-grid label:first-child { grid-column: 1 / -1; }
select, input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #fcfbf9;
  border: 1px solid #ddd6ce;
  border-radius: 11px;
  outline: none;
}
select:focus, input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,101,26,.11); }
.money-input, .suffix-input { position: relative; display: flex; align-items: center; }
.money-input > span, .suffix-input > span { position: absolute; color: #777e87; font-size: 13px; font-weight: 700; }
.money-input > span { left: 14px; }
.money-input input { padding-left: 40px; }
.suffix-input > span { right: 14px; }
.suffix-input input { padding-right: 45px; }
.result-panel { margin-top: 22px; padding: 22px; background: linear-gradient(135deg, #f1fbf6, #e4f6ee); border: 1px solid #cce9dc; border-radius: 18px; }
.result-main { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2px 16px; padding-bottom: 18px; border-bottom: 1px solid #c7e4d7; }
.result-main p { margin: 0; color: #3d6455; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.result-main strong { grid-row: 1 / 3; grid-column: 2; color: #086846; font-size: 31px; letter-spacing: -.04em; }
.result-main small { color: #5b786c; }
.result-panel dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 18px 0 0; }
.result-panel dl div { display: grid; gap: 5px; }
.result-panel dt { color: #60746b; font-size: 11px; }
.result-panel dd { margin: 0; font-size: 14px; font-weight: 800; }
.data-note { margin: 14px 2px 0; color: #7a8088; font-size: 11px; line-height: 1.5; }
.proof-strip { padding: 26px 20px; color: #fff; background: var(--ink); text-align: center; }
.proof-strip p { margin: 0 0 14px; color: #f4b78e; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.proof-strip div { display: flex; justify-content: center; flex-wrap: wrap; gap: 38px; color: #f4f5f7; font-size: 14px; font-weight: 700; }

@media (max-width: 900px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 50px; }
  .hero-copy { max-width: 760px; }
  .calculator-card { max-width: 650px; }
}
@media (max-width: 600px) {
  .site-header { width: min(100% - 26px, 1180px); height: 72px; }
  .brand img { width: 155px; }
  .button-small { display: none; }
  .section-shell { width: min(100% - 26px, 1180px); }
  .hero { padding: 40px 0 62px; }
  h1 { font-size: 42px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .trust-list { gap: 12px; }
  .calculator-card { padding: 22px; border-radius: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label:first-child { grid-column: auto; }
  .result-main { grid-template-columns: 1fr; }
  .result-main strong { grid-row: auto; grid-column: auto; margin-top: 6px; }
  .result-panel dl { grid-template-columns: 1fr 1fr; }
  .proof-strip div { gap: 16px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

.skip-link { position: fixed; top: 10px; left: 10px; z-index: 100; padding: 10px 14px; color: #fff; background: var(--ink); border-radius: 8px; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.menu-button { display: none; width: 42px; height: 42px; padding: 9px; background: transparent; border: 1px solid var(--line); border-radius: 10px; }
.menu-button > span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 4px 0; background: var(--ink); }
.content-section { padding: 104px 0; }
.section-heading { max-width: 720px; margin-bottom: 46px; }
.section-heading.narrow { max-width: 790px; }
.section-heading h2, .story-copy h2, .trial-card h2, .final-cta h2, .guide-header h1, .tool-hero h1 { margin: 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -.045em; }
.section-heading > p:last-child { margin: 20px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.pain-grid, .feature-grid, .tool-explainer { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pain-grid article, .feature-grid article, .tool-explainer article { padding: 28px; background: rgba(255,255,255,.75); border: 1px solid var(--line); border-radius: 20px; }
.pain-grid b, .tool-explainer article > span { color: var(--orange); font-size: 12px; letter-spacing: .08em; }
.pain-grid h3, .feature-grid h3, .tool-explainer h2 { margin: 24px 0 10px; font-size: 20px; letter-spacing: -.025em; }
.pain-grid p, .feature-grid p, .tool-explainer p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.product-story { padding: 108px 0; background: #f0ebe4; }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 82px; align-items: center; }
.story-image { position: relative; padding: 30px; background: #fff; border: 1px solid #ded5ca; border-radius: 30px; box-shadow: var(--shadow); }
.story-image::after { content: ""; position: absolute; inset: 24px -25px -25px 24px; z-index: -1; background: var(--orange); border-radius: 30px; opacity: .12; }
.story-image img { display: block; width: 100%; height: auto; border-radius: 18px; }
.story-copy > p:not(.eyebrow) { margin: 22px 0; color: var(--muted); line-height: 1.75; }
.check-list { display: grid; gap: 18px; padding: 0; margin: 28px 0 34px; list-style: none; }
.check-list li { display: flex; gap: 13px; }
.check-list li > span { flex: 0 0 27px; display: grid; place-items: center; height: 27px; color: var(--green); background: var(--green-soft); border-radius: 50%; font-weight: 800; }
.check-list div { display: grid; gap: 5px; }
.check-list small { color: var(--muted); line-height: 1.5; }
.feature-grid article { min-height: 250px; }
.product-proof { padding: 100px 0 20px; }
.product-proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.product-proof figure { margin: 0; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 16px 44px rgba(35,27,20,.06); }
.product-proof img { display: block; width: 100%; height: auto; border-radius: 15px; }
.product-proof figcaption { padding: 17px 4px 2px; color: #4e5662; font-size: 13px; font-weight: 800; }
.feature-icon { display: grid; place-items: center; width: 46px; height: 46px; color: var(--orange-deep); background: var(--orange-soft); border-radius: 13px; font-size: 21px; font-weight: 800; }
.feature-grid h3 { margin-top: 22px; }
.feature-grid a { display: inline-block; margin-top: 24px; color: var(--orange-deep); font-size: 13px; font-weight: 800; }
.trial-section { padding: 0 0 104px; }
.trial-card { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 58px 64px; color: #fff; background: linear-gradient(135deg, #1c2839, #0c121c); border-radius: 32px; overflow: hidden; }
.trial-card h2 { max-width: 680px; }
.trial-card p:not(.eyebrow) { max-width: 680px; margin: 18px 0 0; color: #cbd1da; line-height: 1.7; }
.eyebrow.light { color: #ffbc91; }
.button-white { color: var(--ink); background: #fff; }
.button-outline-light { color: #fff; border-color: rgba(255,255,255,.4); }
.trial-actions { display: grid; gap: 10px; min-width: 200px; text-align: center; }
.trial-actions small { color: #aeb8c5; }
.faq-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { padding: 24px 4px; border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding-right: 38px; cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 5px; color: var(--orange); font-size: 22px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 15px 38px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.final-cta { padding: 84px 0; color: #fff; background: var(--orange-deep); text-align: center; }
.final-cta .eyebrow { justify-content: center; }
.final-cta .eyebrow span { background: #fff; }
.final-cta h2 { max-width: 820px; margin: 0 auto; }
.final-cta .section-shell > div { display: flex; justify-content: center; gap: 14px; margin-top: 30px; }
.site-footer { padding: 74px 0 24px; background: #0e1622; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 46px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-grid strong { margin-bottom: 7px; font-size: 13px; }
.footer-grid a { color: #aeb8c5; font-size: 13px; }
.footer-grid a:hover { color: #fff; }
.footer-brand img { width: 175px; filter: brightness(0) invert(1); object-fit: contain; }
.footer-brand p { max-width: 280px; margin: 8px 0 0; color: #aeb8c5; font-size: 13px; line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 22px; color: #778394; border-top: 1px solid #273141; font-size: 11px; }
.consent { position: fixed; right: 22px; bottom: 22px; z-index: 50; width: min(430px, calc(100% - 44px)); padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
.consent p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.consent > div { display: flex; justify-content: flex-end; gap: 8px; margin-top: 14px; }
.guide-header, .guide-hero { padding: 78px 0 62px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; color: #7a8088; font-size: 12px; }
.breadcrumbs a { color: var(--orange-deep); }
.guide-header h1, .guide-hero h1 { max-width: 900px; }
.guide-header > p, .guide-hero > p:not(.eyebrow) { max-width: 790px; margin: 22px 0 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.guide-hero > .button { margin-top: 26px; }
.guide-layout, .guide-body { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 70px; padding-bottom: 100px; }
.guide-content { padding: 42px 48px; background: #fff; border: 1px solid var(--line); border-radius: 24px; }
.guide-content section + section { padding-top: 34px; margin-top: 34px; border-top: 1px solid var(--line); }
.guide-content h2 { margin: 0 0 14px; font-size: 29px; letter-spacing: -.035em; }
.guide-content p, .guide-content li { color: #505762; line-height: 1.8; }
.formula-card { padding: 25px; margin: 32px 0; background: var(--green-soft); border-left: 4px solid var(--green); border-radius: 12px; }
.formula-card code { display: block; margin-top: 8px; color: #07583c; font: 700 14px/1.7 Inter, ui-sans-serif, system-ui, sans-serif; }
.guide-aside, .guide-sidebar { display: grid; align-content: start; gap: 18px; }
.guide-aside > div, .guide-sidebar > div, .guide-sidebar > nav { padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: 20px; }
.guide-aside h3, .guide-sidebar h2 { margin: 8px 0 10px; font-size: 22px; }
.guide-aside p, .guide-sidebar p { color: var(--muted); font-size: 13px; line-height: 1.65; }
.guide-sidebar nav { display: grid; gap: 13px; }
.guide-sidebar nav a { color: var(--orange-deep); font-size: 12px; font-weight: 700; }
.article-faq details { padding: 17px 0; border-bottom: 1px solid var(--line); }
.article-faq summary { cursor: pointer; font-weight: 800; }
.tool-hero { display: flex; justify-content: space-between; align-items: end; gap: 55px; padding: 68px 0 54px; }
.tool-hero > div { max-width: 780px; }
.tool-hero > div > p:last-child { max-width: 720px; margin: 22px 0 0; color: var(--muted); font-size: 17px; line-height: 1.72; }
.privacy-note { flex: 0 0 280px; display: grid; gap: 7px; padding: 20px; color: #315a4a; background: var(--green-soft); border: 1px solid #cbe8dc; border-radius: 16px; }
.privacy-note strong { font-size: 13px; }
.privacy-note span { font-size: 11px; line-height: 1.6; }
.simulator-shell { display: grid; grid-template-columns: minmax(0, 1fr) 365px; gap: 26px; align-items: start; padding-bottom: 76px; }
.sim-card, .results-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 14px 42px rgba(35,27,20,.07); }
.sim-card { padding: 30px; }
.step-title { display: flex; align-items: center; gap: 13px; margin-bottom: 24px; }
.step-title > span { flex: 0 0 36px; display: grid; place-items: center; height: 36px; color: #fff; background: var(--orange); border-radius: 50%; font-size: 13px; font-weight: 800; }
.step-title div { display: grid; gap: 4px; }
.step-title p { margin: 0; font-weight: 800; }
.step-title small { color: var(--muted); line-height: 1.4; }
.step-title.compact { margin-top: 30px; }
.step-title.compact > span { width: 30px; flex-basis: 30px; height: 30px; }
.control-grid { display: grid; gap: 16px; }
.control-grid-three { grid-template-columns: repeat(3, 1fr); }
.control-grid label, .yield-row label { display: grid; gap: 8px; color: #505762; font-size: 12px; font-weight: 700; }
.refine-toggle { width: 100%; margin-top: 24px; padding: 16px 18px; color: var(--orange-deep); background: var(--orange-soft); border: 0; border-radius: 12px; cursor: pointer; font-weight: 800; text-align: left; }
.refine-toggle span { display: inline-block; width: 26px; }
.refine-panel { padding-top: 2px; }
.yield-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 430px; }
.ingredient-table-wrap { margin-top: 20px; overflow-x: auto; }
.ingredient-table { width: 100%; min-width: 810px; border-collapse: collapse; }
.ingredient-table th { padding: 10px 8px; color: #747b85; border-bottom: 1px solid var(--line); font-size: 10px; text-align: left; text-transform: uppercase; letter-spacing: .04em; }
.ingredient-table td { padding: 10px 7px; border-bottom: 1px solid #f0ece6; }
.ingredient-table input, .ingredient-table select { min-height: 40px; padding: 0 9px; font-size: 12px; }
.ingredient-table .ingredient-name { min-width: 150px; font-weight: 700; }
.ingredient-table td:nth-child(2), .ingredient-table td:nth-child(4) { min-width: 170px; }
.joined-input { display: grid; grid-template-columns: 1fr 72px; }
.joined-input input { border-radius: 9px 0 0 9px; }
.joined-input select { border-left: 0; border-radius: 0 9px 9px 0; }
.remove-row { width: 32px; height: 32px; color: #a14b42; background: #fff1ef; border: 0; border-radius: 8px; cursor: pointer; font-size: 19px; }
.text-action { padding: 14px 0; color: var(--orange-deep); background: transparent; border: 0; cursor: pointer; font-size: 12px; font-weight: 800; }
.cost-step { padding-top: 26px; border-top: 1px solid var(--line); }
.advanced-grid input { background: #fff; }
.results-card { position: sticky; top: 20px; padding: 27px; }
.profit-highlight { display: grid; gap: 5px; padding: 22px; color: #075c3f; background: linear-gradient(135deg, #f0fbf6, #e3f6ed); border: 1px solid #c7e8d9; border-radius: 16px; }
.profit-highlight span { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.profit-highlight strong { font-size: 32px; letter-spacing: -.04em; }
.profit-highlight small { color: #557a6b; }
.roi-highlight { color: #85400f; background: linear-gradient(135deg, #fff8ef, #ffead9); border-color: #f5d3b8; }
.roi-highlight small { color: #83654f; }
.metric-list { display: grid; margin: 20px 0; }
.metric-list > div { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid #eee9e2; }
.metric-list dt { color: var(--muted); font-size: 11px; }
.metric-list dd { margin: 0; font-size: 12px; font-weight: 800; text-align: right; }
.assumption-box { padding: 16px; background: #f7f5f1; border-radius: 12px; }
.assumption-box strong { font-size: 11px; }
.assumption-box ul { display: grid; gap: 6px; padding-left: 17px; margin: 10px 0 0; color: #656c75; font-size: 10px; line-height: 1.5; }
.assumption-box p { margin: 10px 0 0; color: #757c84; font-size: 10px; }
.result-cta { width: 100%; margin-top: 18px; font-size: 12px; }
.tool-explainer { padding: 0 0 96px; }
.tool-explainer h2 { margin-top: 18px; font-size: 18px; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .site-header nav.is-open { position: absolute; top: 75px; left: 20px; right: 20px; z-index: 20; display: grid; gap: 0; padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
  .site-header nav.is-open a { padding: 12px; }
  .story-grid, .faq-section, .guide-layout, .guide-body { grid-template-columns: 1fr; gap: 42px; }
  .pain-grid, .feature-grid, .tool-explainer { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
  .tool-hero { align-items: start; flex-direction: column; }
  .privacy-note { flex-basis: auto; max-width: 500px; }
  .simulator-shell { grid-template-columns: 1fr; }
  .results-card { position: static; }
}

@media (max-width: 600px) {
  .content-section, .product-story { padding: 72px 0; }
  .product-proof { padding-top: 72px; }
  .product-proof-grid { grid-template-columns: 1fr; }
  .pain-grid, .feature-grid, .tool-explainer { grid-template-columns: 1fr; }
  .story-grid { gap: 48px; }
  .story-image { padding: 16px; }
  .trial-section { padding-bottom: 72px; }
  .trial-card { align-items: stretch; flex-direction: column; padding: 36px 24px; border-radius: 22px; }
  .faq-section { gap: 22px; }
  .final-cta .section-shell > div { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .consent > div { flex-direction: column; }
  .consent .button-small { display: inline-flex; }
  .guide-header, .guide-hero { padding: 48px 0 38px; }
  .guide-content { padding: 28px 22px; }
  .guide-layout, .guide-body { padding-bottom: 72px; }
  .tool-hero { padding: 46px 0 38px; }
  .sim-card, .results-card { padding: 21px; border-radius: 18px; }
  .control-grid-three, .yield-row { grid-template-columns: 1fr; }
  .tool-explainer { padding-bottom: 72px; }
}
