:root {
  color-scheme: light;
  --paper: #f5f1e8;
  --paper-deep: #e8e2d6;
  --white: #fffdf8;
  --ink: #101713;
  --ink-soft: #27322c;
  --muted: #647067;
  --line: #cfc9bc;
  --line-dark: #9b9b8f;
  --ocean: #0b665d;
  --ocean-dark: #06463f;
  --acid: #c8f560;
  --acid-dark: #759c1f;
  --coral: #f56b4c;
  --blue: #4574d8;
  --success: #16734b;
  --warning: #9a5b08;
  --danger: #a72c2c;
  --shadow-sm: 0 2px 0 rgb(16 23 19 / 10%);
  --shadow-md: 0 18px 50px rgb(16 23 19 / 12%);
  --shadow-lg: 0 30px 80px rgb(16 23 19 / 18%);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --reading: 760px;
  --header-height: 76px;
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(rgb(16 23 19 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(16 23 19 / 3%) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 12% 10%, rgb(200 245 96 / 18%), transparent 26rem),
    radial-gradient(circle at 86% 24%, rgb(11 102 93 / 10%), transparent 30rem);
  content: "";
  pointer-events: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgb(200 245 96 / 28%);
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.9rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 4.7rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.25;
}

code,
.mono {
  font-family: var(--mono);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-weight: 700;
}

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

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

.reading-width {
  width: min(100%, var(--reading));
}

.section {
  padding-block: clamp(72px, 10vw, 128px);
}

.section-tight {
  padding-block: clamp(52px, 7vw, 84px);
}

.section-ink {
  color: var(--white);
  background:
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px),
    var(--ink);
  background-size: 32px 32px;
}

.section-ocean {
  color: var(--white);
  background: var(--ocean-dark);
}

.section-white {
  background: rgb(255 253 248 / 84%);
  backdrop-filter: blur(10px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--ocean);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentcolor;
  content: "";
}

.section-ink .eyebrow,
.section-ocean .eyebrow {
  color: var(--acid);
}

.section-heading {
  max-width: 830px;
  margin-bottom: clamp(36px, 6vw, 68px);
}

.section-heading p {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.section-ink .section-heading p,
.section-ocean .section-heading p {
  color: rgb(255 253 248 / 72%);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgb(16 23 19 / 16%);
  background: rgb(245 241 232 / 92%);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-dark);
  border-radius: 9px;
  background: var(--white);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.04rem;
  letter-spacing: -0.02em;
}

.brand-copy span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a,
.mobile-nav a {
  min-height: 44px;
  padding: 11px 13px;
  border-radius: 9px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--ink);
  background: rgb(16 23 19 / 7%);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.menu-button svg {
  width: 22px;
  height: 22px;
}

.mobile-nav {
  display: none;
  padding: 0 20px 18px;
  border-top: 1px solid var(--line);
}

.mobile-nav[data-open="true"] {
  display: grid;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

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

.button-primary {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--acid);
  box-shadow: 4px 4px 0 var(--ink);
}

.button-primary:hover {
  background: #d5ff72;
  box-shadow: 6px 6px 0 var(--ink);
}

.button-dark {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--ocean-dark);
}

.button-secondary {
  border-color: var(--line-dark);
  color: var(--ink);
  background: var(--white);
}

.button-secondary:hover {
  border-color: var(--ink);
  background: var(--paper);
}

.button-ghost {
  color: inherit;
  background: transparent;
}

.button-small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  padding-block: clamp(68px, 10vw, 134px) clamp(72px, 9vw, 116px);
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 60px;
  right: -140px;
  width: 420px;
  height: 420px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 5.4vw, 6rem);
}

.hero h1 .marker {
  padding-inline: 0.04em;
  background: linear-gradient(transparent 72%, var(--acid) 72%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero h1 .marker::after {
  content: none;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.proof-row span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ocean);
  content: "";
}

.workflow-visual {
  position: relative;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: 14px 14px 0 var(--ocean);
}

.workflow-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  color: rgb(255 253 248 / 68%);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.window-dots i:nth-child(2) {
  background: #f2c14d;
}

.window-dots i:nth-child(3) {
  background: var(--acid);
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 52px 1fr;
  align-items: center;
  gap: 12px;
}

.mini-app {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 14px;
  background: #202923;
}

.mini-app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 12px;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
}

