:root {
  --ink: #12100E;
  --ink-2: #1D1A17;
  --ink-3: #2A2622;
  --paper: #F5F0E6;
  --paper-2: #EBE3D4;
  --line: #D9CFBD;
  --boom: #FF5B1F;
  --boom-dark: #D9420B;
  --text: #12100E;
  --muted: #5E564C;
  --on-ink: #F5F0E6;
  --on-ink-muted: #B3A99A;
  --radius: 14px;
  --wrap: 1180px;
  --display: "Archivo", "Arial Narrow", Arial, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--body); font-size: 17px; line-height: 1.6; color: var(--text); background: var(--paper); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); font-stretch: 88%; line-height: 1.02; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; z-index: 100; background: var(--boom); color: var(--ink); padding: 8px 14px; border-radius: 8px; }
:focus-visible { outline: 3px solid var(--boom); outline-offset: 3px; }

.eyebrow { font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--boom-dark); }
.on-ink .eyebrow { color: var(--boom); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 26px; border-radius: 10px; border: 2px solid transparent; font-family: var(--display); font-stretch: 92%; font-weight: 800; font-size: 17px; letter-spacing: 0.02em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: transform .15s ease, background-color .15s ease, border-color .15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-boom { background: var(--boom); color: var(--ink); }
.btn-boom:hover { background: #FF7240; }
.btn-ghost { border-color: rgba(245,240,230,.35); color: var(--on-ink); background: transparent; }
.btn-ghost:hover { border-color: var(--on-ink); }
.btn-ink { background: var(--ink); color: var(--on-ink); }
.btn-ink:hover { background: var(--ink-3); }
.btn[aria-busy="true"] { opacity: .7; pointer-events: none; }
.btn-block { width: 100%; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(18,16,14,.92); backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid rgba(245,240,230,.08); color: var(--on-ink); }
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand svg { width: 38px; height: 38px; flex: none; }
.brand-word { font-family: var(--display); font-stretch: 88%; font-weight: 800; font-size: 21px; letter-spacing: 0.02em; }
.brand-word span { color: var(--boom); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { text-decoration: none; font-size: 15px; color: var(--on-ink-muted); }
.nav a:hover { color: var(--on-ink); }
.header-cta { min-height: 42px; padding: 0 18px; font-size: 15px; }
.brand-word, .header-cta { white-space: nowrap; }
@media (max-width: 860px) { .nav a:not(.btn) { display: none; } }
@media (max-width: 480px) {
  .brand { gap: 9px; }
  .brand svg { width: 32px; height: 32px; }
  .brand-word { font-size: 18px; }
  .header-cta { min-height: 40px; padding: 0 14px; font-size: 14px; }
}

/* Hero */
.hero { background: var(--ink); color: var(--on-ink); position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(245,240,230,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(245,240,230,.045) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, #000 30%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, #000 30%, transparent 75%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr 1fr; gap: 56px; align-items: center; padding-block: 76px 88px; }
.hero h1 { font-size: clamp(44px, 6.4vw, 84px); font-weight: 900; text-transform: uppercase; margin-top: 18px; }
.hero h1 em { font-style: normal; color: var(--boom); }
.hero-lede { margin-top: 22px; font-size: 19px; color: var(--on-ink-muted); max-width: 34em; }
.hero-lede strong { color: var(--on-ink); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; padding: 0; list-style: none; font-size: 15px; color: var(--on-ink-muted); }
.hero-proof li { display: flex; align-items: center; gap: 8px; }
.hero-proof svg { color: var(--boom); flex: none; }

.spots { display: inline-flex; align-items: center; gap: 12px; padding: 7px 14px 7px 8px; border: 1px solid rgba(255,91,31,.4); border-radius: 999px; background: rgba(255,91,31,.1); font-size: 14px; color: var(--on-ink); }
.spots-dots { display: inline-flex; gap: 3px; }
.spots-dots i { width: 7px; height: 14px; border-radius: 2px; background: var(--boom); }
.spots-dots i.taken { background: rgba(245,240,230,.2); }
.spots b { font-weight: 700; }

/* Hero visual: stacked browser frames */
.stack { position: relative; aspect-ratio: 5 / 4; max-width: 100%; }
.frame { position: absolute; width: 78%; border-radius: 10px; overflow: hidden; background: var(--ink-2); box-shadow: 0 30px 60px -20px rgba(0,0,0,.7), 0 0 0 1px rgba(245,240,230,.1); }
.frame-bar { display: flex; gap: 6px; padding: 9px 12px; background: var(--ink-3); }
.frame-bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(245,240,230,.22); }
.frame img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; }
.frame-1 { left: 0; top: 0; transform: rotate(-3deg); }
.frame-2 { right: 0; top: 22%; transform: rotate(2.5deg); z-index: 2; }
.frame-3 { left: 9%; bottom: 0; transform: rotate(-1deg); z-index: 3; }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; padding-block: 48px 64px; gap: 44px; }
  .stack { max-width: 560px; }
}

/* Sections */
.section { padding-block: 96px; }
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(34px, 4.6vw, 58px); font-weight: 900; text-transform: uppercase; margin-top: 12px; }
.section-head p { margin-top: 16px; font-size: 19px; color: var(--muted); }
.on-ink { background: var(--ink); color: var(--on-ink); }
.on-ink .section-head p { color: var(--on-ink-muted); }
@media (max-width: 700px) { .section { padding-block: 68px; } }

