:root {
  --bg: #f4f7f2;
  --paper: #fbfcfb;
  --ink: #102220;
  --muted: #64736d;
  --line: #d9e5de;
  --soft: #eaf4ef;
  --dark: #102220;
  --dark-2: #18312e;
  --blue: #e0f4f7;
  --green: #ddf6ed;
  --sand: #f7edd4;
  --tomato: #ff6b35;
  --orange: #f09824;
  --yellow: #ffd166;
  --mint: #39cfa5;
  --rose: #ffd7d0;
  --accent: #ff6b35;
  --accent-2: #39cfa5;
  --radius: 10px;
  --shadow: 0 24px 70px rgba(16, 34, 32, 0.14);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: 76px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 107, 53, 0.13), transparent 25rem),
    radial-gradient(circle at 82% 18%, rgba(57, 207, 165, 0.16), transparent 25rem),
    linear-gradient(180deg, #f8faf6 0%, var(--bg) 48%, #eef3ed 100%);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.34;
  background-image: radial-gradient(rgba(16, 34, 32, 0.12) 0.6px, transparent 0.6px);
  background-size: 16px 16px;
  mask-image: linear-gradient(to bottom, black 0, transparent 54%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 140;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--yellow), var(--accent-2));
  box-shadow: 0 0 18px rgba(255, 107, 53, 0.32);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  min-width: 54px;
  min-height: 46px;
  padding: 0 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 18px 44px rgba(16, 34, 32, 0.18);
  cursor: pointer;
  font-size: 13px;
  font-weight: 780;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms var(--ease-out), background 180ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--dark-2);
}

.scroll-top:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

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

button {
  font: inherit;
}

.section-shell {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 0;
  background: transparent;
  transition: padding 260ms var(--ease-out);
}

.site-header.is-scrolled {
  padding: 10px 0 0;
}

.site-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: 76px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 0;
  background: rgba(244, 247, 242, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(16, 34, 32, 0.05);
  transition:
    width 260ms var(--ease-out),
    min-height 260ms var(--ease-out),
    border-color 260ms ease,
    border-radius 260ms var(--ease-out),
    background 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out);
}

.site-header.is-scrolled .site-header-inner {
  width: 100%;
  min-height: 62px;
  border-color: rgba(16, 34, 32, 0.08);
  border-radius: 0;
  background: rgba(251, 252, 251, 0.94);
  box-shadow: 0 18px 48px rgba(16, 34, 32, 0.13);
}

.site-header.is-scrolled .brand-logo {
  width: 150px;
}

.site-header.is-scrolled .nav-links {
  gap: 24px;
}

.site-header.is-scrolled .header-cta {
  padding: 10px 19px;
}

.brand {
  display: inline-block;
  width: fit-content;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: 172px;
  height: auto;
  transition: width 260ms var(--ease-out);
}

.brand-header .brand-logo {
  filter: drop-shadow(0 12px 22px rgba(255, 115, 0, 0.12));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #394844;
  font-size: 13px;
  font-weight: 620;
}

.nav-links a {
  position: relative;
  transition: color 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms var(--ease-out);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  padding: 12px 22px;
  color: #fff;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 12px 24px rgba(16, 34, 32, 0.12);
  font-size: 13px;
  font-weight: 780;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms ease;
}

.header-cta-signin {
  border-radius: 14px;
  font-family: "Inter Variable", Arial, sans-serif;
}

.header-cta:hover {
  background: var(--dark-2);
  box-shadow: 0 18px 34px rgba(16, 34, 32, 0.18);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  gap: 52px;
  padding: 82px 0 98px;
}

