@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap");

:root {
  --bg: #0c0b09;
  --ink: #f3efe6;
  --muted: #b7b1a6;
  --gold: #c6a15a;
  --line: rgba(198, 161, 90, .35);
  --card: #161410;
  --field: #100e0c;
  --green: #2fbe82;
  --green-deep: #128a5c;
  --danger: #ffb4b4;
  --shadow: 0 30px 80px rgba(0, 0, 0, .42);
  --serif: "IBM Plex Sans", "Segoe UI", sans-serif;
  --sans: "IBM Plex Sans", "Segoe UI", sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
}
a { color: var(--gold); text-decoration: none; }
button, input { font: inherit; color: inherit; }
.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: #fff;
  color: #111;
  padding: 8px 12px;
  z-index: 5;
}
.skip:focus { top: 12px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 6vw;
  background: var(--bg);
  border-bottom: 1px solid rgba(198, 161, 90, .28);
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand-mark { width: 36px; height: auto; flex: none; color: var(--gold); }
.brand-copy { display: grid; gap: 4px; }
.brand-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .08em;
  white-space: nowrap;
  text-transform: uppercase;
  line-height: 1;
}
.brand-tag {
  color: var(--gold);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .16em;
  line-height: 1.35;
  text-transform: uppercase;
}
.logo { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 600; letter-spacing: .04em; }
.mark {
  width: 34px; height: 34px; display: grid; place-items: center;
  border: 1px solid var(--gold); border-radius: 50%;
  color: var(--gold); font-family: var(--serif);
}
.top-offer { margin: 0 auto 0 8px; color: var(--muted); font-size: 14px; }
.top-offer strong { color: var(--gold); font-weight: 600; }
.top-cta {
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
}

.hero {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 24px));
  margin: 18px auto 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 420px);
  min-height: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #100e0c;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
}
.hero-photo {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 68% center;
}
.hero-form {
  position: relative;
  z-index: 1;
  width: auto;
  margin: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  padding: 22px 18px;
  background: var(--bg);
}
.top-links { display: flex; gap: 18px; margin-left: auto; }
.top-links a { color: var(--muted); font-size: 14px; }
.top-links a:hover { color: var(--ink); }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(198, 161, 90, .35);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  transition: transform .18s ease, opacity .18s ease;
}
.card-head h1 { margin: 4px 0 6px; font-size: 34px; font-family: var(--serif); font-weight: 500; letter-spacing: -0.015em; }
.product { display: flex; align-items: center; gap: 10px; }
.product img { width: 36px; height: 36px; object-fit: contain; }
.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
}
h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.015em; }
.hero-form .card {
  width: 100%;
  background: var(--card);
  border-color: rgba(228, 194, 122, .28);
  box-shadow: none;
  padding: 18px 16px 16px;
}
.hero-form .card-head h2 { font-size: 28px; }
.hero-form .field { margin-top: 8px; }
.hero-form .field input,
.hero-form .phone { min-height: 46px; }
.hero-form .consent-block { margin: 12px 0 10px; }
.hero-form .consent { font-size: 13.5px; }
.hero-form .btn { min-height: 48px; }
.card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 22px 20px 18px;
  backdrop-filter: blur(18px);
}
.card-head h2 { margin: 4px 0 6px; font-size: 34px; }
.card-head p { margin: 0; color: var(--muted); }
.card-kicker { margin: 0; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-size: 12px; }
.status {
  display: inline-flex; align-items: center; gap: 8px;
  color: #b7f3d6; font-size: 13px; margin-bottom: 10px;
}
.status i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(47,190,130,.15); }

