:root {
  --bg: #fffdf9;
  --bg-soft: #fff7ef;
  --surface: #ffffff;
  --surface-muted: #fffaf4;
  --line: #eadfce;
  --line-strong: #ddc6a8;
  --text: #17130e;
  --text-soft: #665c50;
  --orange: #f57c00;
  --orange-pastel: #f4a261;
  --orange-strong: #e56e00;
  --orange-soft: #fff0df;
  --shadow: 0 18px 60px rgba(92, 52, 14, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(245, 124, 0, 0.08), transparent 32%),
    linear-gradient(180deg, #fffdf9 0%, #fffaf5 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

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

.page-shell { min-height: 100vh; }
.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(255, 253, 249, 0.84);
  border-bottom: 1px solid rgba(234, 223, 206, 0.75);
}
.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), #ffb45c);
  color: white;
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
}
.brand-name {
  font-weight: 800;
  font-size: 1rem;
}
.brand-sub {
  color: var(--text-soft);
  font-size: 0.9rem;
}
.topnav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topnav a {
  color: var(--text-soft);
  font-weight: 600;
}
.topnav a:hover { color: var(--text); }
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--orange);
  color: white !important;
}

.hero-section {
  position: relative;
  z-index: 2;
  padding: 58px 0 72px;
  overflow: visible;
}
.hero-grid {
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 36px;
  align-items: center;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.hero-copy h1,
.section-heading h2,
.cta-box h2 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 18px 0 16px;
}
.hero-copy h1 {
  font-size: clamp(3.1rem, 5.3vw, 5.15rem);
  max-width: 680px;
}
.hero-copy h1 > span {
  display: block;
  white-space: nowrap;
}
.heading-accent {
  color: var(--orange);
}
.heading-italic {
  font-style: italic;
}
.hero-lead {
  font-size: 1.16rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 620px;
}
.hero-support {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  font-weight: 600;
  margin-top: 14px;
  max-width: 590px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin: 28px 0 22px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 15px 22px;
  font-weight: 800;
  transition: 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 12px 28px rgba(245, 124, 0, 0.25);
}
.btn-primary:hover { background: var(--orange-strong); }
.btn-secondary {
  background: white;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-small {
  padding: 10px 14px;
  font-size: 0.9rem;
}
.full { width: 100%; }
.center-actions { justify-content: center; }
.trust-pills,
.cta-mini-pills {
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.trust-pills li {
  border: 1px solid rgba(221, 198, 168, 0.58);
  background: rgba(255, 250, 244, 0.54);
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(102, 92, 80, 0.78);
  font-weight: 700;
  font-size: 0.86rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}
.cta-mini-pills span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.9);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.9rem;
}
.hero-visual {
  justify-self: end;
  width: min(100%, 620px);
  margin-right: -18px;
  position: relative;
  z-index: 2;
}
.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  filter: drop-shadow(0 24px 48px rgba(39, 65, 117, 0.14));
}

