:root {
  --bg: #09070a;
  --bg2: #020204;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.9);
  --muted: rgba(255, 255, 255, 0.66);
  --muted2: rgba(255, 255, 255, 0.5);
  --gold: #d6b36a;
  --gold2: #f1d6a6;
  --accentRgb: 214, 179, 106;
  --accent2Rgb: 241, 214, 166;
  --light: #f4f6f7;
  --darkText: rgba(12, 13, 16, 0.92);
  --darkMuted: rgba(12, 13, 16, 0.68);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.6);
  --shadow2: 0 12px 30px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius2: 26px;
  --max: 1180px;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
  --serif: ui-serif, Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--sans);
  background: linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

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

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--line);
  transform: translateY(-140%);
  transition: transform 180ms ease;
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.gold {
  color: var(--gold2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 9, 11, 0.25);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header[data-scrolled] {
  background: rgba(8, 9, 11, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 44px;
  width: auto;
}

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

.nav-link {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.nav-link:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.nav-link-ghost {
  color: var(--text);
  border-color: rgba(var(--accentRgb), 0.38);
  background: rgba(var(--accentRgb), 0.12);
}

.nav-link-ghost:hover {
  border-color: rgba(var(--accent2Rgb), 0.55);
  background: rgba(var(--accentRgb), 0.16);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  display: block;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;
  z-index: 0;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.86) contrast(1.08) saturate(0.9);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 640px) 1fr;
  align-items: center;
  gap: 24px;
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(96px, 12svh, 140px) 0 clamp(56px, 8svh, 90px);
  z-index: 2;
}

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

.hero-spacer {
  min-height: 1px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.94) 0%,
      rgba(0, 0, 0, 0.88) 28%,
      rgba(0, 0, 0, 0.62) 44%,
      rgba(0, 0, 0, 0.28) 52%,
      rgba(0, 0, 0, 0.0) 60%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.32) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 520px at 18% 28%, rgba(var(--accentRgb), 0.08), transparent 58%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 55%);
  pointer-events: none;
  z-index: 1;
}

.hero-title {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-weight: 640;
  letter-spacing: -0.01em;
  line-height: 1.05;
  font-size: clamp(38px, 4.9vw, 64px);
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.52);
}

.hero-title-primary,
.hero-title-secondary {
  display: block;
  width: fit-content;
  max-width: 100%;
}

.hero-title-primary {
  color: rgba(var(--accentRgb), 0.95);
  background: linear-gradient(180deg, #f7f2e8 0%, #e8dcc6 26%, #c6a15c 58%, #8b5a1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.hero-title-secondary {
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.08em;
}

.hero-subtitle {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.65;
  max-width: 46ch;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.46);
}

.hero-underline {
  width: 54px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--accent2Rgb), 0.92), rgba(var(--accentRgb), 0.62));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  margin: 14px 0 18px;
}

.btn-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 auto;
}

.btn-hero {
  padding: 13px 18px;
  border-radius: 14px;
  border-color: rgba(var(--accentRgb), 0.64);
  background: linear-gradient(135deg, rgba(var(--accent2Rgb), 0.95), rgba(var(--accentRgb), 0.92));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}

.btn-hero:hover {
  border-color: rgba(var(--accent2Rgb), 0.7);
  background: linear-gradient(135deg, rgba(var(--accent2Rgb), 0.98), rgba(var(--accentRgb), 0.96));
}

.btn-hero-fill {
  min-width: 190px;
}

