:root {
  color-scheme: dark;
  --ink: #0b0909;
  --ink-soft: #13100f;
  --panel: #181312;
  --panel-light: #211a18;
  --ivory: #f4eee7;
  --ivory-soft: #d8cec4;
  --muted: #9f9288;
  --line: rgba(244, 238, 231, 0.13);
  --line-strong: rgba(244, 238, 231, 0.25);
  --wine: #7b3946;
  --wine-dark: #4b2029;
  --rose: #cf9aa3;
  --champagne: #c9b294;
  --hero-opacity: 1;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.2, .72, .2, 1);
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 16% 6%, rgba(123, 57, 70, .2), transparent 27rem),
    radial-gradient(circle at 88% 36%, rgba(201, 178, 148, .08), transparent 22rem),
    linear-gradient(155deg, #0a0808 0%, #120e0d 48%, #080707 100%);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: .035;
  background-image:
    repeating-radial-gradient(circle at 0 0, transparent 0, #fff 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  mix-blend-mode: soft-light;
}

button,
a {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 4px;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  padding: 0;
}

.profile-card {
  position: relative;
  width: min(100%, 620px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--ink-soft);
  box-shadow: 0 0 80px rgba(0, 0, 0, .55);
}

.profile-card::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  content: "";
  border-inline: 1px solid rgba(255, 255, 255, .04);
}

.mini-header {
  position: fixed;
  z-index: 30;
  top: max(12px, env(safe-area-inset-top));
  left: 50%;
  display: flex;
  align-items: center;
  gap: 11px;
  width: min(calc(100% - 28px), 580px);
  min-height: 58px;
  padding: 9px 14px 9px 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  background: rgba(15, 12, 11, .78);
  box-shadow: 0 16px 45px rgba(0, 0, 0, .28);
  transform: translate(-50%, -18px);
  transition: opacity .38s var(--ease), transform .38s var(--ease);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
}

.mini-header.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mini-avatar {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: url("../images/sophie-x-card.JPG") center 18% / 138% auto no-repeat;
  box-shadow: inset 0 0 0 3px rgba(15, 12, 11, .55);
}

.mini-copy {
  display: grid;
  gap: 1px;
}

.mini-name {
  font-size: 15px;
  font-weight: 650;
  letter-spacing: .015em;
}

.mini-meta {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.verify {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: #19100f;
  background: var(--champagne);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .2);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
}

.mini-name .verify {
  width: 14px;
  height: 14px;
  margin-left: 2px;
  font-size: 8px;
  vertical-align: 1px;
}

.hero {
  position: sticky;
  z-index: 0;
  top: 0;
  height: min(88vh, 780px);
  min-height: 650px;
  overflow: hidden;
  opacity: var(--hero-opacity);
  background: #171210;
}

.media {
  position: absolute;
  inset: 0;
  display: block;
  background-repeat: no-repeat;
}

.media-hero {
  background-image: url("../images/sophie-hero.JPG");
  background-position: center 21%;
  background-size: cover;
  transform: scale(1.015);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  content: "";
}

.hero::before {
  background:
    linear-gradient(180deg, rgba(10, 8, 8, .12) 0%, transparent 30%, rgba(10, 8, 8, .16) 52%, rgba(10, 8, 8, .96) 100%),
    linear-gradient(90deg, rgba(10, 8, 8, .32), transparent 48%);
}

.hero::after {
  inset: auto 24px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 238, 231, .45), transparent);
}

.hero-content {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 78px;
  left: 30px;
  display: grid;
  justify-items: start;
}

.hero-kicker,
.section-kicker {
  color: var(--champagne);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.name-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.name-row h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 16vw, 96px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .9;
  text-shadow: 0 9px 26px rgba(0, 0, 0, .25);
}

.name-row .verify {
  width: 24px;
  height: 24px;
  margin-top: 13px;
  font-size: 13px;
}

.hero-intro {
  margin: 15px 0 0;
  color: rgba(244, 238, 231, .74);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  letter-spacing: .025em;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 23px;
}

.social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(14, 11, 10, .38);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  transition: border-color .25s ease, background .25s ease, transform .25s var(--ease);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.social:hover {
  border-color: rgba(255, 255, 255, .36);
  background: rgba(28, 21, 19, .62);
  transform: translateY(-2px);
}

.social svg {
  width: 15px;
  height: 15px;
}

.social span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(244, 238, 231, .56);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero-scroll span {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
}

.link-area {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 18px;
  padding: 46px 24px 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 110% 12%, rgba(123, 57, 70, .14), transparent 27rem),
    linear-gradient(180deg, var(--ink-soft), #0e0b0a);
}

.link-area::before {
  position: absolute;
  top: 64px;
  bottom: 0;
  left: 36px;
  width: 1px;
  content: "";
  opacity: .7;
  background: linear-gradient(180deg, var(--line), transparent 30%, var(--line), transparent 88%);
}

