:root {
  --black: #050504;
  --ink: #0d0b09;
  --panel: #15120d;
  --panel-soft: #1d1811;
  --line: rgba(204, 170, 91, 0.28);
  --line-strong: rgba(218, 188, 114, 0.5);
  --gold: #d5b761;
  --gold-strong: #e2c873;
  --ivory: #f2eee5;
  --muted: #a8a19a;
  --soft: #6f6961;
  --shadow: rgba(0, 0, 0, 0.5);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(213, 183, 97, 0.17), transparent 34rem),
    radial-gradient(circle at 13% 42%, rgba(120, 71, 49, 0.14), transparent 30rem),
    linear-gradient(180deg, #080705 0%, var(--black) 52%, #0a0806 100%);
  color: var(--ivory);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: linear-gradient(145deg, #302815, #15110a);
  color: var(--gold-strong);
  font-weight: 800;
}

.brand strong {
  display: block;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(12, 10, 8, 0.76);
  padding: 0.35rem;
}

.site-nav a {
  min-height: 2.35rem;
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(213, 183, 97, 0.15);
  color: var(--ivory);
  outline: none;
}

.hero,
.section,
.policy-wrap {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  min-height: calc(100vh - 5rem);
  padding: 4rem 0 6rem;
}

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

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 1.1rem;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 12vw, 8.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.9;
}

h2 {
  max-width: 13ch;
  margin-bottom: 1rem;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.95;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
}

.lead {
  max-width: 620px;
  color: #d6d0c6;
  font-size: clamp(1.1rem, 2vw, 1.38rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0 1.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  background: linear-gradient(180deg, #e5cb78, #caa955);
  color: #171006;
  box-shadow: 0 1.2rem 3rem rgba(213, 183, 97, 0.2);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ivory);
}

.button.full {
  width: 100%;
}

.support-note {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
}

.support-note a,
.policy a,
.contact-card a:not(.button),
.site-footer a {
  color: var(--gold-strong);
  text-decoration-color: rgba(226, 200, 115, 0.38);
  text-underline-offset: 0.18em;
}

.hero-phone {
  position: relative;
  justify-self: center;
  width: min(100%, 390px);
  border-radius: 2.1rem;
  padding: 0.55rem;
  background: linear-gradient(145deg, rgba(213, 183, 97, 0.34), rgba(255, 255, 255, 0.08), rgba(213, 183, 97, 0.14));
  box-shadow: 0 2.5rem 5rem var(--shadow);
}

.hero-phone::before {
  content: "";
  position: absolute;
  inset: -1.4rem;
  z-index: -1;
  border-radius: 3rem;
  background: radial-gradient(circle, rgba(213, 183, 97, 0.22), transparent 68%);
}

.hero-phone img,
figure img {
  display: block;
  width: 100%;
  border-radius: 1.55rem;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.feature,
.contact-card,
.policy {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(18, 15, 11, 0.88);
}

.feature {
  min-height: 11rem;
  padding: 1.35rem;
}

.feature p,
.support-panel p,
.policy p {
  color: var(--muted);
  line-height: 1.7;
}

.section-heading {
  margin-bottom: 2rem;
}

.screenshot-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
}

figure {
  margin: 0;
}

figure img {
  aspect-ratio: 1179 / 2556;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 2rem 4rem var(--shadow);
}

figcaption {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.support-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.contact-card {
  padding: 1.25rem;
}

.contact-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-card a:not(.button) {
  display: block;
  overflow-wrap: anywhere;
  margin-bottom: 1.2rem;
  font-size: 1.08rem;
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  justify-content: center;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.policy-wrap {
  padding: 4rem 0 6rem;
}

.policy-hero {
  margin-bottom: 2rem;
}

.policy-hero h1 {
  max-width: 15ch;
  font-size: clamp(3.3rem, 10vw, 7rem);
}

.policy-hero p:last-child {
  color: var(--muted);
}

.policy {
  max-width: 900px;
  padding: clamp(1.3rem, 4vw, 3rem);
}

.policy h2 {
  max-width: none;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 850;
  line-height: 1.25;
}

.policy h2:first-child {
  margin-top: 0;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    max-width: 58vw;
    overflow-x: auto;
  }

  .hero,
  .split,
  .support-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 3rem;
  }

  .hero-phone {
    width: min(100%, 330px);
  }

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

  .screenshot-row {
    width: min(100%, 360px);
    margin: 0 auto;
  }

  h1,
  h2 {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: min(100% - 1rem, 1180px);
  }

  .brand small {
    display: none;
  }

  .brand strong {
    letter-spacing: 0.16em;
  }

  .brand-mark {
    width: 2.2rem;
    height: 2.2rem;
  }

  .site-nav a {
    padding-inline: 0.75rem;
    font-size: 0.86rem;
  }

  .hero,
  .section,
  .policy-wrap {
    width: min(100% - 1.25rem, 1180px);
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}
