:root {
  color-scheme: light;
  --bg: #f6f7f8;
  --surface: #ffffff;
  --ink: #171a1f;
  --muted: #59606a;
  --line: #d9dee5;
  --accent: #126c6a;
  --accent-ink: #f8fffd;
  --blue: #2f5ca8;
  --gold: #a96905;
  --rose: #aa3656;
  --soft: #e9f3f1;
  --note: #fff6e6;
  --shadow: 0 14px 38px rgba(23, 26, 31, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
}

a {
  color: inherit;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--ink);
}

.locale-switcher {
  position: relative;
}

.locale-switcher summary {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  gap: 6px;
  min-height: 32px;
  padding: 4px 9px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  list-style: none;
  background: var(--surface);
}

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

.locale-switcher[open] summary,
.locale-switcher summary:hover {
  color: var(--ink);
  border-color: #b9c1cc;
}

.locale-icon {
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: inline-block;
  height: 14px;
  position: relative;
  width: 14px;
}

.locale-icon::before,
.locale-icon::after {
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.locale-icon::before {
  background: currentColor;
  height: 1px;
  width: 10px;
}

.locale-icon::after {
  background: transparent;
  border-left: 1px solid currentColor;
  border-right: 1px solid currentColor;
  border-radius: 50%;
  height: 13px;
  width: 6px;
}

.locale-menu {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 2px;
  padding: 5px;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: max-content;
  z-index: 20;
}

.locale-menu a {
  border-radius: 6px;
  color: var(--muted);
  min-width: 112px;
  padding: 7px 10px;
  text-decoration: none;
  white-space: nowrap;
}

.locale-menu a:hover,
.locale-menu a[aria-current="page"] {
  color: var(--accent);
  background: var(--soft);
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 44px;
  align-items: center;
  min-height: 520px;
  padding-top: 48px;
  padding-bottom: 48px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  font-size: 4.35rem;
}

h2 {
  font-size: 2.45rem;
}

h3 {
  font-size: 1.35rem;
}

p {
  line-height: 1.65;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-visual {
  width: 100%;
  max-width: 460px;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-flow {
  display: grid;
  gap: 18px;
  max-width: 470px;
  padding: 20px;
}

.product-flow-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.product-flow img {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef2f6;
}

.hero-visual img,
.listing-media img {
  display: block;
  width: 100%;
  height: auto;
}

.product-flow-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-flow-steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #ffffff;
}

.product-flow-steps span {
  grid-row: span 2;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-flow-steps strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.product-flow-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.signal-band .section {
  padding-top: 24px;
  padding-bottom: 24px;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.signal-strip span {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  min-height: 50px;
  padding: 10px 13px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.card,
.path,
.note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(210px, 0.56fr);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card-body,
.path,
.note {
  padding: 24px;
}

.listing-media {
  min-height: 260px;
  padding: 20px;
  background: #eef2f6;
}

.hero-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-status span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--muted);
  background: var(--surface);
  font-size: 0.84rem;
  font-weight: 700;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--muted);
  background: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
}

.badge.strong {
  color: var(--accent);
  border-color: rgba(20, 108, 102, 0.32);
  background: #e7f6f3;
}

.badge.gold {
  color: var(--gold);
  border-color: rgba(180, 119, 16, 0.32);
  background: var(--note);
}

.badge.rose {
  color: var(--rose);
  border-color: rgba(155, 64, 92, 0.26);
  background: #fff0f5;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  color: var(--accent-ink);
  background: var(--accent);
}

.button.secondary {
  color: var(--accent);
  background: transparent;
}

.button.disabled {
  color: var(--muted);
  border-color: var(--line);
  background: #eef1f4;
  cursor: not-allowed;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

.stack {
  display: grid;
  gap: 20px;
}

.section-header {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.section-header p:last-child {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

.path-header {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.path ul,
.plain-list {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.note {
  background: var(--note);
}

.limits-note {
  position: sticky;
  top: 86px;
}

.page-intro {
  min-height: 420px;
}

.legal-notice {
  max-width: 920px;
}

.legal-meta {
  margin: 6px 0 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.legal-section {
  padding: 26px 28px;
}

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

.legal-section h2 {
  font-size: 1.18rem;
  line-height: 1.25;
}

.legal-section p {
  margin: 12px 0 0;
  color: var(--muted);
}

.email-address {
  overflow-wrap: anywhere;
  font-weight: 800;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface);
}

.footer .section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 26px;
  padding-bottom: 26px;
}

@media (max-width: 820px) {
  .nav,
  .hero,
  .card,
  .detail-layout,
  .signal-strip {
    grid-template-columns: 1fr;
  }

  .nav {
    display: grid;
    gap: 14px;
  }

  .nav-actions {
    align-items: start;
    display: grid;
    gap: 12px;
  }

  .locale-menu {
    left: 0;
    right: auto;
  }

  .hero {
    min-height: 0;
  }

  .hero-visual {
    max-width: 360px;
    justify-self: start;
  }

  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2rem;
  }

  .limits-note {
    position: static;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 38px 18px;
  }

  .nav {
    padding: 16px 18px;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero {
    gap: 28px;
  }
}
