:root {
  --ink: #10241d;
  --ink-soft: #294139;
  --forest: #0f5b43;
  --forest-dark: #0a3d2e;
  --mint: #dff4e8;
  --lime: #c8ef7a;
  --orange: #ff7849;
  --cream: #f7f3e9;
  --paper: #fffdf8;
  --line: #dfe5de;
  --muted: #687a73;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 36, 29, 0.12);
  --radius: 24px;
  --font-display: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 10px 32px rgba(16, 36, 29, 0.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 800 25px/1 var(--font-display);
  letter-spacing: -1.3px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 9px;
  background: var(--forest);
  transform: rotate(-7deg);
}

.brand-mark span {
  position: absolute;
  width: 4px;
  border-radius: 4px;
  background: var(--lime);
}

.brand-mark span:nth-child(1) {
  height: 9px;
  left: 7px;
  bottom: 6px;
}

.brand-mark span:nth-child(2) {
  height: 16px;
  bottom: 6px;
}

.brand-mark span:nth-child(3) {
  height: 12px;
  right: 7px;
  bottom: 6px;
}

.brand-mark.small {
  width: 22px;
  height: 22px;
  border-radius: 7px;
}

.brand-mark.small span {
  width: 3px;
  bottom: 5px;
}

.brand-mark.small span:nth-child(1) {
  left: 5px;
  height: 7px;
}

.brand-mark.small span:nth-child(2) {
  height: 12px;
}

.brand-mark.small span:nth-child(3) {
  right: 5px;
  height: 9px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a:not(.button) {
  transition: color 160ms ease;
}

.main-nav > a:not(.button):hover {
  color: var(--forest);
}

.nav-login {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--ink);
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  gap: 14px;
  border: 0;
  border-radius: 14px;
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 14px 30px rgba(15, 91, 67, 0.18);
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  background: var(--forest-dark);
  box-shadow: 0 18px 38px rgba(15, 91, 67, 0.25);
  transform: translateY(-2px);
}

.button-small {
  min-height: 43px;
  padding: 0 18px;
  border-radius: 11px;
  font-size: 13px;
}

.button-full {
  width: 100%;
}

.button-light {
  color: var(--ink);
  background: var(--lime);
  box-shadow: none;
}

.button-light:hover {
  color: var(--white);
  background: var(--orange);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 145px 0 80px;
  background:
    linear-gradient(rgba(255, 253, 248, 0.7), rgba(255, 253, 248, 0.95)),
    radial-gradient(circle at 30% 20%, #e7f7db 0, transparent 34%),
    var(--paper);
}

.hero::before {
  position: absolute;
  top: 0;
  right: -17%;
  width: 58%;
  height: 100%;
  border-radius: 0 0 0 50%;
  background: linear-gradient(155deg, #e7f5df, #d8efe7);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 56px;
}

.hero-copy {
  padding-top: 10px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.eyebrow {
  padding: 9px 13px;
  border: 1px solid #c7dfd3;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  letter-spacing: 0.7px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 120, 73, 0.15);
}

.hero h1,
.section-heading h2,
.pricing-copy h2,
.final-cta h2 {
  margin: 0;
  font: 800 clamp(48px, 6vw, 78px)/0.98 var(--font-display);
  letter-spacing: -4.7px;
}

.hero h1 span,
.final-cta h2 em {
  color: var(--forest);
  font-style: normal;
}

.hero-lead {
  max-width: 520px;
  margin: 28px 0 30px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 37px;
}

.proof-avatars {
  display: flex;
}

.proof-avatars span {
  display: grid;
  width: 32px;
  height: 32px;
  margin-left: -7px;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-size: 10px;
  font-weight: 700;
}

.proof-avatars span:first-child {
  margin-left: 0;
  background: var(--orange);
}

.proof-avatars span:last-child {
  background: var(--ink-soft);
}

.hero-proof p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.hero-product {
  position: relative;
  min-height: 570px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(15, 91, 67, 0.15);
  border-radius: 50%;
}

.orbit-one {
  top: -40px;
  right: -120px;
  width: 590px;
  height: 590px;
}

.orbit-two {
  top: 50px;
  right: -30px;
  width: 400px;
  height: 400px;
}

.phone-card {
  position: absolute;
  z-index: 4;
  top: -7px;
  left: 6px;
  overflow: hidden;
  width: 235px;
  height: 500px;
  border: 8px solid var(--ink);
  border-radius: 34px;
  background: #fbfaf5;
  box-shadow: 0 34px 70px rgba(16, 36, 29, 0.22);
  transform: rotate(-4deg);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 26px;
  padding: 0 15px;
  color: var(--white);
  background: var(--ink);
  font-size: 7px;
}

.phone-top div {
  display: flex;
  gap: 2px;
}

.phone-top i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--white);
}

.store-cover {
  position: relative;
  height: 80px;
  background:
    linear-gradient(130deg, rgba(16, 36, 29, 0.15), rgba(16, 36, 29, 0.3)),
    linear-gradient(135deg, #f59a58, #f2cc77);
}

.store-cover::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.35) 0 6px, transparent 7px),
    radial-gradient(circle at 72% 42%, rgba(255,255,255,.25) 0 14px, transparent 15px);
  content: "";
}