.btn-hero-outline {
  min-width: 160px;
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(var(--accent2Rgb), 0.6);
  color: rgba(var(--accent2Rgb), 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.btn-hero-outline:hover {
  background: rgba(0, 0, 0, 0.34);
  border-color: rgba(var(--accent2Rgb), 0.8);
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 18px;
  max-width: 640px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
}

.hero-trust-item:first-child {
  padding-left: 0;
}

.hero-trust-divider {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-trust-icon {
  width: 20px;
  height: 20px;
  color: rgba(var(--accent2Rgb), 0.92);
  display: block;
}

.hero-trust-text {
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  line-height: 1.1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  user-select: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  border-color: rgba(var(--accentRgb), 0.92);
  background: rgba(var(--accentRgb), 0.92);
  color: rgba(0, 0, 0, 0.86);
}

.btn-primary:hover {
  border-color: rgba(var(--accent2Rgb), 0.92);
  background: rgba(var(--accent2Rgb), 0.95);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.btn-block {
  width: 100%;
}

.section-light {
  background: var(--light);
  color: var(--darkText);
}

.section-dark {
  background: rgba(0, 0, 0, 0.46);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-light .section-subtitle,
.section-light .card-text,
.section-light .lede {
  color: var(--darkMuted);
}

.section-light .card {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(0, 0, 0, 0.10);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.10);
}

.section-light .card-title {
  color: rgba(12, 13, 16, 0.92);
}

.section-light .list {
  color: rgba(12, 13, 16, 0.72);
}

.section-light .section-subtitle a {
  color: rgba(12, 13, 16, 0.92);
  text-decoration: underline;
  text-decoration-color: rgba(var(--accentRgb), 0.55);
  text-underline-offset: 3px;
}

.section-light .section-subtitle a:hover {
  text-decoration-color: rgba(var(--accentRgb), 0.9);
}

.section {
  padding: 66px 0;
}

.section-alt {
  background: radial-gradient(1000px 520px at 80% 30%, rgba(214, 179, 106, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head {
  margin-bottom: 26px;
}

.section-title {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: -0.01em;
}

.section-choose {
  padding-top: 40px;
}

.choose-head {
  text-align: center;
  margin-bottom: 26px;
}

.choose-title {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  letter-spacing: -0.02em;
  color: rgba(12, 13, 16, 0.92);
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.choose-item {
  padding: 28px 18px 26px;
  text-align: center;
}

.choose-item + .choose-item {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.choose-icon {
  width: 44px;
  height: 44px;
  display: block;
  margin: 0 auto 12px;
  color: rgba(var(--accentRgb), 0.9);
}

.choose-item-title {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: rgba(12, 13, 16, 0.92);
}

.choose-item-text {
  margin: 0 auto;
  max-width: 30ch;
  color: rgba(12, 13, 16, 0.68);
  font-size: 12px;
  line-height: 1.6;
}

.section-standards {
  padding-top: 40px;
  padding-bottom: 78px;
}

.standards-head {
  text-align: center;
  margin-bottom: 22px;
}

.standards-title {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  letter-spacing: -0.02em;
  color: rgba(12, 13, 16, 0.92);
}

.standards-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
}

.standards-item {
  flex: 1 1 0;
  padding: 18px 12px 0;
  text-align: center;
}

.standards-divider {
  width: 1px;
  height: 150px;
  background: rgba(0, 0, 0, 0.08);
}

.standards-icon {
  width: 52px;
  height: 52px;
  display: block;
  margin: 0 auto 12px;
  color: rgba(var(--accentRgb), 0.9);
}

.standards-label {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.35;
  color: rgba(12, 13, 16, 0.86);
}

.section-how-app {
  padding-top: 24px;
}

.how-app {
  display: flow-root;
}

.how-app-img {
  float: left;
  width: min(520px, 46%);
  max-width: 520px;
  height: auto;
  border-radius: 26px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.9);
  margin: 6px 26px 16px 0;
}

.how-app-title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 34px;
  letter-spacing: -0.02em;
  color: rgba(12, 13, 16, 0.92);
}

.how-app-text {
  margin: 0 0 12px;
  color: rgba(12, 13, 16, 0.72);
  line-height: 1.75;
  max-width: none;
}

.how-app-text a {
  color: rgba(12, 13, 16, 0.92);
  text-decoration: underline;
  text-decoration-color: rgba(var(--accentRgb), 0.6);
  text-underline-offset: 3px;
}

.how-app-text a:hover {
  text-decoration-color: rgba(var(--accentRgb), 0.9);
}

.how-app-cta {
  margin-top: 18px;
}

.review-text {
  margin: 12px 0 14px;
  color: rgba(12, 13, 16, 0.72);
  line-height: 1.75;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(12, 13, 16, 0.62);
  font-size: 13px;
}

.review-name {
  color: rgba(12, 13, 16, 0.82);
  font-weight: 650;
}

.review-sep {
  color: rgba(12, 13, 16, 0.35);
}

.review-tag {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(0, 0, 0, 0.02);
}

.section-faq {
  padding-bottom: 62px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.faq-intro {
  display: grid;
  gap: 14px;
  align-content: start;
}

.faq-title {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 34px;
  letter-spacing: -0.02em;
  color: rgba(12, 13, 16, 0.92);
}

.faq-subtitle {
  margin: 0;
  color: rgba(12, 13, 16, 0.66);
  line-height: 1.7;
}

.faq-sidecard {
  margin-top: 10px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: radial-gradient(700px 260px at 10% 0%, rgba(var(--accentRgb), 0.12), transparent 60%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
  padding: 18px 18px 16px;
}

.faq-sidecard-heading {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 18px;
  color: rgba(12, 13, 16, 0.92);
}

.faq-sidecard-list {
  margin: 0 0 12px;
  padding-left: 18px;
  color: rgba(12, 13, 16, 0.68);
  line-height: 1.6;
}

.faq-sidecard-list li {
  margin: 8px 0;
}

.faq-sidecard-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(12, 13, 16, 0.92);
  text-decoration: underline;
  text-decoration-color: rgba(var(--accentRgb), 0.55);
  text-underline-offset: 3px;
}

.faq-sidecard-link:hover {
  text-decoration-color: rgba(var(--accentRgb), 0.85);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--serif);
  font-size: 18px;
  color: rgba(12, 13, 16, 0.92);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(var(--accentRgb), 0.35);
  background: rgba(var(--accentRgb), 0.10);
  color: rgba(var(--accentRgb), 0.92);
}

.faq-item[open] .faq-question::after {
  content: "–";
}

.faq-answer {
  padding: 0 18px 18px;
}

.faq-answer p {
  margin: 0;
  color: rgba(12, 13, 16, 0.72);
  line-height: 1.75;
}

.faq-answer a {
  color: rgba(12, 13, 16, 0.92);
  text-decoration: underline;
  text-decoration-color: rgba(var(--accentRgb), 0.65);
  text-underline-offset: 3px;
}

.faq-item[open] {
  border-color: rgba(var(--accentRgb), 0.28);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.faq-question:focus-visible {
  outline: 2px solid rgba(12, 13, 16, 0.18);
  outline-offset: 2px;
}

.final-cta {
  padding: 60px 0 78px;
}

.final-cta.section-light {
  background: radial-gradient(1000px 520px at 18% 40%, rgba(var(--accentRgb), 0.1), transparent 62%),
    radial-gradient(900px 520px at 82% 70%, rgba(var(--accent2Rgb), 0.08), transparent 66%), var(--light);
}

.final-cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr) minmax(0, 260px);
  align-items: stretch;
  gap: 30px;
  padding: 30px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(22, 24, 30, 0.96), rgba(10, 10, 14, 0.92));
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.final-cta-card:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--accentRgb), 0.26);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.26);
}

.final-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(760px 260px at 18% 50%, rgba(var(--accentRgb), 0.18), transparent 62%),
    radial-gradient(680px 240px at 92% 40%, rgba(255, 255, 255, 0.08), transparent 60%);
  pointer-events: none;
}

