:root {
  --ink: #100914;
  --plum: #25102f;
  --plum-2: #3d1750;
  --violet: #7e35a5;
  --gold: #f6c65d;
  --soft-gold: #ffe6a5;
  --cream: #fff8ea;
  --muted: #cdbfd2;
  --line: rgba(246, 198, 93, .28);
  --panel: rgba(31, 14, 42, .78);
  --panel-2: rgba(255, 255, 255, .06);
  --shadow: 0 28px 90px rgba(0, 0, 0, .38);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--cream);
  background:
    radial-gradient(circle at 16% 8%, rgba(126, 53, 165, .44), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(246, 198, 93, .16), transparent 34%),
    linear-gradient(180deg, #0b0710 0%, #160b20 42%, #0d0710 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .6), transparent 76%);
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #1a0d06;
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 10;
  width: min(1240px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(246, 198, 93, .24);
  border-radius: 28px;
  background: rgba(14, 7, 18, .78);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 178px;
}

.brand img {
  width: clamp(166px, 17vw, 238px);
  height: 54px;
  object-fit: contain;
  border-radius: 16px;
}

.nav-toggle {
  display: none;
  min-width: 58px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: var(--cream);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  padding: 12px 14px;
  border-radius: 999px;
  color: #f4e8c9;
  font-weight: 750;
  font-size: .94rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav a:hover,
.nav a.active {
  background: linear-gradient(135deg, #f7d77b, #9e5a18);
  color: #15080f;
  transform: translateY(-1px);
}

.hero {
  padding: 40px 0 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(350px, .76fr);
  gap: 46px;
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft-gold);
  background: rgba(255, 255, 255, .06);
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  margin-top: 18px;
  max-width: 650px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.1vw, 5.55rem);
  line-height: .94;
  color: #fff5d7;
}

.accent {
  color: var(--gold);
}

.hero-copy {
  margin: 22px 0 0;
  max-width: min(610px, 100%);
  color: #e1d4e5;
  font-size: 1.08rem;
  line-height: 1.72;
}

.notice {
  margin: 22px 0 0;
  max-width: min(590px, 100%);
  padding: 17px 18px;
  border: 1px solid rgba(246, 198, 93, .24);
  border-radius: 24px;
  background: rgba(255, 255, 255, .055);
  color: #d7ccda;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn.primary {
  color: #180a0e;
  background: linear-gradient(135deg, #ffe49c, #c17a20);
  box-shadow: 0 16px 34px rgba(246, 198, 93, .18);
}

.btn.ghost {
  border-color: var(--line);
  color: var(--soft-gold);
  background: rgba(255, 255, 255, .055);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, .25);
}

.phone-stage {
  position: relative;
  justify-self: center;
  width: min(385px, 100%);
}

.phone-stage::before {
  content: "";
  position: absolute;
  inset: 10% -14% 2%;
  background: radial-gradient(circle, rgba(246, 198, 93, .24), transparent 66%);
  filter: blur(18px);
}

.phone-stage img {
  position: relative;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.seal {
  position: absolute;
  left: -28px;
  bottom: 34px;
  width: 118px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(27, 9, 36, .86);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--soft-gold);
  font: 850 .82rem/1.25 Inter, sans-serif;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .32);
}

.quick-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -12px;
  padding-bottom: 34px;
}

.round-card {
  min-height: 154px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .03));
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
  transition: transform .24s ease, border-color .24s ease;
}

.round-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 198, 93, .72);
}

.orb {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #1a0914;
  background: linear-gradient(135deg, #fff2b8, #ba741c);
  font-weight: 950;
  font-size: 1.34rem;
}

.round-card h3 {
  color: #fff3d1;
  font-size: 1.2rem;
}

.round-card p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding: 72px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  color: #fff4d2;
  line-height: 1;
}

.section-head p {
  margin: 14px 0 0;
  color: #d8ccdb;
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 34px;
  align-items: center;
}

.image-panel {
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.text-stack {
  display: grid;
  gap: 14px;
}

.glass-note {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(246, 198, 93, .22);
  background: rgba(255, 255, 255, .055);
}

.glass-note h3 {
  color: var(--soft-gold);
  font-size: 1.1rem;
}

.glass-note p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
}