.mini-art {
  position: relative;
  min-height: 178px;
  background:
    radial-gradient(circle at 34% 36%, rgb(200 245 96 / 80%) 0 4%, transparent 5%),
    radial-gradient(circle at 62% 45%, rgb(245 107 76 / 80%) 0 8%, transparent 9%),
    linear-gradient(145deg, #19443f, #5c3755 58%, #151d1a);
}

.mini-art::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 50% 44% 48% 40%;
  content: "";
}

.mini-copy {
  padding: 12px;
  color: rgb(255 253 248 / 78%);
  font-family: var(--mono);
  font-size: 0.62rem;
  line-height: 1.55;
}

.mini-save {
  display: flex;
  margin: 0 12px 12px;
  padding: 8px 10px;
  border-radius: 7px;
  color: var(--ink);
  background: var(--acid);
  font-size: 0.68rem;
  font-weight: 900;
}

.workflow-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 50%;
  color: var(--acid);
}

.notion-list {
  display: grid;
  gap: 8px;
  padding: 13px;
}

.notion-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 9px;
  align-items: center;
  padding: 8px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 8px;
  color: rgb(255 253 248 / 74%);
  font-size: 0.64rem;
}

.notion-thumb {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(145deg, var(--ocean), var(--coral));
}

.notion-lines {
  display: grid;
  gap: 5px;
}

.notion-lines i {
  width: 86%;
  height: 5px;
  border-radius: 999px;
  background: rgb(255 255 255 / 20%);
}

.notion-lines i:last-child {
  width: 56%;
  background: rgb(200 245 96 / 42%);
}

.workflow-stamp {
  position: absolute;
  right: -20px;
  bottom: -22px;
  padding: 12px 16px;
  transform: rotate(-4deg);
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  background: var(--acid);
  box-shadow: 4px 4px 0 var(--white);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-strip {
  border-block: 1px solid var(--ink);
  background: var(--acid);
}

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

.trust-item {
  padding: 24px;
  border-right: 1px solid var(--ink);
}

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

.trust-item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1.05;
}

.trust-item span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 750;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.feature-card {
  position: relative;
  grid-column: span 6;
  min-height: 310px;
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.feature-card:nth-child(2),
.feature-card:nth-child(3) {
  background: #dfeae4;
}

.feature-card .number {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--ocean);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 900;
}

.feature-card h3 {
  max-width: 480px;
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  letter-spacing: -0.025em;
}

.feature-card p {
  max-width: 560px;
  color: var(--muted);
}

.feature-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--ocean-dark);
  font-weight: 850;
}

