:root {
  color-scheme: light;
  --bg: #EEE4D2;
  --surface: #F8F3E8;
  --terracotta: #B55245;
  --card-blue: #AFC7E8;
  --chrome-blue: #6E8FB3;
  --ink: #2F2A26;
  --ink-soft: #5C544E;
  --border: #C9BBA6;
  --hover: #E5D8C2;
  --selected: #E8F0FA;
  --success: #6E9B6D;
  --input: #F3EBDA;
  --shadow: rgba(47, 42, 38, 0.20);
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
h1, h2, h3, .serif {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  text-wrap: balance;
  margin: 0;
}
p { margin: 0; }
a { color: inherit; }
.eyebrow {
  font-family: "Special Elite", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.mark {
  display: inline-block;
  width: 30px;
  height: 45px;
  background-color: currentColor;
  color: var(--terracotta);
  -webkit-mask: url("/assets/mark.svg") center / contain no-repeat;
  mask: url("/assets/mark.svg") center / contain no-repeat;
  flex-shrink: 0;
}
.mark.sm { width: 12px; height: 18px; }
.mark.md { width: 26px; height: 39px; }
.mark.chrome { color: var(--chrome-blue); }
.mark.card { color: var(--card-blue); }

nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: var(--wrap);
  margin: 0 auto;
  gap: 20px;
}
.nav-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
}
.nav-links { display: flex; gap: 26px; font-size: 14px; color: var(--ink-soft); }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--terracotta); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  background: none;
  font-family: inherit;
  color: inherit;
}
.btn-primary { background: var(--terracotta); color: #FFFDF8; }
.btn-ghost { border-color: var(--border); color: var(--ink); }
.btn-ghost:hover { background: var(--hover); }
.btn-primary:hover { filter: brightness(1.05); }
.btn[aria-disabled="true"] { pointer-events: none; opacity: 0.72; }

.hero { padding: 72px 0 48px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-tag { font-size: 58px; line-height: 1.04; margin-bottom: 22px; letter-spacing: -0.02em; }
.hero-tag em { color: var(--terracotta); font-style: italic; }
.hero-sub { font-size: 18px; color: var(--ink-soft); max-width: 500px; margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-ctas .btn-primary { padding: 13px 26px; font-size: 15px; }
.hero-note { font-size: 13px; color: var(--ink-soft); margin-top: 14px; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-size: 12px;
  color: var(--ink-soft);
}
.proof-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
}

section { padding: 80px 0; border-top: 1px solid var(--border); }
#features, #inspiration, #import, #compare, #get { scroll-margin-top: 68px; }
.section-eyebrow { margin-bottom: 14px; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: 38px; margin-bottom: 14px; letter-spacing: -0.02em; }
.section-head p { color: var(--ink-soft); font-size: 17px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }

.insight { text-align: center; padding: 88px 0; }
.insight blockquote {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.4;
  max-width: 780px;
  margin: 0 auto;
}
.insight blockquote b { color: var(--terracotta); font-weight: 600; font-style: normal; }


.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.feature { background: var(--surface); padding: 32px 28px; }
.feature .ficon { margin-bottom: 18px; }
.feature h3 { font-size: 18px; margin-bottom: 10px; }
.feature p { font-size: 14px; color: var(--ink-soft); }
.feature p a { color: var(--terracotta); font-weight: 600; text-decoration: none; white-space: nowrap; }

/* Inspiration: the canvas washes with the vibe you pick, so the section does too. */
.canvas-band {
  background:
    radial-gradient(120% 80% at 12% 0%, color-mix(in srgb, var(--card-blue) 26%, transparent), transparent 60%),
    radial-gradient(100% 70% at 92% 12%, color-mix(in srgb, var(--terracotta) 16%, transparent), transparent 62%),
    var(--bg);
}
.tick-list { margin: 16px 0 0; padding: 0; list-style: none; }
.tick-list li {
  position: relative;
  padding-left: 20px;
  margin: 8px 0;
  color: var(--ink-soft);
  font-size: 15px;
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
}

.canvas-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 8px 0 8px;
}
.canvas-card {
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(6px);
}
.canvas-card h3 { font-size: 20px; margin: 10px 0 10px; }
.canvas-card p { color: var(--ink-soft); font-size: 15px; }
.canvas-card .import-pills { margin-top: 18px; }

.vibe-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.vibe-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(120deg, color-mix(in srgb, var(--c1) 22%, var(--surface)), color-mix(in srgb, var(--c2) 26%, var(--surface)));
  font-size: 13px;
  color: var(--ink);
}
.vibe-chip::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--c1), var(--c2));
}
.vibe-chip.is-custom {
  background: var(--surface);
  color: var(--ink-soft);
  border-style: dashed;
  padding-left: 14px;
}
.vibe-chip.is-custom::before { display: none; }

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.flow-list li { background: var(--surface); padding: 26px 24px; }
.flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #FFFDF8;
  font-family: "Special Elite", ui-monospace, monospace;
  font-size: 13px;
  margin-bottom: 14px;
}
.flow-list h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 8px;
  text-wrap: balance;
}
.flow-list p { font-size: 14px; color: var(--ink-soft); }
.canvas-note {
  margin-top: 24px;
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 620px;
}

