/* ============================================================
   ROBOT DUCK — Design System
   Customer is the hero. Robot Duck is the guide: warm, dry,
   competent. Calm layout, square grid, generous whitespace.
   The mascot is the only visual excitement.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
	/* Color */
	--cream:      #F6F0E2;   /* page background */
	--bone:       #EDE7D8;   /* secondary surfaces */
	--ink:        #16181D;   /* text + linework */
	--slate:      #5C646E;   /* secondary text */
	--amber:      #F0A32B;   /* primary CTA, bill + feet */
	--amber-deep: #D9821A;   /* CTA hover */
	--teal:       #3FB8BE;   /* secondary accent, links, hoodie mark */
	--steel:      #7C8894;   /* borders, chrome */
	--white:      #FFFFFF;   /* cards */
	--card-line:  #E2DCCC;   /* card border */

	/* Type */
	--f-display: "Outfit", ui-sans-serif, system-ui, sans-serif;
	--f-body:    "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
	--f-mono:    "JetBrains Mono", ui-monospace, "SF Mono", monospace;

	/* Fluid display scale (44–72px) */
	--t-h1: clamp(2.75rem, 1.6rem + 3.6vw, 4.5rem);   /* ~44–72 */
	--t-h2: clamp(2.1rem, 1.4rem + 2.2vw, 3.25rem);
	--t-h3: clamp(1.35rem, 1.15rem + 0.7vw, 1.6rem);  /* subheads ~20 */
	--t-body: clamp(1.0625rem, 1rem + 0.2vw, 1.1875rem); /* 17–19 */
	--t-lead: clamp(1.15rem, 1.05rem + 0.4vw, 1.3rem);
	--t-mono: 0.8125rem;   /* 13 */

	/* Layout */
	--wrap: 1200px;
	--gutter: clamp(1.25rem, 0.5rem + 3vw, 2rem);
	--section-y: clamp(72px, 5rem + 3vw, 120px);   /* 120px on desktop */
	--col-gap: clamp(1.5rem, 1rem + 2vw, 2.5rem);

	/* Radius */
	--r-btn: 10px;
	--r-card: 12px;
	--r-well: 20px;
	--r-pill: 999px;

	/* Shadow — soft only, never offset-hard */
	--sh-card: 0 6px 24px -14px rgba(22,24,29,.16);
	--sh-soft: 0 10px 40px -22px rgba(22,24,29,.22);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
	font-family: var(--f-body);
	font-size: var(--t-body);
	line-height: 1.65;
	color: var(--ink);
	background: var(--cream);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); text-wrap: balance; }
h1 { font-size: var(--t-h1); line-height: 1.02; }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); line-height: 1.2; letter-spacing: -0.01em; }
p { text-wrap: pretty; }
p.lead { font-size: var(--t-lead); color: var(--slate); max-width: 54ch; }
.muted { color: var(--slate); }
a.link { color: var(--teal); font-weight: 600; }
a.link:hover { color: var(--ink); }

/* Mono label / eyebrow / code */
.label, .eyebrow { font-family: var(--f-mono); font-size: var(--t-mono); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--slate); }
.eyebrow { color: var(--teal); display: inline-block; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--bone  { background: var(--bone); }

/* 12-column grid — nothing rotated, everything square on the grid */
.grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--col-gap); }
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
.col-9 { grid-column: span 9; }
.col-12 { grid-column: span 12; }
.center-col { max-width: 780px; margin-inline: auto; text-align: center; }
.stack > * + * { margin-top: 1.15rem; }
.stack-sm > * + * { margin-top: .6rem; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; font-family: var(--f-body); font-weight: 600; font-size: 1rem; line-height: 1; padding: .95rem 1.5rem; border-radius: var(--r-btn); transition: background-color .18s ease, color .18s ease, border-color .18s ease; }
.btn--amber { background: var(--amber); color: var(--ink); }
.btn--amber:hover { background: var(--amber-deep); }
.btn--outline { background: transparent; color: var(--ink); border: 1.5px solid var(--steel); }
.btn--outline:hover { border-color: var(--ink); }
.btn--white { background: var(--white); color: var(--ink); }
.btn--white:hover { background: var(--bone); }
.btn-text { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--ink); }
.btn-text .arrow { color: var(--amber); transition: transform .18s ease; }
.btn-text:hover .arrow { transform: translateX(3px); }
.actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }

/* ---------- Cards ---------- */
.card { background: var(--white); border: 1px solid var(--card-line); border-radius: var(--r-card); box-shadow: var(--sh-card); overflow: hidden; }
.card-body { padding: clamp(1.25rem, 1rem + 1vw, 1.75rem); }

/* Small teal outline icon (problem section) */
.icon-teal { width: 40px; height: 40px; display: grid; place-items: center; border: 1.5px solid var(--teal); border-radius: 10px; color: var(--teal); }
.icon-teal svg { width: 20px; height: 20px; }

/* Mono tag (product cards) */
.tag { font-family: var(--f-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--teal); border: 1px solid color-mix(in srgb, var(--teal) 40%, transparent); border-radius: 6px; padding: .2rem .5rem; }

/* Pill (MOST POPULAR) — sits flush, never rotated/overhanging */
.pill { display: inline-block; font-family: var(--f-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); background: var(--amber); border-radius: var(--r-pill); padding: .3rem .7rem; }

/* ---------- Mascot wells — three sizes only, always square, soft ground shadow ---------- */
/* HERO: full body ~520px on a soft elliptical ground shadow + subtle bone circle */
.duck-hero { position: relative; display: grid; place-items: end center; min-height: 540px; }
.duck-hero::before { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(46% 46% at 50% 44%, var(--bone), transparent 70%); }
.duck-hero img { position: relative; z-index: 1; height: clamp(340px, 40vw, 520px); width: auto; }
.duck-hero::after { content: ""; position: absolute; left: 50%; bottom: 6%; transform: translateX(-50%); width: 46%; height: 26px; background: radial-gradient(closest-side, rgba(22,24,29,.18), transparent); z-index: 0; }

/* SECTION: head + shoulders cropped inside a 320px rounded square well, bone bg */
.duck-well { width: min(320px, 100%); aspect-ratio: 1; border-radius: var(--r-well); background: var(--bone); overflow: hidden; display: grid; place-items: end center; }
.duck-well img { width: 100%; height: auto; object-fit: cover; object-position: top center; }

/* INLINE: head only, 40px, in a circle */
.duck-inline { width: 40px; height: 40px; border-radius: 50%; background: var(--bone); overflow: hidden; flex: none; display: grid; place-items: center; }
.duck-inline img { width: 100%; height: 100%; object-fit: cover; }

/* Placeholder well (until real mascot art is dropped in) */
.duck-placeholder { display: grid; place-items: center; color: var(--steel); font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; text-align: center; background:
	repeating-linear-gradient(45deg, var(--bone) 0 12px, #E7E0D0 12px 24px); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
	.col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9 { grid-column: span 12; }
	.duck-hero { min-height: 420px; }
}

/* ============================================================
   HOMEPAGE SECTIONS
   ============================================================ */

/* Header */
.site-header { height: 72px; background: var(--white); border-bottom: 1px solid var(--card-line); display: flex; align-items: center; position: sticky; top: 0; z-index: 60; }
.site-header .wrap { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.5rem; width: 100%; }
.hbrand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--f-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em; white-space: nowrap; }
.hnav { display: flex; gap: 2rem; justify-self: center; }
.hnav a { font-size: .95rem; color: var(--slate); font-weight: 500; }
.hnav a:hover { color: var(--ink); }
.hcta { display: flex; align-items: center; gap: 1.25rem; justify-self: end; }
.hcta .signin { font-size: .95rem; color: var(--ink); font-weight: 600; }
.header-toggle { display: none; }