.section-intro {
  position: relative;
  z-index: 1;
  max-width: 480px;
  padding: 10px 18px 25px 32px;
}

.section-intro h2,
.editorial-heading h2 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: clamp(34px, 8vw, 48px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .98;
}

.section-intro p {
  max-width: 410px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.tap-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
}

.tap-card:hover {
  transform: translateY(-3px);
}

.tap-card:active {
  transform: scale(.985);
}

.feature-card {
  position: relative;
  width: 100%;
  min-height: 310px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ivory);
  background: var(--panel);
  box-shadow: 0 26px 55px rgba(0, 0, 0, .29);
}

.feature-card::after {
  position: absolute;
  z-index: 3;
  inset: 10px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, .12);
}

.feature-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .42);
}

.media-feature {
  background-image: url("../images/sophie-instagram.JPG");
  background-position: center 17%;
  background-size: cover;
  transition: transform .8s var(--ease);
}

.feature-card:hover .media {
  transform: scale(1.025);
}

.card-dim {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 8, 8, .08), rgba(10, 8, 8, .16) 43%, rgba(10, 8, 8, .93) 100%),
    linear-gradient(90deg, rgba(10, 8, 8, .28), transparent 72%);
}

.brand-dot {
  position: absolute;
  z-index: 4;
  top: 25px;
  right: 25px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(16, 12, 11, .38);
  font-size: 20px;
  transition: color .3s ease, background .3s ease, transform .35s var(--ease);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.feature-card:hover .brand-dot {
  color: #201513;
  background: var(--champagne);
  transform: rotate(5deg);
}

.feature-copy {
  position: absolute;
  z-index: 4;
  right: 34px;
  bottom: 32px;
  left: 34px;
  display: grid;
}

.feature-copy > small {
  margin-bottom: 8px;
  color: var(--champagne);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.card-title {
  display: block;
  font-family: var(--serif);
  font-size: clamp(34px, 8.5vw, 48px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .96;
}

.card-subtitle {
  display: block;
  margin-top: 10px;
  color: rgba(244, 238, 231, .67);
  font-size: 12px;
  letter-spacing: .03em;
}

.discovery-block,
.social-showcase,
.story-section {
  position: relative;
  padding-top: 22px;
}

.block-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  padding: 0 4px 13px;
  border-bottom: 1px solid var(--line);
}

.block-heading > span {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -.015em;
}

.block-heading > small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.discovery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: 10px;
}

.discovery-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  min-width: 0;
  min-height: 126px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ivory);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .035), transparent 46%),
    var(--panel);
}

.discovery-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0;
  background: radial-gradient(circle at 12% 10%, rgba(201, 178, 148, .13), transparent 62%);
  transition: opacity .35s ease;
}

.discovery-card:hover {
  border-color: var(--line-strong);
}

.discovery-card:hover::before {
  opacity: 1;
}

.discovery-world {
  grid-column: 1 / -1;
  min-height: 116px;
  background:
    radial-gradient(circle at 92% 14%, rgba(123, 57, 70, .24), transparent 48%),
    linear-gradient(145deg, #211816, #151110);
}

.discovery-more,
.discovery-close {
  grid-template-columns: 1fr auto;
  align-content: space-between;
  min-height: 164px;
}

.discovery-more .discovery-icon,
.discovery-close .discovery-icon {
  grid-column: 1;
  grid-row: 1;
}

.discovery-more .discovery-copy,
.discovery-close .discovery-copy {
  grid-column: 1 / -1;
  grid-row: 2;
}

.discovery-more .discovery-arrow,
.discovery-close .discovery-arrow {
  grid-column: 2;
  grid-row: 1;
}

.discovery-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(201, 178, 148, .35);
  border-radius: 50%;
  color: var(--champagne);
}

.discovery-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.discovery-copy {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  gap: 4px;
}

.discovery-copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.discovery-copy strong {
  font-family: var(--serif);
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.02;
}

.discovery-arrow {
  position: relative;
  z-index: 1;
  align-self: start;
  color: var(--champagne);
  font-size: 19px;
}

.more-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  min-height: 88px;
  padding: 14px 19px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ivory);
  background: rgba(31, 24, 22, .76);
}

.more-strip:hover {
  border-color: var(--line-strong);
  background: var(--panel-light);
}

.neutral-link-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(201, 178, 148, .34);
  border-radius: 50%;
  color: var(--champagne);
  background: #16110f;
  font-family: var(--serif);
  font-size: 23px;
  font-style: italic;
}

.more-strip-copy {
  display: grid;
  gap: 3px;
}

.more-strip-copy strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -.01em;
}