/* Features: an editorial index, hairlines instead of hardware. */
.index-list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}
.index-list::after {
  content: "";
  position: absolute;
  top: -48px;
  right: -58px;
  width: 190px;
  height: 285px;
  background-color: var(--terracotta);
  -webkit-mask: url("/assets/mark.svg") center / contain no-repeat;
  mask: url("/assets/mark.svg") center / contain no-repeat;
  opacity: 0.05;
  transform: rotate(14deg);
  pointer-events: none;
  display: none;
}
.index-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-areas: "num head" ". copy";
  column-gap: 12px;
  padding: 22px 22px 24px;
  border-top: 1px solid var(--border);
}
.index-list li:first-child { border-top: none; }
.index-num {
  grid-area: num;
  font-family: "Special Elite", ui-monospace, monospace;
  font-size: 13px;
  color: var(--terracotta);
  letter-spacing: 0.06em;
  padding-top: 1px;
}
.index-head { grid-area: head; }
.index-head h3 {
  font-size: 21px;
  line-height: 1.24;
  letter-spacing: -0.01em;
  margin-top: 7px;
}
.index-copy { grid-area: copy; }
.index-copy p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-top: 10px;
  max-width: 62ch;
}
.plus-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 11px;
  border: 1px solid color-mix(in srgb, var(--chrome-blue) 46%, var(--border));
  border-radius: 999px;
  font-family: "Special Elite", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chrome-blue);
}

