:root {
  --white: #ffffff;
  --ink: #111111;
  --muted: #5f5a56;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.2);
  --wine: #5c1725;
  --wine-dark: #311018;
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 28px 90px rgba(49, 16, 24, 0.12);
  --popup-glass: rgba(255, 255, 255, 0.56);
  --popup-glass-control: rgba(255, 255, 255, 0.38);
  --popup-line: rgba(212, 175, 55, 0.34);
  --serif: "Bodoni Moda", "Bodoni 72", Didot, Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --script: "Marck Script", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}

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

button {
  font-family: inherit;
}

.hero-scroll {
  height: 320vh;
  background: var(--white);
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: var(--white);
  isolation: isolate;
  --hero-overlay: 0;
  --logo-opacity: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 66%;
  background: var(--white);
  z-index: -3;
  transform: translateY(-10%);
  transform-origin: center top;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: none;
  pointer-events: none;
}

.site-header {
  position: absolute;
  top: clamp(18px, 3vw, 34px);
  left: 50%;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1240px, calc(100% - 44px));
  min-height: 52px;
  transform: translateX(-50%);
  color: var(--ink);
}

.nav-brand {
  justify-self: start;
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  padding: 13px 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(18px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(17, 17, 17, 0.72);
}

.nav-action {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(183, 135, 28, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 248, 226, 0.82), rgba(226, 190, 94, 0.54));
  backdrop-filter: blur(18px);
  color: #191006;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 12px 30px rgba(183, 135, 28, 0.16);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-action:hover,
.nav-action:focus-visible {
  border-color: rgba(17, 17, 17, 0.92);
  background: rgba(17, 17, 17, 0.92);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.18);
  color: #fff;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  top: clamp(204px, 25vh, 260px);
  z-index: 5;
  display: grid;
  place-items: center;
  gap: 4px;
  width: 32px;
  height: 68px;
  border: 0;
  transform: translateX(-50%);
  opacity: 1;
  transition: opacity 450ms ease, transform 450ms ease;
}

.hero-logo-mark {
  position: absolute;
  left: 50%;
  top: clamp(92px, 15vh, 154px);
  z-index: 2;
  width: clamp(132px, 12vw, 190px);
  height: auto;
  opacity: var(--logo-opacity, 0);
  filter:
    drop-shadow(0 0 20px rgba(212, 175, 55, 0.18))
    drop-shadow(0 18px 38px rgba(17, 17, 17, 0.12));
  transform: translateX(-50%);
  transition: opacity 220ms linear;
  pointer-events: none;
}

.scroll-cue span {
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(212, 175, 55, 0.92);
  border-bottom: 2px solid rgba(212, 175, 55, 0.92);
  filter: drop-shadow(0 4px 10px rgba(92, 23, 37, 0.14));
  transform: rotate(45deg) scaleY(1.45);
  animation: cuePulse 1.65s ease-in-out infinite;
}

.scroll-cue span:nth-child(2) {
  animation-delay: 150ms;
}

.scroll-cue span:nth-child(3) {
  animation-delay: 300ms;
}