/* Hero */
.hero { background: var(--cream); }
.hero .grid { align-items: center; row-gap: 2rem; }
.hero-copy { grid-column: span 6; }
.hero-copy h1 { margin: 1rem 0 0; max-width: 15ch; }
.hero-copy .lead { margin-top: 1.25rem; }
.hero-copy .actions { margin-top: 2rem; }
.hero-art { grid-column: span 6; }

/* Logo row */
.logos { background: var(--white); border-block: 1px solid var(--card-line); padding-block: 2.25rem; }
.logos .label { display: block; text-align: center; margin-bottom: 1.5rem; }
.logos-row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.5rem 2rem; }
.logos-row span { font-family: var(--f-display); font-weight: 700; font-size: 1.15rem; color: var(--steel); opacity: .8; }

/* Problem */
.problem .center-col h2 { margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.problem-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 3vw, 3.5rem); text-align: left; }
.problem-cols .item h3 { font-size: 1.25rem; margin: 1rem 0 .5rem; }
.problem-cols .item p { color: var(--slate); font-size: 1rem; }

/* Guide */
.guide .grid { align-items: center; row-gap: 2.5rem; }
.guide-art { grid-column: span 5; }
.guide-copy { grid-column: span 7; }
.guide-copy .lead { margin: 1.25rem 0 2rem; }
.stats-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem 2.5rem; }
.stat .num { font-family: var(--f-display); font-weight: 800; font-size: clamp(2.25rem, 1.5rem + 2vw, 3rem); line-height: 1; color: var(--ink); letter-spacing: -0.03em; }
.stat .lbl { margin-top: .4rem; }

/* Plan */
.plan-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 3vw, 3.5rem); position: relative; }
.plan-steps::before { content: ""; position: absolute; top: 34px; left: 12%; right: 12%; height: 2px; background: var(--card-line); z-index: 0; }
.plan-step { position: relative; z-index: 1; }
.plan-step .n { font-family: var(--f-display); font-weight: 800; font-size: 4rem; line-height: 1; color: var(--amber); letter-spacing: -0.04em; }
.plan-step h3 { font-size: 1.25rem; margin: 1rem 0 .5rem; }
.plan-step p { color: var(--slate); font-size: 1rem; max-width: 26ch; }
.plan .plan-cta { text-align: center; margin-top: clamp(2.5rem, 4vw, 3.5rem); }

/* Products */
.products .sec-top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: clamp(2rem, 3vw, 3rem); gap: 1rem; flex-wrap: wrap; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2vw, 1.75rem); }
.theme-card { display: flex; flex-direction: column; }
.theme-shot { aspect-ratio: 16/10; background: var(--bone); border-bottom: 1px solid var(--card-line); position: relative; overflow: hidden; display: grid; place-items: center; }
.theme-shot .ph { font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--steel); }
.theme-shot.egg { display: block; }
.theme-shot.egg img { position: absolute; left: 50%; bottom: -6%; transform: translateX(-50%); width: 58%; }
.theme-card .card-body { flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.theme-card h3 { font-size: 1.2rem; }
.theme-card .desc { color: var(--slate); font-size: .95rem; flex: 1; }
.theme-card .card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: .5rem; }
.theme-card .tags { display: flex; gap: .4rem; }
.theme-card .price { font-family: var(--f-display); font-weight: 700; }

/* Success vs Failure */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.panel { border-radius: var(--r-card); padding: clamp(1.75rem, 3vw, 2.5rem); }
.panel--without { background: var(--bone); }
.panel--with { background: var(--white); border: 1px solid var(--card-line); border-left: 2px solid var(--teal); position: relative; }
.panel h3 { font-size: 1.4rem; margin: .75rem 0 1.5rem; }
.panel ul { list-style: none; padding: 0; display: grid; gap: .9rem; }
.panel li { display: flex; align-items: flex-start; gap: .7rem; color: var(--slate); }
.panel li .ic { flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .75rem; font-weight: 700; margin-top: 1px; }
.panel--without li .ic { background: #E4DED0; color: var(--steel); }
.panel--with li .ic { background: color-mix(in srgb, var(--teal) 18%, transparent); color: var(--teal); }
.panel--with li { color: var(--ink); }
.panel-duck { position: absolute; right: 1.5rem; bottom: 1.5rem; display: flex; align-items: center; gap: .6rem; }
.panel-duck .cap { font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--slate); max-width: 12ch; }