.store-logo {
  position: absolute;
  z-index: 2;
  bottom: -19px;
  left: 15px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 13px;
  color: var(--white);
  background: var(--forest);
  font: 800 18px var(--font-display);
}

.store-content {
  padding: 25px 13px 12px;
}

.store-title-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.store-title-row h3 {
  margin: 0 0 2px;
  font: 800 13px var(--font-display);
}

.store-title-row p {
  margin: 0;
  color: var(--muted);
  font-size: 7px;
}

.open-badge {
  align-self: start;
  padding: 4px 7px;
  border-radius: 99px;
  color: var(--forest);
  background: var(--mint);
  font-size: 6px;
  font-weight: 700;
}

.category-pills {
  display: flex;
  gap: 5px;
  margin: 14px 0 11px;
}

.category-pills span {
  padding: 5px 7px;
  border-radius: 99px;
  color: var(--muted);
  background: #eef0eb;
  font-size: 6px;
}

.category-pills span:first-child {
  color: var(--white);
  background: var(--forest);
}

.food-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 7px 0;
  padding: 8px;
  border: 1px solid #edf0ea;
  border-radius: 10px;
  background: var(--white);
}

.food-copy {
  display: flex;
  width: 110px;
  flex-direction: column;
  gap: 3px;
}

.food-copy strong {
  font-size: 8px;
}

.food-copy small {
  color: var(--muted);
  font-size: 5.5px;
  line-height: 1.35;
}

.food-copy b {
  color: var(--forest);
  font-size: 7px;
}

.food-photo {
  position: relative;
  width: 53px;
  height: 50px;
  border-radius: 8px;
  background:
    radial-gradient(ellipse at center, #56290f 0 19%, #f4b34e 20% 29%, #6f3015 30% 42%, #e0a245 43% 53%, transparent 54%),
    #e8d4ad;
}

.food-photo-two {
  background:
    radial-gradient(ellipse at 42% 47%, #6a3315 0 18%, #f4b34e 19% 30%, #7c3918 31% 41%, transparent 42%),
    linear-gradient(135deg, #efc16f, #e5a949);
}

.food-photo span {
  position: absolute;
  right: 4px;
  bottom: 4px;
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-size: 11px;
}

.cart-bar {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 11px;
  border-radius: 9px;
  color: var(--white);
  background: var(--forest);
  font-size: 6px;
}

.cart-bar strong {
  font-size: 7px;
}

.dashboard-card {
  position: absolute;
  z-index: 3;
  top: 78px;
  right: -22px;
  overflow: hidden;
  width: 460px;
  height: 315px;
  border: 1px solid rgba(16, 36, 29, 0.08);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 34px 80px rgba(16, 36, 29, 0.2);
  transform: rotate(2deg);
}

.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  padding: 0 19px;
  border-bottom: 1px solid #edf0eb;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font: 800 12px var(--font-display);
}

.live {
  color: var(--forest);
  font-size: 7px;
  font-weight: 700;
}

.live i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 4px;
  border-radius: 50%;
  background: #31b477;
}

.dash-body {
  display: grid;
  height: calc(100% - 44px);
  grid-template-columns: 50px 1fr;
}

.dash-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
  background: var(--ink);
}

