:root {
  --paper: #f7f3e8;
  --paper-deep: #ece5d3;
  --ink: #151712;
  --muted: #5d6057;
  --line: rgba(21, 23, 18, 0.16);
  --accent: #ff5b3d;
  --accent-dark: #9e2612;
  --lime: #c9f06a;
  --green: #1b3f2b;
  --white: #fffdf7;
  --display: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  --body: Aptos, "Segoe UI", Tahoma, sans-serif;
  --radius: 28px;
  --shadow: 0 22px 70px rgba(37, 34, 22, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
button, a { font: inherit; }
a { color: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--ink);
  color: white;
  border-radius: 12px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  background: rgba(247, 243, 232, 0.9);
  backdrop-filter: blur(14px);
}
.site-header.scrolled { border-color: var(--line); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wordmark {
  font-family: var(--display);
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  text-decoration: none;
  letter-spacing: -2px;
}
.wordmark span { color: var(--accent); }
.site-nav { display: flex; align-items: center; gap: 25px; }
.site-nav > a { text-decoration: none; font-size: 15px; font-weight: 700; }
.site-nav > a:hover { color: var(--accent-dark); }
.lang-switch {
  min-width: 44px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 10px;
}
.menu-toggle { display: none; border: 0; background: transparent; width: 48px; min-height: 44px; padding: 10px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 6px auto; transition: transform 180ms ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.button {
  min-height: 48px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 11px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.button:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.button:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.button-small { min-height: 44px; padding: 8px 17px; box-shadow: 3px 3px 0 var(--ink); }
.button-dark { background: var(--ink); color: var(--white); box-shadow: 4px 4px 0 var(--accent); }
.button-light { background: var(--lime); color: var(--ink); border-color: var(--white); box-shadow: 4px 4px 0 var(--white); }

.hero { overflow: hidden; padding: 86px 0 100px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(40px, 7vw, 90px); align-items: center; }
.eyebrow, .section-label {
  margin: 0 0 22px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 13px;
  font-weight: 900;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(255,91,61,.16); }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { font-family: var(--display); }
h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(61px, 7.6vw, 112px);
  line-height: 0.84;
  letter-spacing: -0.075em;
  font-weight: 900;
}
h1 em { color: var(--accent); font-style: normal; }
.hero-text { max-width: 610px; margin: 34px 0 0; font-size: clamp(18px, 2vw, 22px); color: #34372f; }
.hero-actions { display: flex; gap: 24px; align-items: center; margin-top: 34px; }
.text-link { font-weight: 800; text-underline-offset: 5px; }
.billing-note { max-width: 590px; margin: 26px 0 0; font-size: 14px; color: var(--muted); }
.billing-note strong { color: var(--ink); }

.hero-preview { position: relative; min-height: 580px; display: grid; place-items: center; }
.hero-preview::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .95;
}
.preview-note {
  position: absolute;
  top: 14px;
  right: 10px;
  z-index: 3;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
  transform: rotate(4deg);
}
.browser-frame { position: relative; z-index: 2; width: min(100%, 520px); border: 3px solid var(--ink); border-radius: 22px; overflow: hidden; background: white; box-shadow: var(--shadow), 11px 11px 0 var(--ink); transform: rotate(-2deg); }
.browser-top { height: 38px; padding: 0 12px; display: flex; align-items: center; gap: 6px; background: #ecece6; border-bottom: 2px solid var(--ink); }
.browser-top i { width: 8px; height: 8px; border: 1px solid var(--ink); border-radius: 50%; background: var(--accent); }
.browser-top i:nth-child(2) { background: var(--lime); }
.browser-top i:nth-child(3) { background: #ffe476; }
.browser-top span { margin-left: 8px; font-size: 10px; color: var(--muted); }
.demo-page { min-height: 420px; background: #fffdf7; }
.demo-nav { display: flex; justify-content: space-between; padding: 17px 20px; border-bottom: 1px solid var(--line); font-size: 12px; }
.demo-nav span { background: var(--ink); color: white; border-radius: 999px; padding: 5px 10px; }
.demo-body { padding: 54px 34px 65px; background: linear-gradient(145deg, #fffdf7 65%, #dff4a7 65%); }
.demo-body small { font-weight: 900; letter-spacing: .12em; }
.demo-body h2 { max-width: 390px; margin: 13px 0 18px; font-size: clamp(36px, 5vw, 59px); line-height: .93; letter-spacing: -.055em; }
.demo-body p { width: 70%; color: var(--muted); }
.demo-body button { min-height: 44px; margin-top: 12px; padding: 10px 14px; border: 1px solid var(--ink); border-radius: 999px; background: var(--accent); color: var(--ink); font-weight: 900; }
.demo-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid var(--ink); }
.demo-strip span { padding: 15px 8px; text-align: center; font-weight: 800; font-size: 12px; border-right: 1px solid var(--ink); }
.demo-strip span:last-child { border: 0; }
.floating-tag { position: absolute; z-index: 4; min-width: 135px; padding: 13px 17px; border: 2px solid var(--ink); border-radius: 17px; background: var(--lime); box-shadow: 4px 4px 0 var(--ink); transform: rotate(4deg); }
.floating-tag b, .floating-tag span { display: block; }
.floating-tag b { font-family: var(--display); font-size: 18px; }
.floating-tag span { font-size: 11px; }
.tag-fast { left: -15px; top: 84px; }
.tag-mobile { right: -8px; bottom: 30px; background: var(--white); transform: rotate(-5deg); }

.proof-strip { background: var(--ink); color: var(--white); }
.proof-list { min-height: 82px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; gap: 20px; }
.proof-list p { margin: 0; font-size: 14px; font-weight: 700; }
.proof-list span { color: var(--lime); margin-right: 8px; font-family: ui-monospace, monospace; }
.section { padding: 120px 0; }
.section-label { color: var(--accent-dark); }
.section h2, .closing-section h2 { margin: 0; font-size: clamp(45px, 6vw, 78px); line-height: .95; letter-spacing: -.055em; }
.statement-grid, .included-grid, .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 9vw, 120px); }
.statement-copy { padding-top: 54px; font-size: 20px; }
.statement-copy p { margin: 0 0 25px; }
.problem-section { background: var(--lime); }
.problem-section .section-label { color: var(--green); }

.process-section { background: var(--white); }
.section-head { max-width: 780px; margin-bottom: 68px; }
.process-list { list-style: none; margin: 0; padding: 0; border-top: 2px solid var(--ink); }
.process-list li { display: grid; grid-template-columns: 100px 1fr; gap: 28px; padding: 35px 0; border-bottom: 2px solid var(--ink); }
.step-number { font-family: var(--display); font-size: 42px; line-height: 1; color: var(--accent); }
.process-list h3 { margin: 0 0 8px; font-size: 28px; letter-spacing: -.03em; }
.process-list p { margin: 0; max-width: 690px; color: var(--muted); }

.included-section { background: var(--paper-deep); }
.included-intro > p:last-child { max-width: 520px; margin-top: 30px; font-size: 19px; }
.check-panel { border: 2px solid var(--ink); border-radius: var(--radius); background: var(--white); overflow: hidden; box-shadow: 8px 8px 0 var(--ink); }
.check-panel ul { list-style: none; padding: 14px 30px; margin: 0; }
.check-panel li { display: flex; gap: 14px; padding: 17px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.check-panel li:last-child { border: 0; }
.check-panel li span { color: var(--accent-dark); font-weight: 900; }
.exclusion { margin: 0; padding: 23px 30px; background: var(--ink); color: var(--white); font-size: 14px; }

.pricing-section { background: var(--accent); }
.pricing-section .section-label { color: var(--ink); }
.pricing-head { max-width: none; display: grid; grid-template-columns: 1.3fr .7fr; gap: 60px; align-items: end; }
.pricing-head > p { margin: 0 0 8px; font-weight: 700; }
.pricing-table { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; padding: 31px; border: 2px solid var(--ink); border-radius: var(--radius); background: var(--paper); }
.price-card.featured { background: var(--lime); transform: translateY(-10px); box-shadow: 8px 8px 0 var(--ink); }
.plan-badge {
  align-self: flex-start;
  margin: 0 0 12px;
  padding: 5px 9px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  font-family: ui-monospace, monospace;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}
.plan-name { margin: 0 0 22px; font-family: var(--display); font-size: 25px; font-weight: 900; }
.price { display: flex; align-items: baseline; gap: 8px; }
.price strong { font-family: var(--display); font-size: clamp(38px, 4vw, 53px); line-height: 1; letter-spacing: -.05em; }
.price span, .price-detail { color: var(--muted); }
.price-detail { min-height: 54px; margin: 12px 0 20px; font-size: 14px; }
.plan-fit { min-height: 84px; }
.price-card ul { list-style: none; padding: 22px 0; margin: 0 0 24px; border-top: 1px solid var(--line); }
.price-card li { position: relative; margin: 9px 0; padding-left: 21px; font-size: 14px; line-height: 1.42; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-dark); font-weight: 900; }
.price-card li strong { font-weight: 900; }
.price-card .button { margin-top: auto; }

.faq-section { background: var(--white); }
.faq-list { border-top: 2px solid var(--ink); }
details { border-bottom: 2px solid var(--ink); }
summary { min-height: 72px; display: flex; justify-content: space-between; align-items: center; gap: 18px; list-style: none; cursor: pointer; font-family: var(--display); font-size: 19px; font-weight: 900; }
summary::-webkit-details-marker { display: none; }
summary span { font-size: 28px; color: var(--accent); transition: transform 160ms ease; }
details[open] summary span { transform: rotate(45deg); }
details p { margin: 0; padding: 0 40px 28px 0; color: var(--muted); }

.closing-section { padding: 110px 0; background: var(--green); color: var(--white); }
.closing-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; }
.section-label.light { color: var(--lime); }
.closing-grid > div:last-child > p:first-child { margin: 0 0 25px; font-size: 19px; }
.contact-status { margin: 18px 0 0; color: var(--lime); font-size: 14px; }
.site-footer { padding: 48px 0; background: var(--ink); color: var(--white); border-top: 1px solid rgba(255,255,255,.15); }
.footer-grid { display: grid; grid-template-columns: .5fr 1fr .5fr; gap: 30px; align-items: center; }
.footer-grid p { margin: 0; color: #c9c9c1; font-size: 14px; }
.footer-grid p:last-child { text-align: right; }
.footer-mark span { color: var(--lime); }

@media (max-width: 960px) {
  .hero-grid, .statement-grid, .included-grid, .faq-grid, .closing-grid { grid-template-columns: 1fr; }
  .hero-preview { min-height: 520px; }
  .tag-fast { left: 0; }
  .tag-mobile { right: 0; }
  .statement-copy { padding-top: 0; }
  .proof-list { grid-template-columns: 1fr 1fr; padding: 24px 0; }
  .pricing-table { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .plan-fit { min-height: auto; }
  .pricing-head { grid-template-columns: 1fr; gap: 25px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid p:last-child { text-align: left; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 1180px); }
  .site-header { backdrop-filter: none; }
  .nav-wrap { min-height: 66px; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 66px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; background: var(--paper); border-bottom: 2px solid var(--ink); }
  .site-nav.open { display: flex; }
  .site-nav > a { min-height: 48px; display: flex; align-items: center; padding: 0 8px; border-bottom: 1px solid var(--line); }
  .site-nav .button { margin-top: 14px; }
  .hero { padding: 60px 0 72px; }
  h1 { font-size: clamp(58px, 19vw, 83px); }
  .hero-text { margin-top: 28px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .text-link { min-height: 44px; display: flex; align-items: center; }
  .hero-preview { min-height: 430px; margin-top: 20px; }
  .hero-preview::before { width: 330px; height: 330px; }
  .browser-frame { width: calc(100% - 14px); box-shadow: 7px 7px 0 var(--ink); }
  .demo-page { min-height: 330px; }
  .demo-body { padding: 34px 22px 45px; }
  .demo-body h2 { font-size: 38px; }
  .demo-body p { width: 88%; font-size: 14px; }
  .floating-tag { padding: 9px 12px; min-width: 116px; }
  .tag-fast { top: 36px; }
  .tag-mobile { bottom: 3px; }
  .preview-note { top: -8px; }
  .proof-list { grid-template-columns: 1fr; gap: 11px; }
  .section { padding: 82px 0; }
  .section h2, .closing-section h2 { font-size: clamp(43px, 13vw, 64px); }
  .section-head { margin-bottom: 42px; }
  .process-list li { grid-template-columns: 54px 1fr; gap: 15px; padding: 28px 0; }
  .step-number { font-size: 31px; }
  .process-list h3 { font-size: 23px; }
  .check-panel { box-shadow: 5px 5px 0 var(--ink); }
  .check-panel ul { padding: 10px 20px; }
  .price-card { padding: 25px 22px; }
  .closing-section { padding: 82px 0; }
  .closing-grid { gap: 40px; }
}

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