.hero-copy {
  width: min(990px, 100%);
  max-width: 990px;
  margin: 0 auto;
  text-align: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin: 0 auto 20px;
  font-family: "Inter Variable", Arial, sans-serif;
  font-size: clamp(44px, 6vw, 60px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.section-heading {
  margin-bottom: 16px;
  font-family: "Inter Variable", Arial, sans-serif;
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.058em;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.hero-copy p {
  max-width: 650px;
  margin: 0 auto 26px;
  font-size: 18px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 780;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 25px rgba(16, 34, 32, 0.14);
}

.button-dark:hover {
  background: var(--dark-2);
  box-shadow: 0 18px 34px rgba(16, 34, 32, 0.18);
}

.button-dark-muted {
  background: #0d0d0d;
}

.button-dark-muted:hover {
  background: #000;
}

.button-soft,
.button-outline {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper);
}

.button-soft:hover,
.button-outline:hover {
  border-color: rgba(255, 107, 53, 0.28);
  box-shadow: 0 16px 34px rgba(16, 34, 32, 0.08);
}

.button-light {
  color: var(--ink);
  background: #fff;
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.audience-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 720px;
  margin: 18px auto 0;
}

.audience-strip span {
  padding: 8px 12px;
  color: #31403c;
  border: 1px solid rgba(16, 34, 32, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 26px rgba(16, 34, 32, 0.04);
  font-size: 13px;
  font-weight: 720;
}

.stars {
  color: var(--orange);
  letter-spacing: 1px;
}

.hero-product {
  position: relative;
  width: min(1080px, 100%);
  margin: 0 auto;
  transform: none;
}

.hero-product img {
  display: block;
  width: 100%;
  max-height: 540px;
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 16px;
  box-shadow: 0 38px 100px rgba(14, 20, 34, 0.18);
}

.hero-product::before {
  position: absolute;
  inset: 10% 6% -8%;
  z-index: -1;
  content: "";
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.18), transparent 28%),
    radial-gradient(circle at 78% 52%, rgba(57, 207, 165, 0.22), transparent 34%),
    radial-gradient(circle at 50% 35%, rgba(16, 34, 32, 0.16), transparent 58%);
  filter: blur(26px);
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 188px 1fr;
  overflow: hidden;
  min-height: 650px;
  border: 1px solid rgba(8, 27, 55, 0.12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 38px 100px rgba(14, 20, 34, 0.18);
}

.mock-sidebar {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 25px 18px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 209, 102, 0.16), transparent 9rem),
    linear-gradient(180deg, #08283f, #061b2e 54%, #041326);
}

.sidebar-logo {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 18px;
  font-size: 17px;
  font-weight: 860;
  letter-spacing: -0.04em;
}

.mock-sidebar span:not(.brand-mark) {
  padding: 11px 13px;
  color: rgba(255, 255, 255, 0.68);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 640;
}

.mock-sidebar .selected {
  color: #071827;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  font-weight: 820;
}

.mock-main {
  padding: 24px;
}

.mock-topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
  color: #33413d;
}

.mock-topbar strong {
  font-size: 16px;
  letter-spacing: -0.02em;
}

.mock-topbar div {
  display: flex;
  gap: 10px;
}

.mock-topbar button {
  min-height: 42px;
  padding: 0 18px;
  color: #4f605c;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.metric-row article,
.chart-card,
.summary-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 34, 32, 0.04);
}

.metric-row article {
  min-height: 150px;
  padding: 18px;
}

.metric-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 17px;
  border-radius: 999px;
  color: #0d1c1a;
  font-size: 12px;
  font-weight: 850;
}

.metric-icon.tomato { background: var(--rose); }
.metric-icon.yellow { background: var(--yellow); }
.metric-icon.mint { background: var(--green); }
.metric-icon.rose { background: #f7dfef; }

small,
.metric-row small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.metric-row strong {
  display: block;
  margin-top: 9px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.metric-row em {
  display: block;
  margin-top: 13px;
  color: #0aa56f;
  font-size: 12px;
  font-style: normal;
  font-weight: 720;
}

.dashboard-lower {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.75fr);
  gap: 16px;
}

.chart-card,
.summary-card {
  padding: 20px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.panel-head h2,
.summary-card h2 {
  margin: 0;
  font-family: "Inter Variable", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.panel-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 13px;
  height: 190px;
  padding: 20px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(16, 34, 32, 0.055) 1px, transparent 1px),
    #fbfcfb;
  background-size: 100% 42px;
}

.chart-bars i {
  flex: 1;
  height: var(--h);
  min-height: 28px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--tomato), var(--yellow));
  box-shadow: 0 12px 24px rgba(255, 107, 53, 0.18);
}

.order-table {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.order-table div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 7px;
  background: #f7f9f6;
  color: #53635f;
  font-size: 13px;
  font-weight: 650;
}

.order-table em {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
}