.final-cta-card > * {
  position: relative;
}

.final-cta-media {
  height: 176px;
  align-self: center;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.final-cta-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 45%;
  filter: brightness(0.9) contrast(1.1) saturate(0.9);
  transform: scale(1.06);
}

.final-cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.24) 100%);
  pointer-events: none;
}

.final-cta-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6px 0;
}

.final-cta-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(var(--accent2Rgb), 0.92);
}

.final-cta-title {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
}

.final-cta-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  max-width: 64ch;
}

.final-cta-text a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-decoration-color: rgba(var(--accentRgb), 0.65);
  text-underline-offset: 3px;
}

.final-cta-text a:hover {
  text-decoration-color: rgba(var(--accent2Rgb), 0.8);
}

.final-cta-side {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 22px;
}

.final-cta-side::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.final-cta-stores {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.final-cta-stores .store-badge {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
}

.final-cta-stores .store-badge img {
  height: 58px;
}

.final-cta-btn {
  height: 44px;
  padding: 0 16px;
  border-radius: 12px;
}

.final-cta-btn-fill {
  border-color: rgba(var(--accentRgb), 0.85);
  background: linear-gradient(135deg, rgba(var(--accent2Rgb), 0.95), rgba(var(--accentRgb), 0.92));
  color: rgba(0, 0, 0, 0.86);
}

.final-cta-btn-fill:hover {
  border-color: rgba(var(--accent2Rgb), 0.92);
  background: linear-gradient(135deg, rgba(var(--accent2Rgb), 0.98), rgba(var(--accentRgb), 0.96));
}

.final-cta-btn-outline {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.final-cta-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

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

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow2);
  padding: 18px 18px 16px;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(var(--accentRgb), 0.32);
  background: rgba(var(--accentRgb), 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.icon {
  width: 20px;
  height: 20px;
  fill: rgba(var(--accent2Rgb), 0.95);
}

.card-title {
  margin: 0 0 6px;
  font-size: 18px;
}

.card-text {
  margin: 0 0 12px;
  color: var(--muted);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.list li {
  margin: 6px 0;
}

.split {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  align-items: center;
}

.lede {
  margin: 14px 0 0;
  max-width: 62ch;
}

.split-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.split-copy .store-row {
  margin-top: 12px;
}

.split-art {
  display: flex;
  justify-content: flex-end;
}


.verified-showcase {
  position: relative;
  width: min(300px, 100%);
  display: flex;
  justify-content: flex-end;
}

.verified-img {
  width: 100%;
  height: auto;
  max-height: 540px;
  border-radius: 32px;
  box-shadow: 0 34px 58px rgba(0, 0, 0, 0.28);
}

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

.feature {
  text-align: center;
  padding: 8px 6px;
  border-radius: 0;
  border: 0;
  background: transparent;
}

.feature .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  margin: 0 auto 12px;
  border: 1px solid rgba(var(--accentRgb), 0.55);
  background: rgba(0, 0, 0, 0.25);
}

.feature .icon {
  width: 22px;
  height: 22px;
}

.feature .card-title {
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.feature .card-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.6;
}

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

.tile {
  display: grid;
  gap: 12px;
}

.tile-media {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  padding: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.tile-shot {
  width: min(220px, 100%);
  height: auto;
  border-radius: 26px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.9);
}

.tile-title {
  margin: 0;
  font-size: 16px;
  color: rgba(12, 13, 16, 0.92);
}

.tile-text {
  margin: 0;
  color: rgba(12, 13, 16, 0.68);
}

.band {
  position: relative;
  padding: 72px 0;
  overflow: hidden;
}

.band-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.band-photo {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
}

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.52) 50%, rgba(0, 0, 0, 0.28) 100%);
}

