:root {
  --black: #050505;
  --dark: #111111;
  --charcoal: #191919;
  --navy: #0f235f;
  --cobalt: #1c49c7;
  --blue-soft: #e8efff;
  --gold: #b89b5e;
  --gold-light: #d6bd7b;
  --cream: #f7f4ef;
  --soft: #f3f0ea;
  --white: #ffffff;
  --text: #181818;
  --muted: #635d58;
  --border: rgba(184, 155, 94, 0.28);
  --card-border: rgba(15, 35, 95, 0.1);
  --shadow: 0 24px 70px rgba(7, 16, 43, 0.12);
  --shadow-soft: 0 16px 45px rgba(7, 16, 43, 0.08);
  --max: 1180px;
  --radius: 28px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(214, 189, 123, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at top right,
      rgba(28, 73, 199, 0.08),
      transparent 28%
    ),
    var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.page-shell {
  overflow: clip;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 1px solid rgba(184, 155, 94, 0.2);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
}

.nav {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 34px;
  min-height: 96px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  width: 255px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 42px);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-links a:not(.btn):hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px !important;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
  text-align: center;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  padding: 86px 0 72px;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.95) 0%,
    rgba(10, 16, 38, 0.93) 58%,
    rgba(244, 240, 234, 0.9) 100%
  );
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 16% 26%,
      rgba(214, 189, 123, 0.24),
      transparent 24%
    ),
    radial-gradient(
      circle at 78% 18%,
      rgba(28, 73, 199, 0.25),
      transparent 20%
    ),
    radial-gradient(
      circle at 88% 78%,
      rgba(255, 255, 255, 0.12),
      transparent 16%
    );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.06;
}

h1 {
  font-size: clamp(40px, 6vw, 52px);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(34px, 4.3vw, 58px);
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}

h3 {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.03em;
}

.hero-lead,
.section-subtitle,
.feature-copy p,
.app-strip-card p,
.feature-card p,
.benefit-card p,
.faq-list p,
.footer p {
  font-size: 18px;
}

.hero-lead {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 32px;
}

.hero-tags span {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(214, 189, 123, 0.36);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-buttons a {
  display: inline-flex;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.store-buttons a:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.store-buttons img {
  width: auto;
  height: 56px;
  border-radius: 12px;
}

.hero-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.hero-visual {
  justify-self: end;
  width: min(100%, 760px);
}

.hero-device-frame {
  position: relative;
  padding: clamp(16px, 2vw, 22px);
  border-radius: 36px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.24),
    rgba(255, 255, 255, 0.08)
  );
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.hero-device-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.hero-device-frame img {
  position: relative;
  z-index: 1;
}

.app-strip {
  margin-top: -24px;
  padding-bottom: 24px;
}

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

.app-strip-card {
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 35, 95, 0.08);
  box-shadow: var(--shadow-soft);
}

.strip-label,
.card-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.app-strip-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.section {
  padding: 92px 0;
}

.section-soft {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(184, 155, 94, 0.07) 100%
    ),
    var(--soft);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(
      circle at top right,
      rgba(214, 189, 123, 0.18),
      transparent 18%
    ),
    linear-gradient(180deg, #090909 0%, #101826 100%);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-subtitle {
  color: var(--muted);
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.feature-highlight {
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
  margin-bottom: 54px;
}

.device-card {
  padding: 26px;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(232, 239, 255, 0.98)
  );
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.feature-copy h3 {
  margin-bottom: 18px;
}

.feature-copy p {
  color: var(--muted);
  margin-bottom: 28px;
}

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

.mini-feature-card {
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6f8fe);
  border: 1px solid rgba(15, 35, 95, 0.08);
  box-shadow: 0 10px 26px rgba(15, 35, 95, 0.05);
}

.mini-feature-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.mini-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 260px);
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f8faff);
  border: 1px solid rgba(15, 35, 95, 0.08);
  box-shadow: var(--shadow-soft);
}

.feature-card-copy h3 {
  margin-bottom: 14px;
  font-size: 32px;
}

.feature-card p {
  color: var(--muted);
}

