:root {
  --green: #005632;
  --green-dark: #003d25;
  --cream: #fff8e9;
  --orange: #ff5a00;
  --ink: #132219;
  --muted: #5d6b62;
  --line: #cfd8cf;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.announcement {
  min-height: 34px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green-dark);
  color: #d9f2e2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #71e39a; box-shadow: 0 0 0 4px rgba(113,227,154,.13); }
.announcement-divider { opacity: .35; }

.site-header { height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { width: 288px; line-height: 0; }
.brand img { width: 100%; height: auto; display: block; }
.site-header nav { display: flex; gap: 30px; font-size: 14px; font-weight: 700; }
.site-header nav a { transition: color .2s ease; }
.site-header nav a:hover { color: var(--orange); }

.button {
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 6px 0 rgba(0,61,37,.16); }
.button-small { min-height: 42px; padding: 0 18px; font-size: 14px; }
.button-primary { background: var(--orange); border-color: var(--orange); color: var(--white); }
.button-ghost { background: transparent; color: var(--green); }
.button-light { background: var(--cream); border-color: var(--cream); color: var(--green-dark); }
.button-wide { width: 100%; }

.hero { border-top: 1px solid rgba(0,86,50,.16); overflow: hidden; }
.hero-grid { min-height: 650px; padding: 86px 0 78px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 78px; }
.eyebrow { margin: 0 0 20px; color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.hero h1, .section h2, .signup h2, .pricing-copy h2 {
  margin: 0;
  font-size: clamp(54px, 6.4vw, 92px);
  line-height: .94;
  letter-spacing: -.065em;
  color: var(--green-dark);
}
.hero h1 em, blockquote em { color: var(--orange); font-family: Georgia, serif; font-weight: 400; }
.hero-intro { max-width: 640px; margin: 30px 0 0; font-size: 20px; line-height: 1.55; color: #405147; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.microcopy { margin: 14px 0 0; color: var(--muted); font-size: 12px; }

.speed-card { padding: 26px; background: var(--white); border: 1px solid #d9dfda; border-radius: 16px; box-shadow: 18px 18px 0 rgba(0,86,50,.08); transform: rotate(1.2deg); }
.speed-card-top { display: flex; justify-content: space-between; gap: 10px; color: var(--green); font-size: 13px; font-weight: 800; }
.live-badge { padding: 5px 7px; border: 1px solid var(--orange); color: var(--orange); border-radius: 3px; font-size: 9px; letter-spacing: .08em; }
.gauge { width: 230px; aspect-ratio: 1; margin: 26px auto 12px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--orange) var(--progress), #e8ece8 0); position: relative; }
.gauge::before { content: ""; position: absolute; inset: 18px; border-radius: 50%; background: var(--white); }
.gauge div { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.gauge strong { font-size: 62px; line-height: 1; letter-spacing: -.07em; color: var(--green-dark); }
.gauge span { margin-top: 8px; color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: .13em; }
.speed-track { height: 5px; overflow: hidden; background: #e8ece8; border-radius: 10px; }
.speed-track span { display: block; height: 100%; background: var(--orange); transition: width .1s linear; }
.speed-result { min-height: 44px; margin: 16px 0 4px; font-size: 14px; line-height: 1.5; text-align: center; color: var(--muted); }
.text-button { width: 100%; border: 0; background: transparent; color: var(--green); font-size: 12px; font-weight: 800; text-decoration: underline; cursor: pointer; }

.trust-strip { background: var(--green); color: var(--white); padding: 28px 0 18px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { padding: 0 30px; border-right: 1px solid rgba(255,255,255,.2); display: flex; flex-direction: column; }
.trust-grid div:first-child { padding-left: 0; }
.trust-grid div:last-child { border: 0; }
.trust-grid strong { font-size: 30px; letter-spacing: -.04em; }
.trust-grid span { margin-top: 4px; color: #bcd8c8; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.trust-note { margin-top: 14px; color: #9cc4ad; font-size: 10px; }

.section { padding-top: 124px; padding-bottom: 124px; }
.section-heading { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 35px; align-items: end; margin-bottom: 64px; }
.section-heading .eyebrow { align-self: start; }
.section-heading h2, .pricing-copy h2, .signup h2 { font-size: clamp(46px, 5.2vw, 72px); }
.section-heading > p:last-child, .pricing-copy > p:last-child { margin: 0; color: var(--muted); line-height: 1.65; }
.section-heading.compact { display: block; max-width: 750px; }
.section-heading.compact h2 { margin-bottom: 24px; }

.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.promise-card { min-height: 410px; padding: 28px; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: 8px; }
.promise-card:nth-child(2) { background: var(--green); color: var(--white); transform: translateY(-18px) rotate(-.7deg); }
.promise-card:nth-child(2) h3, .promise-card:nth-child(2) .card-label { color: var(--white); }
.promise-card:nth-child(2) p, .promise-card:nth-child(2) small { color: #c5ddcf; }
.card-number { color: var(--orange); font-size: 12px; font-weight: 900; }
.card-label { margin: 52px 0 4px; color: var(--green); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.promise-card h3 { margin: 0; color: var(--green-dark); font-size: 49px; letter-spacing: -.06em; }
.promise-card p { color: var(--muted); line-height: 1.55; }
.promise-card small { margin-top: auto; padding-top: 28px; border-top: 1px solid rgba(120,130,122,.25); color: #7a857d; font-size: 10px; line-height: 1.45; }

.manifesto { padding: 110px 0; background: var(--green-dark); color: var(--white); }
.manifesto-grid { display: grid; grid-template-columns: .6fr 2fr .8fr; gap: 44px; }
.manifesto blockquote { margin: 0; font-size: clamp(43px, 5.4vw, 76px); line-height: 1.02; letter-spacing: -.055em; font-weight: 800; }
.manifesto-copy { margin: 0; align-self: end; color: #b8d1c3; line-height: 1.65; }

.comparison-section .section-heading { margin-bottom: 44px; }
.comparison-table { border-top: 3px solid var(--green-dark); }
.comparison-row { min-height: 72px; padding: 0 18px; display: grid; grid-template-columns: .7fr 1fr 1fr; align-items: center; gap: 24px; border-bottom: 1px solid var(--line); }
.comparison-row > :last-child { color: var(--green); font-weight: 800; }
.comparison-head { min-height: 48px; background: #e4eadf; color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.pricing-wrap { background: #e8eee6; }
.pricing-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.pricing-copy > p:last-child { max-width: 480px; margin-top: 28px; }
.price-card { position: relative; padding: 45px; background: var(--white); border: 2px solid var(--green); border-radius: 12px; box-shadow: 14px 14px 0 var(--orange); }
.popular { position: absolute; top: -17px; right: 26px; padding: 9px 13px; background: var(--orange); color: white; font-size: 10px; font-weight: 900; letter-spacing: .07em; transform: rotate(1deg); }
.price-name { margin: 0; color: var(--green); font-weight: 900; }
.price { margin: 24px 0 2px; display: flex; align-items: flex-start; color: var(--green-dark); }
.price > span { margin: 12px 5px 0 0; font-size: 25px; font-weight: 800; }
.price strong { font-size: 76px; line-height: 1; letter-spacing: -.075em; }
.price small { align-self: end; margin: 0 0 9px 10px; color: var(--muted); }
.annual { margin: 0 0 28px; color: var(--muted); font-size: 12px; }
.price-card ul { margin: 0 0 30px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.price-card li { padding: 13px 0 13px 28px; border-bottom: 1px solid var(--line); position: relative; line-height: 1.4; }
.price-card li::before { content: "W"; position: absolute; left: 1px; color: var(--orange); font-size: 11px; font-weight: 900; }
.fine-print { display: block; margin-top: 14px; color: #7b867e; text-align: center; line-height: 1.45; }

.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; align-items: start; }
.sticky-heading { position: sticky; top: 30px; }
.faq-list { border-top: 2px solid var(--green-dark); }
details { border-bottom: 1px solid var(--line); }
summary { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; color: var(--green-dark); font-size: 19px; font-weight: 800; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--orange); font-size: 28px; font-weight: 400; transition: transform .2s; }
details[open] summary span { transform: rotate(45deg); }
details p { margin: -8px 0 28px; max-width: 610px; color: var(--muted); line-height: 1.65; }

.signup { padding: 120px 0; background: var(--orange); color: var(--white); }
.signup-inner { max-width: 900px; text-align: center; }
.signup .eyebrow { color: var(--green-dark); }
.signup h2 { color: var(--white); }
.signup-inner > p:not(.eyebrow) { max-width: 680px; margin: 28px auto 40px; line-height: 1.6; }
.signup-form { max-width: 720px; margin: auto; }
.signup-form > label { display: block; margin-bottom: 8px; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.email-input { min-height: 62px; padding: 0 20px; display: flex; align-items: center; background: var(--white); border-radius: 7px; color: var(--green-dark); }
.email-input input { min-width: 0; flex: 1; border: 0; outline: 0; color: var(--green-dark); font-weight: 800; text-align: right; background: transparent; }
.email-input span { font-weight: 800; }
.signup-form .button { width: 100%; margin-top: 12px; }
.signup-form small { display: block; margin-top: 14px; color: #682600; }

footer { padding: 52px 0; background: #f6eedc; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.2fr .8fr; gap: 50px; align-items: start; }
.footer-grid img { width: 250px; height: auto; display: block; }
.footer-grid p { margin: 0; color: var(--muted); line-height: 1.55; }
.footer-links { display: flex; flex-direction: column; gap: 9px; color: var(--muted); font-size: 12px; }
.footer-links a:hover { color: var(--orange); }

@media (max-width: 900px) {
  .site-header nav { display: none; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-top: 60px; gap: 50px; }
  .hero-copy { max-width: 760px; }
  .speed-card { max-width: 520px; width: 100%; justify-self: center; }
  .section-heading { grid-template-columns: 1fr; gap: 15px; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise-card { min-height: 320px; }
  .promise-card:nth-child(2) { transform: none; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-copy { max-width: 550px; }
  .pricing-grid, .faq-grid { grid-template-columns: 1fr; gap: 65px; }
  .sticky-heading { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 1180px); }
  .announcement { min-height: 46px; font-size: 10px; }
  .announcement-divider, .announcement span:last-child { display: none; }
  .site-header { height: 78px; gap: 12px; }
  .brand { width: 205px; }
  .site-header .button { display: none; }
  .hero-grid { padding: 50px 0; }
  .hero h1 { font-size: 53px; }
  .hero-intro { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .speed-card { padding: 20px; transform: none; }
  .gauge { width: 190px; }
  .gauge strong { font-size: 52px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 25px 0; }
  .trust-grid div { padding: 0 15px; }
  .trust-grid div:nth-child(2) { border-right: 0; }
  .trust-grid div:nth-child(3) { padding-left: 0; }
  .section { padding-top: 82px; padding-bottom: 82px; }
  .section-heading h2, .pricing-copy h2, .signup h2 { font-size: 45px; }
  .promise-card h3 { font-size: 42px; }
  .manifesto { padding: 82px 0; }
  .manifesto blockquote { font-size: 43px; }
  .comparison-row { grid-template-columns: .7fr 1fr; gap: 12px; padding: 14px 9px; font-size: 12px; }
  .comparison-row > :nth-child(2) { display: none; }
  .comparison-head > :nth-child(2) { display: none; }
  .price-card { padding: 34px 22px; box-shadow: 8px 8px 0 var(--orange); }
  .popular { right: 10px; font-size: 8px; }
  .price strong { font-size: 63px; }
  .faq-grid { gap: 35px; }
  .signup { padding: 85px 0; }
  .email-input { padding: 0 12px; font-size: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { grid-column: auto; flex-direction: column; }
}

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