/* Testimonials */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 3vw, 3rem); }
.quote .qmark { font-family: var(--f-display); font-weight: 800; font-size: 3rem; line-height: .6; color: var(--teal); }
.quote p { font-size: 1.1875rem; margin: .75rem 0 1.5rem; }
.quote .who { display: flex; align-items: center; gap: .75rem; }
.quote .av { width: 44px; height: 44px; border-radius: 50%; background: var(--bone); flex: none; }
.quote .who b { display: block; font-size: .95rem; }
.quote .who span { font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--slate); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2vw, 1.75rem); align-items: stretch; }
.price-card { display: flex; flex-direction: column; padding: clamp(1.75rem, 3vw, 2.25rem); position: relative; }
.price-card--pop { border: 2px solid var(--amber); }
.price-card .pill { position: absolute; top: 1.25rem; right: 1.25rem; }
.price-card .pname { font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--slate); }
.price-card .amt { font-family: var(--f-display); font-weight: 800; font-size: 2.75rem; letter-spacing: -0.03em; margin: .5rem 0 .25rem; }
.price-card .amt span { font-family: var(--f-body); font-weight: 500; font-size: 1rem; color: var(--slate); }
.price-card .pdesc { color: var(--slate); font-size: .95rem; margin-bottom: 1.5rem; }
.price-card ul { list-style: none; padding: 0; display: grid; gap: .75rem; flex: 1; margin-bottom: 1.75rem; }
.price-card li { display: flex; align-items: flex-start; gap: .6rem; font-size: .95rem; }
.price-card li .ck { color: var(--teal); font-weight: 700; }
.price-card .btn { width: 100%; }

/* CTA band */
.cta-band { background: var(--amber); position: relative; overflow: hidden; }
.cta-band .wrap { position: relative; }
.cta-band .cta-inner { max-width: 620px; }
.cta-band h2 { color: var(--ink); }
.cta-band p { color: color-mix(in srgb, var(--ink) 72%, transparent); margin: 1rem 0 2rem; max-width: 44ch; }
.cta-band .cta-duck { position: absolute; right: 0; bottom: 0; height: 108%; width: auto; pointer-events: none; }
@media (max-width: 900px){ .cta-band .cta-duck { display: none; } }

/* Footer */
.site-footer { background: var(--ink); color: color-mix(in srgb, var(--cream) 70%, transparent); padding-block: clamp(3rem, 4vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand .hbrand { color: var(--cream); }
.footer-blurb { font-size: .95rem; margin: 1rem 0 1.25rem; max-width: 30ch; }
.news { display: flex; gap: .5rem; max-width: 320px; }
.news input { flex: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-btn); padding: .7rem .9rem; color: var(--cream); font: inherit; font-size: .9rem; }
.news input::placeholder { color: color-mix(in srgb, var(--cream) 45%, transparent); }
.site-footer h4 { font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--amber); margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.site-footer a { color: color-mix(in srgb, var(--cream) 70%, transparent); font-size: .95rem; }
.site-footer a:hover { color: var(--cream); }
.footer-bot { margin-top: clamp(2.5rem, 4vw, 3.5rem); padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bot, .footer-bot a { font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }

/* Reveal — visible by default; only the JS-flagged (.js) document hides+animates,
   so content is never gated on JavaScript (accessible + headless-safe). */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease, cubic-bezier(.22,1,.36,1)), transform .6s cubic-bezier(.22,1,.36,1); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .js .reveal { opacity: 1; transform: none; transition: none; } }