.band-copy {
  position: relative;
  max-width: 60ch;
}

.band-title {
  margin: 0 0 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(var(--accent2Rgb), 0.92);
  font-size: 14px;
}

.band-text {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
}

.cta {
  position: relative;
  padding: 76px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-photo {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 520px at 20% 30%, rgba(var(--accentRgb), 0.14), transparent 58%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.52) 55%, rgba(0, 0, 0, 0.26) 100%);
}

.cta-inner {
  position: relative;
  max-width: 62ch;
}

.cta-title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 36px;
  letter-spacing: -0.02em;
}

.cta-text {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.76);
}

.cta-actions {
  margin-top: 16px;
}

.quote {
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow2);
}

.quote-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(26px 26px at 28% 22%, rgba(241, 214, 166, 0.45), rgba(214, 179, 106, 0.08));
  border: 1px solid rgba(214, 179, 106, 0.35);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  color: rgba(241, 214, 166, 0.95);
}

.avatar-alt {
  background: radial-gradient(26px 26px at 28% 22%, rgba(255, 255, 255, 0.25), rgba(214, 179, 106, 0.08));
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
}

.avatar-gold {
  background: radial-gradient(26px 26px at 28% 22%, rgba(241, 214, 166, 0.6), rgba(214, 179, 106, 0.12));
}

.quote-name {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.quote-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted2);
  font-size: 12px;
}

.quote-text {
  margin: 0 0 12px;
  color: var(--muted);
}

.quote-stars {
  color: rgba(214, 179, 106, 0.95);
  letter-spacing: 0.12em;
  font-size: 12px;
}

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

.price-card {
  position: relative;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow2);
  padding: 18px;
}

