:root {
  --paper: #ffffff;
  --paper-2: #f4f2ec;
  --paper-3: #faf8f2;
  --ink: #111111;
  --slate: #313A61;
  --gold: #615831;
  --line: rgba(17, 17, 17, 0.9);
  --line-soft: rgba(17, 17, 17, 0.18);
  --line-faint: rgba(17, 17, 17, 0.1);
  --text: #171717;
  --muted: #5f5a52;
  --faint: #80786e;
  --radius: 18px;
  --radius2: 28px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(72rem 34rem at 8% -12%, rgba(49, 58, 97, 0.08), transparent 62%),
    radial-gradient(54rem 28rem at 100% 0%, rgba(97, 88, 49, 0.08), transparent 58%),
    linear-gradient(180deg, #ffffff 0, #fbfaf7 22rem, #ffffff 40rem, #fbfaf7 100%);
  font: 15px/1.5 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.01em;
}

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

video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #dcd9d0;
}

strong {
  font-weight: 900;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}

.logo,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.logo:hover,
.footer-brand:hover {
  text-decoration: none;
}

.logo-wordmark-frame,
.footer-wordmark-frame {
  display: block;
  width: clamp(196px, 24vw, 302px);
  height: clamp(56px, 5.6vw, 74px);
  flex: 0 0 auto;
}

.logo-wordmark,
.footer-wordmark {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  transform: scale(1.45);
  position: relative;
  left: -15px;
}

.top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn::after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  /* background: currentColor; */
  clip-path: polygon(0 50%, 78% 50%, 100% 0, 100% 100%, 78% 50%);
  opacity: 0.72;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn.primary {
  background: var(--slate);
  color: #ffffff;
}

.btn.primary:hover {
  background: #283050;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.78);
}

.btn.ghost:hover {
  background: var(--paper-2);
}

.hero {
  padding: 44px 0 22px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 28px;
  align-items: start;
}

.hero-copy {
  padding-top: 8px;
}

.eyebrow {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--slate);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 56px;
  height: 1px;
  background: var(--line);
  clip-path: polygon(0 50%, 88% 50%, 100% 0, 100% 100%, 88% 50%);
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

h1 {
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  font-weight: 950;
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
  font-weight: 900;
}

h3 {
  font-size: 1.18rem;
  font-weight: 900;
}

p {
  margin: 0 0 14px;
  color: #25231e;
}

.lead {
  max-width: 58ch;
  font-size: 1.05rem;
}

.proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 18px;
  max-width: 44rem;
}

.pill {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.pill::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 1px;
  background: rgba(17, 17, 17, 0.64);
  clip-path: polygon(0 50%, 78% 50%, 100% 0, 100% 100%, 78% 50%);
}

.pill .dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--slate), var(--gold));
  flex: 0 0 auto;
}

.cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-bottom: 14px;
}

.cta-row-tight {
  margin-bottom: 0;
}

.trust-strip {
  position: relative;
  overflow: hidden;
  max-width: 48rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(49, 58, 97, 0.04), rgba(97, 88, 49, 0.04));
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.trust-strip::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--line-faint);
  border-radius: 10px;
  pointer-events: none;
  box-shadow: 2px 4px 4px 2px #dddddd;
}

.card,
.panel,
details.qa {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: #ffffff;
  overflow: hidden;
}

.card::before,
.panel::before,
details.qa::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 0px solid var(--line-faint);
  border-radius: calc(var(--radius2) - 8px);
  pointer-events: none;
  box-shadow: 2px 4px 4px 2px #dddddd;
}

.hero-preview {
  background: linear-gradient(180deg, rgba(49, 58, 97, 0.045), rgba(97, 88, 49, 0.03) 100%);
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 12px;
}