.scroll-cue.is-hidden {
  opacity: 0;
  transform: translate(-50%, 12px);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: end;
  gap: clamp(8px, 1.15vh, 14px);
  width: min(760px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 110px 0 clamp(18px, 2.8vh, 30px);
  transform: none;
}

.hero-content h1 {
  max-width: 520px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4.3vw, 58px);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: 0;
  background: linear-gradient(180deg, #f2d06c 0%, #c89722 38%, #7d5a13 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 24px rgba(125, 90, 19, 0.16));
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 460px;
  margin: 0;
  color: #806527;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  line-height: 1.35;
  text-shadow: 0 8px 22px rgba(128, 101, 39, 0.12);
  text-wrap: pretty;
}

.hero-content [data-step] {
  opacity: var(--step-opacity, 0);
  transform: translateY(calc(24px * (1 - var(--step-opacity, 0))));
  transition: opacity 120ms linear, transform 120ms linear;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 8px;
  width: min(640px, 100%);
  min-height: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-stats {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  gap: 8px;
  min-width: 0;
}

.stat-item,
.like-button {
  min-height: 0;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px);
  box-shadow: none;
}

.stat-item {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 7px;
  min-width: 230px;
  padding: 11px 18px;
  text-align: center;
}

.stat-label {
  color: rgba(17, 17, 17, 0.56);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  text-wrap: balance;
}

.stat-item strong {
  font-family: var(--sans);
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.like-button {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 152px;
  padding: 11px 18px;
  color: var(--ink);
  font: 800 24px/1 var(--sans);
  cursor: pointer;
}

.like-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.heart {
  color: rgba(92, 23, 37, 0.42);
  font-size: 22px;
  transition: color 220ms ease, transform 220ms ease;
}

.like-caption {
  grid-column: 1;
  grid-row: 1;
  color: rgba(17, 17, 17, 0.5);
  font: 800 9px/1.1 var(--sans);
  text-transform: uppercase;
}

.like-button.is-liked .heart {
  color: #d6123f;
  transform: scale(1.18);
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 168px;
  padding: 0 26px;
  border: 1px solid rgba(183, 135, 28, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 226, 0.86), rgba(226, 190, 94, 0.58));
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 14px 34px rgba(183, 135, 28, 0.18),
    0 16px 42px rgba(17, 17, 17, 0.08);
  color: #191006;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
  cursor: pointer;
}

.cta-with-timer {
  flex-direction: column;
  gap: 3px;
  line-height: 1.05;
}

.cta-timer {
  color: rgba(17, 17, 17, 0.56);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.oracle-section {
  padding: clamp(84px, 11vw, 148px) 0;
  background:
    linear-gradient(180deg, #fff 0%, #fbfaf7 48%, #fff 100%);
}

.oracle-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: center;
}

.oracle-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.65;
  text-wrap: pretty;
}

.oracle-widget {
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 28px 90px rgba(17, 17, 17, 0.06);
}

.landing-dice-stage {
  --dice-size: clamp(136px, 17vw, 178px);
  position: relative;
  width: var(--dice-size);
  height: var(--dice-size);
  margin: 4px auto 10px;
  perspective: 920px;
  perspective-origin: 50% 44%;
}

.landing-dice-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20%;
  width: 108%;
  height: 30%;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.12) 46%, transparent 72%);
  filter: blur(8px);
  opacity: 0.68;
  transform: translateX(-50%);
}

.landing-dice-stage.is-rolling::before {
  animation: dailyDiceShadow 1.45s cubic-bezier(0.22, 0.72, 0.24, 1);
}

.landing-dice-cube {
  position: relative;
  width: 100%;
  height: 100%;
  transform: rotateX(-10deg) rotateY(-12deg) rotateZ(0deg);
  transform-style: preserve-3d;
  transition: transform 440ms cubic-bezier(0.22, 0.72, 0.24, 1);
  will-change: transform;
}

.landing-dice-cube.is-rolling {
  transition: transform 1450ms cubic-bezier(0.22, 0.72, 0.24, 1);
}

.landing-dice-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(244, 221, 176, 0.4);
  border-radius: 24%;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 244, 215, 0.34), transparent 22%),
    radial-gradient(circle at 76% 76%, rgba(228, 196, 136, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(58, 42, 24, 0.98), rgba(20, 15, 12, 0.99) 45%, rgba(7, 12, 18, 0.99));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 10px 12px 28px rgba(255, 236, 198, 0.06),
    inset -16px -20px 42px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(0, 0, 0, 0.28);
  backface-visibility: hidden;
}

.landing-dice-face::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(244, 221, 176, 0.18);
  border-radius: 22%;
  pointer-events: none;
}

.landing-dice-face::after {
  content: "";
  position: absolute;
  inset: -18% -22% auto auto;
  width: 72%;
  height: 60%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 247, 220, 0.18), transparent 64%);
  transform: rotate(-24deg);
  pointer-events: none;
}

.landing-dice-face span {
  position: relative;
  z-index: 1;
  max-width: 78%;
  color: #f7e8c0;
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 0.94;
  text-align: center;
  text-shadow:
    0 1px 0 rgba(255, 236, 198, 0.14),
    0 8px 20px rgba(0, 0, 0, 0.5);
  text-wrap: balance;
}

.landing-dice-face--0 {
  transform: translateZ(calc(var(--dice-size) / 2));
}

.landing-dice-face--1 {
  transform: rotateY(90deg) translateZ(calc(var(--dice-size) / 2));
}

.landing-dice-face--2 {
  transform: rotateY(180deg) translateZ(calc(var(--dice-size) / 2));
}

.landing-dice-face--3 {
  transform: rotateY(-90deg) translateZ(calc(var(--dice-size) / 2));
}

