* {
  box-sizing: border-box;
}
:root {
  --bg: #fcfbf8;
  --white: #fff;
  --text: #111;
  --muted: rgba(17, 17, 17, 0.62);
  --soft: #f5f5f5;
  --gold: #d4af37;
  --gold-light: #f6d67b;
  --gold-soft: #fff6e5;
  --border: rgba(17, 17, 17, 0.08);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
  --radius-xl: 30px;
  --max: 1180px;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}
img {
  display: block;
  width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(252, 251, 248, 0.84);
  border-bottom: 1px solid rgba(17, 17, 17, 0.04);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.24);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-text strong {
  font-size: 1.05rem;
}
.brand-text small {
  color: rgba(17, 17, 17, 0.5);
  font-size: 0.75rem;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 32px;
  color: rgba(17, 17, 17, 0.66);
  font-size: 0.95rem;
}
.nav-links a:hover {
  color: var(--text);
}
.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.16s ease,
    opacity 0.16s ease,
    background 0.16s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-dark {
  background: var(--text);
  color: #fff;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--text);
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.22);
}
.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}
.btn.wide {
  width: 100%;
}
.btn-light {
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
}
.hero-bg,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 1s ease,
    transform 4s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  background:
    radial-gradient(
      circle at top right,
      rgba(212, 175, 55, 0.25),
      transparent 22%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(255, 255, 255, 0.08),
      transparent 25%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.25)
    );
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 64px;
  min-height: 88vh;
  padding: 72px 0;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.eyebrow {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}
.hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}
.hero-text {
  margin-top: 24px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-pills span {
  padding: 11px 15px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-size: 0.92rem;
}
.hero-card {
  display: flex;
  justify-content: flex-end;
}
.phone-card {
  width: min(100%, 430px);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  padding: 16px;
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.phone-card > * {
  background: #fff;
  border-radius: 26px;
  padding: 22px;
}
.phone-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}
.phone-head p {
  margin: 0 0 6px;
  color: rgba(17, 17, 17, 0.45);
  font-size: 0.88rem;
}
.phone-head h2 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -0.03em;
}
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 0.88rem;
  font-weight: 700;
}
.gold-soft {
  background: var(--gold-soft);
  color: #b38918;
}
.match-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}
.match-card + .match-card {
  margin-top: 12px;
}
.avatar {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  flex: 0 0 auto;
}
.avatar-1 {
  background-image: url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=300&q=80");
}
.avatar-2 {
  background-image: url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=300&q=80");
}
.avatar-3 {
  background-image: url("https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?auto=format&fit=crop&w=300&q=80");
}
.match-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.match-text strong {
  font-size: 1rem;
}
.match-text span {
  margin-top: 4px;
  color: rgba(17, 17, 17, 0.56);
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--gold-soft);
  color: #b38918;
  font-weight: 700;
  cursor: pointer;
  flex: 0 0 auto;
}
.mini-btn.dark {
  background: var(--text);
  color: #fff;
}
.section {
  padding: 88px 0;
}
.section-white {
  background: #fff;
}
.section-dark {
  background: var(--text);
}
.section-intro {
  max-width: 760px;
  margin-bottom: 42px;
}
.section-intro.dark h2,
.section-intro.dark p {
  color: #fff;
}
.section-kicker {
  color: #b38918;
  background: transparent;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0;
}
.section-kicker.gold {
  color: var(--gold-light);
}
.section-intro h2,
.split-intro h2,
.signup-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.section-intro p,
.split-intro p,
.signup-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 16px;
}
.feature-grid,
.steps-grid,
.testimonial-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}
.feature-card,
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--gold-soft);
  font-size: 1.7rem;
  margin-bottom: 18px;
}
.feature-card h3,
.step-card h3 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}
.feature-card p,
.step-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}
.live-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.live-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.live-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.live-head h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.inline-link {
  font-size: 0.88rem;
  color: #b38918;
  font-weight: 700;
}
.inline-link:hover {
  opacity: 0.78;
}
.live-list {
  display: grid;
  gap: 12px;
}
.live-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: #fff;
}
.live-item h4 {
  margin: 0;
  font-size: 1rem;
}
.live-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.live-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--gold-soft);
  color: #9d7816;
  white-space: nowrap;
}
.live-status {
  margin: 12px 0 0;
  color: rgba(17, 17, 17, 0.55);
  font-size: 0.88rem;
}
.split-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 36px;
}
.moment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.moment-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 320px;
  background: #000;
}
.moment-card img {
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.moment-card:hover img {
  transform: scale(1.04);
  opacity: 1;
}
.moment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.1),
    transparent
  );
}
.moment-label {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.step-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-weight: 800;
  margin-bottom: 20px;
}
.testimonial {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 28px;
}
.testimonial p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.9;
  font-size: 1.05rem;
}
.testimonial strong {
  display: inline-block;
  margin-top: 20px;
  color: var(--gold-light);
}
.signup-shell {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 34px;
  padding: 38px;
  border-radius: 36px;
  background: linear-gradient(135deg, #fff9ea, #fff);
  border: 1px solid rgba(17, 17, 17, 0.05);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
}
.signup-list {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.signup-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.7;
}
.signup-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}
.signup-form {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}
.signup-form label {
  display: block;
  margin-bottom: 16px;
}
.signup-form span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.74);
}
.signup-form input,
.signup-form select {
  width: 100%;
  min-height: 50px;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #fcfbf8;
  padding: 0 14px;
  font: inherit;
  color: var(--text);
}
.signup-form input:focus,
.signup-form select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-note,
.form-success {
  margin: 14px 0 0;
  font-size: 0.84rem;
  line-height: 1.7;
}
.form-note {
  color: rgba(17, 17, 17, 0.48);
}
.form-success {
  color: #1e7a43;
  font-weight: 600;
}
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.site-footer {
  border-top: 1px solid rgba(17, 17, 17, 0.05);
  background: #fff;
}
.footer {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(17, 17, 17, 0.5);
  font-size: 0.92rem;
}
.footer-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-meta a {
  color: rgba(17, 17, 17, 0.62);
  font-weight: 600;
  font-size: 0.88rem;
}
.footer-meta a:hover {
  color: #111;
}
@media (max-width: 980px) {
  .hero-grid,
  .split-intro,
  .signup-shell,
  .feature-grid,
  .steps-grid,
  .testimonial-grid,
  .moment-grid,
  .live-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    min-height: auto;
    padding: 80px 0 56px;
  }
  .hero-card {
    justify-content: flex-start;
  }
}
@media (max-width: 760px) {
  .nav-links,
  .btn-dark {
    display: none;
  }
  .nav {
    min-height: 72px;
  }
  .section {
    padding: 70px 0;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-pills {
    gap: 10px;
  }
  .phone-head h2 {
    font-size: 1.7rem;
  }
  .signup-shell {
    padding: 22px;
  }
  .footer {
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
    text-align: center;
  }
  .footer-meta {
    order: 3;
  }
}