.dash-sidebar span {
  width: 19px;
  height: 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.28);
}

.dash-sidebar span.active {
  height: 19px;
  background: var(--lime);
}

.dash-main {
  padding: 17px 20px;
  background: #f7f8f4;
}

.dash-main > small {
  color: var(--muted);
  font-size: 7px;
}

.dash-main h3 {
  margin: 2px 0 12px;
  font: 800 13px var(--font-display);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.metric-grid > div {
  display: flex;
  min-height: 61px;
  padding: 9px;
  flex-direction: column;
  border-radius: 8px;
  background: var(--white);
}

.metric-grid span,
.metric-grid small {
  color: var(--muted);
  font-size: 6px;
}

.metric-grid strong {
  margin: 2px 0;
  font: 800 16px var(--font-display);
}

.metric-grid small {
  color: #369363;
}

.chart-card {
  margin-top: 9px;
  padding: 9px;
  border-radius: 8px;
  background: var(--white);
}

.chart-title {
  display: flex;
  justify-content: space-between;
  font-size: 6px;
}

.chart-title b {
  font-size: 8px;
}

.chart {
  display: flex;
  align-items: end;
  height: 51px;
  margin-top: 7px;
  gap: 8px;
  border-bottom: 1px solid #dfe7df;
}

.chart i {
  width: 25px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(var(--lime), var(--forest));
}

.new-order {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 9px;
  padding: 8px;
  border: 1px solid #d8eadf;
  border-radius: 8px;
  background: #eff9f2;
}

.order-icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 7px;
  color: var(--white);
  background: var(--forest);
  font-size: 8px;
}

.new-order div {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1px;
  font-size: 7px;
}

.new-order small {
  color: var(--muted);
  font-size: 6px;
}

.new-order button {
  padding: 5px 9px;
  border: 0;
  border-radius: 5px;
  color: var(--white);
  background: var(--forest);
  font-size: 6px;
}

.floating-stat {
  position: absolute;
  z-index: 5;
  right: 12px;
  bottom: 62px;
  display: flex;
  min-width: 186px;
  padding: 15px 17px;
  flex-direction: column;
  border: 1px solid rgba(16, 36, 29, 0.06);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(16, 36, 29, 0.16);
}

.floating-stat span {
  color: var(--muted);
  font-size: 9px;
}

.floating-stat strong {
  margin-top: 2px;
  color: var(--forest);
  font: 800 21px var(--font-display);
}

.trust-strip {
  border-top: 1px solid #e4e9e2;
  border-bottom: 1px solid #e4e9e2;
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid p {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  margin: 0;
  gap: 9px;
  border-right: 1px solid #e4e9e2;
  font-size: 12px;
  font-weight: 700;
}

.trust-grid p:last-child {
  border-right: 0;
}

.trust-grid span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--mint);
  font-size: 10px;
}

.problem-section {
  background: var(--cream);
}

.problem-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 100px;
}

.section-heading h2,
.pricing-copy h2,
.final-cta h2 {
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.04;
  letter-spacing: -3.2px;
}

.section-heading h2 em {
  color: var(--forest);
  font-style: normal;
}

.section-heading p,
.pricing-copy > p {
  max-width: 550px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.sticky-copy {
  align-self: start;
  position: sticky;
  top: 130px;
}

.comparison {
  display: grid;
  gap: 18px;
}

.comparison-card {
  padding: 32px;
  border-radius: var(--radius);
}

.muted-card {
  border: 1px solid #dcded8;
  background: rgba(255, 255, 255, 0.45);
}

.green-card {
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow);
}