/* Inspiration: the canvas, drawn rather than screenshotted. */
.plate {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: center;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 16px;
  backdrop-filter: blur(6px);
}
.plate-copy h3 { font-size: 26px; margin: 10px 0 12px; letter-spacing: -0.02em; }
.plate-copy p { color: var(--ink-soft); font-size: 16px; }
.plate-art {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  margin: 6px auto 0;
}
.plate-art::before {
  content: "";
  position: absolute;
  inset: -6%;
  background-image: radial-gradient(color-mix(in srgb, var(--chrome-blue) 40%, transparent) 1.2px, transparent 1.2px);
  background-size: 18px 18px;
  -webkit-mask-image: radial-gradient(closest-side, #000 55%, transparent);
  mask-image: radial-gradient(closest-side, #000 55%, transparent);
  opacity: 0.55;
}
.bubble {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 9%;
  border-radius: 50%;
  text-align: center;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.18;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 14px 30px -22px var(--shadow);
}
.bubble.is-main {
  width: 46%;
  height: 46%;
  left: 27%;
  top: 27%;
  z-index: 2;
  font-size: clamp(14px, 4.4vw, 17px);
  border-color: color-mix(in srgb, var(--terracotta) 40%, var(--border));
  background: linear-gradient(150deg, color-mix(in srgb, var(--terracotta) 20%, var(--surface)), var(--surface));
}
.bubble.is-side {
  width: 30%;
  height: 30%;
  font-size: clamp(10px, 2.9vw, 12px);
  color: var(--ink-soft);
  background: linear-gradient(150deg, color-mix(in srgb, var(--card-blue) 26%, var(--surface)), var(--surface));
}
.bubble.is-side:nth-of-type(2) { left: 35%; top: -2%; }
.bubble.is-side:nth-of-type(3) { left: 70%; top: 36%; }
.bubble.is-side:nth-of-type(4) { left: 2%;  top: 44%; }
.bubble.is-empty {
  width: 29%;
  height: 29%;
  left: 46%;
  top: 72%;
  border-style: dashed;
  background: none;
  box-shadow: none;
  color: var(--ink-soft);
  font-size: 18px;
}

.sub-head { max-width: 620px; margin: 34px 0 0; }
.sub-head h3 { font-size: 24px; margin: 10px 0 10px; letter-spacing: -0.02em; }
.sub-head p { color: var(--ink-soft); font-size: 16px; }
.sub-head + .flow-list { margin-top: 24px; }

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--card-blue);
  border-radius: 6px;
  padding: 24px;
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 17px;
}
.quote-card cite {
  display: block;
  font-family: "Special Elite", ui-monospace, monospace;
  font-style: normal;
  font-size: 10.5px;
  color: var(--ink-soft);
  margin-top: 14px;
  letter-spacing: 0.04em;
}

.import-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.import-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--ink-soft);
  background: var(--surface);
}
.import-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px 8px 8px 8px;
  overflow: hidden;
}
.import-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.import-row:last-child { border-bottom: none; }
.import-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--terracotta); flex-shrink: 0; }
.import-check { color: var(--success); font-weight: 700; }

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.compare-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  text-decoration: none;
  display: block;
}
.compare-card:hover { border-color: var(--chrome-blue); }
.compare-card h3 { font-size: 24px; margin: 8px 0 10px; }
.compare-card p { color: var(--ink-soft); font-size: 15px; }
.compare-card .more {
  display: inline-block;
  margin-top: 16px;
  color: var(--terracotta);
  font-size: 14px;
  font-weight: 600;
}

.honest {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.honest-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 28px;
}
.honest-box h3 { font-size: 20px; margin-bottom: 10px; }
.honest-box p, .honest-box li { color: var(--ink-soft); font-size: 15px; }
.honest-box ul { margin: 10px 0 0; padding-left: 18px; }
.honest-box li { margin: 6px 0; }

.vs-frame { max-width: 760px; margin-left: auto; margin-right: auto; }
.vs-frame .deck {
  font-family: "Fraunces", Georgia, serif;
  font-size: 26px;
  font-style: italic;
  margin: 10px 0 18px;
}
.vs-meta { font-size: 13px; color: var(--ink-soft); margin-bottom: 28px; }
.vs-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.vs-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.vs-col h3 { font-size: 20px; margin-bottom: 12px; }
.vs-col ul { margin: 0; padding-left: 18px; }
.vs-col li { margin: 8px 0; color: var(--ink-soft); font-size: 14.5px; }
.vs-table-wrap { overflow-x: auto; margin: 28px 0; }
table.vs {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
table.vs th, table.vs td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
table.vs th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-soft); }
table.vs tr:last-child td { border-bottom: none; }
.win { color: var(--success); font-weight: 600; }
.lose { color: var(--ink-soft); }
.mix { color: var(--chrome-blue); font-weight: 600; }

.final-cta { text-align: center; padding: 100px 0; }
.final-cta h2 { font-size: 44px; margin-bottom: 18px; }
.final-cta p { color: var(--ink-soft); font-size: 16px; margin-bottom: 32px; }
.final-cta p a { color: var(--terracotta); font-weight: 600; text-decoration: none; }

