:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #65706b;
  --line: #d9ded7;
  --paper: #fbfaf7;
  --white: #ffffff;
  --teal: #1f7a72;
  --teal-dark: #11544f;
  --clay: #b56f4d;
  --clay-dark: #7d462d;
  --charcoal: #202321;
  --sage: #dce7de;
  --gold: #dcae55;
  --shadow: 0 24px 60px rgba(24, 32, 29, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

body.cart-open,
body.waitlist-open {
  overflow: hidden;
}

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

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

button,
select,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 64px);
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 1px 0 rgba(23, 32, 29, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  content: "";
  background: currentColor;
}

.brand-mark::before {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.brand-mark::after {
  width: 2px;
  height: 18px;
  transform: rotate(45deg);
}

.brand-mark span {
  right: -3px;
  bottom: 4px;
  width: 10px;
  height: 4px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: currentColor;
}

.cart-button,
.icon-button {
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.cart-button {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.cart-icon {
  position: relative;
  width: 17px;
  height: 14px;
  border: 2px solid currentColor;
  border-top: 0;
}

.cart-icon::before {
  position: absolute;
  top: -7px;
  left: 2px;
  width: 9px;
  height: 7px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
  content: "";
}

.cart-count {
  position: absolute;
  right: -5px;
  top: -5px;
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: min(680px, 86svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 24, 22, 0.9) 0%, rgba(18, 24, 22, 0.68) 38%, rgba(18, 24, 22, 0.1) 74%),
    linear-gradient(0deg, rgba(18, 24, 22, 0.62), rgba(18, 24, 22, 0.02) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 92px);
  padding: 98px 0 38px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0bd7d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 5.7vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
}

.finder {
  width: min(610px, 100%);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(23, 32, 29, 0.52);
  backdrop-filter: blur(16px);
}

.finder label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.88rem;
  font-weight: 800;
}

.finder-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

select {
  min-width: 0;
  min-height: 48px;
  padding: 0 42px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(45deg, transparent 50%, currentColor 50%) calc(100% - 20px) 20px / 7px 7px no-repeat,
    linear-gradient(135deg, currentColor 50%, transparent 50%) calc(100% - 15px) 20px / 7px 7px no-repeat,
    rgba(255, 255, 255, 0.08);
  appearance: none;
}

select option {
  color: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--teal-dark);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.button:disabled:hover,
.button:disabled:focus-visible {
  transform: none;
}

.button.secondary {
  width: 100%;
  color: var(--white);
  background: var(--charcoal);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--teal-dark);
}

.button.secondary:disabled,
.button.secondary:disabled:hover,
.button.secondary:disabled:focus-visible {
  color: var(--muted);
  background: #e9ece7;
}

.button.full {
  width: 100%;
}

.button.small {
  min-height: 42px;
  width: auto;
  padding: 0 14px;
  font-size: 0.9rem;
}

.match-strip {
  display: grid;
  gap: 2px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.8);
}

.match-strip strong {
  color: var(--white);
}

.quick-shop,
.demand-section,
.model-section,
.faq-section {
  padding: clamp(58px, 9vw, 112px) clamp(20px, 5vw, 64px);
}

.demand-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(20px, 5vw, 58px);
  align-items: end;
  padding-top: clamp(36px, 6vw, 74px);
  padding-bottom: clamp(36px, 6vw, 74px);
  border-bottom: 1px solid rgba(23, 32, 29, 0.1);
  background: var(--white);
}

.demand-section h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}

.demand-section p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.quick-shop {
  padding-top: 36px;
  background: var(--paper);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  min-height: 470px;
  grid-template-rows: 210px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.product-card.is-sold-out {
  border-color: #ccd2cb;
  background: #f7f8f5;
}

.product-card.is-sold-out .product-image img,
.product-card.is-sold-out .product-token {
  filter: saturate(0.55);
}

.product-card.featured {
  grid-column: span 1;
}

.product-image {
  overflow: hidden;
  background: #ece8df;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.product-token {
  position: relative;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(31, 122, 114, 0.22), rgba(181, 111, 77, 0.16)),
    #f2f4ef;
}