.card-head strong {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  color: var(--muted);
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.video-wrap {
  padding: 0 18px 18px;
}

.video-stage {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(44rem 24rem at 0% 0%, rgba(49, 58, 97, 0.12), transparent 60%),
    radial-gradient(30rem 20rem at 100% 100%, rgba(97, 88, 49, 0.16), transparent 58%),
    linear-gradient(180deg, #f0eee8, #d8d4ca);
}

.controls {
  padding: 0 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini-card {
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 14px;
}

.mini-card::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 16px;
  height: 1px;
  background: rgba(17, 17, 17, 0.5);
  clip-path: polygon(0 50%, 78% 50%, 100% 0, 100% 100%, 78% 50%);
}

.mini-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.mini-card p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 30px 0;
}

.section + .section {
  border-top: 1px solid var(--line-soft);
}

.section p {
  max-width: 60ch;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 14px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 16px;
  align-items: start;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel {
  padding: 18px;
}

.claim-panel {
  background: linear-gradient(180deg, rgba(49, 58, 97, 0.035), rgba(255, 255, 255, 0) 52%);
}

.bundle-panel {
  background: linear-gradient(180deg, rgba(49, 58, 97, 0.05), rgba(97, 88, 49, 0.05));
}

.ai-note-panel {
  background: linear-gradient(135deg, rgba(97, 88, 49, 0.05), rgba(49, 58, 97, 0.04));
}

.sub {
  color: var(--muted);
  font-size: 14px;
}

.claim-intro,
.bundle-sub,
.ai-note-copy {
  margin-bottom: 14px;
}

.price {
  margin: 14px 0 14px;
  color: var(--slate);
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.field-group-inline {
  margin: 0;
}

.field-group label {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
}

input[type="email"],
input[type="text"],
input[type="search"] {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  outline: none;
}

input[type="email"]:focus,
input[type="text"]:focus,
input[type="search"]:focus {
  border-color: var(--slate);
  box-shadow: 0 0 0 2px rgba(49, 58, 97, 0.1);
}

.check-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 10px 0 16px;
  color: var(--text);
  font-size: 14px;
}

.check-row input {
  margin-top: 3px;
  accent-color: var(--slate);
}

.panel-rule {
  margin: 18px 0;
  border: 0;
  border-top: 1px solid var(--line-soft);
}

.minor-heading {
  margin-bottom: 10px;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.legal-note {
  margin-top: 12px;
  color: var(--faint);
  font-size: 12px;
}

.legal-note a {
  color: var(--slate);
  font-weight: 700;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--text);
}

.list li {
  position: relative;
  padding-left: 18px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 12px;
  height: 1px;
  background: var(--line);
  clip-path: polygon(0 50%, 82% 50%, 100% 0, 100% 100%, 82% 50%);
}

.browser-panel {
  background: linear-gradient(180deg, rgba(49, 58, 97, 0.03), rgba(255, 255, 255, 0) 34%);
}

.browser-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 14px;
}

.result-note {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  white-space: nowrap;
}

.city-grid-browser {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-height: 560px;
  overflow: auto;
  padding-right: 4px;
}

.city-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  color: var(--ink);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.city-button:hover {
  transform: translateY(-1px);
  background: var(--paper-3);
  text-decoration: none;
}

.city-button[hidden] {
  display: none;
}

.city-button.active {
  background: var(--slate);
  color: #ffffff;
}

.city-name {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

.city-rank {
  min-width: 42px;
  padding: 5px 7px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(97, 88, 49, 0.08);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  flex: 0 0 auto;
}

.city-button.active .city-rank {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #f4f1e6;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.callout {
  position: relative;
  overflow: hidden;
  padding: 16px 16px 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(49, 58, 97, 0.05), rgba(97, 88, 49, 0.03));
  color: var(--muted);
  font-weight: 600;
}

.callout::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid var(--line-faint);
  border-radius: 11px;
  pointer-events: none;
  box-shadow: 2px 4px 4px 2px #dddddd;
}

.steps {
  margin: 0;
  padding-left: 22px;
  color: var(--text);
}

.steps li {
  margin: 0 0 10px;
  padding-left: 4px;
}

.steps li::marker {
  color: var(--slate);
  font-weight: 900;
}

.tutorial-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(34rem 20rem at 0% 0%, rgba(49, 58, 97, 0.12), transparent 60%),
    radial-gradient(24rem 18rem at 100% 100%, rgba(97, 88, 49, 0.12), transparent 58%),
    linear-gradient(180deg, #f8f7f3, #efede7);
  text-align: center;
  color: var(--muted);
}

.tutorial-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1rem;
}

.tutorial-note {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--faint);
}

details.qa {
  margin-bottom: 10px;
  padding: 14px 16px;
}

details.qa summary {
  position: relative;
  padding-right: 24px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.02em;
  list-style: none;
}

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

details.qa summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -1px;
  color: var(--slate);
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
}

details.qa[open] summary::after {
  content: "−";
}

details.qa p {
  margin: 10px 0 0;
  color: #28261f;
}

.footer {
  margin-top: 6px;
  padding: 24px 0 40px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.footer-copy {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .hero-grid,
  .two-col,
  .how-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-actions,
  .footer-meta {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .city-grid-browser {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .hero {
    padding-top: 28px;
  }

  .proof,
  .meta-grid,
  .browser-controls,
  .city-grid-browser {
    grid-template-columns: 1fr;
  }

  .card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .logo-wordmark-frame,
  .footer-wordmark-frame {
    width: 230px;
    height: 62px;
  }

  .btn {
    width: 100%;
    justify-content: space-between;
  }

  .cta-row,
  .top-actions {
    width: 100%;
  }

  .city-button {
    padding: 12px 11px;
  }
}