:root {
  --paper: #f6f3ec;
  --paper-2: #efeae0;
  --ink: #161412;
  --muted: #6d675e;
  --line: #e2dcd0;
  --card: #fffdf8;
  --btn: #161412;
  --btn-ink: #f6f3ec;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.top {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 4vw;
  background: rgba(246,243,236,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.top.scrolled { border-bottom-color: var(--line); }
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
  font-family: var(--serif); font-weight: 600; font-size: 22px; letter-spacing: -0.03em;
  flex: 0 0 auto;
}
.brand img { height: 34px; width: auto; max-width: 168px; border-radius: 0; }
.nav {
  display: flex; align-items: center; gap: 18px;
  min-width: 0;
}
.nav a { text-decoration: none; font-size: 14px; font-weight: 500; white-space: nowrap; }
.nav a:hover { opacity: 0.65; }
.acct { position: relative; }
.acct-btn {
  background: none; border: 0; font: inherit; font-size: 14px; font-weight: 500;
  cursor: pointer; color: var(--ink); padding: 6px 0;
}
.acct-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  min-width: 200px; padding: 8px; box-shadow: 0 16px 40px rgba(22,20,18,.08);
  display: grid; gap: 2px; z-index: 40;
}
.acct-menu[hidden] { display: none; }
.acct-menu a, .acct-menu button {
  display: block; width: 100%; text-align: left; background: none; border: 0;
  font: inherit; font-size: 14px; padding: 10px 12px; border-radius: 10px;
  cursor: pointer; color: var(--ink); text-decoration: none;
}
.acct-menu a:hover, .acct-menu button:hover { background: var(--paper-2); }
.nav-quiet:hover { color: var(--ink) !important; opacity: 1; }
[data-auth] { display: flex; align-items: center; gap: 12px; }
.gsi-nav { display: flex; align-items: center; min-height: 40px; }
.btn-nav { padding: 8px 16px; font-size: 14px; height: 36px; }
.menu-btn {
  display: none; background: none; border: 0; padding: 8px; cursor: pointer;
  margin-left: auto;
}
.menu-btn span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 5px 0; }

.gsi {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 40px; padding: 0 14px 0 12px;
  background: #fff; color: #1f1f1f !important;
  border: 1px solid #747775; border-radius: 4px;
  text-decoration: none; font-family: Roboto, "Segoe UI", sans-serif;
  font-size: 14px; font-weight: 500; cursor: pointer;
}
.gsi:hover { background: #f8f9fa; box-shadow: 0 1px 2px rgba(0,0,0,.12); color: #1f1f1f !important; }
.gsi img { width: 18px; height: 18px; }
.gsi.lg { height: 48px; padding: 0 18px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--btn); color: var(--btn-ink);
  border: 0; border-radius: 999px; padding: 14px 22px;
  font-weight: 600; font-size: 15px; cursor: pointer; text-decoration: none;
}
.btn:hover { filter: brightness(1.15); color: var(--btn-ink); }
.btn.ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--ink);
}