.product-token::before,
.product-token::after {
  position: absolute;
  content: "";
}

.product-token.bag::before {
  width: 92px;
  height: 132px;
  border: 3px solid #9ca39d;
  border-radius: 7px 7px 14px 14px;
  background: linear-gradient(90deg, #f8f8f3, #e7e9e4);
  transform: rotate(-5deg);
}

.product-token.bag::after {
  width: 34px;
  height: 34px;
  border: 8px solid #b8aaa0;
  border-radius: 50%;
  transform: translateY(-30px) rotate(-5deg);
}

.product-token.filter::before {
  width: 118px;
  height: 82px;
  border: 8px solid #2b302d;
  border-radius: 8px;
  background: repeating-linear-gradient(90deg, #eef2ee 0 8px, #cdd6cf 8px 10px);
}

.product-token.filter::after {
  width: 136px;
  height: 6px;
  border-radius: 999px;
  background: var(--clay);
  transform: translateY(58px);
}

.product-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.product-body p:not(.tag) {
  color: var(--muted);
}

.tag {
  width: max-content;
  margin-bottom: 0;
  padding: 4px 9px;
  border: 1px solid rgba(181, 111, 77, 0.35);
  border-radius: 999px;
  color: var(--clay-dark);
  background: rgba(181, 111, 77, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-meta span:first-child {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
}

.product-meta .stock-badge {
  min-width: 88px;
  padding: 4px 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-align: center;
}

.stock-badge.available {
  color: var(--teal-dark);
  background: rgba(31, 122, 114, 0.1);
  border-color: rgba(31, 122, 114, 0.24);
}

.stock-badge.sold-out {
  color: var(--clay-dark);
  background: rgba(181, 111, 77, 0.1);
  border-color: rgba(181, 111, 77, 0.22);
}

.model-section {
  background: #edf2ed;
}

.model-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(360px, 1.2fr);
  gap: 24px;
  align-items: stretch;
}

.model-panel,
.compat-table {
  border: 1px solid rgba(23, 32, 29, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(23, 32, 29, 0.04);
}

.model-panel {
  padding: clamp(22px, 4vw, 34px);
}

.model-panel p {
  color: var(--muted);
}

.selector-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 22px 0;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f4f5f1;
}

.segmented {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
}

.segmented.active {
  color: var(--white);
  background: var(--teal);
}

.recommendation {
  display: grid;
  gap: 5px;
  padding: 18px;
  border-left: 5px solid var(--clay);
  background: #fbf5ee;
}

.recommendation span {
  color: var(--clay-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.recommendation p {
  margin-bottom: 0;
}

.compat-table {
  display: grid;
  overflow: hidden;
}

.compat-table [role="row"] {
  display: grid;
  grid-template-columns: minmax(110px, 0.6fr) minmax(180px, 1.4fr) minmax(150px, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.compat-table [role="row"]:last-child {
  border-bottom: 0;
}

.table-head {
  color: var(--white);
  background: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compat-table [role="cell"]:first-child {
  font-weight: 900;
}

.compat-table [role="cell"]:not(:first-child) {
  color: var(--muted);
}

.plan-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(58px, 9vw, 112px) clamp(20px, 5vw, 64px);
  color: var(--white);
  background: var(--charcoal);
}

.plan-copy {
  max-width: 640px;
}

.plan-copy .eyebrow {
  color: #f0bd7d;
}

.plan-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.plan-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.plan-steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 6px 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.plan-steps span {
  grid-row: span 2;
  color: #f0bd7d;
  font-size: 1.4rem;
  font-weight: 900;
}

.plan-steps strong {
  font-size: 1.1rem;
}

.plan-steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  min-height: 58px;
  padding: 17px 20px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.cart-drawer,
.waitlist-drawer {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  justify-items: end;
  background: rgba(23, 32, 29, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cart-drawer[aria-hidden="false"],
.waitlist-drawer[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel,
.waitlist-panel {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 20px;
  width: min(420px, 100%);
  min-height: 100%;
  padding: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(24px);
  transition: transform 180ms ease;
}

.waitlist-panel {
  grid-template-rows: auto auto 1fr;
  width: min(460px, 100%);
}

.cart-drawer[aria-hidden="false"] .cart-panel,
.waitlist-drawer[aria-hidden="false"] .waitlist-panel {
  transform: translateX(0);
}

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

.cart-head h2 {
  margin-bottom: 0;
  font-size: 1.8rem;
}

.icon-button {
  width: 42px;
  height: 42px;
  border-color: var(--line);
  border-radius: 50%;
}

.icon-button span {
  position: relative;
  width: 18px;
  height: 18px;
}

.icon-button span::before,
.icon-button span::after {
  position: absolute;
  top: 8px;
  left: 1px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.icon-button span::before {
  transform: rotate(45deg);
}

.icon-button span::after {
  transform: rotate(-45deg);
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 10px;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.cart-line strong {
  font-size: 0.98rem;
}

.cart-line span {
  color: var(--muted);
}

.cart-line .cart-status {
  grid-column: 1 / -1;
  font-weight: 800;
}

.empty-cart {
  color: var(--muted);
}

.waitlist-summary {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(31, 122, 114, 0.18);
  border-radius: var(--radius);
  background: rgba(31, 122, 114, 0.07);
}

.waitlist-summary span {
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.waitlist-summary strong {
  font-size: 1.1rem;
}

.waitlist-summary p {
  margin-bottom: 0;
  color: var(--muted);
}

.waitlist-form {
  display: grid;
  align-content: start;
  gap: 14px;
}

.waitlist-form label,
.waitlist-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.waitlist-form fieldset {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.waitlist-form legend {
  padding: 0 4px;
}

.waitlist-form fieldset label {
  grid-template-columns: auto 1fr;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
}

.waitlist-form input[type="radio"] {
  width: 18px;
  height: 18px;
  min-height: 0;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.waitlist-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.waitlist-status.success {
  color: var(--teal-dark);
}

.waitlist-status.error {
  color: var(--clay-dark);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 1.1rem;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: 40px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
}

.footer-links a,
.site-footer > a {
  font-weight: 900;
  color: var(--teal);
}

.content-page {
  background: var(--paper);
}

.content-page .content-header {
  position: sticky;
  color: var(--ink);
  background: rgba(251, 250, 247, 0.96);
  box-shadow: 0 1px 0 rgba(23, 32, 29, 0.1);
  backdrop-filter: blur(16px);
}

.content-page .button.secondary {
  color: var(--white);
}

.content-hero {
  display: grid;
  gap: 16px;
  padding: clamp(72px, 9vw, 116px) clamp(20px, 5vw, 64px) clamp(40px, 6vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 24, 22, 0.94), rgba(18, 24, 22, 0.72)),
    var(--charcoal);
}

.content-hero h1 {
  margin-bottom: 0;
}

.content-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(240, 189, 125, 0.44);
  border-radius: 999px;
  color: #f0bd7d;
  font-size: 0.86rem;
  font-weight: 900;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(46px, 7vw, 86px) clamp(20px, 5vw, 64px);
}

.content-main,
.content-side {
  min-width: 0;
}

.content-main {
  max-width: 830px;
}

.content-main h2,
.content-side h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.content-main h2:not(:first-child),
.content-side h2:not(:first-child) {
  margin-top: 32px;
}

.content-main p,
.content-side p,
.content-side dd,
.content-main li,
.content-side li {
  color: var(--muted);
}

.check-list,
.link-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.check-list li,
.link-list li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before,
.link-list li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
  content: "+";
}

.link-list a {
  color: var(--teal);
  font-weight: 900;
}

.content-side {
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.content-side dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.content-side dt {
  font-weight: 900;
}

.content-side dd {
  margin: 0 0 8px;
}

.faq-list.compact {
  margin-top: 18px;
}

.policy-main {
  padding-top: 72px;
}

.policy-hero {
  padding: clamp(82px, 11vw, 140px) clamp(20px, 5vw, 64px) clamp(42px, 7vw, 78px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 24, 22, 0.94), rgba(18, 24, 22, 0.76)),
    var(--charcoal);
}

.policy-hero .eyebrow {
  color: #f0bd7d;
}

.policy-hero h1 {
  margin-bottom: 18px;
}

.policy-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(44px, 7vw, 84px) clamp(20px, 5vw, 64px);
}

.policy-grid article {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.policy-grid h2 {
  font-size: 1.6rem;
}

.policy-grid p {
  color: var(--muted);
}

.policy-grid p:last-child {
  margin-bottom: 0;
}

.policy-action {
  width: max-content;
  margin-top: 4px;
}

.withdrawal-shell {
  display: grid;
  gap: 18px;
  padding: clamp(44px, 7vw, 84px) clamp(20px, 5vw, 64px);
}

.withdrawal-form,
.withdrawal-result {
  width: min(860px, 100%);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-grid label,
.check-row {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.form-grid label:nth-of-type(3),
.form-grid label:nth-of-type(4),
.form-grid label:nth-of-type(5),
.form-grid .button {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fffefa;
}

input {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 112px;
  padding: 12px 14px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(31, 122, 114, 0.16);
}

.confirmation-step {
  display: grid;
  gap: 18px;
}

.confirmation-step h2,
.withdrawal-result h2 {
  margin-bottom: 0;
  font-size: 1.8rem;
}

.confirmation-step p,
.withdrawal-result p {
  color: var(--muted);
}

.review-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.review-list div {
  display: grid;
  grid-template-columns: minmax(140px, 0.4fr) minmax(0, 1fr);
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7f8f4;
}

.review-list dt {
  color: var(--muted);
  font-weight: 900;
}

.review-list dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.check-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(31, 122, 114, 0.24);
  border-radius: var(--radius);
  background: rgba(31, 122, 114, 0.07);
}

.check-row input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 3px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-actions .button {
  width: auto;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: min(660px, 84svh);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(18, 24, 22, 0.94), rgba(18, 24, 22, 0.46)),
      linear-gradient(0deg, rgba(18, 24, 22, 0.66), rgba(18, 24, 22, 0.02) 48%);
  }

  .product-grid,
  .demand-section,
  .model-layout,
  .plan-section,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 64px;
    padding: 10px 16px;
  }

  .brand {
    font-size: 0.98rem;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .hero {
    min-height: 0;
  }

  .hero-media img {
    object-position: 60% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(18, 24, 22, 0.95), rgba(18, 24, 22, 0.62)),
      linear-gradient(0deg, rgba(18, 24, 22, 0.72), rgba(18, 24, 22, 0.16));
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding: 88px 0 34px;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .finder {
    padding: 14px;
  }

  .finder-row {
    grid-template-columns: 1fr;
  }

  select {
    width: 100%;
  }

  .quick-shop,
  .demand-section,
  .model-section,
  .faq-section,
  .plan-section,
  .content-grid {
    padding: 52px 16px;
  }

  .content-hero {
    padding: 88px 16px 42px;
  }

  .product-card {
    grid-template-rows: 190px 1fr;
  }

  .selector-group {
    grid-template-columns: 1fr;
  }

  .compat-table [role="row"] {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .table-head {
    display: none !important;
  }

  .plan-steps li {
    grid-template-columns: 1fr;
  }

  .plan-steps span {
    grid-row: auto;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .policy-grid {
    grid-template-columns: 1fr;
    padding: 42px 16px;
  }

  .withdrawal-shell {
    padding: 42px 16px;
  }

  .form-grid,
  .review-list div {
    grid-template-columns: 1fr;
  }

  .policy-action,
  .form-actions .button {
    width: 100%;
  }
}

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