.price-card-featured {
  border-color: rgba(214, 179, 106, 0.42);
  background: radial-gradient(900px 520px at 40% 10%, rgba(214, 179, 106, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.05);
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(214, 179, 106, 0.35);
  background: rgba(214, 179, 106, 0.1);
  color: rgba(241, 214, 166, 0.95);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-name {
  margin: 0 0 10px;
  font-size: 18px;
}

.price-value {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 34px;
  letter-spacing: -0.02em;
}

.spacer {
  height: 16px;
}

.download {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(1000px 520px at 10% 10%, rgba(214, 179, 106, 0.12), transparent 58%),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  padding: 18px;
}

.download-title {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 22px;
}

.download-text {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

.store-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.store-badge {
  display: inline-flex;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 160ms ease, filter 160ms ease;
}

.store-badge:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.store-badge:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.store-badge img {
  display: block;
  width: auto;
  height: 54px;
}

.download-hint {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.download-art {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.download-art img {
  width: min(520px, 100%);
  height: auto;
  filter: drop-shadow(0 26px 46px rgba(0, 0, 0, 0.55));
}

.price-unit {
  font-size: 14px;
  color: var(--muted2);
  margin-left: 4px;
}

.notice {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.notice p {
  margin: 0;
}

.apply {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(1000px 520px at 10% 10%, rgba(214, 179, 106, 0.12), transparent 58%),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  padding: 18px;
}

.apply-copy .section-title {
  margin-bottom: 8px;
}

.apply-bullets {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.bullet {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.76);
}

.bullet-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 6px;
  background: radial-gradient(circle at 30% 30%, rgba(241, 214, 166, 0.9), rgba(214, 179, 106, 0.3));
  border: 1px solid rgba(214, 179, 106, 0.45);
  flex: 0 0 auto;
}

.form {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  padding: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.label {
  font-size: 13px;
  color: var(--muted2);
}

.input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.input:focus {
  border-color: rgba(214, 179, 106, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.textarea {
  resize: vertical;
  min-height: 112px;
}

.form-hint {
  margin: 10px 0 0;
  min-height: 20px;
  color: rgba(241, 214, 166, 0.92);
  font-size: 13px;
}

.footer {
  padding: 44px 0 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}

.footer-inner {
  display: grid;
  gap: 18px;
}

.footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.footer-brand-link {
  display: inline-flex;
}

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

.footer-share {
  justify-content: center;
}

.footer-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

.footer-link {
  color: rgba(255, 255, 255, 0.78);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.footer-link:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.footer-link-ghost {
  background: transparent;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-legal {
  margin: 0;
}

.back-to-top-fab {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b0b10;
  background: rgba(214, 179, 106, 0.92);
  border: 1px solid rgba(214, 179, 106, 0.7);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  z-index: 20;
}

.back-to-top-fab svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.back-to-top-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.36);
  background: rgba(214, 179, 106, 1);
}

.back-to-top-fab:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  max-width: min(520px, calc(100% - 28px));
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(214, 179, 106, 0.38);
  background: rgba(10, 10, 16, 0.86);
  backdrop-filter: blur(16px);
  color: rgba(241, 214, 166, 0.98);
  box-shadow: var(--shadow2);
  transition: opacity 220ms ease, transform 220ms ease;
}

.toast-hide {
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
}

@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 92px 0 36px;
    align-items: start;
  }

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

  .hero {
    min-height: auto;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.16) 32%, rgba(0, 0, 0, 0.44) 100%);
  }

  .hero::after {
    background: radial-gradient(760px 360px at 50% 10%, rgba(var(--accentRgb), 0.08), transparent 62%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.14) 55%, rgba(0, 0, 0, 0.26) 100%);
  }

  .hero-photo {
    object-position: 86% 78%;
    transform: scale(1.04);
    filter: brightness(0.92) contrast(1.06) saturate(0.92);
  }

  .hero-trust {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero-trust-item {
    padding: 0;
  }

  .hero-trust-divider {
    display: none;
  }

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

  .split-art {
    justify-content: center;
  }

  .verified-showcase {
    justify-content: center;
    margin: 0 auto;
  }

  .choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    border-top: 0;
  }

  .choose-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    padding: 20px 16px 18px;
  }

  .choose-item + .choose-item {
    border-left: 0;
  }

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

  .standards-divider {
    display: none;
  }

  .standards-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    padding: 18px 14px 16px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .final-cta-card {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 18px;
    padding: 22px;
  }

  .final-cta-media {
    width: 100%;
    height: 170px;
  }

  .final-cta-stores {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .final-cta-stores .store-badge img {
    height: 54px;
  }

  .final-cta-side {
    justify-content: flex-start;
    padding-left: 0;
  }

  .final-cta-side::before {
    content: none;
  }

  .how-app {
    display: block;
  }

  .how-app-img {
    float: none;
    width: 100%;
    max-width: 520px;
    margin: 0 0 14px;
  }

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

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

  .footer-top {
    flex-direction: column;
    align-items: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .back-to-top-fab {
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 820px) {
  .brand-logo {
    height: 38px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 84px;
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(8, 8, 14, 0.92);
    backdrop-filter: blur(18px);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  body[data-nav-open] .nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-link {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