/* Responsive */
@media (max-width: 860px) {
	.hero-copy, .hero-art, .guide-art, .guide-copy { grid-column: span 12; }
	.problem-cols, .plan-steps, .products-grid, .quotes, .pricing-grid { grid-template-columns: 1fr; }
	.plan-steps::before { display: none; }
	.compare { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.hnav { display: none; }
	.site-header .wrap { grid-template-columns: auto 1fr; }
	.hcta .signin, .hcta .btn--amber { display: none; }
	.hcta { gap: 0; }
}
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .stats-2x2 { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   MOBILE NAV (shared header enhancement)
   ============================================================ */
.header-toggle { display: none; width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.header-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.mobile-nav { display: none; }
body.menu-open { overflow: hidden; }
@media (max-width: 860px) {
	.header-toggle { display: flex; }
	body.menu-open .header-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
	body.menu-open .header-toggle span:nth-child(2){ opacity: 0; }
	body.menu-open .header-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
	.mobile-nav { display: flex; position: fixed; top: 72px; left: 0; right: 0; flex-direction: column; gap: .1rem; background: var(--white); border-bottom: 1px solid var(--card-line); box-shadow: var(--sh-soft); padding: .5rem var(--gutter) 1.5rem; transform: translateY(-10px); opacity: 0; pointer-events: none; transition: transform .22s ease, opacity .22s ease; z-index: 59; }
	body.menu-open .mobile-nav { transform: none; opacity: 1; pointer-events: auto; }
	.mobile-nav a { padding: .9rem .25rem; font-size: 1.05rem; font-weight: 600; border-bottom: 1px solid var(--card-line); }
	.mobile-nav a.btn { border: 0; margin-top: 1rem; }
}

/* ============================================================
   INNER PAGES
   ============================================================ */

/* Page hero (lighter than the home hero) */
.page-hero { background: var(--cream); padding-block: clamp(2.75rem, 4vw, 4.5rem) clamp(2.5rem, 4vw, 4rem); }
.page-hero.split .grid { align-items: center; row-gap: clamp(2rem, 4vw, 3rem); }
.page-hero .p-copy { grid-column: span 6; }
.page-hero .p-art  { grid-column: span 6; }
.page-hero h1 { margin: .75rem 0 0; }
.page-hero.narrow { text-align: center; }
.page-hero.narrow .center-col p { margin-top: 1.25rem; }

/* Breadcrumb */
.breadcrumb { display: flex; flex-wrap: wrap; gap: .5rem; font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--slate); margin-bottom: 1rem; }
.breadcrumb a { color: var(--slate); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { color: var(--steel); }

/* Section heading block */
.sec-head { max-width: 640px; margin-bottom: clamp(2rem, 3vw, 3rem); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .eyebrow { margin-bottom: .85rem; }
.sec-head p { color: var(--slate); margin-top: 1rem; }

/* Badge row (hero meta) */
.badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.badge { font-family: var(--f-mono); font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--slate); background: var(--bone); border-radius: var(--r-pill); padding: .35rem .75rem; }

/* Feature grid (product pages) */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.75rem, 3vw, 3rem); text-align: left; }
.feature-grid.two { grid-template-columns: repeat(2, 1fr); }
.feature .icon-teal { margin-bottom: 1rem; }
.feature h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.feature p { color: var(--slate); font-size: 1rem; }

/* Prose (docs + legal) */
.prose { max-width: 70ch; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { font-size: var(--t-h3); margin-top: 2.75rem; }
.prose h3 { font-size: 1.15rem; margin-top: 1.9rem; }
.prose ul, .prose ol { padding-left: 1.3rem; display: grid; gap: .5rem; }
.prose li { padding-left: .2rem; }
.prose li::marker { color: var(--steel); }
.prose a { color: var(--teal); font-weight: 600; }
.prose a:hover { color: var(--ink); }
.prose code { font-family: var(--f-mono); font-size: .85em; background: var(--bone); padding: .12rem .4rem; border-radius: 5px; }
.prose strong { color: var(--ink); font-weight: 700; }

/* Spec list (key/value) */
.spec-list { display: grid; border-top: 1px solid var(--card-line); }
.spec-list > div { display: flex; justify-content: space-between; gap: 1rem; padding: .95rem 0; border-bottom: 1px solid var(--card-line); }
.spec-list dt { color: var(--slate); font-size: .95rem; }
.spec-list dd { font-weight: 600; font-size: .95rem; text-align: right; }

/* Checklist (feature bullet list with teal ticks) */
.ticks { list-style: none; padding: 0; display: grid; gap: .85rem; }
.ticks li { display: flex; align-items: flex-start; gap: .7rem; }
.ticks li::before { content: "✓"; color: var(--teal); font-weight: 700; flex: none; margin-top: 1px; }

/* Screenshot frame (browser chrome mock — holds a placeholder or a real shot) */
.shot-frame { border: 1px solid var(--card-line); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--sh-soft); background: var(--white); }
.shot-frame .bar { height: 38px; background: var(--bone); border-bottom: 1px solid var(--card-line); display: flex; align-items: center; gap: .4rem; padding-inline: .9rem; }
.shot-frame .bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--steel); opacity: .45; }
.shot-frame .bar .addr { margin-left: .5rem; font-family: var(--f-mono); font-size: 11px; color: var(--slate); }
.shot-frame .canvas { aspect-ratio: 16/10; display: grid; place-items: center; padding: 1.25rem; text-align: center; color: var(--steel); font-family: var(--f-mono); font-size: 12px; letter-spacing: .04em;
	background: repeating-linear-gradient(45deg, var(--bone) 0 14px, #E7E0D0 14px 28px); }
.shot-frame .canvas img { width: 100%; height: 100%; object-fit: cover; }

/* Style-variation swatches */
.swatch-row { display: flex; flex-wrap: wrap; gap: .55rem; }
.swatch { width: 38px; height: 38px; border-radius: 9px; border: 1px solid var(--card-line); }

/* Docs / link-card grid */
.link-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(1.25rem, 2vw, 1.5rem); }
.link-card { display: flex; flex-direction: column; gap: .5rem; background: var(--white); border: 1px solid var(--card-line); border-radius: var(--r-card); box-shadow: var(--sh-card); padding: 1.5rem; transition: transform .18s ease, box-shadow .18s ease; }
.link-card:hover { transform: translateY(-3px); box-shadow: var(--sh-soft); }
.link-card h3 { font-size: 1.15rem; }
.link-card p { color: var(--slate); font-size: .95rem; flex: 1; }
.link-card .more { font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--teal); }