.landing-dice-face--4 {
  transform: rotateX(90deg) translateZ(calc(var(--dice-size) / 2));
}

.landing-dice-face--5 {
  transform: rotateX(-90deg) translateZ(calc(var(--dice-size) / 2));
}

.dice-button {
  min-height: 52px;
  min-width: 220px;
}

.dice-result {
  min-height: 48px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
  text-wrap: pretty;
}

.primary-cta:hover,
.dice-button:hover,
.final-cta:hover {
  background: rgba(17, 17, 17, 0.92);
  background-color: rgba(17, 17, 17, 0.92);
  border-color: rgba(17, 17, 17, 0.92);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.18);
  color: #fff;
  transform: translateY(-1px);
}

.primary-cta:hover .cta-timer,
.final-cta:hover .cta-timer {
  color: rgba(255, 255, 255, 0.7);
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.story-section,
.oracle-section,
.features-section,
.experts-section,
.final-section {
  position: relative;
  padding: clamp(96px, 12vw, 168px) 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.15fr;
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

.section-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5.2vw, 72px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.manifesto {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.7;
  text-wrap: pretty;
}

.founder-note {
  grid-column: 2;
  margin: 10px 0 0;
  padding: clamp(30px, 5vw, 56px) clamp(28px, 5vw, 58px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-left: 1px solid rgba(212, 175, 55, 0.72);
  background: #fff;
  box-shadow: 0 26px 80px rgba(17, 17, 17, 0.05);
}

.founder-note p {
  margin: 0 0 18px;
  color: #2f2a27;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.28;
  text-wrap: pretty;
}

.founder-note .founder-script {
  margin-bottom: 22px;
  color: var(--wine);
  font-family: var(--script);
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.05;
}

.founder-note cite {
  display: block;
  margin-top: 26px;
  color: var(--wine);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.seo-links-section,
.faq-section {
  padding: clamp(82px, 10vw, 132px) 0;
  background: #fff;
}

.seo-links-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: end;
  padding-top: clamp(24px, 4vw, 42px);
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.seo-links-shell p {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.7;
  text-wrap: pretty;
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  border-left: 1px solid rgba(17, 17, 17, 0.1);
}

.seo-link-grid a {
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid rgba(17, 17, 17, 0.1);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 600;
  line-height: 1.04;
  transition: color 180ms ease, background 180ms ease;
}

.seo-link-grid a:hover {
  background: rgba(212, 175, 55, 0.08);
  color: #8b6417;
}

.features-section {
  background: linear-gradient(180deg, #fff, #fbfaf7 52%, #fff);
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
  gap: 44px;
  align-items: end;
  margin-bottom: 48px;
}

.split-heading p,
.experts-intro p,
.expert-card p,
.feature-card p,
.final-shell p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  text-wrap: pretty;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  background: transparent;
}

.feature-card {
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: 34px 28px;
  border: 0;
  border-right: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card.tall,
.feature-card.wide,
.feature-card.wine {
  min-height: 300px;
}

.feature-card.wine h3,
.feature-card.wine p {
  color: inherit;
}

.feature-card.wine span {
  color: var(--gold);
}

.feature-card span,
.expert-symbol {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
}

.feature-card h3,
.expert-card h3 {
  margin: 46px 0 12px;
  font-family: var(--serif);
  font-size: clamp(25px, 2.6vw, 38px);
  font-weight: 600;
  line-height: 1.03;
  text-wrap: balance;
}

.feature-card p {
  margin: 0;
}

.experts-intro {
  max-width: 720px;
  margin-bottom: 48px;
}

.experts-intro p span {
  display: block;
}

.expert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.expert-card {
  display: grid;
  grid-template-rows: clamp(520px, 48vw, 720px) auto;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(251, 250, 247, 0.94), #fff 68%),
    radial-gradient(circle at 50% 12%, rgba(212, 175, 55, 0.11), transparent 36%);
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.08),
    0 26px 80px rgba(17, 17, 17, 0.055);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.expert-card:hover {
  box-shadow: var(--shadow);
}

.expert-photo {
  position: relative;
  min-height: 0;
  margin: clamp(10px, 1.5vw, 18px) clamp(10px, 1.5vw, 18px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.96), rgba(251, 250, 247, 0.6) 48%, rgba(212, 175, 55, 0.08) 100%);
}

.expert-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.72)),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(251, 250, 247, 0.26));
  pointer-events: none;
}