.hero { padding: 56px 0 24px; text-align: center; }
.lede { color: var(--muted); max-width: 38em; }
.hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(42px, 6.4vw, 76px);
  line-height: 1.02; letter-spacing: -0.035em;
  margin: 0 auto 16px; max-width: 14ch;
}
.hero .lede { margin: 0 auto 32px; font-size: 19px; }
.prompt {
  background: #fff; border: 1px solid var(--line);
  border-radius: 28px; padding: 14px 14px 14px 22px;
  max-width: 720px; margin: 0 auto;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 20px 50px rgba(22,20,18,.06);
  text-align: left;
}
.prompt textarea {
  flex: 1; border: 0; resize: none; min-height: 52px; outline: none;
  background: transparent; color: var(--ink);
}
.proof {
  display: flex; justify-content: center; align-items: center; gap: 10px;
  color: var(--muted); font-size: 14px; margin-top: 18px;
}
.hero-photo {
  width: min(1120px, calc(100% - 40px));
  margin: 40px auto 0;
  border-radius: 28px; overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
}
.hero-photo .slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.1s ease;
}
.hero-photo .slide.on { opacity: 1; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-caption {
  position: absolute; left: 20px; bottom: 20px;
  background: rgba(246,243,236,.92); border-radius: 999px;
  padding: 10px 16px; font-size: 14px;
}

.band { padding: 88px 0; }
.band h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(32px, 4.4vw, 48px);
  letter-spacing: -0.03em; margin: 0 0 12px; line-height: 1.1;
}
.intro { color: var(--muted); max-width: 40em; margin: 0 0 36px; }
.cats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.cat {
  background: var(--card); border-radius: 22px; overflow: hidden;
  text-decoration: none; color: inherit;
  border: 1px solid var(--line);
}
.cat img { width: 100%; height: 210px; object-fit: cover; }
.cat div { padding: 16px 18px 20px; }
.cat h3 { font-family: var(--serif); font-weight: 500; margin: 0 0 6px; font-size: 24px; }
.cat p { margin: 0; color: var(--muted); font-size: 16px; }

.split {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.split img { border-radius: 24px; width: 100%; height: 420px; object-fit: cover; }
.checks { list-style: none; padding: 0; margin: 24px 0 0; }
.checks li { padding: 8px 0 8px 28px; position: relative; color: var(--muted); }
.checks li::before { content: ""; position: absolute; left: 0; top: 16px; width: 10px; height: 10px; border-radius: 50%; background: var(--ink); }

.faq details { border-top: 1px solid var(--line); padding: 18px 0; }
.faq summary { cursor: pointer; font-weight: 600; font-size: 18px; }
.faq p { color: var(--muted); margin: 10px 0 0; max-width: 46em; }

.price {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px;
}
.price-main {
  background: var(--ink); color: var(--paper);
  border-radius: 28px; padding: 36px;
}
.price-main .amt { font-family: var(--serif); font-size: 64px; margin: 0; letter-spacing: -0.04em; }
.price-main .amt span { font-size: 22px; opacity: .7; }
.price-main ul { color: #d9d2c6; padding-left: 18px; }
.price-main .btn { background: var(--paper); color: var(--ink); }
.price .card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 28px; padding: 28px;
}
.price .card h3 { font-family: var(--serif); font-weight: 500; margin-top: 0; }

.cta-end {
  background: var(--paper-2); border-radius: 32px; padding: 56px 28px; text-align: center;
}
.cta-end h2 { margin-bottom: 10px; }

.foot {
  border-top: 1px solid var(--line); padding: 48px 4vw 72px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 28px;
  color: var(--muted); font-size: 14px;
}
.foot strong { display: block; color: var(--ink); margin-bottom: 10px; font-family: var(--serif); font-size: 18px; font-weight: 500; }
.foot a { text-decoration: none; display: block; margin: 7px 0; }
.foot a:hover { color: var(--ink); }

.page-hero { padding: 48px 0 8px; }
.page-hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(36px, 5vw, 58px); letter-spacing: -0.03em; margin: 0 0 12px; line-height: 1.05;
}
.legal { width: min(700px, calc(100% - 40px)); margin: 0 auto; padding: 56px 0 80px; color: var(--muted); }
.legal h1 { font-family: var(--serif); color: var(--ink); font-weight: 500; }

