:root {
  --bg: #0b080a;
  --bg-soft: #120b0e;
  --panel: #171013;
  --panel-soft: #211219;
  --wine: #64162d;
  --wine-deep: #3e0f1d;
  --gold: #d9ad56;
  --gold-soft: #f1d58f;
  --text: #f7f0e9;
  --muted: #c7b9b2;
  --line: rgba(217, 173, 86, .22);
  --shadow: rgba(0, 0, 0, .38);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 8%, rgba(93, 18, 44, .18), transparent 30%),
    linear-gradient(180deg, #0b080a 0%, #0e090c 45%, #090709 100%);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

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

.narrow {
  max-width: 940px;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, rgba(8, 5, 7, .78), rgba(8, 5, 7, .18));
}

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

.brand {
  color: var(--gold-soft);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .14em;
  margin-right: auto;
}

.main-nav,
.lang-switch,
.footer-links,
.footer-langs {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav a,
.lang-switch a,
.footer-links a,
.footer-langs a {
  text-decoration: none;
  color: var(--muted);
}

.main-nav a:hover,
.lang-switch a:hover,
.footer-links a:hover,
.footer-langs a:hover {
  color: var(--gold-soft);
}

.lang-switch {
  font-size: .83rem;
  letter-spacing: .09em;
}

.lang-active {
  color: var(--gold-soft);
}

.hero {
  min-height: 790px;
  position: relative;
  display: flex;
  align-items: center;
  background:
    url("/assets/images/passionduo_hero_background.png")
    center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(8, 5, 7, .34) 0%,
      rgba(8, 5, 7, .08) 43%,
      rgba(8, 5, 7, .08) 100%),
    linear-gradient(180deg,
      rgba(0, 0, 0, .08) 0%,
      rgba(8, 5, 7, .14) 65%,
      #0b080a 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  max-width: 800px;
}

.eyebrow,
.section-kicker,
.plan-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: .78rem;
}

.hero h1 {
  margin: .16em 0 0;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: .98;
  letter-spacing: .035em;
  color: #fff2dc;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .35);
}

.hero-subtitle {
  margin: .55rem 0 0;
  color: var(--gold-soft);
  font-size: clamp(1.35rem, 3vw, 2.15rem);
}

.hero-motto {
  margin: 1.1rem 0 0;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  color: #fff;
}

.hero-lead {
  max-width: 690px;
  margin-top: 1.35rem;
  font-size: 1.12rem;
  color: #ded1ca;
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: .2s ease;
}

.button-primary {
  color: #170d10;
  background: linear-gradient(180deg, #f2d790, #d7ab50);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .24);
}

.button-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.button-secondary {
  color: var(--gold-soft);
  border: 1px solid rgba(241, 213, 143, .5);
  background: rgba(13, 8, 10, .34);
}

.button-secondary:hover {
  background: rgba(217, 173, 86, .1);
}

.section {
  padding: 100px 0;
}

.section h2 {
  margin: .2em 0 .75em;
  color: #fff1db;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.12;
}

.section-lead {
  color: var(--muted);
  font-size: 1.18rem;
}

.intro {
  background:
    radial-gradient(circle at 10% 10%, rgba(103, 25, 48, .12), transparent 26%);
}

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

.feature-card,
.plan-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(31, 18, 24, .88), rgba(17, 11, 14, .94));
  box-shadow: 0 22px 50px var(--shadow);
}

.feature-number {
  color: var(--gold);
  font-size: .82rem;
  letter-spacing: .12em;
}

.feature-card h3,
.plan-card h3 {
  color: var(--gold-soft);
  margin-bottom: .65em;
}

.feature-card p,
.plan-card p,
.plan-card li,
.section-heading > p,
.trailer-copy p,
.trust-copy p,
.closing-card p {
  color: var(--muted);
}