.section {
  padding: 42px 0;
}
.section-alt {
  background: rgba(255,255,255,0.58);
  border-top: 1px solid rgba(234, 223, 206, 0.7);
  border-bottom: 1px solid rgba(234, 223, 206, 0.7);
}
.section-heading {
  margin-bottom: 24px;
}
.section-heading.left { max-width: 68ch; }
.section-heading.center {
  text-align: center;
  max-width: 50rem;
  margin-inline: auto;
  margin-bottom: 32px;
}
.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  max-width: 760px;
}
.section-heading.left h2 { max-width: 820px; }
.section-heading p,
.section-footer-copy,
.cta-box p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}
.narrow h2 { max-width: 620px; }
.accent-copy {
  color: var(--orange-strong);
  font-weight: 800;
  margin-top: 18px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 22rem;
  gap: 16px;
}
.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(234, 223, 206, 0.86);
  background:
    radial-gradient(circle at top right, rgba(245, 124, 0, 0.12), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
  box-shadow: 0 2px 4px rgba(92, 52, 14, 0.04), 0 18px 44px rgba(92, 52, 14, 0.08);
  padding: 18px;
}
.bento-card-large { grid-column: span 2; }
.bento-card-wide { grid-column: span 2; }
.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 19, 14, 0);
  transition: 180ms ease;
  pointer-events: none;
}
.bento-card:hover::after { background: rgba(23, 19, 14, 0.025); }
.bento-visual {
  min-height: 160px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(234, 223, 206, 0.72);
  padding: 16px;
}
.bento-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: 18px;
}
.bento-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(245, 124, 0, 0.1);
  color: var(--orange-strong);
}
.bento-icon svg,
.launch-ring svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bento-card h3 {
  margin: 0;
  font-size: 1.2rem;
}
.bento-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}
.browser-frame {
  max-width: 390px;
  min-height: 140px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(39, 65, 117, 0.08);
  padding: 14px;
}
.browser-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}
.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e9d8c3;
}
.url-bar {
  border-radius: 999px;
  background: #f7f1e9;
  color: var(--text-soft);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 12px;
}
.site-lines {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.site-lines span {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(245, 124, 0, 0.26), rgba(245, 124, 0, 0.06));
}
.site-lines span:nth-child(2) { width: 72%; }
.site-lines span:nth-child(3) { width: 54%; }
.upload-chip {
  position: absolute;
  top: 28px;
  right: 28px;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 9px 12px;
  box-shadow: 0 12px 24px rgba(245, 124, 0, 0.2);
}
.questions-visual {
  display: grid;
  align-content: center;
  gap: 10px;
}
.questions-visual span {
  border-radius: 14px;
  background: white;
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 11px 12px;
}
.strategy-visual {
  display: grid;
  align-content: center;
  gap: 10px;
}
.strategy-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--line);
  padding: 12px;
}
.strategy-row strong {
  color: var(--orange-strong);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.strategy-row span {
  color: var(--text-soft);
  font-weight: 700;
  text-align: right;
}
.strategy-row.muted {
  background: rgba(255, 255, 255, 0.64);
}
.launch-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.launch-ring {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf8e7;
  color: #2f7d29;
  box-shadow: 0 0 0 12px rgba(234, 248, 231, 0.55);
}
.launch-card {
  display: grid;
  gap: 8px;
  min-width: 210px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
  padding: 16px;
  box-shadow: 0 18px 34px rgba(39, 65, 117, 0.08);
}
.launch-card strong { font-size: 1rem; }
.launch-card span {
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.9rem;
}

.product-proof-card,
.problem-comparison,
.steps-grid,
.quality-grid,
.calculator-card,
.usecase-grid,
.faq-card,
.cta-box,
.comparison-table-wrap {
  border-radius: var(--radius-xl);
}

.product-proof-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 230px 1fr;
  overflow: hidden;
}
.product-sidebar {
  background: var(--surface-muted);
  border-right: 1px solid var(--line);
  padding: 22px;
  display: grid;
  gap: 10px;
  align-content: start;
}
.side-chip {
  border-radius: 999px;
  padding: 12px 14px;
  background: white;
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-weight: 700;
}
.side-chip.active {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}
.product-main {
  padding: 24px;
  display: grid;
  gap: 20px;
}
.product-chat {
  display: grid;
  gap: 10px;
}
.bubble {
  max-width: 42rem;
  padding: 14px 16px;
  border-radius: 18px;
  line-height: 1.6;
}
.bubble-user {
  background: #fff6ea;
  border: 1px solid #f4d4a8;
}
.bubble-ai {
  background: #fff;
  border: 1px solid var(--line);
}
.product-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.panel {
  background: var(--surface-muted);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
}
.panel-title,
.problem-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.mini-list {
  margin: 0;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.7;
}
.ad-snippet {
  background: white;
  border: 1px solid var(--line);
  padding: 14px;
  border-radius: 14px;
}
.ad-url {
  display: block;
  color: #4f8b39;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.ad-snippet strong { display: block; margin-bottom: 6px; }
.ad-snippet p { margin: 0; color: var(--text-soft); }
.approval-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-column: 1 / -1;
}
.status-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eaf8e7;
  color: #2f7d29;
  font-weight: 800;
  font-size: 0.88rem;
}