.more-strip-copy small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.chevron {
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--champagne);
  border-right: 1px solid var(--champagne);
  transform: rotate(45deg);
}

.telegram-card {
  min-height: 360px;
}

.media-telegram {
  background-image: url("../images/sophie-telegram.jpg");
  background-position: center 13%;
  background-size: cover;
  filter: sepia(.12) contrast(1.04);
  transition: transform .8s var(--ease);
}

.telegram-dot svg {
  width: 21px;
  height: 21px;
}

.social-showcase {
  margin-top: 2px;
}

.small-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 230px 230px;
  gap: 10px;
  padding-top: 10px;
}

.small-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: white;
  background: #171311;
}

.small-card:first-child {
  grid-row: 1 / 3;
}

.small-card:hover {
  border-color: var(--line-strong);
}

.small-card .media {
  transition: transform .75s var(--ease), filter .4s ease;
}

.small-card:hover .media {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.media-tiktok {
  background-image: url("../images/sophie-tiktok.jpg");
  background-position: 43% center;
  background-size: cover;
}

.media-x {
  background-image: url("../images/sophie-x-card.JPG");
  background-position: center 15%;
  background-size: cover;
}

.media-instagram {
  background-image: url("../images/sophie-feature.jpg");
  background-position: center 18%;
  background-size: cover;
}

.small-card .card-dim {
  background: linear-gradient(180deg, rgba(10, 8, 8, .04), transparent 42%, rgba(10, 8, 8, .88));
}

.small-card > svg {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 17px;
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .4));
}

.small-card-title {
  position: absolute;
  z-index: 2;
  right: 17px;
  bottom: 17px;
  left: 17px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .38);
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: -.01em;
}

.story-section {
  margin-top: 28px;
  padding-bottom: 8px;
}

.editorial-heading {
  padding: 22px 10px 32px 32px;
}

.editorial-heading h2 em {
  color: var(--champagne);
  font-weight: 400;
}

.story-stack {
  border-top: 1px solid var(--line);
}

.story-card {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 31px 8px;
  border-bottom: 1px solid var(--line);
}

.story-card:nth-child(2) {
  padding-left: 38px;
}

.story-number {
  padding-top: 4px;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  letter-spacing: .08em;
}

.story-copy {
  max-width: 430px;
}

.story-copy h2 {
  margin: 0 0 11px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -.025em;
}

.story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

footer {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 29px 28px calc(31px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #0e0b0a;
}

.footer-signature {
  color: var(--ivory-soft);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}

footer a {
  text-decoration: none;
  transition: color .2s ease;
}

footer a:hover {
  color: var(--ivory);
}

.motion-ready .reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

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

.safety-layer {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: max(22px, env(safe-area-inset-top)) 20px max(22px, env(safe-area-inset-bottom));
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  background:
    radial-gradient(circle at 50% 10%, rgba(123, 57, 70, .29), transparent 30rem),
    rgba(7, 6, 6, .94);
  transition: opacity .28s ease, visibility .28s ease;
  backdrop-filter: blur(24px) saturate(80%);
  -webkit-backdrop-filter: blur(24px) saturate(80%);
}

.safety-layer.visible {
  opacity: 1;
  visibility: visible;
}

body.modal-open {
  overflow: hidden;
}

.browser-guide-wrap,
.landing-stage {
  position: relative;
  width: min(100%, 510px);
}

.browser-guide-wrap {
  padding-top: 90px;
}

.browser-guide-arrow {
  position: absolute;
  top: -15px;
  right: -4px;
  width: 146px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .3));
  animation: guide-arrow 1.8s ease-in-out infinite;
}

.browser-guide-card,
.safety-card {
  position: relative;
  width: min(100%, 480px);
  padding: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: var(--ivory);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .035), transparent 45%),
    rgba(24, 19, 18, .98);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .55);
}

.browser-guide-card::before,
.safety-card::before {
  position: absolute;
  inset: 9px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, .075);
}

.guide-close,
.landing-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ivory);
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  font-weight: 300;
}

