:root {
  --bg: #102116;
  --bg-deep: #0a160e;
  --panel: rgba(24, 44, 31, 0.74);
  --panel-strong: #173223;
  --panel-soft: #f4eee3;
  --text: #f7efe1;
  --muted: #cfc3ae;
  --muted-deep: #8ca087;
  --gold: #dda74b;
  --gold-soft: #f0d4a0;
  --outline: rgba(244, 238, 227, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(221, 167, 75, 0.22), transparent 34%),
    radial-gradient(circle at 90% 15%, rgba(92, 120, 88, 0.28), transparent 28%),
    linear-gradient(180deg, #173223 0%, var(--bg) 42%, var(--bg-deep) 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(145deg, transparent 0%, rgba(221, 167, 75, 0.08) 48%, transparent 49%) 0 0 / 100% 100%,
    linear-gradient(145deg, transparent 0%, rgba(221, 167, 75, 0.05) 58%, transparent 59%) 0 0 / 100% 100%;
  opacity: 0.65;
}

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

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

.page-shell {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding: 14px 18px;
  border: 1px solid var(--outline);
  border-radius: 999px;
  background: rgba(13, 25, 17, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.brand__text {
  display: grid;
  min-width: 0;
}

.brand__text strong {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand__text span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.hero,
.experience,
.site-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
summary {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.95;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  font-weight: 700;
}

.hero__lede,
.section__header p,
.feature-card p,
.privacy-card p,
.permission-card p,
.experience__copy p,
.experience-card li,
.faq-list p,
.shield-panel__copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero__actions,
.site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--outline);
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button--primary {
  border-color: rgba(221, 167, 75, 0.22);
  color: #172317;
  background: linear-gradient(135deg, #f1d59c, var(--gold));
}

.button--secondary {
  color: var(--text);
  background: rgba(244, 238, 227, 0.04);
}

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

.stat-card,
.feature-card,
.privacy-card,
.permission-card,
.experience-card,
.feature-art,
.shield-panel,
.faq-list details,
.site-footer {
  border: 1px solid var(--outline);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(245, 238, 227, 0.05);
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-soft);
  font-size: 1.7rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero__visual {
  display: grid;
  gap: 18px;
}

.shield-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 20px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(25, 48, 36, 0.86), rgba(35, 56, 41, 0.76));
}

.shield-panel__glow {
  position: absolute;
  inset: auto auto -20% -12%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 167, 75, 0.28), transparent 70%);
}

.shield-panel__icon {
  position: relative;
  width: 108px;
  z-index: 1;
}

.shield-panel__copy {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(244, 238, 227, 0.08);
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shield-panel__copy h2,
.section__header h2,
.experience-card h2,
.experience__copy h2,
.site-footer h2 {
  margin: 12px 0 10px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.feature-art {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #173223;
}

.feature-art img {
  width: 100%;
  height: auto;
}

.section {
  padding: 38px 0;
}

.section--tinted {
  margin: 22px 0;
  padding: 34px;
  border-radius: calc(var(--radius-xl) + 6px);
  background: linear-gradient(180deg, rgba(246, 239, 225, 0.06), rgba(246, 239, 225, 0.02));
  border: 1px solid rgba(244, 238, 227, 0.08);
}

.section--contrast {
  margin: 18px 0;
  padding: 34px;
  border-radius: calc(var(--radius-xl) + 6px);
  background:
    radial-gradient(circle at top right, rgba(221, 167, 75, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(20, 38, 27, 0.98), rgba(11, 22, 14, 0.96));
}

.section__header {
  max-width: 760px;
  margin-bottom: 26px;
}

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

.feature-card,
.privacy-card,
.permission-card,
.experience-card,
.faq-list details {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(245, 238, 227, 0.05);
}

.feature-card h3,
.privacy-card h3,
.permission-card h3 {
  margin: 0 0 10px;
  font-size: 1.9rem;
}

.experience-card {
  background:
    radial-gradient(circle at top, rgba(221, 167, 75, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(244, 238, 227, 0.06), rgba(244, 238, 227, 0.03));
}

.experience-card__label {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f2d49a, var(--gold));
  box-shadow: 0 0 0 6px rgba(221, 167, 75, 0.12);
}

.privacy-card {
  position: relative;
  overflow: hidden;
}

.privacy-card__number {
  display: inline-flex;
  margin-bottom: 22px;
  color: rgba(221, 167, 75, 0.75);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

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

.faq-list details {
  background: rgba(244, 238, 227, 0.04);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.75rem;
  font-weight: 600;
}

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

.faq-list p {
  margin: 12px 0 0;
}

.site-footer {
  margin-top: 28px;
  padding: 30px;
  border-radius: calc(var(--radius-xl) + 6px);
  background:
    radial-gradient(circle at top left, rgba(221, 167, 75, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(20, 38, 27, 0.96), rgba(13, 25, 17, 0.98));
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 540ms ease,
    transform 540ms ease;
}

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

@media (max-width: 980px) {
  .site-header,
  .hero,
  .experience,
  .site-footer,
  .feature-grid,
  .privacy-grid,
  .permission-list {
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 28px;
  }

  .site-nav {
    justify-content: flex-start;
  }

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

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--container));
    padding-top: 14px;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    padding: 16px;
  }

  .brand {
    width: 100%;
  }

  .site-nav {
    width: 100%;
    gap: 12px 16px;
  }

  .shield-panel {
    grid-template-columns: 1fr;
  }

  .shield-panel__icon {
    width: 92px;
  }

  .section--tinted,
  .section--contrast,
  .site-footer {
    padding: 22px;
  }

  .feature-card h3,
  .privacy-card h3,
  .permission-card h3,
  .faq-list summary {
    font-size: 1.65rem;
  }
}

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

  .button,
  .reveal {
    transition: none;
  }
}