.done { color: #0a8b62; background: rgba(57, 207, 165, 0.16); }
.pending { color: #c44d2a; background: rgba(255, 107, 53, 0.14); }
.ready { color: #9a6b0c; background: rgba(255, 209, 102, 0.24); }

.summary-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.summary-line {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.summary-line p {
  margin: 0;
}

.summary-line strong,
.summary-line small {
  display: block;
}

.summary-line b {
  color: #65756f;
  font-size: 12px;
}

.summary-card a {
  color: #0b7f67;
  font-size: 13px;
  font-weight: 820;
}

.proof {
  padding: 22px 0 92px;
}

.proof-heading,
.modules-head,
.workflow-head,
.pricing-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.proof-heading .section-heading,
.modules-head .section-heading,
.workflow-head .section-heading,
.pricing-head .section-heading,
.split-copy .section-heading,
.dark-copy .section-heading,
.section-title .section-heading,
.cta-band .section-heading {
  max-width: 620px;
}

.proof-heading p,
.modules-head p,
.workflow-head p,
.pricing-head p {
  max-width: 460px;
}

.modules-head .eyebrow {
  font-weight: 700;
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.proof-card {
  min-height: 270px;
  padding: 28px;
  border-radius: var(--radius);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.proof-card:hover,
.module-card:hover,
.timeline-card:hover {
  box-shadow: 0 24px 52px rgba(16, 34, 32, 0.08);
  transform: translateY(-4px);
}

.proof-card.blue { background: var(--blue); }
.proof-card.sand { background: var(--sand); }
.proof-card.green { background: var(--green); }

.icon,
.module-glyph {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 7px;
  background: rgba(16, 34, 32, 0.08);
  font-weight: 850;
}

.proof-card p {
  min-height: 82px;
  color: #3e4d49;
  font-size: 15px;
}

.proof-card strong {
  display: block;
  margin-top: 28px;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.proof-card small {
  color: #44534f;
}

.split-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
  padding: 18px 0 112px;
}

.product-showcase {
  display: grid;
  justify-items: center;
  gap: 28px;
  padding: 18px 0 104px;
}

.showcase-copy {
  display: grid;
  justify-items: center;
  max-width: 760px;
  text-align: center;
}

.showcase-copy .section-heading {
  max-width: 720px;
}

.showcase-copy p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 24px;
}

.showcase-panel {
  width: min(1040px, 100%);
  min-height: auto;
}

.showcase-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
}

.showcase-chips span {
  padding: 10px 14px;
  color: #31403c;
  border: 1px solid rgba(16, 34, 32, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(16, 34, 32, 0.04);
  font-size: 13px;
  font-weight: 760;
}

.fit-guide {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 48px;
  align-items: start;
  padding: 12px 0 104px;
}

.fit-guide-copy .section-heading {
  max-width: 520px;
}

.fit-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 60px rgba(16, 34, 32, 0.06);
}

.fit-row {
  display: grid;
  grid-template-columns: 0.82fr 1fr 1.18fr;
  gap: 20px;
  align-items: center;
  min-height: 74px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  color: #40504b;
  line-height: 1.45;
}

.fit-row:first-child {
  border-top: 0;
}

.fit-row span:first-child {
  color: var(--ink);
  font-weight: 780;
}

.fit-row-head {
  min-height: auto;
  color: var(--muted);
  background: #f7faf6;
  font-size: 12px;
  font-weight: 830;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.phone-panel {
  display: grid;
  min-height: 520px;
  place-items: center;
  padding: 24px;
  border: 1px solid rgba(16, 34, 32, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 107, 53, 0.08), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(236, 244, 239, 0.92));
  box-shadow: 0 28px 80px rgba(16, 34, 32, 0.08);
}

.phone-card {
  width: min(370px, 100%);
  min-height: 510px;
  padding: 22px;
  color: #fff;
  border-radius: 10px;
  background: linear-gradient(180deg, #162320, #0c1715);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
}

.phone-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 16px;
}

.phone-head span,
.phone-head strong {
  font-weight: 830;
}

.phone-head strong {
  white-space: nowrap;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.phone-head small {
  color: rgba(255, 255, 255, 0.52);
}

.pos-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
}

.search-line {
  display: flex;
  min-height: 42px;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.42);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.product-list,
.pos-summary {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.product-list span,
.pos-summary span,
.pos-summary strong {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-style: normal;
}

.product-list span:last-child,
.pos-summary strong {
  border-bottom: 0;
}

.product-list i,
.product-list em,
.pos-summary em {
  font-style: normal;
}

.pos-summary {
  margin-top: 14px;
}

.pos-summary strong {
  color: #fff;
}

.payment-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.payment-row span {
  display: grid;
  min-height: 34px;
  place-items: center;
  color: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 730;
}

.payment-row .active {
  color: #101f1d;
  background: var(--yellow);
}

.phone-card button {
  width: 100%;
  min-height: 46px;
  color: #102220;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--tomato));
  font-weight: 840;
}

.pos-preview-image {
  display: block;
  width: min(100%, 960px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(16, 34, 32, 0.1);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(16, 34, 32, 0.13);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #40504b;
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  content: "✓";
  place-items: center;
  color: #102220;
  border-radius: 999px;
  background: var(--mint);
  font-size: 12px;
  font-weight: 900;
}

.modules {
  padding: 26px 0 100px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.module-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), background 220ms ease;
}

.module-card-featured {
  grid-column: span 2;
  color: var(--ink);
  border-color: rgba(16, 34, 32, 0.08);
  box-shadow: 0 18px 40px rgba(16, 34, 32, 0.08);
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 107, 53, 0.12), transparent 15rem),
    radial-gradient(circle at 82% 16%, rgba(57, 207, 165, 0.14), transparent 14rem),
    linear-gradient(180deg, #f8faf6 0%, var(--bg) 52%, #eef3ed 100%);
}

.module-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

.module-card-top > span:first-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
}

.module-card-featured .module-card-top > span:first-child,
.module-card-featured p {
  color: #5d6b66;
}

.module-icon {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.module-card strong {
  display: inline-flex;
  margin-bottom: 12px;
  color: #0b8b70;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.module-card h3 {
  font-weight: 600;
}

.module-card-featured strong {
  color: #0b8b70;
}

.module-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.module-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.module-flow span {
  padding: 9px 12px;
  color: #122522;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 780;
}

.dark-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 100px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 20, 18, 0.9) 0%, rgba(7, 20, 18, 0.72) 46%, rgba(7, 20, 18, 0.56) 100%),
    radial-gradient(circle at 76% 20%, rgba(255, 209, 102, 0.18), transparent 22rem),
    radial-gradient(circle at 22% 80%, rgba(57, 207, 165, 0.14), transparent 20rem),
    url("/home/assets/goeatery-parallax.jpg") center / cover fixed;
}

.dark-band::after {
  position: absolute;
  inset: 0;
  content: "";
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 20, 18, 0.24), rgba(7, 20, 18, 0.72));
}