.rail-brand { font-family: var(--serif); font-weight: 600; font-size: 22px; margin: 0; }
.rail-copy { color: var(--muted); font-size: 14px; margin: 8px 0 0; line-height: 1.4; }
.pane .kicker { letter-spacing: 0.08em; text-transform: uppercase; font-size: 12px; font-weight: 600; color: var(--muted); margin: 0 0 8px; }
.pane textarea { min-height: 180px; font-size: 17px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 0; }
.chip {
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: 8px 14px; font-size: 13px; cursor: pointer; color: var(--ink);
}
.chip:hover { border-color: var(--ink); }
.gsi-slot { margin: 18px 0 8px; min-height: 40px; }
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px; margin: 8px 0 8px;
}
.stat {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 16px 18px;
}
.stat b { display: block; font-family: var(--serif); font-size: 32px; line-height: 1.1; }
.stat span { color: var(--muted); font-size: 13px; }
.wizard {
  display: grid;
  grid-template-columns: 220px minmax(0,1fr) minmax(280px,1.1fr);
  min-height: calc(100vh - 64px);
}
.wizard.no-preview { grid-template-columns: 220px minmax(0,1fr); }
.rail { border-right: 1px solid var(--line); padding: 32px 20px; background: var(--paper-2); }
.rail ol { list-style: none; margin: 16px 0 0; padding: 0; }
.rail li { padding: 10px 0; color: var(--muted); }
.rail li.on { color: var(--ink); font-weight: 650; }
.rail li.done { color: var(--ink); }
.pane { padding: 48px 40px 80px; max-width: 580px; }
.pane h2 { font-family: var(--serif); font-weight: 500; font-size: 36px; margin: 0 0 10px; }
.pane .lede { color: var(--muted); }
label { display: block; font-size: 14px; font-weight: 600; margin: 18px 0 6px; }
textarea, input[type=text], input[type=number], input[type=url], input[type=email], input[type=tel], select {
  width: 100%; background: #fff; color: var(--ink); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px;
}
textarea { min-height: 160px; }
.preview-col { border-left: 1px solid var(--line); background: #fff; }
.preview-col iframe { width: 100%; height: 100%; border: 0; min-height: calc(100vh - 64px); }
.preview-col .empty { padding: 40px; color: var(--muted); }
.row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.err { color: #9b2c2c; }
.ok { color: #2f6b3a; }
.meter { height: 6px; background: var(--line); border-radius: 99px; overflow: hidden; margin: 18px 0; }
.meter > div { height: 100%; width: 40%; background: var(--ink); animation: load 1.2s ease infinite; }
@keyframes load { 0% { transform: translateX(-90%); } 100% { transform: translateX(280%); } }
.who { color: var(--muted); font-size: 13px; }
.linkish { background: none; border: 0; color: var(--muted); cursor: pointer; font: inherit; padding: 0; }
.amt { font-family: var(--serif); font-size: 48px; margin: 8px 0; }
.muted-line { color: var(--muted); font-size: 14px; }
.tier-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.tier { background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 22px; }
.tier.on { background: var(--ink); color: var(--paper); }
.tier.on .lede, .tier.on p { color: #d9d2c6; }
.tier h3 { font-family: var(--serif); font-weight: 500; margin: 0 0 8px; }
.domain-box { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.domain-hits { list-style: none; padding: 0; margin: 12px 0 0; }
.domain-hits li { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.row.tight { margin-top: 10px; }
.example-card { display: grid; }
.example-card .open { display: inline-block; margin-top: 10px; font-weight: 600; }
.post-list { display: grid; gap: 18px; }
.post-list a { text-decoration: none; background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 22px; }
.post-list h3 { font-family: var(--serif); margin: 0 0 8px; }
.tool-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.price-grid .price-main, .price-grid .card { min-height: 100%; }
.article { width: min(740px, calc(100% - 40px)); margin: 0 auto; padding: 24px 0 80px; }
.article p, .article li { color: var(--muted); }
.article h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(36px, 5vw, 54px); letter-spacing: -0.03em; }

.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; color: var(--muted); margin: 0 0 18px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--ink); }
.hit-card {
  display: grid; grid-template-columns: 1fr auto auto; gap: 10px; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.hit-card .nm { font-weight: 600; }
.hit-card .pr { font-family: var(--serif); font-size: 22px; }
.hit-card .wh { color: var(--muted); font-size: 13px; }
.source-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 12px 0; }
.source {
  text-align: left; background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 12px 14px; cursor: pointer; font: inherit; color: inherit;
}
.source.on { border-color: var(--ink); background: #fff; }
.source b { display: block; font-family: var(--serif); font-size: 16px; }
.source span { color: var(--muted); font-size: 13px; }
.catalog-table { width: 100%; border-collapse: collapse; font-size: 15px; margin: 16px 0; }
.catalog-table th, .catalog-table td { text-align: left; padding: 8px 6px; border-bottom: 1px solid var(--line); }
.ad-sheet { display: grid; gap: 28px; padding-bottom: 80px; }
.ad-sheet figure { margin: 0; background: #ddd; padding: 16px; border-radius: 12px; overflow: auto; }
.ad-sheet img { display: block; background: #ccc; }
.ad-sheet figcaption { font-size: 13px; color: var(--muted); margin-top: 8px; }
.slider { width: 100%; }
.article h2 { font-family: var(--serif); font-weight: 500; font-size: 28px; margin: 36px 0 10px; color: var(--ink); }
.article h3 { font-family: var(--serif); font-weight: 500; font-size: 22px; margin: 28px 0 8px; color: var(--ink); }
.article p, .article li { color: var(--muted); }
.article a { color: var(--ink); }
.related { display: grid; gap: 10px; margin: 28px 0; }
.related a { text-decoration: none; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; background: var(--card); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .top.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: 0; right: 0; top: 60px;
    background: var(--paper); padding: 12px 4vw 20px; border-bottom: 1px solid var(--line);
    gap: 4px;
  }
  .top.open .nav-links a { padding: 10px 0; }
  .top.open .btn-nav { width: 100%; }
  .menu-btn { display: block; }
  .cats, .split, .price, .foot, .tier-row, .price-grid, .tool-grid, .source-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 28px; }
  .hero h1 { max-width: none; }
  .prompt { flex-direction: column; align-items: stretch; padding: 16px; }
  .hero-photo { aspect-ratio: 4 / 5; border-radius: 20px; }
  .split img { height: 280px; }
  .pane { padding: 28px 18px 64px; }
  .cat img { height: 180px; }
  .hit-card { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .wizard, .wizard.no-preview { grid-template-columns: 1fr; }
  .rail { border-right: 0; border-bottom: 1px solid var(--line); }
  .account { grid-template-columns: 1fr; }
  .account-rail { border-right: 0; border-bottom: 1px solid var(--line); }
  .account-main { padding: 24px 18px 64px; }
}

.dash-card .lede { font-size: 15px; }
.dash-card .row { margin-top: 12px; }
.account {
  display: grid;
  grid-template-columns: 220px minmax(0,1fr);
  min-height: calc(100vh - 64px);
}
.account-rail {
  border-right: 1px solid var(--line);
  background: var(--paper-2);
  padding: 32px 20px;
}
.account-rail a { display: block; text-decoration: none; padding: 10px 0; color: var(--muted); }
.account-rail a.on, .account-rail a:hover { color: var(--ink); font-weight: 650; }
.account-main { padding: 36px 40px 80px; }
.dns-table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 12px 0; }
.dns-table th, .dns-table td { text-align: left; padding: 8px 6px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.dns-table input, .dns-table select { padding: 8px; }
.domain-manage { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 18px; margin: 12px 0; }
.serp {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 18px; max-width: 620px; font-family: Arial, sans-serif;
}
.serp .s-url { color: #202124; font-size: 14px; }
.serp .s-title { color: #1a0dab; font-size: 20px; line-height: 1.3; margin: 4px 0; }
.serp .s-desc { color: #4d5156; font-size: 14px; margin: 0; }
.swatch-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0; }
.swatch-row i {
  width: 96px; height: 96px; border-radius: 12px; border: 1px solid var(--line);
  display: flex; align-items: flex-end; padding: 8px; font-size: 12px; font-style: normal;
  color: #fff; text-shadow: 0 1px 2px #0008; box-sizing: border-box;
}
.check-list label { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; margin: 8px 0; }
.mono {
  font-family: ui-monospace, Consolas, monospace; font-size: 13px; white-space: pre-wrap;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px;
}
.sig { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.narrow-num { max-width: 160px; }
.page-hero .row input { flex: 1; min-width: 180px; }
