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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: #000000;
  color: #f2eee6;
  line-height: 1.5;
}

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

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

::selection {
  background: #c9a063;
  color: #1a1408;
}

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 32px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #1a1a1d;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

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

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.brand span {
  font-family: "Newsreader", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 14px;
  color: #b6b6bb;
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f2eee6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 11px;
  border: 1px solid transparent;
  transition: opacity 0.15s;
}

.btn:hover {
  opacity: 0.92;
}

.btn-gold {
  background: #c9a063;
  color: #1a1408;
}

.btn-outline {
  border-color: #2a2a2e;
  color: #f2eee6;
}

.eyebrow {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: #c9a063;
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 88px 0 72px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 60px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: #c9a063;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  color: #b6b6bb;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #2a2a2e;
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 28px;
  font-size: 12px;
  color: #c9c9cf;
}

.badge span {
  color: #c9a063;
}

.phone {
  width: min(290px, 100%);
  margin: 0 auto;
  border: 1px solid #232327;
  border-radius: 42px;
  padding: 8px;
  box-shadow: 0 50px 110px -30px rgba(0, 0, 0, 0.9);
}

.phone-screen {
  background: #000;
  border-radius: 34px;
  overflow: hidden;
}

.phone-video {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1b1b1e, #121214);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  padding-left: 3px;
}

.phone-body {
  padding: 18px 20px 22px;
}

.phone-title {
  font-family: "Newsreader", Georgia, serif;
  font-size: 19px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.phone-meta {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9a063;
  font-weight: 600;
  margin-bottom: 14px;
}

.phone-copy {
  font-family: "Newsreader", Georgia, serif;
  font-size: 14px;
  line-height: 1.6;
  color: #dcdcde;
}

.section {
  padding: 88px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-head p,
.section-head.center p {
  font-size: 17px;
  line-height: 1.6;
  color: #b6b6bb;
}

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

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

.card {
  background: #0e0e10;
  border: 1px solid #1f1f23;
  border-radius: 18px;
  padding: 28px;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #161311;
  border: 1px solid #2a221a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a063;
  font-size: 20px;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 9px;
}

.card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #9a9aa0;
}

.quote-band {
  border-top: 1px solid #1a1a1d;
  border-bottom: 1px solid #1a1a1d;
  background: #0c0c0d;
  padding: 80px 0;
  text-align: center;
}

.quote-band blockquote {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.35;
  max-width: 840px;
  margin: 0 auto 24px;
}

.quote-band cite {
  font-style: normal;
  font-size: 14px;
  color: #8a8a90;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
}

.price-card {
  background: #0e0e10;
  border: 1px solid #1f1f23;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: #141210;
  border-color: #3a2e1c;
  position: relative;
}

.price-tag {
  position: absolute;
  top: 22px;
  right: 22px;
  background: #c9a063;
  color: #1a1408;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.price-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.price-card.featured h3 {
  color: #c9a063;
}

.price-amount {
  font-family: "Newsreader", Georgia, serif;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 6px;
}

.price-sub {
  font-size: 14px;
  color: #8a8a90;
  margin-bottom: 22px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}

.price-list li {
  list-style: none;
  font-size: 14.5px;
  color: #c9c9cf;
}

.price-list li.muted {
  color: #6b6b72;
}

.cta-band {
  background: linear-gradient(135deg, #161311, #0e0e10);
  border: 1px solid #2a221a;
  border-radius: 28px;
  padding: 64px 40px;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-band p {
  font-size: 17px;
  color: #b6b6bb;
  max-width: 460px;
  margin: 0 auto 28px;
}

.footer {
  border-top: 1px solid #1a1a1d;
  padding: 52px 0 40px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #8a8a90;
  margin-top: 12px;
  max-width: 280px;
}

.footer-cols {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b6b72;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: #b6b6bb;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid #141417;
  margin-top: 28px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #6b6b72;
}

.legal-page {
  padding: 72px 0 80px;
}

.legal-page .container {
  max-width: 760px;
}

.legal-page h1 {
  font-size: clamp(36px, 5vw, 46px);
  line-height: 1.08;
  margin-bottom: 14px;
}

.legal-updated {
  font-size: 14px;
  color: #8a8a90;
  margin-bottom: 36px;
}

.legal-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #c4c4c9;
  margin-bottom: 36px;
}

.legal-section {
  margin-bottom: 34px;
}

.legal-section h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.legal-section p,
.legal-section li {
  font-size: 15.5px;
  line-height: 1.7;
  color: #a8a8ae;
}

.legal-section ul {
  margin: 12px 0 0 20px;
}

.legal-section a {
  color: #c9a063;
}

.faq-item {
  padding: 22px 0;
  border-top: 1px solid #1a1a1d;
}

.faq-item:last-child {
  border-bottom: 1px solid #1a1a1d;
}

.faq-item h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 15px;
  line-height: 1.65;
  color: #9a9aa0;
}

.support-hero {
  text-align: center;
  padding: 80px 0 40px;
  max-width: 820px;
  margin: 0 auto;
}

.support-hero h1 {
  font-size: clamp(36px, 5vw, 48px);
  margin-bottom: 18px;
}

.support-hero p {
  font-size: 17px;
  line-height: 1.6;
  color: #b6b6bb;
}

@media (max-width: 960px) {
  .hero,
  .grid-3,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
  }

  .nav-links a:not(.btn) {
    display: none;
  }
}