.gallery-card {
  position: relative;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: #190d22;
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card.tall {
  grid-row: span 2;
}

.caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 20px;
  background: rgba(16, 9, 20, .76);
  backdrop-filter: blur(14px);
}

.caption strong {
  color: #fff4d4;
}

.caption span {
  display: block;
  margin-top: 4px;
  color: #d8ccdb;
  line-height: 1.45;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}

.step-card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .1), transparent),
    rgba(28, 12, 37, .74);
  overflow: hidden;
}

.step-card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  right: 18px;
  top: 16px;
  color: rgba(246, 198, 93, .28);
  font-size: 3.2rem;
  font-weight: 950;
}

.step-card h3 {
  color: var(--soft-gold);
  max-width: 170px;
}

.step-card p {
  margin: 58px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .055);
  overflow: hidden;
}

.faq-button {
  width: 100%;
  padding: 19px 20px;
  border: 0;
  background: transparent;
  color: #fff2cf;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font: 850 1rem/1.3 Inter, sans-serif;
  cursor: pointer;
}

.faq-button span:last-child {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(246, 198, 93, .16);
  transition: transform .2s ease;
}

.faq-item.open .faq-button span:last-child {
  transform: rotate(45deg);
}

.faq-panel {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-item.open .faq-panel {
  display: block;
}

.page-hero {
  padding: 62px 0 30px;
}

.page-hero .panel {
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: rgba(255, 255, 255, .055);
  box-shadow: var(--shadow);
}

.page-hero .copy {
  padding: 38px;
  align-self: center;
}

.page-hero h1 {
  font-size: clamp(2.65rem, 5.6vw, 5.3rem);
}

.page-hero p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.page-hero img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.article-card,
.side-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .055);
  padding: 28px;
}

.article-card h2 {
  margin-top: 26px;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
}

.article-card h2:first-child {
  margin-top: 0;
}

.article-card p,
.article-card li,
.side-card p {
  color: var(--muted);
  line-height: 1.72;
}

.article-card ul {
  padding-left: 20px;
}

.side-card {
  position: sticky;
  top: 112px;
}

.side-card img {
  border-radius: 22px;
  margin-bottom: 16px;
  aspect-ratio: 1;
  object-fit: cover;
}

.footer {
  padding: 46px 0 34px;
  border-top: 1px solid rgba(246, 198, 93, .16);
  background: rgba(0, 0, 0, .18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-logo {
  width: 220px;
  border-radius: 16px;
}

.footer p {
  color: var(--muted);
  line-height: 1.65;
  max-width: 620px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #f5e6c0;
  border: 1px solid transparent;
}

.footer-links a:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, .055);
}

.fineprint {
  margin-top: 22px;
  color: #a99caf;
  font-size: .9rem;
}

.reveal {
  opacity: 1;
  transform: none;
  animation: riseIn .7s ease both;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

@keyframes riseIn {
  from {
    opacity: .94;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    display: none;
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 7, 20, .96);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .split,
  .page-hero .panel,
  .article-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-row,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

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

  .side-card {
    position: static;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(360px, calc(100% - 24px));
    margin-left: 12px;
    margin-right: auto;
  }

  .topbar {
    width: min(372px, calc(100% - 18px));
    margin-left: 9px;
    margin-right: auto;
    top: 8px;
    border-radius: 22px;
  }

  .brand img {
    width: 156px;
    height: 48px;
  }

  .nav.open {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2rem, 10.5vw, 2.65rem);
    line-height: 1.04;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-copy,
  .notice {
    font-size: .98rem;
    overflow-wrap: break-word;
  }

  .hero-grid {
    gap: 26px;
  }

  .phone-stage {
    width: min(330px, 100%);
  }

  .seal {
    width: 92px;
    left: 10px;
    bottom: 16px;
  }

  .quick-row,
  .steps {
    grid-template-columns: 1fr;
  }

  .round-card {
    border-radius: 34px;
  }

  .section {
    padding: 48px 0;
  }

  .page-hero .copy,
  .article-card,
  .side-card {
    padding: 22px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