.problem-comparison,
.steps-grid,
.usecase-grid,
.quality-grid {
  display: grid;
  gap: 16px;
}
.problem-comparison { grid-template-columns: repeat(3, 1fr); }
.problem-card,
.step-card,
.quality-card,
.usecase-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.quality-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 253, 249, 0.96) 52%, rgba(255, 248, 239, 0.92) 100%);
  border-color: rgba(255, 255, 255, 0.86);
  box-shadow:
    14px 14px 30px rgba(92, 52, 14, 0.1),
    -14px -14px 30px rgba(255, 255, 255, 0.94),
    inset 1px 1px 0 rgba(255, 255, 255, 0.95),
    inset -1px -1px 0 rgba(221, 198, 168, 0.3);
  color: var(--text);
  font-weight: 800;
  line-height: 1.35;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9), 0 7px 18px rgba(92, 52, 14, 0.12);
}
.problem-card ul,
.usecase-card p { margin: 0; }
.problem-card ul {
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.8;
}
.problem-card.highlight {
  background: linear-gradient(180deg, #fff8ee, #fff4e6);
  border-color: #efcf9b;
}
.problem-card.muted { background: rgba(255,255,255,0.8); }
.section-footer-copy { margin-top: 18px; }

.steps-grid { grid-template-columns: repeat(3, 1fr); }
.step-card h3,
.usecase-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}
.step-card p,
.usecase-card p,
.calculator-card label,
.calculator-card p {
  color: var(--text-soft);
  line-height: 1.7;
}
.step-number {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange-strong);
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
}
.micro-ui {
  margin-top: 16px;
  border: 1px dashed #dfc6a6;
  background: #fff9f2;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chips-ui span {
  padding: 8px 10px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  font-size: 0.88rem;
}

.quality-layout,
.calculator-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
}
.quality-grid {
  grid-template-columns: repeat(2, 1fr);
}
.quality-card.accent {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 253, 249, 0.97) 50%, rgba(255, 247, 237, 0.94) 100%);
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow:
    15px 15px 32px rgba(92, 52, 14, 0.11),
    -15px -15px 32px rgba(255, 255, 255, 0.95),
    inset 1px 1px 0 rgba(255, 255, 255, 0.96),
    inset -1px -1px 0 rgba(221, 198, 168, 0.32);
  font-weight: 800;
  color: var(--text);
}

.comparison-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}
.comparison-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 760px;
}
.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid var(--line);
  padding: 18px 16px;
  text-align: left;
}
.comparison-table thead th {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-soft);
}
.col-highlight {
  background: #fff5e6;
}