.visual-section {
  background:
    linear-gradient(180deg, rgba(30, 12, 20, .22), rgba(8, 6, 8, 0));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, .8fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading.centered {
  display: block;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.screen-card {
  margin: 0;
  padding: 12px 12px 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(22, 14, 18, .86);
  box-shadow: 0 24px 55px rgba(0, 0, 0, .30);
}

.screen-card img {
  width: 100%;
  border-radius: 16px;
}

.screen-card figcaption {
  color: var(--muted);
  font-size: .9rem;
  padding: 14px 4px 0;
}

.trailer-section {
  background:
    radial-gradient(circle at 70% 45%, rgba(111, 25, 49, .22), transparent 28%);
}

.trailer-layout {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 390px);
  gap: 80px;
  align-items: center;
}

.video-frame {
  padding: 14px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #1c1116, #0c080a);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .42);
}

.video-frame video {
  width: 100%;
  border-radius: 20px;
  background: #000;
}

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

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

.plan-card {
  position: relative;
}

.plan-pro {
  border-color: rgba(217, 173, 86, .48);
  transform: translateY(-10px);
  background:
    radial-gradient(circle at 50% 0%, rgba(111, 29, 49, .22), transparent 35%),
    linear-gradient(180deg, rgba(37, 20, 27, .95), rgba(18, 11, 14, .97));
}

.plan-card ul {
  padding-left: 1.2rem;
}

.plan-card li {
  margin: .55rem 0;
}

.price-note {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: .92rem;
}

.trust-section {
  border-top: 1px solid rgba(217, 173, 86, .08);
  border-bottom: 1px solid rgba(217, 173, 86, .08);
}

.trust-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}

.closing-section {
  padding-bottom: 120px;
}

.closing-card {
  padding: 52px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 20%, rgba(119, 28, 52, .24), transparent 35%),
    linear-gradient(135deg, rgba(31, 17, 23, .94), rgba(12, 8, 10, .96));
  box-shadow: 0 30px 70px rgba(0, 0, 0, .34);
}

.closing-card h2 {
  max-width: 900px;
}

.closing-card p {
  max-width: 760px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 0 28px;
  background: #080608;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 44px;
  align-items: center;
}

.footer-brand {
  color: var(--gold-soft);
  font-weight: 700;
  letter-spacing: .12em;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(217, 173, 86, .1);
  color: #958984;
  font-size: .88rem;
}

@media (max-width: 980px) {

  .main-nav {
    display: none;
  }

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

  .plan-pro {
    transform: none;
  }

  .screens-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading,
  .trailer-layout,
  .trust-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .trailer-layout {
    max-width: 720px;
  }

  .video-frame {
    max-width: 390px;
  }
}

@media (max-width: 620px) {

  .wrap {
    width: min(100% - 30px, var(--max));
  }

  .nav-wrap {
    min-height: 68px;
  }

  .hero {
    min-height: 740px;
    background-position: 61% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg,
        rgba(8, 5, 7, .58),
        rgba(8, 5, 7, .18)),
      linear-gradient(180deg,
        rgba(0, 0, 0, .10),
        #0b080a 100%);
  }

  .hero-content {
    padding-top: 92px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3rem);
    letter-spacing: .02em;
  }

  .section {
    padding: 74px 0;
  }

  .screens-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .screen-card {
    padding: 7px 7px 14px;
    border-radius: 18px;
  }

  .screen-card img {
    border-radius: 12px;
  }

  .screen-card figcaption {
    font-size: .78rem;
  }

  .closing-card {
    padding: 30px 24px;
  }

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

  .footer-links,
  .footer-langs {
    flex-wrap: wrap;
  }
}
.legal-header {
  position: relative;
  background: #0b080a;
}

.legal-main {
  padding: 76px 0 110px;
  min-height: 72vh;
}

.legal-wrap {
  max-width: 900px;
}

.legal-wrap h1 {
  margin: 0 0 1.2em;
  color: #fff1db;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
}

.legal-wrap h2 {
  margin-top: 2.2em;
  color: var(--gold-soft);
  font-size: 1.55rem;
}

.legal-wrap h3 {
  margin: 1.4em 0 .3em;
  color: var(--gold);
  font-size: 1rem;
}

.legal-wrap p,
.legal-wrap li {
  color: var(--muted);
}

.legal-wrap ul {
  padding-left: 1.35rem;
}

.legal-wrap li {
  margin: .45rem 0;
}

.legal-wrap a {
  color: var(--gold-soft);
}