.expert-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 18%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
}

.expert-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  filter: saturate(1.02) contrast(1.02) brightness(1.02);
  mix-blend-mode: multiply;
}

.expert-copy {
  display: grid;
  padding: 2px 34px 34px;
  background: #fff;
}

.expert-card h3 {
  margin-top: 22px;
}

.expert-role {
  color: var(--wine) !important;
  font-weight: 800;
}

.expert-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 20px;
  border: 1px solid rgba(183, 135, 28, 0.52);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 226, 0.84), rgba(226, 190, 94, 0.54));
  backdrop-filter: blur(18px);
  color: #191006;
  font: 800 12px/1 var(--sans);
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 12px 30px rgba(183, 135, 28, 0.15);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.expert-contact:hover,
.expert-contact:focus-visible {
  border-color: rgba(17, 17, 17, 0.92);
  background: rgba(17, 17, 17, 0.92);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.18);
  color: #fff;
  transform: translateY(-1px);
}

.final-section {
  min-height: 76vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(212, 175, 55, 0.18), transparent 35%),
    linear-gradient(180deg, #fff, #fbfaf7);
  text-align: center;
}

.final-shell {
  width: min(880px, calc(100% - 40px));
}

.final-shell p {
  max-width: 820px;
  margin: 0 auto 34px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(30px, 3.7vw, 52px);
  line-height: 1.04;
  text-wrap: balance;
}

.final-cta {
  min-width: min(100%, 340px);
  min-height: 68px;
  font-size: 15px;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.22);
  backdrop-filter: blur(14px);
}

.contact-modal__panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(720px, calc(100vh - 40px));
  overflow: auto;
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid var(--popup-line);
  border-radius: 8px;
  background: var(--popup-glass);
  backdrop-filter: blur(28px) saturate(1.08);
  box-shadow: 0 32px 110px rgba(17, 17, 17, 0.22);
}

.contact-modal__panel h2 {
  margin-top: 10px;
  font-size: clamp(34px, 5vw, 52px);
}

.contact-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 50%;
  background: var(--popup-glass-control);
  backdrop-filter: blur(18px);
  color: var(--ink);
  font: 400 26px/1 var(--sans);
  cursor: pointer;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-link {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 14px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 8px;
  background: var(--popup-glass-control);
  backdrop-filter: blur(18px);
  color: var(--ink);
  font: 800 14px/1.15 var(--sans);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font: 800 11px/1 var(--sans);
  letter-spacing: 0.02em;
}

.contact-icon--telegram {
  background: #229ed9;
}

.contact-icon--max {
  background: #0d63ff;
}

.contact-icon--vk {
  background: #0077ff;
}

.contact-icon--rustore {
  background: #111;
}

.legal-footer {
  background: #111111;
  color: rgba(255, 255, 255, 0.72);
  padding: 34px 0;
}

.legal-footer__inner {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
  display: grid;
  gap: 12px;
  font-size: 13px;
  line-height: 1.55;
}

.legal-footer p {
  margin: 0;
}

.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.legal-footer a {
  color: #f3d98b;
  text-decoration: none;
}

.legal-footer a:hover {
  color: #ffffff;
}

.cookie-notice {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 70;
  width: min(100% - 28px, 720px);
  transform: translateX(-50%);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(183, 135, 28, 0.3);
  border-radius: 18px;
  background: rgba(17, 17, 17, 0.94);
  color: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 52px rgba(17, 17, 17, 0.28);
  backdrop-filter: blur(18px);
}

.cookie-notice.is-visible {
  display: flex;
}

.cookie-notice p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.cookie-notice a {
  color: #f3d98b;
  text-decoration: none;
}

.cookie-notice button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  font: inherit;
  font-weight: 800;
  color: #111111;
  background: linear-gradient(180deg, #fff5cf, #d4af37);
  cursor: pointer;
  white-space: nowrap;
}

.faq-shell {
  display: grid;
  gap: 8px;
}

.faq-list {
  display: grid;
  border-top: 1px solid rgba(17, 17, 17, 0.11);
}

.faq-list details {
  border-bottom: 1px solid rgba(17, 17, 17, 0.11);
}

.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 82px;
  padding: 24px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 600;
  line-height: 1.08;
  cursor: pointer;
  text-wrap: balance;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--gold);
  font-family: var(--sans);
  font-size: 30px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  margin: -6px 0 26px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.72;
  text-wrap: pretty;
}