footer { border-top: 1px solid var(--border); padding: 36px 0; }
.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.foot-lockup {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}
.foot-links { display: flex; gap: 20px; font-size: 13px; color: var(--ink-soft); flex-wrap: wrap; }
.foot-links a { text-decoration: none; }
.foot-links a:hover { color: var(--terracotta); }

.page-hero { padding: 56px 0 20px; border-top: none; }
.page-hero h1 { font-size: 48px; letter-spacing: -0.02em; }

.legal {
  max-width: 720px;
  margin: 0 auto 72px;
  padding: 0 28px 40px;
}
.legal .updated {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 8px 0 28px;
}
.legal h2 {
  font-size: 24px;
  margin: 36px 0 10px;
}
.legal h3 {
  font-size: 18px;
  margin: 22px 0 8px;
}
.legal p, .legal li {
  color: var(--ink-soft);
  font-size: 15.5px;
  margin: 0 0 12px;
}
.legal ul {
  margin: 0 0 16px;
  padding-left: 1.2em;
}
.legal li { margin: 6px 0; }
.legal a {
  color: var(--terracotta);
  font-weight: 600;
  text-decoration: none;
}
.legal a:hover { text-decoration: underline; }
.legal .toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  margin: 0 0 28px;
}
.legal .toc ul { margin: 0; }
.legal .toc a { color: var(--ink-soft); font-weight: 400; }

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 8px auto 20px;
  max-width: 880px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}
.price-card.featured { border-color: var(--terracotta); }
.price-amount {
  font-family: "Fraunces", Georgia, serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 12px 0 8px;
}
.price-unit {
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink-soft);
  margin-left: 8px;
}
.price-period { font-size: 14px; color: var(--ink-soft); margin-bottom: 14px; }
.plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  min-height: 26px;
}
.plan-flag {
  font-family: "Special Elite", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid color-mix(in srgb, var(--terracotta) 40%, var(--border));
  border-radius: 999px;
  padding: 4px 11px;
}
.plan-alt { font-size: 14px; color: var(--ink-soft); }
.plan-list {
  margin: 20px 0 0;
  padding: 18px 0 0;
  list-style: none;
  border-top: 1px solid var(--border);
}
.plan-list li {
  position: relative;
  padding-left: 24px;
  margin: 9px 0;
  color: var(--ink-soft);
  font-size: 14.5px;
}
.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 700;
}

@media (min-width: 860px) {
  .index-list li {
    grid-template-columns: 52px minmax(190px, 290px) minmax(0, 1fr);
    grid-template-areas: "num head copy";
    column-gap: 32px;
    align-items: start;
    padding: 28px 34px 30px;
  }
  .index-head h3 { font-size: 23px; }
  .index-copy p { margin-top: 0; padding-top: 21px; }
  .plate { grid-template-columns: minmax(0, 1fr) 340px; gap: 40px; padding: 40px; }
  .plate-art { margin: 0; }
}

@media (min-width: 1200px) {
  .index-list::after { display: block; }
}

@media (max-width: 960px) {
  .hero-grid, .import-band, .compare-grid, .honest, .vs-cols, .canvas-controls, .price-grid { grid-template-columns: 1fr; }
  .flow-list { grid-template-columns: 1fr 1fr; }
  .phone-stage .device { transform: scale(0.92); transform-origin: top center; }
  .hero .phone-stage {
    max-height: 340px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(180deg, #000 48%, transparent);
    mask-image: linear-gradient(180deg, #000 48%, transparent);
  }
  .hero .device-caption { display: none; }
  .hero { padding: 48px 0 28px; }
  .hero-tag { font-size: 40px; }
  .feature-grid, .quotes { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .insight { padding: 56px 0; }
  .insight blockquote { font-size: 24px; }
  .final-cta h2, .page-hero h1 { font-size: 32px; }
  section { padding: 56px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: 32px; }
}

@media (max-width: 560px) {
  .flow-list { grid-template-columns: 1fr; }
  .index-list li { padding: 20px 18px 22px; }
  .plate { padding: 22px 20px 26px; }
  .plate-copy h3 { font-size: 23px; }
}

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