.field { display: grid; gap: 6px; margin-top: 12px; }
.field span { font-size: 13px; color: #d5dbe3; }
.field input, .phone {
  width: 100%;
  background: var(--field);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  min-height: 52px;
}
.field input {
  padding: 0 14px;
  outline: none;
}
.field input:focus { border-color: rgba(228,194,122,.7); }
.field small, .field-note { color: var(--danger); font-size: 13px; }
.phone { display: flex; align-items: center; padding-left: 12px; }
.phone input { border: 0; background: transparent; min-height: 50px; }
.cc {
  color: var(--gold);
  font-weight: 600;
  padding-right: 10px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hp { position: absolute; left: -10000px; height: 0; overflow: hidden; }

.consent-block { margin: 16px 0 14px; display: grid; gap: 8px; }
.consent { position: relative; display: flex; gap: 12px; align-items: flex-start; cursor: pointer; line-height: 1.4; }
.consent input { position: absolute; opacity: 0; width: 46px; height: 28px; margin: 0; }
.switch {
  width: 46px; height: 28px; border-radius: 99px; background: #243246; position: relative; flex: none; margin-top: 1px;
}
.switch::after {
  content: ""; width: 22px; height: 22px; border-radius: 50%; background: white;
  position: absolute; top: 3px; left: 3px; transition: transform .18s ease;
}
.consent input:checked + .switch { background: var(--green-deep); }
.consent input:checked + .switch::after { transform: translateX(18px); }
.consent input:focus-visible + .switch { outline: 2px solid var(--gold); outline-offset: 2px; }
.text-link { font-size: 14px; }

.btn {
  width: 100%;
  border: 0;
  border-radius: 14px;
  min-height: 54px;
  background: linear-gradient(180deg, #f0d078, #c6a15a);
  color: #1c1608;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
}
.btn:hover { filter: brightness(1.05); }
.btn[disabled] { opacity: .7; cursor: progress; }
.fine, .disclaimer { color: var(--muted); font-size: 12px; line-height: 1.45; }
.fine { margin: 10px 0 0; }
.form-alert {
  margin-top: 14px;
  background: rgba(255, 120, 120, .1);
  color: var(--danger);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
}

.seam {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(640px, calc(100% - 40px));
  margin: 26px auto 4px;
}
.seam-line {
  position: relative;
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a6843e 12%, #f0d078);
}
.seam-line::before,
.seam-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  background: #e8c878;
  transform: translateY(-50%) rotate(45deg);
}
.seam-line:first-child::before { left: 18%; }
.seam-line:first-child::after { right: 0; width: 1px; height: 11px; transform: translateY(-50%); background: #f0d078; }
.seam-line:last-child {
  background: linear-gradient(90deg, #f0d078, #a6843e 88%, transparent);
}
.seam-line:last-child::before { left: 0; width: 1px; height: 11px; transform: translateY(-50%); background: #f0d078; }
.seam-line:last-child::after { right: 18%; }
.seam-mark {
  position: relative;
  width: 22px;
  height: 22px;
  flex: none;
}
.seam-mark::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: linear-gradient(145deg, #f6e0a4, #c6a15a 46%, #8a6428);
  transform: rotate(45deg);
  box-shadow: 0 0 0 5px rgba(198, 161, 90, .16);
}

.why {
  width: min(1180px, calc(100% - 24px));
  margin: 8px auto 36px;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 40px;
  align-items: center;
}
.why-visual { margin: 0; }
.why-visual img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: 62% center;
}
.why-copy h2 { margin: 0 0 8px; font-size: 42px; }
.why-lead {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}
.why-list { list-style: none; margin: 18px 0 0; padding: 0; }
.why-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 8px 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(198, 161, 90, .28);
}
.why-list h3 { margin: 0 0 4px; font-size: 18px; font-weight: 600; }
.why-list p { margin: 0; color: var(--muted); line-height: 1.5; }
.why-num { font-family: var(--serif); color: var(--gold); font-size: 22px; line-height: 1.2; }

.insight {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.9fr);
  gap: 40px;
  align-items: center;
}
.insight h2 { margin: 0 0 12px; font-size: 42px; line-height: 1.08; }
.insight-copy > p { margin: 0 0 8px; max-width: 46ch; color: var(--muted); line-height: 1.55; }
.insight-points { list-style: none; margin: 18px 0 0; padding: 0; }
.insight-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(198, 161, 90, .28);
}
.insight-points img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: #f4efe6;
  padding: 6px;
  flex: none;
}
.insight-points strong { font-size: 17px; font-weight: 600; }
.insight-visual { margin: 0; }
.insight-visual svg { display: block; width: 100%; height: auto; }