.feature-card::after {
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 160px;
  height: 160px;
  border: 1px solid rgb(16 23 19 / 22%);
  border-radius: 50%;
  content: "";
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.comparison-panel {
  padding: clamp(28px, 5vw, 56px);
}

.comparison-panel:first-child {
  border-right: 1px solid var(--ink);
  background: var(--paper-deep);
}

.comparison-panel h3 {
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: 2rem;
}

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

.check-list li,
.cross-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before,
.cross-list li::before {
  position: absolute;
  top: 0.08em;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.check-list li::before {
  color: var(--white);
  background: var(--success);
  content: "✓";
}

.cross-list li::before {
  color: var(--white);
  background: var(--danger);
  content: "×";
}

.data-table-wrap {
  overflow-x: auto;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: var(--radius);
}

.data-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgb(255 255 255 / 14%);
  text-align: left;
}

.data-table th {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.data-table td:first-child {
  color: var(--white);
  font-weight: 800;
}

.data-table td {
  color: rgb(255 253 248 / 70%);
}

.code-chip {
  display: inline-flex;
  padding: 3px 8px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 6px;
  color: var(--acid);
  background: rgb(255 255 255 / 7%);
  font-family: var(--mono);
  font-size: 0.77rem;
}

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

.step {
  min-width: 0;
  padding: 30px;
  counter-increment: steps;
  border-top: 1px solid var(--ink);
}

.step::before {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  content: counter(steps, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 900;
}

.step p {
  color: var(--muted);
}

.screenshot-placeholder {
  position: relative;
  display: grid;
  min-height: 420px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(45deg, rgb(16 23 19 / 5%) 25%, transparent 25%, transparent 75%, rgb(16 23 19 / 5%) 75%),
    linear-gradient(45deg, rgb(16 23 19 / 5%) 25%, transparent 25%, transparent 75%, rgb(16 23 19 / 5%) 75%),
    var(--white);
  background-position: 0 0, 16px 16px;
  background-size: 32px 32px;
  box-shadow: var(--shadow-md);
}

.screenshot-placeholder::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 42px;
  border-bottom: 1px solid var(--ink);
  background: var(--paper-deep);
  content: "";
}

.screenshot-placeholder::after {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 14px 0 #f2c14d, 28px 0 var(--success);
  content: "";
}

.screenshot-placeholder-inner {
  max-width: 520px;
  padding: 72px 28px 32px;
  text-align: center;
}

.screenshot-placeholder-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--acid);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.screenshot-placeholder h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.screenshot-placeholder p {
  margin-bottom: 14px;
  color: var(--muted);
}

.screenshot-filename {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 7px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 0.75rem;
  overflow-wrap: anywhere;
}

.product-shot {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 10px 10px 0 var(--ocean);
}

.product-shot img {
  width: 100%;
  height: auto;
  background: var(--white);
}

.product-shot figcaption {
  padding: 13px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
  font-size: 0.78rem;
  line-height: 1.5;
}

.product-shot-portrait {
  width: min(100%, 640px);
  margin-inline: auto;
}

.product-shot-portrait img {
  width: auto;
  max-width: 100%;
  max-height: 760px;
  margin-inline: auto;
  object-fit: contain;
}

.prose .product-shot {
  margin-block: 34px;
}

.section-ink .product-shot,
.section-ocean .product-shot {
  box-shadow: 10px 10px 0 var(--acid);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.split-layout.reverse > :first-child {
  order: 2;
}

.content-stack {
  display: grid;
  gap: 22px;
}

.content-stack h2 {
  margin-bottom: 4px;
}

.content-stack p {
  color: var(--muted);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ocean-dark);
  font-weight: 850;
}

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

.metric {
  padding: 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: rgb(255 253 248 / 70%);
}

.metric strong {
  display: block;
  font-family: var(--display);
  font-size: 1.8rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.78rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.price-card.recommended {
  transform: translateY(-14px);
  color: var(--white);
  background: var(--ocean-dark);
  box-shadow: 10px 10px 0 var(--acid);
}

.price-kicker {
  margin-bottom: 28px;
  color: var(--ocean);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recommended .price-kicker {
  color: var(--acid);
}

.price-card h3 {
  font-family: var(--display);
  font-size: 2rem;
}

.price {
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 8px 0 18px;
}

.price strong {
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.price span {
  color: var(--muted);
}

.recommended .price span,
.recommended .price-description {
  color: rgb(255 253 248 / 70%);
}

.price-description {
  min-height: 78px;
  color: var(--muted);
}

.price-card .check-list {
  flex: 1;
  margin: 20px 0 30px;
}

.price-card .button {
  width: 100%;
}

.price-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  padding: 7px 11px;
  transform: rotate(2deg);
  border: 1px solid var(--ink);
  border-radius: 7px;
  color: var(--ink);
  background: var(--acid);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

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

.faq-list summary {
  display: grid;
  min-height: 68px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 4px;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "+";
  font-family: var(--sans);
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  padding: 0 52px 24px 4px;
  color: var(--muted);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 7vw, 80px);
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--ocean-dark);
  box-shadow: 12px 12px 0 var(--acid);
}

.cta-panel::after {
  position: absolute;
  top: -100px;
  right: -90px;
  width: 300px;
  height: 300px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 50%;
  content: "";
}

.cta-panel h2 {
  max-width: 830px;
}

.cta-panel p {
  max-width: 620px;
  color: rgb(255 253 248 / 72%);
}

.cta-panel .hero-actions {
  margin: 30px 0 0;
}

.site-footer {
  padding-block: 64px 34px;
  color: var(--white);
  background: var(--ink);
}

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

.footer-brand p {
  max-width: 360px;
  margin-top: 18px;
  color: rgb(255 253 248 / 62%);
}

.footer-column h2 {
  margin-bottom: 16px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  padding-block: 5px;
  color: rgb(255 253 248 / 65%);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--acid);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 14%);
  color: rgb(255 253 248 / 48%);
  font-size: 0.78rem;
}

.page-hero {
  padding-block: clamp(68px, 10vw, 120px);
  border-bottom: 1px solid var(--ink);
}