.calculator-card {
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 24px;
  display: grid;
  gap: 22px;
  font-family: "DM Serif Display", serif;
}
.calculator-field {
  display: grid;
  gap: 10px;
}
.calculator-field-head {
  display: grid;
  gap: 7px;
}
.calculator-label {
  font-size: 1.1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
.calculator-field-head strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 400;
  white-space: nowrap;
}
.slider-control {
  display: grid;
  grid-template-columns: 34px minmax(170px, 320px) 34px;
  align-items: center;
  gap: 16px;
  width: max-content;
  max-width: 100%;
}
.slider-step {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  border: 1px solid #d7d2cc;
  background: #fbfbfa;
  color: #17130e;
  box-shadow: 0 1px 2px rgba(23, 19, 14, 0.06);
  cursor: pointer;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1;
  transition: 160ms ease;
}
.slider-step:hover:not(:disabled) {
  border-color: #c8c2ba;
  background: #ffffff;
}
.slider-step:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}
.calculator-card input[type="range"] {
  --range-progress: 0%;
  min-width: 0;
  width: 100%;
  height: 24px;
  appearance: none;
  background: transparent;
  cursor: pointer;
}
.calculator-card input[type="range"]::-webkit-slider-runnable-track {
  height: 7px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--orange-pastel) 0 var(--range-progress), #f3f1ed var(--range-progress) 100%);
}
.calculator-card input[type="range"]::-webkit-slider-thumb {
  width: 19px;
  height: 19px;
  appearance: none;
  margin-top: -6px;
  border-radius: 50%;
  border: 2px solid #2d2b29;
  background: #ffffff;
  box-shadow: none;
}
.calculator-card input[type="range"]:focus-visible {
  outline: none;
}
.calculator-card input[type="range"]:focus-visible::-webkit-slider-thumb {
  outline: none;
}
.calculator-card input[type="range"]::-moz-range-track {
  height: 7px;
  border-radius: 999px;
  background: #f3f1ed;
}
.calculator-card input[type="range"]::-moz-range-progress {
  height: 7px;
  border-radius: 999px;
  background: var(--orange-pastel);
}
.calculator-card input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #2d2b29;
  background: #ffffff;
  box-shadow: none;
}
.calc-result {
  background: #fff5e8;
  border: 1px solid #f0cf9e;
  border-radius: 20px;
  padding: 20px;
}
.calc-result span {
  display: block;
  color: var(--text-soft);
  font-family: "DM Serif Display", serif;
  font-size: 1.15rem;
  font-weight: 400;
}
.calc-result strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  color: var(--orange);
}
.calc-result p { margin: 8px 0 0; }

.usecase-grid { grid-template-columns: repeat(3, 1fr); }
.usecase-card {
  background: linear-gradient(180deg, #ffffff, #fffbf6);
}
.usecase-card h3 { font-size: 1.05rem; }

.pricing-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 124, 0, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 247, 239, 0.8));
  border-top: 1px solid rgba(234, 223, 206, 0.7);
  border-bottom: 1px solid rgba(234, 223, 206, 0.7);
}

.pricing-section .container {
  width: min(1480px, calc(100% - 48px));
}
.pricing-section .section-heading p {
  max-width: 48rem;
  margin-inline: auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  border: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 253, 249, 0.96) 54%, rgba(255, 247, 238, 0.92) 100%);
  box-shadow:
    18px 18px 38px rgba(92, 52, 14, 0.12),
    -18px -18px 38px rgba(255, 255, 255, 0.9),
    inset 1px 1px 0 rgba(255, 255, 255, 0.95),
    inset -1px -1px 0 rgba(221, 198, 168, 0.25);
  padding: 26px;
}
.pricing-card-featured {
  margin-top: 0;
  border: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 249, 241, 0.97) 50%, rgba(255, 239, 219, 0.94) 100%);
  box-shadow:
    20px 20px 44px rgba(159, 83, 10, 0.15),
    -20px -20px 44px rgba(255, 255, 255, 0.92),
    inset 1px 1px 0 rgba(255, 255, 255, 0.96),
    inset -1px -1px 0 rgba(245, 124, 0, 0.16);
}
.pricing-plan {
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 18px;
  color: var(--text);
}
.pricing-price span,
.pricing-price em {
  color: var(--text-soft);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 800;
}
.pricing-price strong {
  color: var(--orange);
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.55rem, 5.2vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
}
.pricing-features {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pricing-features li {
  position: relative;
  color: var(--text);
  font-weight: 700;
  line-height: 1.55;
  padding-left: 31px;
}
.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(245, 124, 0, 0.95), rgba(244, 162, 97, 0.95));
}
.pricing-features li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 0.48em;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.pricing-note {
  margin: 22px auto 0;
  max-width: 46rem;
  color: var(--text-soft);
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}
.pricing-table-wrap {
  width: 100%;
  overflow: visible;
  padding: 8px 0 10px;
}
.pricing-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--text);
}
.pricing-table th,
.pricing-table td {
  border-bottom: 1px solid rgba(234, 223, 206, 0.95);
  border-left: 1px solid rgba(234, 223, 206, 0.8);
  padding: 18px;
  text-align: left;
  vertical-align: middle;
}
.pricing-table thead th {
  border-left: 0;
  padding: 4px;
  font-weight: inherit;
  vertical-align: stretch;
}