.join {
  width: min(1180px, calc(100% - 24px));
  margin: 36px auto 32px;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: center;
}
.join-visual { margin: 0; }
.offer-visual {
  display: grid;
  grid-template-columns: 1fr auto 0.78fr;
  align-items: end;
  gap: 18px;
  margin: 0;
  padding: 48px 32px 36px;
  background: #12110e;
}
.offer-piece { display: grid; justify-items: center; gap: 8px; }
.offer-piece img {
  width: min(180px, 100%);
  height: auto;
  object-fit: contain;
  background: #f4efe6;
  padding: 16px;
}
.offer-gift img { width: min(128px, 100%); }
.offer-piece strong { font-size: 28px; font-weight: 500; }
.offer-piece span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.offer-plus { color: var(--gold); font-size: 36px; padding-bottom: 78px; }
.join h2 { margin: 0 0 10px; font-size: 40px; line-height: 1.08; }
.join-lead { margin: 0 0 16px; color: var(--muted); line-height: 1.5; }
.join-card {
  background: var(--card);
  border: 1px solid rgba(198, 161, 90, .35);
  padding: 18px 18px 14px;
}
.join-step {
  margin: 2px 0 0;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.join-card h3 { margin: 6px 0 8px; font-size: 28px; font-family: var(--serif); font-weight: 500; }
.join-card p { margin: 0; color: var(--muted); line-height: 1.5; }
.join-card .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  text-decoration: none;
  color: #1c1608;
}
.join-card .fine { margin-top: 8px; }
.join-card .fine + .fine { margin-top: 4px; }