.page-hero h1 {
  max-width: 950px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.breadcrumbs a {
  color: var(--ocean-dark);
}

.breadcrumbs span::before {
  margin-right: 8px;
  content: "/";
}

.subnav {
  position: sticky;
  z-index: 20;
  top: var(--header-height);
  overflow-x: auto;
  border-bottom: 1px solid var(--ink);
  background: rgb(245 241 232 / 95%);
  backdrop-filter: blur(12px);
}

.subnav-inner {
  display: flex;
  min-width: max-content;
  gap: 4px;
  padding-block: 9px;
}

.subnav a {
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

.subnav a:hover {
  background: var(--white);
}

.content-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.side-nav {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  display: grid;
  gap: 3px;
}

.side-nav a {
  padding: 8px 10px;
  border-left: 2px solid transparent;
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
}

.side-nav a:hover {
  border-color: var(--ocean);
  color: var(--ink);
}

.prose {
  min-width: 0;
  max-width: 820px;
}

.prose h2,
.prose h3,
.prose h4 {
  scroll-margin-top: calc(var(--header-height) + 32px);
}

.prose h2 {
  margin: 2.2em 0 0.65em;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 2em 0 0.55em;
  font-family: var(--display);
  font-size: 1.65rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose p {
  margin-bottom: 1.25em;
}

.prose ul,
.prose ol {
  display: grid;
  gap: 9px;
  padding-left: 22px;
}

.prose code {
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  font-size: 0.86em;
  overflow-wrap: anywhere;
}

.prose pre {
  overflow-x: auto;
  padding: 22px;
  border-radius: var(--radius-sm);
  color: var(--acid);
  background: var(--ink);
}

.prose pre code {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
}

.callout {
  margin-block: 28px;
  padding: 22px;
  border: 1px solid var(--ink);
  border-left: 8px solid var(--ocean);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.callout strong {
  display: block;
  margin-bottom: 4px;
}

.callout p:last-child {
  margin-bottom: 0;
}

.callout.warning {
  border-left-color: var(--coral);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin-top: 30px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) 260px;
  gap: 70px;
  align-items: start;
}

.article-aside {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  padding: 22px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.article-aside h2 {
  margin-bottom: 16px;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.article-aside a {
  display: block;
  padding-block: 6px;
  color: var(--muted);
  font-size: 0.86rem;
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.article-card {
  display: flex;
  min-width: 0;
  min-height: 320px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.article-card:hover {
  transform: translateY(-3px);
  background: #faffed;
  box-shadow: 7px 7px 0 var(--ink);
}

.article-card .tag {
  margin-bottom: 46px;
  color: var(--ocean);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-card h2,
.article-card h3 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
}

.article-card p {
  color: var(--muted);
}

.article-card .read-more {
  margin-top: auto;
  padding-top: 20px;
  color: var(--ocean-dark);
  font-weight: 850;
}

.timeline {
  display: grid;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 30px;
  padding-block: 30px;
  border-top: 1px solid var(--ink);
}

.timeline-item time {
  color: var(--ocean);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 900;
}

.timeline-item h2 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 2rem;
}

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

.contact-card {
  padding: 28px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-card h2 {
  font-family: var(--display);
  font-size: 2rem;
}

.contact-card p {
  color: var(--muted);
}

.legal-updated {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--ocean-dark);
  background: #dfeae4;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
}

.not-found {
  display: grid;
  min-height: calc(100dvh - var(--header-height));
  place-items: center;
  padding-block: 60px;
}

.not-found-card {
  max-width: 800px;
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 12px 12px 0 var(--acid);
  text-align: center;
}

.not-found-code {
  display: block;
  margin-bottom: 16px;
  color: var(--ocean);
  font-family: var(--display);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 700;
  line-height: 0.8;
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero-grid,
  .split-layout,
  .content-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 58px;
  }

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

  .workflow-visual {
    max-width: 760px;
  }

  .side-nav,
  .article-aside {
    position: static;
  }

  .side-nav {
    display: none;
  }

  .article-aside {
    max-width: 520px;
  }

  .split-layout.reverse > :first-child {
    order: 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
  }

  .price-card.recommended {
    transform: none;
  }

  .price-description {
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-copy span,
  .nav-actions > .button {
    display: none;
  }

  .hero {
    padding-top: 52px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .workflow-visual {
    padding: 18px;
    box-shadow: 8px 8px 0 var(--ocean);
  }

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

  .workflow-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  .workflow-stamp {
    right: 10px;
  }

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

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

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

  .feature-card {
    grid-column: 1 / -1;
    min-height: 280px;
  }

  .comparison,
  .steps,
  .metric-row,
  .contact-grid,
  .article-card-grid {
    grid-template-columns: 1fr;
  }

  .comparison-panel:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .step {
    padding-inline: 0;
  }

  .step::before {
    margin-bottom: 24px;
  }

  .screenshot-placeholder {
    min-height: 330px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .proof-row {
    display: grid;
  }

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

  .trust-item,
  .trust-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .footer-column {
    padding-top: 10px;
    border-top: 1px solid rgb(255 255 255 / 14%);
  }
}

@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;
    animation-iteration-count: 1 !important;
  }
}