.card-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(16, 36, 29, 0.07);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.green-card .card-label {
  color: var(--lime);
  background: rgba(255, 255, 255, 0.1);
}

.comparison-card ul,
.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  display: flex;
  align-items: center;
  min-height: 50px;
  gap: 14px;
  border-bottom: 1px solid rgba(16, 36, 29, 0.09);
  font-size: 14px;
  font-weight: 600;
}

.green-card li {
  border-color: rgba(255, 255, 255, 0.12);
}

.comparison-card li:last-child {
  border-bottom: 0;
}

.comparison-card i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: #8b9690;
  background: rgba(16, 36, 29, 0.06);
  font-style: normal;
}

.green-card i {
  color: var(--ink);
  background: var(--lime);
}

.centered {
  max-width: 680px;
  margin: 0 auto 55px;
  text-align: center;
}

.centered p {
  margin-right: auto;
  margin-left: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-large {
  grid-column: span 2;
  background: linear-gradient(145deg, #eff9f2, #fafff4);
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 23px;
  place-items: center;
  border-radius: 13px;
  color: var(--forest);
  background: var(--mint);
  font-weight: 800;
}

.feature-card h3 {
  max-width: 320px;
  margin: 0 0 10px;
  font: 800 21px/1.2 var(--font-display);
  letter-spacing: -0.7px;
}

.feature-card p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.mini-menu {
  position: absolute;
  right: 28px;
  bottom: -45px;
  width: 250px;
  padding: 14px;
  border: 1px solid #dfe9e1;
  border-radius: 18px 18px 0 0;
  background: var(--white);
  box-shadow: 0 20px 45px rgba(15, 91, 67, 0.12);
  transform: rotate(-2deg);
}

.mini-menu-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-menu-head i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--orange);
}

.mini-menu-head span {
  width: 70px;
  height: 7px;
  border-radius: 4px;
  background: var(--ink);
}

.mini-menu-tabs {
  display: flex;
  margin: 14px 0;
  gap: 7px;
}

.mini-menu-tabs i {
  width: 47px;
  height: 15px;
  border-radius: 10px;
  background: #edf0eb;
}

.mini-menu-tabs i:first-child {
  background: var(--forest);
}

.mini-menu-item {
  display: flex;
  margin-top: 8px;
  padding: 8px;
  gap: 9px;
  border: 1px solid #edf0eb;
  border-radius: 9px;
}

.mini-menu-item > span {
  width: 48px;
  height: 43px;
  border-radius: 7px;
  background: linear-gradient(135deg, #e9c274, #b95831);
}

.mini-menu-item div {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
}

.mini-menu-item i {
  width: 85%;
  height: 4px;
  border-radius: 3px;
  background: #dfe5de;
}

.mini-menu-item i:first-child {
  width: 60%;
  background: var(--ink);
}

.mini-menu-item i:last-child {
  width: 35%;
  background: var(--forest);
}

.status-list {
  display: grid;
  margin-top: 34px;
  gap: 9px;
}

.status-list span {
  display: flex;
  align-items: center;
  padding: 11px;
  gap: 9px;
  border-radius: 10px;
  background: #f5f7f3;
  color: var(--ink-soft);
  font-size: 10px;
}

.status-list i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.status-list b {
  margin-left: auto;
}

.orange {
  background: var(--orange);
}

.yellow {
  background: #e7bd3f;
}

.green {
  background: #3aad77;
}

.payment-pill,
.customer-row {
  display: flex;
  align-items: center;
  margin-top: 40px;
  padding: 15px;
  border: 1px solid #dfe9e1;
  border-radius: 12px;
  background: #f7fbf7;
}

.payment-pill span {
  color: var(--forest);
  font-size: 10px;
  font-weight: 700;
}

.payment-pill b {
  margin-left: auto;
  font: 800 15px var(--font-display);
}

.route-line {
  position: relative;
  height: 60px;
  margin-top: 43px;
}

.route-line::before {
  position: absolute;
  top: 25px;
  right: 25px;
  left: 25px;
  height: 3px;
  border-top: 3px dashed #93b9a8;
  content: "";
}

.route-line i,
.route-line b {
  position: absolute;
  z-index: 2;
  top: 15px;
  width: 23px;
  height: 23px;
  border: 6px solid var(--white);
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 2px var(--forest);
}

.route-line i {
  left: 10px;
}

.route-line b {
  right: 10px;
  background: var(--orange);
  box-shadow: 0 0 0 2px var(--orange);
}

.customer-row {
  gap: 12px;
}

.customer-row > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-size: 10px;
  font-weight: 700;
}