.seo-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 8%, rgba(212, 175, 55, 0.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfaf7 48%, #fff 100%);
}

.seo-page-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 72px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
}

.seo-page-main {
  padding: clamp(76px, 9vw, 124px) 0 clamp(90px, 11vw, 148px);
}

.seo-article {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.seo-article__hero {
  display: grid;
  gap: 28px;
  padding-bottom: clamp(58px, 7vw, 92px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.11);
}

.seo-article h1 {
  max-width: 860px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 108px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: balance;
}

.seo-article__lead {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.55;
  text-wrap: pretty;
}

.seo-article__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.seo-article__nav a {
  min-height: 42px;
  padding: 12px 15px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  color: rgba(17, 17, 17, 0.72);
  font: 800 11px/1 var(--sans);
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.seo-article__nav a:hover {
  background: rgba(17, 17, 17, 0.92);
  color: #fff;
}

.seo-content {
  display: grid;
  gap: clamp(48px, 7vw, 76px);
  padding-top: clamp(54px, 7vw, 82px);
}

.seo-content section {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}

.seo-content h2 {
  max-width: 100%;
  overflow-wrap: anywhere;
  hyphens: auto;
  font-size: clamp(32px, 3.25vw, 52px);
  line-height: 0.96;
}

.seo-content h3 {
  margin: 34px 0 12px;
  color: var(--wine);
  font: 800 17px/1.25 var(--sans);
}

.seo-content p,
.seo-content li {
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.75;
  text-wrap: pretty;
}

.seo-content p {
  margin: 0 0 18px;
}

.seo-content ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.geo-definition {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 26px 80px rgba(17, 17, 17, 0.045);
}

.geo-definition p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(26px, 3.1vw, 42px);
  line-height: 1.12;
}

.seo-cta-band {
  display: grid;
  gap: 22px;
  justify-items: start;
  padding: clamp(34px, 5vw, 54px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 20%, rgba(212, 175, 55, 0.18), transparent 34%),
    #111;
  color: #fff;
}

.seo-cta-band h2,
.seo-cta-band p {
  color: inherit;
}

.seo-cta-band p {
  max-width: 680px;
  opacity: 0.78;
}

.seo-page-faq {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 26px !important;
}

.seo-page-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  width: min(980px, calc(100% - 40px));
  margin: 64px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  color: rgba(17, 17, 17, 0.62);
  font: 800 11px/1 var(--sans);
  text-transform: uppercase;
}

.seo-page-footer a:hover {
  color: var(--ink);
}

.tarot-hero-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}

.tarot-hero-card {
  justify-self: end;
  width: min(100%, 260px);
  aspect-ratio: 1;
  padding: 10px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.12);
}

.tarot-hero-card img,
.tarot-card-link img,
.tarot-card-detail-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.tarot-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.tarot-card-link {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.tarot-card-link:hover {
  border-color: rgba(212, 175, 55, 0.44);
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
  transform: translateY(-3px);
}

.tarot-card-link span {
  min-height: 42px;
  color: var(--ink);
  font: 800 13px/1.25 var(--sans);
}

.tarot-card-link small {
  color: var(--gold);
  font: 800 10px/1 var(--sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tarot-card-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 380px);
  gap: clamp(34px, 7vw, 86px);
  align-items: end;
}

.tarot-card-detail-hero > * {
  min-width: 0;
}

.tarot-card-detail-hero h1 {
  max-width: 100%;
  font-size: clamp(48px, 5.8vw, 86px);
  line-height: 0.94;
}

.tarot-card-detail-hero .seo-article__lead {
  max-width: 680px;
}

.tarot-card-detail-media {
  align-self: stretch;
  padding: clamp(10px, 1.4vw, 14px);
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.56);
  box-shadow: 0 32px 90px rgba(17, 17, 17, 0.13);
}

.tarot-meaning-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tarot-meaning-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.09);
}

.tarot-meaning-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font: 800 13px/1.2 var(--sans);
  text-transform: uppercase;
}

.reveal-section {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 780ms ease, transform 780ms ease;
}

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

@keyframes cuePulse {
  0% {
    opacity: 0.22;
    transform: translateY(-7px) rotate(45deg) scaleY(1.45);
  }
  42% {
    opacity: 1;
  }
  100% {
    opacity: 0.18;
    transform: translateY(7px) rotate(45deg) scaleY(1.45);
  }
}