/* Pricing */
.pricing { background: var(--paper); }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; padding: 30px 28px 28px; background: #FFFCF6; border: 1px solid var(--line); border-radius: var(--radius); }
.plan h3 { font-size: 28px; font-weight: 800; text-transform: uppercase; }
.plan-for { margin-top: 8px; color: var(--muted); font-size: 15.5px; min-height: 3.2em; }
.price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 12px; margin-top: 22px; }
.price-now { font-family: var(--display); font-stretch: 85%; font-weight: 900; font-size: 64px; line-height: 1; letter-spacing: -0.02em; }
.price-now sup { font-size: .45em; vertical-align: .95em; margin-right: 2px; }
.price-was { font-family: var(--display); font-weight: 700; font-size: 26px; color: var(--muted); text-decoration: line-through; text-decoration-thickness: 2px; }
.price-note { margin-top: 6px; font-size: 14px; color: var(--muted); }
.plan-perk { margin-top: 18px; padding: 11px 14px; border-radius: 10px; background: var(--paper-2); font-weight: 600; font-size: 15px; }
.plan ul { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 11px; font-size: 15.5px; }
.plan li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; }
.plan li svg { margin-top: 4px; color: var(--boom-dark); }
.plan .btn { margin-top: auto; }
.plan-featured { background: var(--ink); color: var(--on-ink); border-color: var(--ink); box-shadow: 0 30px 60px -30px rgba(18,16,14,.55); transform: translateY(-14px); }
.plan-featured .plan-for, .plan-featured .price-note, .plan-featured .price-was { color: var(--on-ink-muted); }
.plan-featured .plan-perk { background: rgba(255,91,31,.14); color: var(--on-ink); }
.plan-featured li svg { color: var(--boom); }
.plan-flag { position: absolute; top: -14px; left: 28px; padding: 5px 12px; border-radius: 999px; background: var(--boom); color: var(--ink); font-family: var(--display); font-weight: 800; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.plan-spots { margin-top: 14px; font-size: 14px; color: var(--on-ink-muted); }
.plan-spots b { color: var(--boom); }
.checkout-msg { margin-top: 12px; font-size: 14px; min-height: 1.4em; }
.plans-foot { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: center; color: var(--muted); font-size: 15px; }
.plans-foot span { display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 1000px) {
  .plans { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .plan-featured { transform: none; order: -1; }
  .plan-for { min-height: 0; }
}

/* Work */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.work { margin: 0; }
.work-shot { border-radius: 10px; overflow: hidden; background: var(--ink-2); box-shadow: 0 0 0 1px rgba(245,240,230,.1); }
.work-shot img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; transition: transform .5s ease; }
.work:hover .work-shot img { transform: scale(1.03); }
.work figcaption { margin-top: 12px; }
.work figcaption b { display: block; font-family: var(--display); font-stretch: 90%; font-weight: 800; font-size: 19px; text-transform: uppercase; letter-spacing: .01em; }
.work figcaption span { font-size: 14.5px; color: var(--on-ink-muted); }
@media (max-width: 900px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .work-grid { grid-template-columns: 1fr; } }

/* Included */
.included { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.inc { background: #FFFCF6; padding: 28px 24px; }
.inc svg { color: var(--boom-dark); }
.inc h3 { margin-top: 16px; font-size: 21px; font-weight: 800; text-transform: uppercase; }
.inc p { margin-top: 8px; color: var(--muted); font-size: 15.5px; }
@media (max-width: 960px) { .included { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .included { grid-template-columns: 1fr; } }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; list-style: none; padding: 0; margin: 0; }
.step { padding: 30px 26px; border-radius: var(--radius); background: var(--ink-2); border: 1px solid rgba(245,240,230,.08); }
.step-n { font-family: var(--display); font-stretch: 85%; font-weight: 900; font-size: 56px; line-height: 1; color: var(--boom); }
.step h3 { margin-top: 14px; font-size: 24px; font-weight: 800; text-transform: uppercase; }
.step p { margin-top: 10px; color: var(--on-ink-muted); font-size: 16px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* Maintenance */
.maint { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.maint-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.maint-list li { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.maint-list b { font-weight: 600; }
.maint-list span { color: var(--muted); font-size: 15px; text-align: right; }
@media (max-width: 860px) { .maint { grid-template-columns: 1fr; gap: 28px; } }

/* FAQ */
.faq { max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-family: var(--display); font-stretch: 92%; font-weight: 800; font-size: 21px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 28px; line-height: 1; color: var(--boom-dark); transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 22px; color: var(--muted); max-width: 44em; }

/* Final CTA */
.final { text-align: center; }
.final h2 { font-size: clamp(38px, 6vw, 76px); font-weight: 900; text-transform: uppercase; max-width: 14em; margin-inline: auto; }
.final h2 em { font-style: normal; color: var(--boom); }
.final p { margin: 20px auto 0; max-width: 36em; color: var(--on-ink-muted); font-size: 19px; }
.final .hero-actions { justify-content: center; }

/* Footer */
.site-footer { background: var(--ink); color: var(--on-ink-muted); border-top: 1px solid rgba(245,240,230,.08); padding-block: 36px; font-size: 14.5px; }
.footer-row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 18px; }
.footer-row nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-row a { text-decoration: none; }
.footer-row a:hover { color: var(--on-ink); }
.site-footer .brand { color: var(--on-ink); }

/* Simple pages */
.page { padding-block: 72px 96px; }
.page h1 { font-size: clamp(38px, 5vw, 64px); font-weight: 900; text-transform: uppercase; }
.page h2 { font-size: 26px; font-weight: 800; text-transform: uppercase; margin-top: 44px; }
.page p, .page li { color: var(--muted); max-width: 46em; }
.page p { margin-top: 14px; }
.page ol, .page ul { padding-left: 1.2em; }
.page li { margin-top: 8px; }
.thanks-card { max-width: 720px; }
.thanks-card .lede { font-size: 20px; margin-top: 18px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