/* FAQ */
.faq { max-width: 780px; margin-inline: auto; border-top: 1px solid var(--card-line); }
.faq details { border-bottom: 1px solid var(--card-line); }
.faq summary { padding: 1.25rem 0; font-family: var(--f-display); font-weight: 700; font-size: 1.1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--amber); font-weight: 700; font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { padding-bottom: 1.35rem; color: var(--slate); max-width: 68ch; }

/* Forms */
.form { display: grid; gap: 1.1rem; max-width: 540px; }
.field { display: grid; gap: .4rem; }
.field.row2 { grid-template-columns: 1fr 1fr; gap: 1rem; display: grid; }
.field label { font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--slate); }
.field input, .field textarea, .field select { font: inherit; font-size: 1rem; background: var(--white); border: 1px solid var(--card-line); border-radius: var(--r-btn); padding: .8rem .95rem; color: var(--ink); width: 100%; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px color-mix(in srgb, var(--teal) 20%, transparent); }
.field textarea { min-height: 150px; resize: vertical; }

/* Feature matrix (pricing compare) */
.matrix-wrap { overflow-x: auto; }
.matrix { width: 100%; border-collapse: collapse; min-width: 560px; }
.matrix th, .matrix td { text-align: left; padding: .95rem 1rem; border-bottom: 1px solid var(--card-line); }
.matrix thead th { font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--slate); font-weight: 600; }
.matrix tbody th { font-weight: 600; font-size: .95rem; }
.matrix td.c { text-align: center; }
.matrix .yes { color: var(--teal); font-weight: 700; }
.matrix .no { color: var(--steel); }
.matrix thead th.hl, .matrix td.hl { background: color-mix(in srgb, var(--amber) 10%, transparent); }