.board {
  width: 100%;
  margin: 28px 0 0;
  padding: 56px 6vw 48px;
  background: #fff;
  color: #1c1915;
}
.board .eyebrow { color: #8a6424; }
.board h2 { color: #1c1915; }
.section-head h2 {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -.02em;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 14px;
  background: #c6a15a;
}
.price-lead {
  margin: 0 0 28px;
  max-width: 62ch;
  color: #5c564e;
  font-size: 15px;
  line-height: 1.65;
}
.board-inner { width: min(980px, 100%); margin: 0 auto; }
.table-wrap { overflow-x: auto; }
.prices {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-variant-numeric: tabular-nums;
}
.prices th:first-child { width: 40%; }
.prices th:nth-child(n + 2) { width: 20%; }
.prices th,
.prices td {
  text-align: right;
  padding: 18px 0;
  border-bottom: 1px solid #e7e2d9;
  color: #1c1915;
  vertical-align: middle;
}
.prices th:first-child,
.prices td:first-child { text-align: left; }
.prices th {
  padding-top: 0;
  padding-bottom: 12px;
  border-bottom-color: #1c1915;
  color: #6f685e;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  background: transparent;
}
.prices th:not(:first-child),
.prices td:not(:first-child) { padding-left: 24px; }
.prices td:not(:first-child) { font-size: 17px; }
.prices tbody tr:last-child td { border-bottom: 0; }
.prices td:last-child,
.prices th:last-child { color: #8a6424; font-weight: 600; }
.product { font-weight: 600; }
.product img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #f3efe6;
  padding: 6px;
}
.board .disclaimer { color: #6f685e; }

.foot {
  display: flex; flex-wrap: wrap; gap: 14px 22px;
  padding: 22px 6vw 32px;
  color: var(--muted); border-top: 1px solid rgba(255,255,255,.05);
}
.foot strong { color: var(--ink); display: grid; gap: 3px; }
.foot-tag { color: var(--gold); font-size: 9px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }

.legal, .thanks { width: min(760px, calc(100% - 32px)); margin: 28px auto 60px; }
.legal h2 { font-size: 42px; margin-bottom: 8px; }
.legal h3 { margin: 22px 0 6px; }
.legal p { color: var(--muted); line-height: 1.6; }
dialog {
  width: min(640px, calc(100% - 24px));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: var(--card);
  color: var(--ink);
  padding: 18px 18px 8px;
}
dialog::backdrop { background: rgba(0,0,0,.62); }
.dialog-close {
  float: right;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 999px;
  padding: 6px 10px;
  cursor: pointer;
}
.thanks { min-height: calc(100vh - 40px); display: grid; place-items: center; }
.thanks-card h1 { margin: 8px 0 10px; font-size: 46px; }
.thanks-card p { color: var(--muted); line-height: 1.5; }
.ref { color: var(--gold) !important; }
.btn-link { display: grid; place-items: center; text-decoration: none; margin-top: 8px; }

input:-webkit-autofill {
  -webkit-text-fill-color: var(--ink);
  box-shadow: 0 0 0 1000px #100e0c inset;
}

@media (min-width: 861px) {
  .hero {
    min-height: calc(100dvh - 86px);
    margin-bottom: 0;
  }
  .hero-photo { min-height: 0; }
}
@media (max-width: 860px) {
  .hero {
    display: block;
    width: min(560px, calc(100% - 16px));
    min-height: calc(100dvh - 68px);
    margin-top: 0;
    margin-bottom: 0;
  }
  .hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: 62% 40%;
  }
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 11, 9, .55), rgba(12, 11, 9, .84));
    pointer-events: none;
    z-index: 0;
  }
  .hero-form {
    background: transparent;
    min-height: calc(100dvh - 68px);
    padding: 16px 12px;
    align-items: center;
  }
  .hero-form .card {
    background: rgba(16, 14, 12, .72);
    backdrop-filter: blur(4px);
  }
  .topbar { padding: 10px 14px; }
  .top-cta { margin-left: 8px; }
  .nav-toggle { display: inline-flex; }
  .topbar.is-open .nav-toggle-bar:nth-child(2) { transform: translateY(6.5px) rotate(45deg); }
  .topbar.is-open .nav-toggle-bar:nth-child(3) { opacity: 0; }
  .topbar.is-open .nav-toggle-bar:nth-child(4) { transform: translateY(-6.5px) rotate(-45deg); }
  .top-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: 0;
    flex-direction: column;
    gap: 0;
    background: #0c0b09;
    border-bottom: 1px solid rgba(198, 161, 90, .28);
    padding: 6px 0 10px;
    z-index: 4;
  }
  .topbar.is-open .top-links { display: flex; }
  .top-links a { padding: 14px 18px; font-size: 16px; }
  .top-offer { display: none; }
  .brand-mark { width: 30px; }
  .brand-name { font-size: 13px; letter-spacing: .04em; }
  .brand-tag { font-size: 7px; letter-spacing: .12em; }
  .hero-form .field { margin-top: 6px; }
  .hero-form .field input,
  .hero-form .phone { min-height: 44px; font-size: 16px; }
  .hero-form .consent-block { margin: 8px 0; }
  .hero-form .btn { min-height: 46px; }
  .card-head h1 { font-size: 26px; margin: 2px 0 4px; }
  .seam {
    width: min(560px, calc(100% - 28px));
    margin: 22px auto 2px;
    gap: 14px;
  }
  .why {
    display: flex;
    flex-direction: column;
    width: min(560px, calc(100% - 16px));
    gap: 18px;
    margin-top: 10px;
    margin-bottom: 28px;
  }
  .why-visual img { height: 220px; object-position: center 30%; }
  .why-copy h2 { font-size: 32px; }
  .why-lead { font-size: 18px; }
  .insight {
    display: flex;
    flex-direction: column;
    width: min(560px, calc(100% - 16px));
    gap: 18px;
    margin-bottom: 28px;
  }
  .insight h2 { font-size: 32px; }
  .join {
    display: flex;
    flex-direction: column;
    width: min(560px, calc(100% - 16px));
    gap: 16px;
    margin: 28px auto 24px;
  }
  .join-visual { order: -1; }
  .offer-visual { padding: 28px 16px 22px; gap: 10px; }
  .offer-piece img { width: min(120px, 100%); padding: 10px; }
  .offer-gift img { width: min(84px, 100%); }
  .offer-piece strong { font-size: 22px; }
  .offer-plus { font-size: 26px; padding-bottom: 58px; }
  .join h2 { font-size: 32px; }
  .board { padding: 36px 18px 28px; }
  .section-head h2 { font-size: 30px; }
  .price-lead { font-size: 14px; margin-bottom: 8px; }
  .prices, .prices tbody { display: block; }
  .prices thead { display: none; }
  .prices tr {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 12px;
    margin: 0;
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid #e7e2d9;
    background: transparent;
  }
  .prices tbody tr:last-child { border-bottom: 0; padding-bottom: 0; }
  .prices td {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
    border: 0;
    padding: 0;
    text-align: left;
    font-size: 15px;
    color: #1c1915;
  }
  .prices td.product {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    font-size: 16px;
  }
  .prices td.product::before { display: none; }
  .prices td:not(.product)::before {
    content: attr(data-label);
    color: #6f685e;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .prices td:last-child { color: #8a6424; font-weight: 600; }
  .product img { width: 42px; height: 42px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .switch::after { transition: none; }
}