.customer-row div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.customer-row b {
  font-size: 11px;
}

.customer-row small {
  color: var(--muted);
  font-size: 8px;
}

.calculator-section {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(200, 239, 122, 0.13), transparent 28%),
    var(--ink);
}

.calculator-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 40px;
}

.calculator-intro .section-heading {
  max-width: 600px;
}

.calculator-intro .section-heading p {
  color: #a9b8b2;
}

.section-kicker.light {
  color: var(--lime);
}

.calculator-note {
  display: flex;
  max-width: 390px;
  padding: 17px;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.calculator-note span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font: 800 12px var(--font-display);
}

.calculator-note p {
  margin: 0;
  color: #b7c3be;
  font-size: 11px;
  line-height: 1.6;
}

.calculator-shell {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.25fr 0.75fr;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: #173027;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.18);
}

.calculator-form {
  display: grid;
  padding: 38px;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 20px;
}

.full-field {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field label {
  color: #dce5e1;
  font-size: 12px;
  font-weight: 600;
}

.label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.label-row output {
  color: var(--lime);
  font: 800 15px var(--font-display);
}

.platform-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.platform-option {
  min-height: 47px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 11px;
  color: #ced9d4;
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.platform-option.active {
  border-color: var(--lime);
  color: var(--ink);
  background: var(--lime);
}

input[type="range"] {
  width: 100%;
  height: 5px;
  margin: 5px 0 0;
  border-radius: 5px;
  outline: none;
  background: linear-gradient(
    to right,
    var(--lime) 0%,
    var(--lime) var(--range-progress, 50%),
    #3b5249 var(--range-progress, 50%),
    #3b5249 100%
  );
  appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  width: 19px;
  height: 19px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 2px var(--lime);
  cursor: pointer;
  appearance: none;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  color: #7f968d;
  font-size: 9px;
}

.input-suffix,
.input-prefix {
  display: flex;
  align-items: center;
  min-height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.input-suffix input,
.input-prefix input {
  width: 100%;
  padding: 0 12px;
  border: 0;
  outline: none;
  color: var(--white);
  background: transparent;
}

.input-suffix span,
.input-prefix span {
  padding: 0 12px;
  color: #91a69e;
  font-size: 11px;
}

.input-prefix span {
  padding-right: 0;
}

.calculator-result {
  display: flex;
  padding: 42px 36px;
  flex-direction: column;
  background: var(--forest);
}

.result-label {
  color: #d7e9df;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.monthly-result {
  display: flex;
  align-items: baseline;
  margin-top: 10px;
}

.monthly-result small {
  margin-right: 7px;
  color: var(--lime);
  font: 700 16px var(--font-display);
}

.monthly-result strong {
  color: var(--white);
  font: 800 clamp(50px, 5vw, 68px)/1 var(--font-display);
  letter-spacing: -4px;
}

.monthly-result span {
  margin-left: 7px;
  color: #c5d8cf;
  font-size: 11px;
}

.annual-result {
  margin: 9px 0 25px;
  color: #c5d8cf;
  font-size: 12px;
}

.annual-result strong {
  color: var(--lime);
}

.result-breakdown {
  margin-bottom: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.result-breakdown div {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #c5d8cf;
  font-size: 10px;
}

.result-breakdown strong {
  color: var(--white);
  font-size: 11px;
}

.disclaimer {
  margin-top: 16px;
  color: #a7c3b7;
  font-size: 8.5px;
  line-height: 1.5;
  text-align: center;
}

.steps-section {
  background: var(--cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps-grid article {
  position: relative;
  min-height: 260px;
  padding: 30px;
  border: 1px solid #dedfd8;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
}

.step-number {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #c9cec6;
  font: 800 30px var(--font-display);
}

.step-icon {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 48px;
  place-items: center;
  border-radius: 14px;
  color: var(--forest);
  background: var(--mint);
  font-weight: 800;
}

.steps-grid h3 {
  margin: 0 0 10px;
  font: 800 19px var(--font-display);
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.pricing-section {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 0%, rgba(200, 239, 122, 0.12), transparent 30%),
    var(--forest-dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  align-items: center;
  gap: 120px;
}

.pricing-copy > p {
  color: #b9cec5;
}

.founder-counter {
  margin-top: 45px;
}

.founder-counter > div:first-child {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 11px;
}

.founder-counter strong {
  color: var(--lime);
}

.counter-track {
  overflow: hidden;
  height: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
}

.counter-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
}

.founder-counter small {
  display: block;
  margin-top: 10px;
  color: #8ca89d;
  font-size: 9px;
}

.price-card {
  position: relative;
  padding: 38px;
  border-radius: 28px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.2);
}

.price-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.price-head > span {
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: start;
  margin: 13px 0 8px;
}

.price small {
  margin: 10px 5px 0 0;
  font: 700 14px var(--font-display);
}

.price strong {
  font: 800 65px/0.9 var(--font-display);
  letter-spacing: -5px;
}

.price sup {
  margin-top: 5px;
  font: 800 22px var(--font-display);
}

.price em {
  align-self: end;
  margin: 0 0 5px 5px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
}

.price-head p {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 12px;
}

.price-card li {
  display: flex;
  align-items: center;
  min-height: 39px;
  gap: 10px;
  border-bottom: 1px solid #edf0eb;
  font-size: 11px;
  font-weight: 600;
}

.price-card li span {
  color: var(--forest);
  font-weight: 800;
}

.price-card .button {
  margin-top: 25px;
}

.price-card > small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 8.5px;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
  font: 700 15px var(--font-display);
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--mint);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list p {
  max-width: 650px;
  margin: -5px 50px 24px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.final-cta {
  padding: 100px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 40%, rgba(200, 239, 122, 0.13), transparent 26%),
    var(--ink);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  gap: 120px;
}

.final-cta h2 em {
  color: var(--lime);
}

.waitlist-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.waitlist-card h3 {
  margin: 0 0 7px;
  font: 800 20px var(--font-display);
}

.waitlist-card > p {
  margin: 0 0 24px;
  color: #aab9b3;
  font-size: 12px;
}

.waitlist-card form,
.waitlist-card label {
  display: flex;
  flex-direction: column;
}

.waitlist-card form {
  gap: 14px;
}

.waitlist-card label span {
  margin-bottom: 7px;
  color: #dbe4e0;
  font-size: 10px;
  font-weight: 700;
}

.waitlist-card input {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  outline: none;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.waitlist-card input:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(200, 239, 122, 0.12);
}

.waitlist-card input::placeholder {
  color: #748b82;
}

.waitlist-card form > small {
  color: #7f948c;
  font-size: 8px;
  line-height: 1.5;
  text-align: center;
}

.form-feedback {
  display: none;
  margin: 0;
  padding: 10px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--lime);
  font-size: 10px;
  text-align: center;
}

.form-feedback.visible {
  display: block;
}

.site-footer {
  padding: 70px 0 28px;
  color: #b2c0ba;
  background: #091a15;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 0.75fr);
  gap: 60px;
}

.footer-brand {
  color: var(--white);
}

.footer-grid > div {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 12px;
  font-size: 11px;
}

.footer-grid > div:first-child p {
  max-width: 320px;
  margin: 10px 0 0;
  line-height: 1.7;
}

.footer-grid strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 11px;
}

.footer-grid a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #6f827a;
  font-size: 9px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 17px;
  }

  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 20px;
  }

  .dashboard-card {
    right: -80px;
  }

  .problem-grid,
  .pricing-grid,
  .faq-grid,
  .final-cta-inner {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 85px 0;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 80px 20px auto;
    display: none;
    padding: 24px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav > a:not(.button) {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-login {
    border-left: 0;
  }

  .main-nav .button {
    margin-top: 18px;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-product {
    min-height: 580px;
    margin-top: 25px;
  }

  .phone-card {
    left: 11%;
  }

  .dashboard-card {
    right: 4%;
  }

  .floating-stat {
    right: 12%;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid p:nth-child(2) {
    border-right: 0;
  }

  .trust-grid p:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .problem-grid,
  .pricing-grid,
  .faq-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-large {
    grid-column: span 2;
  }

  .calculator-intro {
    align-items: start;
    flex-direction: column;
  }

  .calculator-shell {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid article {
    min-height: 210px;
  }

  .step-icon {
    margin-bottom: 25px;
  }

  .price-card {
    max-width: 560px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 70px 0;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .main-nav {
    inset: 70px 14px auto;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 55px;
  }

  .hero::before {
    top: 48%;
    right: -55%;
    width: 150%;
    height: 54%;
    border-radius: 50% 0 0 0;
  }

  .hero h1 {
    font-size: 48px;
    letter-spacing: -3.4px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .text-link {
    align-self: start;
  }

  .hero-product {
    min-height: 485px;
    transform: scale(0.78);
    transform-origin: left top;
    width: 128%;
    margin-bottom: -105px;
  }

  .phone-card {
    left: 0;
  }

  .dashboard-card {
    top: 75px;
    right: -93px;
  }

  .floating-stat {
    right: -20px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid p {
    justify-content: start;
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading h2,
  .pricing-copy h2,
  .final-cta h2 {
    font-size: 39px;
    letter-spacing: -2.4px;
  }

  .problem-grid {
    gap: 38px;
  }

  .comparison-card {
    padding: 23px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-large {
    grid-column: auto;
    min-height: 430px;
  }

  .mini-menu {
    right: 20px;
    bottom: -55px;
  }

  .calculator-form {
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .full-field {
    grid-column: auto;
  }

  .platform-options {
    grid-template-columns: 1fr;
  }

  .calculator-result {
    padding: 30px 24px;
  }

  .pricing-grid,
  .faq-grid,
  .final-cta-inner {
    gap: 42px;
  }

  .price-card,
  .waitlist-card {
    padding: 25px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Ajuste de legibilidade: textos funcionais e comerciais */
.main-nav {
  font-size: 15px;
}

.eyebrow {
  font-size: 11px;
}

.section-kicker {
  font-size: 13px;
}

.hero-proof p,
.trust-grid p {
  font-size: 14px;
}

.comparison-card li {
  font-size: 16px;
}

.card-label {
  font-size: 11px;
}

.feature-card p,
.steps-grid p,
.faq-list p {
  font-size: 15px;
}

.feature-card h3 {
  font-size: 23px;
}

.calculator-note p,
.field label,
.monthly-result span,
.annual-result {
  font-size: 13px;
}

.platform-option,
.input-suffix span,
.input-prefix span,
.result-label,
.result-breakdown strong {
  font-size: 12px;
}

.range-labels,
.disclaimer {
  font-size: 10px;
}

.result-breakdown div {
  font-size: 12px;
}

.steps-grid h3 {
  font-size: 21px;
}

.founder-counter > div:first-child,
.price-head > span,
.price-head p,
.price-card li,
.faq-list summary {
  font-size: 13px;
}

.price-card li {
  min-height: 43px;
}

.faq-list summary {
  font-size: 17px;
}

.waitlist-card > p {
  font-size: 14px;
}

.waitlist-card label span {
  font-size: 12px;
}

.waitlist-card form > small,
.price-card > small {
  font-size: 10px;
}

.footer-grid > div {
  font-size: 13px;
}

.footer-grid strong {
  font-size: 13px;
}

.footer-bottom {
  font-size: 11px;
}