/* Mini CTA (no duck) */
.cta-mini { background: var(--ink); border-radius: var(--r-well); padding: clamp(2.5rem, 5vw, 4rem); text-align: center; }
.cta-mini h2 { color: var(--cream); }
.cta-mini p { color: color-mix(in srgb, var(--cream) 70%, transparent); margin: 1rem auto 2rem; max-width: 46ch; }

/* ============================================================
   DUCK PLACEHOLDER — shows the suggested prompt for review
   ============================================================ */
.duck-ph { position: relative; border: 2px dashed var(--steel); border-radius: var(--r-well); padding: clamp(1.5rem, 3vw, 2.25rem); display: grid; place-items: center; align-content: center; gap: 1rem; text-align: center; min-height: 300px;
	background: repeating-linear-gradient(45deg, var(--bone) 0 14px, #E7E0D0 14px 28px); }
.duck-ph--hero { min-height: clamp(340px, 40vw, 460px); }
.duck-ph .dp-badge { font-family: var(--f-mono); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); background: var(--amber); border-radius: var(--r-pill); padding: .35rem .8rem; }
.duck-ph .dp-label { font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--slate); }
.duck-ph .dp-prompt { font-family: var(--f-mono); font-size: 12px; line-height: 1.55; color: var(--ink); max-width: 40ch; background: var(--white); border: 1px solid var(--card-line); border-radius: 8px; padding: .7rem .85rem; text-align: left; }
.duck-ph .dp-prompt b { color: var(--slate); font-weight: 600; text-transform: uppercase; font-size: 10px; letter-spacing: .06em; display: block; margin-bottom: .3rem; }

/* Utility */
.section--tight { padding-block: clamp(2.5rem, 4vw, 3.5rem); }
.text-center { text-align: center; }
.mt-cta { margin-top: clamp(2.5rem, 4vw, 3.5rem); }
.divider { border: 0; border-top: 1px solid var(--card-line); margin-block: 0; }

@media (max-width: 860px) {
	.page-hero .p-copy, .page-hero .p-art { grid-column: span 12; }
	.feature-grid, .feature-grid.two { grid-template-columns: 1fr; }
	.field.row2 { grid-template-columns: 1fr; }
}

/* Contact form — honeypot + status message */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: .95rem; font-weight: 600; padding: .8rem 1rem; border-radius: var(--r-btn); }
.form-status.is-ok { color: #0f7a5a; background: color-mix(in srgb, var(--teal) 16%, transparent); }
.form-status.is-err { color: #9a2b1e; background: color-mix(in srgb, #E4573C 14%, transparent); }

/* Axon demos gallery */
.demo-gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.demo-card{display:block;border:1px solid var(--card-line);border-radius:var(--r-card);overflow:hidden;background:var(--white);box-shadow:var(--sh-card);transition:transform .18s ease,box-shadow .18s ease}
.demo-card:hover{transform:translateY(-4px);box-shadow:var(--sh-soft)}
.demo-shot{display:block;aspect-ratio:16/10;overflow:hidden;border-bottom:1px solid var(--card-line);background:var(--bone)}
.demo-shot img{width:100%;height:100%;object-fit:cover;object-position:top center;display:block}
.demo-name{display:flex;align-items:center;justify-content:space-between;gap:.5rem;padding:.85rem 1.1rem;font-family:var(--f-display);font-weight:700;font-size:1.05rem}
.demo-name .more{font-family:var(--f-mono);font-size:10px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--teal)}
.demo-dot{width:11px;height:11px;border-radius:50%;flex:none;margin-left:auto;margin-right:.5rem}
@media(max-width:820px){.demo-gallery{grid-template-columns:1fr 1fr}}
@media(max-width:520px){.demo-gallery{grid-template-columns:1fr}}