.guide-kicker {
  display: block;
  padding-right: 45px;
  color: var(--champagne);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.browser-guide-card h2,
.safety-card h2 {
  margin: 13px 0 0;
  font-family: var(--serif);
  font-size: clamp(31px, 8vw, 43px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
}

.browser-steps {
  display: grid;
  gap: 18px;
  margin: 28px 0 20px;
  padding: 24px 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.browser-steps li {
  display: grid;
  grid-template-columns: 35px 1fr;
  align-items: start;
  gap: 13px;
  color: var(--ivory-soft);
  font-size: 14px;
  line-height: 1.5;
}

.step-number {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(201, 178, 148, .42);
  border-radius: 50%;
  color: var(--champagne);
  font-family: var(--serif);
  font-style: italic;
}

.privacy-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.age-gate {
  text-align: center;
}

.safety-card {
  width: min(100%, 440px);
}

.age-badge {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  place-items: center;
  border: 1px solid rgba(201, 178, 148, .5);
  border-radius: 50%;
  color: var(--champagne);
  background: rgba(201, 178, 148, .04);
  font-family: var(--serif);
  font-size: 30px;
  font-style: italic;
}

.safety-card .guide-kicker {
  padding: 0;
}

.safety-card > p:not(.privacy-note) {
  margin: 18px 0 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.age-confirm,
.age-cancel {
  width: 100%;
  min-height: 54px;
  border-radius: 1px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.age-confirm {
  border: 1px solid var(--champagne);
  color: #1d1513;
  background: var(--champagne);
}

.age-cancel {
  margin-top: 9px;
  border: 1px solid var(--line);
  color: var(--ivory-soft);
  background: transparent;
}

.protected-landing {
  text-align: center;
}

.landing-stage {
  display: grid;
  min-height: min(620px, calc(100vh - 44px));
  place-items: center;
  padding: 80px 20px 55px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 48%, rgba(123, 57, 70, .3), transparent 18rem),
    rgba(19, 15, 14, .78);
}

.landing-close {
  top: 20px;
  right: 20px;
}

.landing-status {
  position: absolute;
  top: 26px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.landing-status span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(201, 178, 148, .45);
  border-radius: 50%;
  color: var(--champagne);
  font-size: 9px;
}

.landing-button-wrap {
  position: relative;
  width: min(100%, 360px);
}

.landing-ring {
  position: absolute;
  inset: -18px;
  pointer-events: none;
  border: 1px solid rgba(201, 178, 148, .17);
  border-radius: 2px;
}

.ring-two {
  inset: -32px;
  border-color: rgba(123, 57, 70, .28);
}

.protected-destination-button {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 112px;
  padding: 0 28px;
  border: 1px solid var(--champagne);
  border-radius: 1px;
  color: #211513;
  background: var(--champagne);
  cursor: pointer;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .36);
  transition: transform .25s var(--ease), box-shadow .25s ease;
}

.protected-destination-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .48);
}

.protected-destination-button:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.protected-destination-button span:first-child {
  font-family: var(--serif);
  font-size: clamp(31px, 8vw, 42px);
  letter-spacing: -.03em;
}

.protected-destination-button span:last-child {
  font-size: 25px;
}

.landing-copy {
  position: absolute;
  right: 34px;
  bottom: 32px;
  left: 34px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.noscript-note {
  position: fixed;
  z-index: 200;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 14px;
  border: 1px solid var(--line-strong);
  color: var(--ivory);
  background: #241a17;
  text-align: center;
  font-size: 12px;
}

@keyframes guide-arrow {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(6px, -7px);
  }
}

@media (min-width: 700px) {
  .page-shell {
    padding: 34px 0;
  }

  .profile-card {
    min-height: calc(100vh - 68px);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 4px;
  }

  .hero {
    height: min(840px, calc(100vh - 68px));
  }

  .link-area {
    padding-inline: 34px;
  }

  .mini-header {
    top: 50px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 82vh;
    min-height: 610px;
  }

  .hero-content {
    right: 22px;
    bottom: 70px;
    left: 22px;
  }

  .social {
    padding-inline: 11px;
  }

  .social span {
    font-size: 8px;
  }

  .link-area {
    gap: 15px;
    padding: 39px 16px 21px;
  }

  .link-area::before {
    left: 28px;
  }

  .section-intro {
    padding-right: 8px;
    padding-left: 24px;
  }

  .feature-card {
    min-height: 290px;
  }

  .feature-copy {
    right: 26px;
    bottom: 27px;
    left: 26px;
  }

  .brand-dot {
    top: 22px;
    right: 22px;
  }

  .discovery-card {
    padding: 17px;
  }

  .discovery-more,
  .discovery-close {
    min-height: 156px;
  }

  .telegram-card {
    min-height: 335px;
  }

  .small-grid {
    grid-template-rows: 205px 205px;
  }

  .editorial-heading {
    padding-left: 24px;
  }

  .story-card {
    gap: 13px;
  }

  .story-card:nth-child(2) {
    padding-left: 22px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .browser-guide-card,
  .safety-card {
    padding: 28px 24px;
  }

  .landing-stage {
    padding-inline: 14px;
  }
}

@media (max-width: 360px) {
  .social span {
    display: none;
  }

  .social {
    width: 38px;
    justify-content: center;
    padding: 0;
  }

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

  .discovery-world {
    grid-column: auto;
  }

  .discovery-more,
  .discovery-close {
    min-height: 128px;
  }

  .small-grid {
    grid-template-rows: 180px 180px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .motion-ready .reveal-item {
    opacity: 1;
    transform: none;
  }
}