.dark-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.dark-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.dark-copy .eyebrow {
  color: var(--yellow);
}

.dark-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 620px;
}

.dark-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 20, 18, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.dark-card span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 740;
}

.dark-card strong {
  display: block;
  font-size: 38px;
  letter-spacing: -0.055em;
}

.mini-line {
  height: 80px;
  margin-top: 24px;
  border-radius: 8px;
  background:
    linear-gradient(130deg, transparent 0 22%, rgba(255, 209, 102, 0.8) 23% 26%, transparent 27% 46%, rgba(57, 207, 165, 0.8) 47% 50%, transparent 51%),
    rgba(255, 255, 255, 0.06);
}

.avatar-row {
  display: flex;
  margin: 20px 0;
}

.avatar-row i {
  display: grid;
  width: 40px;
  height: 40px;
  margin-left: -8px;
  place-items: center;
  color: #102220;
  border: 2px solid var(--dark);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--tomato));
  font-style: normal;
  font-weight: 850;
}

.avatar-row i:first-child {
  margin-left: 0;
}

.dark-card p,
.dark-card li {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.dark-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.mini-table {
  display: grid;
  grid-template-columns: 1fr 0.8fr auto;
  gap: 0;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.mini-table span {
  margin: 0;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.workflow {
  padding: 104px 0;
}

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

.timeline-card {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.timeline-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 24px;
  color: #102220;
  border-radius: 12px;
  background: var(--sand);
  font-weight: 900;
}

.timeline-card > span,
.plan-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.timeline-card-support {
  background: linear-gradient(135deg, var(--green), #fff);
}

.workflow-foot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.workflow-foot p {
  max-width: 720px;
  margin: 0;
}

.workflow-support-link {
  font-weight: 600;
}

.pricing {
  padding: 10px 0 104px;
}

.pricing .pricing-head {
  justify-content: center;
  margin-bottom: 72px;
  text-align: center;
}

.pricing .pricing-copy {
  display: grid;
  justify-items: center;
}

.pricing .section-heading {
  max-width: 760px;
}

.pricing .pricing-copy > p:not(.eyebrow) {
  max-width: 610px;
}

.pricing-main-cta {
  width: auto;
  margin-top: 20px;
  padding-right: 9px;
  gap: 14px;
  color: #f9f8f6;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-main-cta span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #102220;
  border-radius: 999px;
  background: var(--yellow);
  font-size: 18px;
  letter-spacing: 0;
}

.pricing-card-table {
  display: grid;
  gap: 18px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(16, 34, 32, 0.07);
  border-radius: 26px;
  background:
    radial-gradient(circle at 72% 18%, rgba(57, 207, 165, 0.08), transparent 18rem),
    #f5f5f5;
  box-shadow: 0 24px 64px rgba(16, 34, 32, 0.06);
}

.pricing-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(16, 34, 32, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.pricing-card-actions > * {
  min-width: 0;
}

.pricing-actions-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.pricing-actions-copy span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-actions-copy strong {
  max-width: 460px;
  color: #102220;
  font-size: 15px;
  line-height: 1.35;
}

.pricing-other-link {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  width: fit-content;
  margin: 0;
  padding: 0 16px;
  color: #102220;
  border: 1px solid rgba(16, 34, 32, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.2;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.pricing-other-link:hover {
  color: var(--orange);
  border-color: rgba(240, 152, 36, 0.4);
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 34, 32, 0.08);
}

.billing-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-self: center;
  width: min(100%, 280px);
  padding: 5px;
  border: 1px solid rgba(16, 34, 32, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.billing-toggle-option {
  min-height: 38px;
  padding: 0 18px;
  color: #465752;
  border: 0;
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 780;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.billing-toggle-option.is-active {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 10px 20px rgba(16, 34, 32, 0.14);
}

.billing-toggle-option:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.pricing-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pricing-plan-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 16px;
  min-height: 0;
  padding: 26px;
  border: 1px solid rgba(16, 34, 32, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms ease, background 220ms ease;
}

.pricing-plan-card-featured {
  border-color: #cf583a;
  background:
    radial-gradient(circle at 82% 12%, rgba(57, 207, 165, 0.08), transparent 12rem),
    linear-gradient(180deg, var(--paper) 0%, var(--bg) 100%);
}

.pricing-plan-card:hover {
  box-shadow: 0 24px 54px rgba(16, 34, 32, 0.1);
  transform: translateY(-5px);
}

.pricing-plan-card-featured:hover {
  border-color: #b8472d;
  background:
    radial-gradient(circle at 82% 12%, rgba(57, 207, 165, 0.12), transparent 12rem),
    linear-gradient(180deg, #fff 0%, var(--soft) 100%);
  box-shadow: 0 28px 64px rgba(207, 88, 58, 0.18);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  color: #102220;
  border-radius: 999px;
  background: var(--yellow);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.plan-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
}

.plan-title-row > div {
  min-width: 0;
}

.plan-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  border-radius: 14px;
  background: #6a7873;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.plan-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plan-icon-plus svg {
  width: 20px;
  height: 20px;
}

.pricing-plan-card .plan-kicker {
  margin: 0;
  color: #102220;
  font-size: 17px;
  letter-spacing: 0.14em;
  overflow-wrap: anywhere;
}

.plan-fit {
  display: block;
  margin-top: 5px;
  color: #6a7873;
  font-size: 13px;
  font-weight: 680;
}

.pricing-plan-card > p {
  margin: 0;
  color: #5d6b66;
  font-size: 14px;
  line-height: 1.5;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  font-size: clamp(34px, 3.1vw, 46px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.055em;
}

.plan-price span {
  color: #5d6b66;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.plan-quick-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.plan-quick-list li {
  padding: 7px 10px;
  color: #465752;
  border: 1px solid rgba(16, 34, 32, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 720;
}

.plan-features {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0 0 34px;
  list-style: none;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #5b6964;
  font-size: 14px;
  line-height: 1.35;
}

.plan-features li::before {
  display: grid;
  width: 20px;
  height: 20px;
  content: "✓";
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  border-radius: 999px;
  background: #050b0a;
  font-size: 11px;
  font-weight: 900;
}

.plan-features li.is-unavailable {
  color: #8b9893;
  text-decoration: line-through;
}

.plan-features li.is-unavailable::before {
  content: "×";
  color: #fff;
  background: #9aa6a1;
}

.pricing-plan-card .button {
  width: 100%;
  min-height: 52px;
  color: #e6e6e5;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-compare {
  display: block;
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
}

.pricing-card-actions .pricing-compare summary {
  grid-column: auto;
  margin-left: auto;
}

.pricing-compare summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  min-height: 40px;
  cursor: pointer;
  color: #102220;
  padding: 0 16px;
  border: 1px solid rgba(16, 34, 32, 0.14);
  border-radius: 999px;
  background: #fff;
  font-family: "Inter Variable", Arial, sans-serif;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.2;
  box-shadow: 0 10px 24px rgba(16, 34, 32, 0.06);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.pricing-card-actions .pricing-compare-panel {
  grid-column: auto;
  width: 100%;
  margin-top: 14px;
}

.pricing-compare summary::-webkit-details-marker {
  display: none;
}

.pricing-compare summary::after {
  content: "+";
  color: var(--orange);
  font-size: 15px;
  line-height: 1;
}

.pricing-compare[open] summary {
  color: #fff;
  border-color: #102220;
  background: #102220;
  box-shadow: 0 14px 30px rgba(16, 34, 32, 0.14);
}

.pricing-compare[open] summary::after {
  content: "−";
  color: var(--orange);
}

.pricing-compare[open] summary::after {
  color: var(--yellow);
}

.pricing-compare-panel {
  min-width: 0;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(16, 34, 32, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(234, 244, 239, 0.78));
  box-shadow: 0 18px 42px rgba(16, 34, 32, 0.07);
}

.pricing-compare-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.pricing-compare-intro h3 {
  margin: 0;
  color: #102220;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.pricing-compare-intro p {
  max-width: 560px;
  margin: 5px 0 0;
  color: #5d6b66;
  font-size: 14px;
  line-height: 1.5;
}

.pricing-compare-intro > span {
  flex: 0 1 220px;
  color: #6a7873;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.35;
  text-align: right;
}

.pricing-feature-matrix {
  overflow: auto;
  width: 100%;
  max-width: 100%;
  max-height: 560px;
  min-width: 0;
  border: 1px solid rgba(16, 34, 32, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 50px rgba(16, 34, 32, 0.06);
  overscroll-behavior-x: contain;
  scrollbar-color: rgba(16, 34, 32, 0.32) transparent;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.pricing-feature-matrix::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.pricing-feature-matrix::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 999px;
  background: rgba(16, 34, 32, 0.34);
  background-clip: content-box;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(210px, 1.25fr) repeat(3, minmax(145px, 1fr));
  align-items: center;
  min-width: 760px;
  min-height: 40px;
  border-bottom: 1px solid rgba(16, 34, 32, 0.07);
}

.feature-row:last-child {
  border-bottom: 0;
}

.feature-row:nth-child(even):not(.feature-row-head) {
  background: rgba(234, 244, 239, 0.46);
}

.feature-row > span {
  padding: 10px 18px;
  color: #53635f;
  font-size: 13px;
  line-height: 1.25;
}

.feature-row > span:first-child {
  color: #102220;
  font-weight: 700;
}

.feature-row-head {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 48px;
  background: #102220;
}

.feature-row-head > span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature-row-head > span:first-child {
  color: #fff;
}

.feature-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter Variable", Arial, sans-serif;
  font-weight: 600;
}

.feature-status::before {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}

.feature-status.is-included::before {
  content: "✓";
  color: #fff;
  background: #050b0a;
}

.feature-status.is-unavailable {
  color: #8b9893;
}

.feature-status.is-unavailable::before {
  content: "×";
  color: #fff;
  background: #9aa6a1;
}

.feature-value::before {
  content: "";
  background: var(--yellow);
  box-shadow: inset 0 0 0 6px #102220;
}

.faq {
  padding: 0 0 104px;
}

.section-title {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.faq-list details + details {
  margin-top: 12px;
}

.faq-list details[open] {
  border-color: rgba(255, 107, 53, 0.24);
  box-shadow: 0 18px 40px rgba(16, 34, 32, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
}

.cta-band {
  margin-bottom: 96px;
  padding: 62px;
  color: #fff;
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 25%, rgba(255, 209, 102, 0.24), transparent 15rem),
    radial-gradient(circle at 86% 55%, rgba(57, 207, 165, 0.2), transparent 14rem),
    linear-gradient(135deg, #102220, #081816);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 720px;
}

.cta-band p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
}

.cta-band .cta-actions {
  justify-content: flex-start;
  margin-top: 28px;
}

.site-footer {
  padding: 58px 0;
  background: #0b1715;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 34px;
}

.site-footer .brand {
  color: #fff;
}

.site-footer .brand-logo {
  width: 220px;
  filter: drop-shadow(0 18px 26px rgba(255, 115, 0, 0.2));
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer a:not(.brand) {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.inner-page .site-header {
  background: rgba(248, 250, 246, 0.9);
}

.privacy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: stretch;
  padding: 88px 0 36px;
}

.pricing-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  padding: 88px 0 36px;
}

.privacy-hero-copy {
  padding: 58px;
  color: #fff;
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 209, 102, 0.22), transparent 16rem),
    radial-gradient(circle at 88% 62%, rgba(57, 207, 165, 0.16), transparent 15rem),
    linear-gradient(135deg, #102220, #071412);
  box-shadow: var(--shadow);
}

.privacy-hero-copy .eyebrow {
  color: var(--yellow);
}

.privacy-hero-copy h1 {
  max-width: 820px;
  margin: 0 0 22px;
  color: #fff;
  text-align: left;
}

.privacy-hero-copy p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.76);
}

.privacy-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.privacy-summary {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border: 1px solid rgba(16, 34, 32, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 10%, rgba(57, 207, 165, 0.16), transparent 12rem),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(16, 34, 32, 0.08);
}

.privacy-summary span,
.privacy-highlights span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.privacy-summary strong {
  display: block;
  margin: 16px 0 auto;
  font-family: "Inter Variable", Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.privacy-summary p {
  margin: 36px 0 0;
}

.privacy-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 0 34px;
}

.privacy-highlights article,
.privacy-policy-grid article {
  border: 1px solid rgba(16, 34, 32, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 42px rgba(16, 34, 32, 0.05);
}

.privacy-highlights article {
  padding: 26px;
}

.privacy-highlights h2,
.privacy-contact h2 {
  margin: 14px 0 10px;
  font-family: "Inter Variable", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.privacy-highlights p {
  margin: 0;
}

.privacy-policy {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
  align-items: start;
  padding: 52px 0 96px;
}

.terms-policy {
  padding-top: 34px;
}

.privacy-policy-intro {
  position: sticky;
  top: 112px;
}

.privacy-policy-intro p:not(.eyebrow) {
  max-width: 360px;
}

.privacy-policy-grid {
  display: grid;
  gap: 14px;
}

.affordable-pricing {
  padding-top: 28px;
}

.affordable-pricing .pricing-head {
  margin-bottom: 42px;
}

.affordable-pricing-table {
  justify-items: center;
  background: #f5f5f5;
}

.affordable-plan-grid {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.affordable-plan-card {
  grid-template-rows: auto auto 1fr auto auto;
}

.affordable-plan-card .plan-icon {
  font-size: 16px;
  letter-spacing: -0.04em;
}

.affordable-pricing-compare {
  display: grid;
  width: 100%;
  gap: 14px;
  justify-items: center;
  margin-top: 8px;
}

.affordable-pricing-compare[open] {
  justify-items: stretch;
}

.affordable-pricing-compare summary {
  justify-self: center;
}

.affordable-pricing-compare .pricing-feature-matrix {
  width: 100%;
}

.affordable-feature-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  margin: 2px 0 10px;
}

.affordable-feature-list li {
  align-items: flex-start;
  color: #465752;
}

.affordable-feature-list li::before {
  margin-top: -1px;
  background: #14ad8d;
}

.affordable-feature-list li strong {
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
}

.affordable-feature-list li.is-unavailable::before {
  color: #d64343;
  background: transparent;
  font-size: 17px;
}

.privacy-policy-grid article {
  padding: 28px;
}

.privacy-policy-grid h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.privacy-policy-grid p {
  margin: 0;
}

.privacy-contact {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 96px;
  padding: 38px;
  color: #fff;
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 28%, rgba(255, 209, 102, 0.2), transparent 13rem),
    linear-gradient(135deg, #102220, #071412);
  box-shadow: var(--shadow);
}

.privacy-contact h2,
.privacy-contact p {
  color: #fff;
}

.privacy-contact p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.change-log-section {
  padding: 88px 0 96px;
}

.change-log-intro {
  display: grid;
  justify-items: center;
  margin-bottom: 30px;
  text-align: center;
}

.change-log-intro .section-heading {
  max-width: 760px;
}

.change-log-intro p:not(.eyebrow) {
  max-width: 620px;
}

.change-log-list {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.change-log-list::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 19px;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 107, 53, 0.3), rgba(16, 34, 32, 0.08));
  content: "";
}

.change-log-card {
  position: relative;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  margin-left: 46px;
  padding: 22px 24px;
  border: 1px solid rgba(16, 34, 32, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(16, 34, 32, 0.05);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.change-log-card::before {
  position: absolute;
  top: 24px;
  left: -36px;
  width: 14px;
  height: 14px;
  border: 5px solid var(--bg);
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 107, 53, 0.2);
  content: "";
}

.change-log-card::after {
  position: absolute;
  top: 22px;
  right: 24px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--ink);
  border: 1px solid rgba(16, 34, 32, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  content: "+";
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.change-log-card:hover,
.change-log-card:focus-visible {
  border-color: rgba(255, 107, 53, 0.26);
  box-shadow: 0 22px 46px rgba(16, 34, 32, 0.08);
}

.change-log-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.change-log-card.is-current {
  border-color: rgba(255, 107, 53, 0.34);
  background:
    radial-gradient(circle at 92% 10%, rgba(57, 207, 165, 0.12), transparent 14rem),
    rgba(255, 255, 255, 0.84);
}

.change-log-card.is-open::after {
  color: #fff;
  background: var(--ink);
  content: "-";
  transform: rotate(180deg);
}

.change-log-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 10px;
}

.change-log-meta strong {
  width: fit-content;
  padding: 8px 12px;
  color: #fff;
  border-radius: 999px;
  background: var(--ink);
  font-size: 13px;
  letter-spacing: 0.03em;
}

.change-log-meta span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.change-log-card h3 {
  max-width: calc(100% - 44px);
  margin: 0;
  font-size: 22px;
  line-height: 1.08;
}

.change-log-card ul {
  grid-column: 2;
  display: grid;
  gap: 9px;
  padding: 0;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  list-style: none;
  opacity: 0;
  transition: max-height 260ms var(--ease-out), margin 220ms ease, opacity 180ms ease;
}

.change-log-card.is-open ul {
  max-height: 36rem;
  margin-top: 16px;
  opacity: 1;
}

.change-log-card li {
  position: relative;
  padding-left: 20px;
  color: #5d6b66;
  font-size: 14px;
  line-height: 1.55;
}

.change-log-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.revealable {
  opacity: 0;
  translate: 0 22px;
  transition: opacity 620ms var(--ease-out), translate 620ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.revealable.is-visible {
  opacity: 1;
  translate: 0 0;
}

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

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

  .revealable {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .pricing-plan-grid {
    grid-template-columns: 1fr;
  }

  .pricing-plan-card {
    min-height: auto;
  }
}

@media (max-width: 1100px) {
  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    display: none;
  }

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

  .module-card-featured {
    grid-column: span 2;
  }

  .split-section,
  .fit-guide,
  .dark-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .product-showcase {
    padding-bottom: 82px;
  }

  .showcase-panel {
    width: 100%;
  }

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

  .privacy-hero,
  .pricing-page-hero,
  .privacy-policy,
  .change-log-card {
    grid-template-columns: 1fr;
  }

  .privacy-policy-intro {
    position: static;
  }

  .privacy-policy-intro p:not(.eyebrow) {
    max-width: 680px;
  }
}

@media (max-width: 860px) {
  .section-shell {
    width: min(100% - 30px, 1160px);
  }

  .site-header.is-scrolled {
    padding-top: 8px;
  }

  .site-header.is-scrolled .site-header-inner {
    width: 100%;
    min-height: 66px;
    border-radius: 0;
  }

  .site-header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
    order: 2;
  }

  .header-cta {
    order: 3;
    margin-left: 8px;
  }

  .brand-logo {
    width: 156px;
  }

  .site-header.is-scrolled .brand-logo {
    width: 144px;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    right: 15px;
    left: 15px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(251, 252, 251, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px;
  }

  .nav-links a::after {
    display: none;
  }

  .privacy-hero,
  .pricing-page-hero {
    padding-top: 52px;
  }

  .privacy-hero-copy {
    padding: 42px 28px;
  }

  .privacy-highlights {
    grid-template-columns: 1fr;
  }

  .privacy-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .change-log-section {
    padding-bottom: 72px;
  }

  .change-log-list::before {
    left: 14px;
  }

  .change-log-card {
    gap: 12px;
    margin-left: 36px;
    padding: 22px 18px;
  }

  .change-log-card ul {
    grid-column: 1;
  }

  .change-log-card::before {
    left: -30px;
  }

  .change-log-card::after {
    top: 18px;
    right: 18px;
  }

  .hero {
    gap: 40px;
    padding: 52px 0 66px;
  }

  h1 {
    font-size: clamp(36px, 9vw, 48px);
    line-height: 1;
    letter-spacing: -0.052em;
  }

  .hero-copy p {
    max-width: 36rem;
    font-size: 16px;
    line-height: 1.72;
  }

  .audience-strip {
    max-width: 520px;
    margin-top: 16px;
  }

  .dashboard-shell {
    min-height: auto;
  }

  .mock-main {
    padding: 16px;
  }

  .mock-topbar,
  .dashboard-lower,
  .proof-heading,
  .modules-head,
  .workflow-head,
  .pricing-head,
  .workflow-foot {
    display: grid;
  }

  .fit-row {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: auto;
  }

  .fit-row-head {
    display: none;
  }

  .mock-topbar div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .metric-row,
  .dashboard-lower,
  .proof-cards,
  .module-grid,
  .timeline,
  .dark-panels,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .module-card-featured {
    grid-column: span 1;
  }

  .chart-bars {
    height: 150px;
  }

  .pricing .pricing-head {
    margin-bottom: 36px;
  }

  .pricing-card-table {
    padding: 10px;
    border-radius: 18px;
  }

  .pricing-card-actions {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    padding: 14px;
  }

  .pricing-actions-copy {
    justify-items: center;
    text-align: center;
  }

  .pricing-other-link,
  .pricing-card-actions .pricing-compare summary,
  .pricing-card-actions .pricing-compare-panel {
    grid-column: 1;
  }

  .pricing-card-actions .pricing-compare summary,
  .pricing-other-link {
    justify-self: center;
    width: 100%;
    margin-right: 0;
  }

  .pricing-compare-panel {
    padding: 12px;
  }

  .pricing-compare-intro {
    display: grid;
    justify-items: center;
    gap: 8px;
    text-align: center;
  }

  .pricing-plan-card {
    padding: 26px 22px 22px;
  }

  .pricing-plan-card > p {
    min-height: auto;
  }

  .plan-title-row {
    margin-bottom: 22px;
  }

  .plan-price {
    font-size: clamp(36px, 10vw, 46px);
  }

  .pricing-feature-matrix {
    border-radius: 14px;
  }

  .feature-row {
    grid-template-columns: minmax(150px, 1.1fr) repeat(3, minmax(118px, 0.9fr));
    min-width: 620px;
  }

  .feature-row > span {
    padding: 10px 12px;
  }

  .split-section,
  .product-showcase,
  .fit-guide,
  .modules,
  .workflow,
  .pricing,
  .faq {
    padding-bottom: 74px;
  }

  .proof {
    padding-bottom: 74px;
  }

  .dark-band {
    padding: 74px 0;
    background-attachment: scroll;
    background-position: center;
  }

  .cta-band {
    padding: 38px 24px;
  }
}

@media (max-width: 520px) {
  .site-header-inner {
    min-height: 70px;
  }

  .brand-logo {
    width: 138px;
  }

  .header-cta {
    padding: 11px 14px;
    font-size: 12px;
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(33px, 10vw, 40px);
    line-height: 1.03;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-copy p {
    max-width: 34ch;
    padding: 0;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button-dark {
    min-height: 44px;
  }

  .hero-actions .button-soft {
    width: auto;
    min-height: 34px;
    padding: 0 10px;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }

  .hero-rating {
    align-items: center;
  }

  .audience-strip {
    gap: 6px;
  }

  .audience-strip span {
    padding: 7px 10px;
    font-size: 12px;
  }

  .hero-product {
    width: calc(100vw - 22px);
  }

  .hero-product img {
    max-height: 360px;
    aspect-ratio: 4 / 3;
  }

  .metric-row article {
    min-height: auto;
  }

  .order-table {
    overflow-x: auto;
  }

  .order-table div {
    min-width: 0;
    grid-template-columns: 1fr auto;
  }

  .order-table div strong {
    display: none;
  }

  .phone-panel {
    min-height: auto;
    padding: 18px;
  }

  .product-showcase {
    gap: 22px;
  }

  .showcase-copy {
    justify-items: stretch;
    text-align: left;
  }

  .showcase-copy .button {
    justify-self: start;
    width: auto;
  }

  .showcase-chips {
    justify-content: flex-start;
  }

  .showcase-chips span {
    padding: 8px 11px;
    font-size: 12px;
  }

  .site-footer .brand-logo {
    width: 190px;
  }

  .privacy-hero-copy {
    padding: 34px 22px;
  }

  .privacy-hero-copy h1 {
    font-size: clamp(33px, 10vw, 40px);
    line-height: 1.03;
  }

  .privacy-summary,
  .privacy-highlights article,
  .privacy-policy-grid article,
  .privacy-contact {
    padding: 24px;
  }

  .affordable-feature-list {
    grid-template-columns: 1fr;
  }

  .privacy-policy {
    padding-bottom: 74px;
  }

  .privacy-contact .button {
    width: 100%;
  }

  .phone-card {
    padding: 18px;
  }

  .proof-card,
  .module-card,
  .timeline-card {
    min-height: auto;
    padding: 22px;
  }
}