.pricing-table thead th:not(.pricing-feature-heading) {
  width: 25%;
}
.pricing-table tbody th {
  width: 25%;
  border-left: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}
.pricing-table tbody td {
  width: 25%;
  background: rgba(255, 255, 255, 0.58);
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}
.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}
.pricing-feature-heading {
  width: 25%;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricing-feature-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: normal;
}
.pricing-tooltip {
  display: inline-grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  border: 1px solid rgba(245, 124, 0, 0.34);
  border-radius: 999px;
  background: rgba(255, 240, 223, 0.9);
  color: var(--orange-strong);
  cursor: help;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}
.pricing-tooltip:focus-visible {
  outline: 2px solid rgba(245, 124, 0, 0.5);
  outline-offset: 2px;
}
.pricing-tooltip-text {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  z-index: 12;
  width: min(280px, 72vw);
  border: 1px solid rgba(221, 198, 168, 0.95);
  border-radius: 14px;
  background: #17130e;
  box-shadow: 0 18px 36px rgba(64, 43, 22, 0.18);
  color: #fffaf4;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
  opacity: 0;
  padding: 12px 13px;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}
.pricing-tooltip-text::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 100%;
  border: 7px solid transparent;
  border-bottom-color: #17130e;
}
.pricing-tooltip:hover + .pricing-tooltip-text,
.pricing-tooltip:focus + .pricing-tooltip-text {
  opacity: 1;
  transform: translateY(0);
}
.pricing-plan-card {
  width: 100%;
  min-height: 310px;
  gap: 22px;
  padding: 26px;
  font-weight: 400;
}
.pricing-plan-card.pricing-card-featured {
  margin-top: 0;
}
.pricing-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #fff8ef;
  box-shadow:
    5px 5px 12px rgba(92, 52, 14, 0.11),
    -5px -5px 12px rgba(255, 255, 255, 0.9),
    inset 1px 1px 0 rgba(255, 255, 255, 0.92);
  color: var(--orange-strong);
  font-size: 0.76rem;
  font-weight: 900;
}
.pricing-check {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(245, 124, 0, 0.95), rgba(244, 162, 97, 0.95));
  box-shadow: 0 10px 20px rgba(245, 124, 0, 0.2);
}
.pricing-check::after {
  content: "";
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.testimonials-section {
  overflow: hidden;
}
.testimonials-section .section-heading p {
  max-width: 46rem;
  margin-inline: auto;
}
.testimonials-marquee {
  position: relative;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
}
.testimonials-marquee::before,
.testimonials-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 8px;
  bottom: 28px;
  width: min(18vw, 240px);
  pointer-events: none;
}
.testimonials-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff8ef, rgba(255, 248, 239, 0));
}
.testimonials-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff8ef, rgba(255, 248, 239, 0));
}
.testimonials-viewport {
  --testimonial-gap: 18px;
  --testimonial-duration: 44s;
  display: flex;
  gap: var(--testimonial-gap);
  overflow: hidden;
  padding: 8px 0 46px;
}
.testimonials-track {
  display: flex;
  flex: 0 0 auto;
  min-width: max-content;
  gap: var(--testimonial-gap);
  animation: testimonial-marquee var(--testimonial-duration) linear infinite;
  will-change: transform;
}
.testimonials-marquee:hover .testimonials-track {
  animation-play-state: paused;
}
.testimonial-card {
  width: clamp(280px, 28vw, 360px);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-top-color: rgba(255, 122, 0, 0.26);
  background: linear-gradient(180deg, rgba(255, 246, 236, 0.95), rgba(255, 246, 236, 0.58));
  box-shadow:
    16px 16px 34px rgba(151, 92, 35, 0.12),
    -16px -16px 34px rgba(255, 255, 255, 0.88),
    inset 1px 1px 0 rgba(255, 255, 255, 0.82),
    inset -1px -1px 0 rgba(230, 194, 151, 0.24);
  padding: 26px;
  text-align: left;
}
.testimonial-quote {
  margin: 0;
  color: var(--text);
  font-family: "DM Serif Display", serif;
  font-size: clamp(0.98rem, 1.04vw, 1.08rem);
  font-weight: 400;
  line-height: 1.38;
}
.testimonial-highlight {
  color: var(--orange);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--text);
}
.testimonial-author strong {
  font-family: "DM Serif Display", serif;
  font-size: 1rem;
  font-weight: 400;
}
.testimonial-author span {
  color: var(--text-soft);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.35;
}
@keyframes testimonial-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - var(--testimonial-gap))); }
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
}
.faq-card {
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-card details + details { border-top: 1px solid var(--line); }
.faq-card summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}
.faq-card summary::-webkit-details-marker { display: none; }
.faq-card p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--text-soft);
  line-height: 1.75;
}