.feature-card-visual {
  display: flex;
  justify-content: center;
}

.feature-card-visual img {
  max-height: 460px;
  width: auto;
  filter: drop-shadow(0 20px 34px rgba(15, 35, 95, 0.16));
}

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

.benefit-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(214, 189, 123, 0.18);
}

.benefit-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(214, 189, 123, 0.16);
  color: var(--gold-light);
  font-weight: 800;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.84);
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.88fr);
  gap: 40px;
  align-items: center;
  padding: 46px;
  border-radius: 34px;
  background:
    radial-gradient(
      circle at top left,
      rgba(214, 189, 123, 0.22),
      transparent 26%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.98),
      rgba(232, 239, 255, 0.96)
    );
  border: 1px solid rgba(15, 35, 95, 0.08);
  box-shadow: var(--shadow);
}

.download-stack {
  position: relative;
  min-height: 560px;
}

.stack-card {
  position: absolute;
  inset: auto;
  width: min(100%, 320px);
  padding: 16px;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(248, 250, 255, 0.98)
  );
  border: 1px solid rgba(15, 35, 95, 0.08);
  box-shadow: var(--shadow-soft);
}

.stack-card img {
  width: 100%;
  border-radius: 20px;
}

.stack-card-back {
  top: 18px;
  left: 14px;
  transform: rotate(-7deg);
}

.stack-card-front {
  right: 0;
  bottom: 0;
  transform: rotate(8deg);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 24px 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f8faff);
  border: 1px solid rgba(15, 35, 95, 0.08);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}

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

.faq-list p {
  margin-top: 14px;
  color: var(--muted);
}

.footer {
  padding: 72px 0 28px;
  color: rgba(255, 255, 255, 0.82);
  background: #050505;
  border-top: 1px solid rgba(184, 155, 94, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.8fr;
  gap: 34px;
  margin-bottom: 34px;
}

.footer-logo {
  width: 240px;
  margin-bottom: 22px;
}

.footer h4 {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.footer-heading-spacer {
  margin-top: 24px;
}

.footer p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.74);
}

.footer-address {
  display: inline-block;
}

.footer a {
  color: rgba(255, 255, 255, 0.82);
}

.footer a:hover,
.phone-cta:hover {
  color: var(--gold-light);
}

.phone-cta {
  color: var(--gold-light);
  font-size: 26px;
  font-weight: 700;
}

.footer-download-link {
  margin-top: 18px;
}

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

.footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 80;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sticky-cta .btn {
  pointer-events: auto;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .feature-highlight,
  .download-panel,
  .feature-card {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-visual,
  .download-visual {
    justify-self: stretch;
  }

  .hero-visual {
    max-width: 760px;
    margin: 0 auto;
  }

  .feature-card-visual {
    justify-content: flex-start;
  }

  .feature-card-visual img {
    max-height: 380px;
  }

  .app-strip-grid,
  .benefits-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .store_2nd {
    margin-bottom: 90px;
  }
  .nav {
    grid-template-columns: 1fr auto;
    gap: 16px;
    min-height: 82px;
  }

  .logo-img {
    width: 188px;
  }

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

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px;
    background: rgba(9, 9, 9, 0.98);
    border: 1px solid rgba(214, 189, 123, 0.18);
    border-radius: 22px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
  }

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

  .download-panel {
    padding: 34px 24px;
  }

  .download-stack {
    min-height: 460px;
  }

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

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

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

  .hero {
    padding: 56px 0 54px;
  }

  .section {
    padding: 68px 0;
  }

  .hero-tags {
    gap: 10px;
  }

  .hero-tags span {
    width: fit-content;
  }

  .store-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .store-buttons img {
    height: 52px;
  }

  .app-strip-card,
  .feature-card,
  .benefit-card,
  .faq-list details {
    padding: 22px;
  }

  .feature-card-copy h3 {
    font-size: 28px;
  }

  .feature-card-visual {
    justify-content: center;
  }

  .feature-card-visual img {
    margin-inline: auto;
  }

  .download-stack {
    min-height: 360px;
  }

  .stack-card {
    width: min(100%, 250px);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