@keyframes dailyDiceShadow {
  0%,
  100% {
    opacity: 0.68;
    transform: translateX(-50%) scale(1);
  }

  42% {
    opacity: 0.38;
    transform: translateX(-50%) scale(0.76);
  }

  68% {
    opacity: 0.78;
    transform: translateX(-50%) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 900px) {
  .hero-scroll {
    height: 285vh;
  }

  .hero-video {
    object-position: center;
    transform: none;
  }

  .hero-sticky {
    min-height: 680px;
  }

  .hero-vignette {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 64%,
      rgba(255, 255, 255, calc(0.22 * var(--hero-overlay))) 100%
    );
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .story-grid,
  .split-heading,
  .oracle-shell,
  .expert-grid,
  .seo-links-shell,
  .seo-content section,
  .tarot-hero-visual,
  .tarot-card-detail-hero {
    grid-template-columns: 1fr;
  }

  .founder-note {
    grid-column: auto;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .feature-card,
  .feature-card.wide,
  .feature-card.wine {
    grid-column: auto;
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  }

  .seo-link-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tarot-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tarot-hero-card {
    justify-self: start;
    width: min(220px, 70vw);
  }

  .seo-page-header {
    position: static;
    padding: 0 20px;
  }
}

@media (max-width: 560px) {
  .hero-sticky {
    min-height: 880px;
  }

  .hero-content {
    width: min(100% - 28px, 480px);
    align-content: start;
    gap: 10px;
    padding-top: min(660px, 79vh);
    padding-bottom: 42px;
    transform: none;
  }

  .hero-logo-mark {
    top: clamp(94px, 14vh, 128px);
    width: clamp(86px, 24vw, 108px);
  }

  .hero-panel {
    grid-template-columns: 1fr;
    width: min(100%, 430px);
    min-height: 0;
    gap: 6px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .stat-item {
    min-width: 0;
  }

  .like-button {
    min-width: 0;
  }

  .hero-panel .primary-cta {
    min-height: 58px;
    border-width: 1px;
    font-size: 13px;
  }

  .hero-content h1 {
    font-size: clamp(40px, 11.4vw, 58px);
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .stat-item {
    padding: 9px 10px;
    text-align: center;
  }

  .stat-item strong {
    font-size: 24px;
  }

  .like-button {
    width: 100%;
    padding: 9px 10px;
    justify-content: center;
    font-size: 23px;
  }

  .scroll-cue {
    top: clamp(168px, 23vh, 204px);
    width: 30px;
    height: 64px;
  }

  .scroll-cue span {
    width: 16px;
    height: 16px;
  }

  .section-shell {
    width: min(100% - 28px, 520px);
  }

  .story-section,
  .oracle-section,
  .features-section,
  .experts-section,
  .final-section {
    padding: 78px 0;
  }

  .oracle-widget {
    padding: 28px 18px;
  }

  .expert-card {
    grid-template-rows: minmax(520px, 68vh) auto;
    min-height: 0;
    padding: 0;
  }

  .expert-copy {
    padding: 0 22px 28px;
  }

  .expert-contact {
    width: 100%;
    justify-content: center;
  }

  .seo-links-section,
  .faq-section {
    padding: 72px 0;
  }

  .seo-link-grid {
    grid-template-columns: 1fr;
  }

  .seo-link-grid a {
    min-height: 86px;
    padding: 20px 0;
  }

  .faq-list summary {
    min-height: 72px;
    padding: 20px 0;
  }

  .seo-page-header {
    min-height: 66px;
    gap: 12px;
  }

  .seo-page-header .nav-brand {
    font-size: 16px;
  }

  .seo-page-header .nav-action {
    min-height: 38px;
    padding: 0 14px;
  }

  .seo-article {
    width: min(100% - 28px, 540px);
  }

  .seo-article h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .seo-content {
    gap: 52px;
  }

  .geo-definition {
    padding: 24px 20px;
  }

  .seo-cta-band {
    padding: 30px 22px;
  }

  .tarot-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .tarot-card-link {
    padding: 9px;
  }

  .tarot-card-link span {
    min-height: 38px;
    font-size: 12px;
  }

  .tarot-card-detail-media {
    width: min(100%, 320px);
  }

  .legal-footer__inner {
    width: min(100% - 28px, 520px);
  }

  .cookie-notice {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-notice button {
    width: 100%;
  }
}