.section-cta { padding-bottom: 80px; }
.cta-box {
  background: #fff4e8;
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: clamp(32px, 5vw, 58px) clamp(22px, 4vw, 52px);
  text-align: center;
  box-shadow:
    18px 18px 42px rgba(151, 92, 35, 0.13),
    -18px -18px 42px rgba(255, 255, 255, 0.86),
    inset 1px 1px 0 rgba(255, 255, 255, 0.82),
    inset -1px -1px 0 rgba(238, 201, 157, 0.32);
}
.cta-box h2 {
  display: grid;
  justify-items: center;
  font-size: clamp(2.15rem, 4.9vw, 5.25rem);
  line-height: 0.92;
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}
.cta-box h2 span {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  text-align: center;
}
.cta-box p {
  max-width: 44rem;
  margin: 0 auto;
}
.cta-mini-pills {
  justify-content: center;
  margin-top: 20px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .quality-layout,
  .calculator-layout,
  .faq-layout,
  .product-proof-card {
    grid-template-columns: 1fr;
  }
  .product-sidebar { border-right: 0; border-bottom: 1px solid var(--line); }
  .problem-comparison,
  .steps-grid,
  .usecase-grid,
  .pricing-grid,
  .quality-grid { grid-template-columns: 1fr 1fr; }
  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(22rem, auto);
  }
  .bento-card-large,
  .bento-card-wide {
    grid-column: span 2;
  }
  .hero-visual {
    justify-self: center;
    margin-right: 0;
    width: min(100%, 700px);
  }
}

@media (max-width: 780px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .topbar-inner { padding: 14px 0; align-items: flex-start; }
  .topnav { display: none; }
  .hero-section { padding-top: 34px; }
  .hero-copy h1 {
    font-size: clamp(2.35rem, 11vw, 4.1rem);
    text-align: center;
    margin-inline: auto;
  }
  .hero-grid,
  .problem-comparison,
  .steps-grid,
  .usecase-grid,
  .pricing-grid,
  .quality-grid,
  .bento-grid,
  .product-panels { grid-template-columns: 1fr; }
  .pricing-card,
  .pricing-card-featured {
    min-height: auto;
    margin-top: 0;
  }
    .bento-card-large,
  .bento-card-wide {
    grid-column: span 1;
  }
  .bento-grid { grid-auto-rows: auto; }
  .bento-card { min-height: 22rem; }
  .testimonials-viewport {
    --testimonial-gap: 14px;
    --testimonial-duration: 38s;
  }
  .testimonial-card {
    width: min(82vw, 330px);
    min-height: 300px;
  }
  .testimonials-marquee::before,
  .testimonials-marquee::after {
    width: 42px;
  }
  .launch-visual {
    align-items: flex-start;
    flex-direction: column;
  }
  .slider-control {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    width: 100%;
  }
  .hero-copy h1 { max-width: none; }
  .section-heading h2,
  .section-heading.left h2,
  .narrow h2,
  .cta-box h2 { max-width: 100%; }
  .cta-box h2 {
    font-size: clamp(2rem, 10.6vw, 3.65rem);
  }
  .approval-panel { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .trust-pills li,
  .cta-mini-pills span { width: 100%; text-align: center; }
}
