:root {
  --ink: #0a0b1d;
  --ink-2: #13152b;
  --ivory: #f7f0e6;
  --ivory-2: #eadfce;
  --saffron: #f2a13f;
  --garnet: #8e2447;
  --teal: #126c6a;
  --gold: #d5aa55;
  --white: #fffaf3;
  --muted: #b7b5c6;
  --line: rgba(255, 250, 243, 0.16);
  --shadow: 0 30px 80px rgba(2, 3, 15, 0.24);
  --radius: 1.25rem;
  --radius-lg: 2rem;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --max: 76rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  content: "";
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
summary {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 4px;
}

::selection {
  background: var(--saffron);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 0.75rem 1rem;
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(7, 8, 26, 0.78), rgba(7, 8, 26, 0));
}

.header-inner {
  min-height: 5.75rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
}

.brand-mark {
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--garnet) 64%, var(--teal));
  box-shadow: 0 0 0 0.35rem rgba(242, 161, 63, 0.08);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 800;
}

.brand-word {
  font-family: var(--serif);
  font-size: 1.62rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.8rem);
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 250, 243, 0.78);
  font-size: 0.83rem;
  font-weight: 750;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.48rem;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--saffron);
  transition: transform 200ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.22rem;
  background: rgba(11, 12, 35, 0.46);
  backdrop-filter: blur(12px);
}

.language-switcher a {
  min-width: 2.15rem;
  min-height: 2.05rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.language-switcher a:hover,
.language-switcher a[aria-current="true"] {
  background: var(--ivory);
  color: var(--ink);
}

.header-sale {
  min-height: 2.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: var(--saffron);
  color: var(--ink);
  padding: 0.25rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.header-sale:hover {
  transform: translateY(-2px);
  background: var(--white);
}

.header-sale::before {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--garnet);
  content: "";
  box-shadow: 0 0 0 0.28rem rgba(142, 36, 71, 0.12);
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  min-width: 2.85rem;
  min-height: 2.85rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(11, 12, 35, 0.58);
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  width: 1.05rem;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: var(--white);
  content: "";
  transition: transform 180ms ease;
}

.menu-lines::before {
  transform: translateY(-0.35rem);
}

.menu-lines::after {
  transform: translateY(0.23rem);
}

.mobile-nav[open] .menu-lines {
  background: transparent;
}

.mobile-nav[open] .menu-lines::before {
  transform: translateY(0) rotate(45deg);
}

.mobile-nav[open] .menu-lines::after {
  transform: translateY(-2px) rotate(-45deg);
}

.mobile-panel {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  width: min(19rem, calc(100vw - 2rem));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.4rem;
  background: rgba(11, 12, 35, 0.97);
  box-shadow: var(--shadow);
  padding: 1rem;
  backdrop-filter: blur(18px);
}

.mobile-panel nav {
  display: grid;
  gap: 0.25rem;
}

.mobile-panel nav a {
  border-radius: 0.8rem;
  padding: 0.72rem 0.8rem;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.mobile-panel nav a:hover,
.mobile-panel nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-panel .language-switcher {
  margin-top: 0.85rem;
  width: max-content;
}

.hero {
  position: relative;
  min-height: 48rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 44%, rgba(18, 108, 106, 0.52), transparent 24rem),
    radial-gradient(circle at 6% 70%, rgba(142, 36, 71, 0.42), transparent 29rem),
    linear-gradient(140deg, #090a20 0%, #11122c 48%, #091b25 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border-radius: 48% 52% 44% 56%;
  filter: blur(2px);
  opacity: 0.72;
  animation: float-field 16s ease-in-out infinite alternate;
}

.hero::before {
  width: 28rem;
  height: 28rem;
  top: -10rem;
  right: 13%;
  background: linear-gradient(135deg, rgba(242, 161, 63, 0.35), rgba(142, 36, 71, 0.04));
}

.hero::after {
  width: 34rem;
  height: 34rem;
  right: -13rem;
  bottom: -15rem;
  background: linear-gradient(135deg, rgba(18, 108, 106, 0.6), rgba(242, 161, 63, 0.08));
  animation-delay: -7s;
}

@keyframes float-field {
  to {
    transform: translate3d(2.4rem, 1.6rem, 0) rotate(11deg) scale(1.08);
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 48rem;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(21rem, 0.88fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: 8.5rem;
  padding-bottom: 4.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.3rem;
  color: var(--saffron);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1,
.inner-hero h1,
.section-title {
  font-family: var(--serif);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 0.97;
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.75rem, 8vw, 7.8rem);
}

.hero h1 em,
.inner-hero h1 em {
  color: var(--saffron);
  font-weight: inherit;
}

.hero-lead {
  max-width: 42rem;
  margin: 1.65rem 0 0;
  color: rgba(255, 250, 243, 0.78);
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  line-height: 1.68;
}

.price-line {
  margin: 1.25rem 0 0;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 800;
}

.hero-actions,
.cta-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.button {
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.62rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--saffron);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(242, 161, 63, 0.22);
}

.button-primary:hover {
  background: var(--white);
  box-shadow: 0 20px 45px rgba(255, 250, 243, 0.2);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-light {
  border-color: rgba(10, 11, 29, 0.18);
  background: rgba(255, 255, 255, 0.38);
  color: var(--ink);
}

.button-arrow::after {
  content: "↗";
  font-size: 1.1em;
  transition: transform 180ms ease;
}

.button-arrow:hover::after {
  transform: translate(2px, -2px);
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-top: 1.45rem;
  color: rgba(255, 250, 243, 0.72);
  font-size: 0.88rem;
}

.hero-contact a {
  font-weight: 720;
  text-decoration: none;
}

.hero-contact a:hover {
  color: var(--saffron);
}

.hero-contact span {
  color: rgba(255, 255, 255, 0.3);
}

.hero-art {
  position: relative;
  min-height: 32rem;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-art::before {
  position: absolute;
  inset: 5% 2%;
  z-index: -2;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 48% 52% 45% 55%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at 24% 21%, rgba(242, 161, 63, 0.38), transparent 9rem),
    radial-gradient(circle at 72% 82%, rgba(142, 36, 71, 0.5), transparent 12rem);
  box-shadow: var(--shadow);
  transform: rotate(-5deg);
  backdrop-filter: blur(10px);
}

.monogram-stage {
  position: relative;
  width: min(28rem, 82vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.monogram-s {
  position: relative;
  z-index: 3;
  width: 49%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 50%;
  background: linear-gradient(150deg, var(--saffron), #e67450 48%, var(--garnet));
  color: var(--ink);
  box-shadow: 0 28px 60px rgba(3, 3, 18, 0.38), inset 0 1px rgba(255, 255, 255, 0.38);
  font-family: var(--serif);
  font-size: clamp(6rem, 12vw, 9rem);
  font-style: italic;
  font-weight: 800;
  line-height: 1;
  transform: rotate(-7deg);
}

.orbit {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 50%;
  animation: orbit-spin 26s linear infinite;
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  content: "";
  background: var(--saffron);
  box-shadow: 0 0 0 0.5rem rgba(242, 161, 63, 0.12);
}

.orbit::before {
  top: 7%;
  left: 22%;
}

.orbit::after {
  right: 8%;
  bottom: 22%;
  background: var(--teal);
  box-shadow: 0 0 0 0.5rem rgba(18, 108, 106, 0.15);
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

.orbit-label {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(8, 9, 29, 0.72);
  padding: 0.55rem 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
}

.orbit-label.one { top: 9%; right: 4%; }
.orbit-label.two { bottom: 17%; left: 0; }
.orbit-label.three { right: 1%; bottom: 2%; }

.sale-card {
  position: absolute;
  right: -0.4rem;
  bottom: 8%;
  z-index: 5;
  width: min(14.8rem, 57vw);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.3rem;
  background: rgba(247, 240, 230, 0.94);
  color: var(--ink);
  padding: 1rem;
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.sale-card small {
  display: block;
  color: var(--garnet);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sale-card strong {
  display: block;
  margin-top: 0.18rem;
  font-family: var(--serif);
  font-size: 1.42rem;
  line-height: 1.15;
}

.fact-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(5, 6, 22, 0.34);
}

.facts {
  min-height: 6.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact {
  display: grid;
  place-content: center;
  gap: 0.12rem;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  padding: 1rem;
  text-align: center;
}

.fact:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.fact strong {
  color: var(--saffron);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
}

.fact span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.section-light {
  background: var(--ivory);
  color: var(--ink);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-garnet {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(242, 161, 63, 0.23), transparent 25rem),
    linear-gradient(135deg, #6e1938, var(--garnet));
  color: var(--white);
}

.section-teal {
  background:
    radial-gradient(circle at 15% 0%, rgba(242, 161, 63, 0.18), transparent 25rem),
    linear-gradient(145deg, #0b4f50, var(--teal));
  color: var(--white);
}

.section-kicker {
  margin: 0 0 1rem;
  color: var(--garnet);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-dark .section-kicker,
.section-garnet .section-kicker,
.section-teal .section-kicker {
  color: var(--saffron);
}

.section-title {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.65rem);
}

.section-intro {
  max-width: 42rem;
  margin: 1.3rem 0 0;
  color: rgba(10, 11, 29, 0.68);
  font-size: 1.08rem;
}

.section-dark .section-intro,
.section-garnet .section-intro,
.section-teal .section-intro {
  color: rgba(255, 250, 243, 0.72);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 7vw, 6.5rem);
  align-items: start;
}

.word-study {
  position: sticky;
  top: 2rem;
  min-height: 25rem;
  display: grid;
  place-content: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at 20% 20%, rgba(242, 161, 63, 0.35), transparent 14rem),
    var(--ink-2);
  box-shadow: var(--shadow);
  padding: 2rem;
  text-align: center;
}

.word-study::after {
  position: absolute;
  inset: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius-lg) - 0.5rem);
  content: "";
}

.word-study .devanagari {
  color: var(--saffron);
  font-size: clamp(3.7rem, 8vw, 7rem);
  line-height: 1;
}

.word-study strong {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.word-study small {
  display: block;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.prose {
  max-width: 46rem;
}

.prose h2,
.prose h3 {
  font-family: var(--serif);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.prose h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.prose h3 {
  margin: 2.2rem 0 0.75rem;
  font-size: 1.55rem;
}

.prose p {
  margin: 0 0 1.15rem;
  color: rgba(10, 11, 29, 0.72);
}

.section-dark .prose p,
.section-garnet .prose p,
.section-teal .prose p {
  color: rgba(255, 250, 243, 0.72);
}

.prose a,
.source-list a {
  color: var(--garnet);
  font-weight: 750;
}

.section-dark .prose a,
.section-garnet .prose a,
.section-teal .prose a {
  color: var(--saffron);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  border: 1px solid rgba(10, 11, 29, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  padding: 1.5rem;
  box-shadow: 0 18px 50px rgba(16, 12, 23, 0.06);
  transform: perspective(800px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card::after {
  position: absolute;
  width: 9rem;
  height: 9rem;
  right: -4rem;
  bottom: -4rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 161, 63, 0.42), rgba(242, 161, 63, 0));
  content: "";
  transition: transform 220ms ease;
}

.card:hover {
  border-color: rgba(142, 36, 71, 0.25);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 26px 70px rgba(16, 12, 23, 0.13);
}

.card:hover::after {
  transform: scale(1.35);
}

.section-dark .card,
.section-garnet .card,
.section-teal .card {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.section-dark .card:hover,
.section-garnet .card:hover,
.section-teal .card:hover {
  border-color: rgba(242, 161, 63, 0.45);
  background: rgba(255, 255, 255, 0.1);
}

.card-number,
.card-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--saffron);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 800;
}

.section-dark .card-number,
.section-garnet .card-number,
.section-teal .card-number,
.section-dark .card-icon,
.section-garnet .card-icon,
.section-teal .card-icon {
  background: var(--saffron);
  color: var(--ink);
}

.card h3 {
  position: relative;
  z-index: 1;
  margin: 2.7rem 0 0.8rem;
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(10, 11, 29, 0.67);
  font-size: 0.94rem;
}

.section-dark .card p,
.section-garnet .card p,
.section-teal .card p {
  color: rgba(255, 250, 243, 0.68);
}

.definition-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-top: 3.4rem;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3.2vw, 2.65rem);
  letter-spacing: -0.035em;
  text-align: center;
}

.definition-line i {
  color: var(--saffron);
  font-family: var(--sans);
  font-size: 1rem;
  font-style: normal;
}

.note {
  margin-top: 2rem;
  border-left: 4px solid var(--saffron);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(242, 161, 63, 0.11);
  padding: 1.25rem 1.35rem;
}

.note strong {
  display: block;
  margin-bottom: 0.35rem;
}

.note p {
  margin: 0;
}

.process {
  counter-reset: steps;
  display: grid;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(10, 11, 29, 0.15);
}

.process-step {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr) minmax(13rem, 0.62fr);
  gap: 1.5rem;
  align-items: start;
  border-bottom: 1px solid rgba(10, 11, 29, 0.15);
  padding: 1.7rem 0;
}

.process-step::before {
  content: "0" counter(steps);
  color: var(--garnet);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 800;
}

.process-step h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.process-step p {
  margin: 0;
  color: rgba(10, 11, 29, 0.64);
  font-size: 0.93rem;
}

.section-dark .process,
.section-garnet .process,
.section-teal .process,
.section-dark .process-step,
.section-garnet .process-step,
.section-teal .process-step {
  border-color: rgba(255, 255, 255, 0.14);
}

.section-dark .process-step::before,
.section-garnet .process-step::before,
.section-teal .process-step::before {
  color: var(--saffron);
}

.section-dark .process-step p,
.section-garnet .process-step p,
.section-teal .process-step p {
  color: rgba(255, 250, 243, 0.66);
}

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--garnet);
  color: var(--white);
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 2.4rem;
  padding: 1.1rem 0;
  animation: marquee 28s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  font-style: italic;
  white-space: nowrap;
}

.marquee-track span::after {
  color: var(--saffron);
  content: "✦";
  font-family: var(--sans);
  font-size: 0.75em;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 15%, rgba(242, 161, 63, 0.42), transparent 21rem),
    radial-gradient(circle at 14% 95%, rgba(18, 108, 106, 0.68), transparent 25rem),
    linear-gradient(135deg, #17182e, #711c3b);
  box-shadow: var(--shadow);
  padding: clamp(2rem, 6vw, 5rem);
}

.cta-panel::after {
  position: absolute;
  right: -3rem;
  bottom: -7rem;
  content: "S";
  color: rgba(255, 255, 255, 0.06);
  font-family: var(--serif);
  font-size: 24rem;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 6.7rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.cta-panel p {
  max-width: 38rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 250, 243, 0.72);
  font-size: 1.05rem;
}

.independence {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #070817;
  color: rgba(255, 255, 255, 0.65);
  padding: 1.2rem 0;
  font-size: 0.78rem;
}

.independence p {
  margin: 0;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 42%, rgba(18, 108, 106, 0.48), transparent 24rem),
    radial-gradient(circle at 15% 95%, rgba(142, 36, 71, 0.48), transparent 28rem),
    linear-gradient(140deg, #090a20 0%, #11122c 62%, #091b25 100%);
  padding: 11.5rem 0 5.4rem;
}

.inner-hero::after {
  position: absolute;
  width: 28rem;
  height: 28rem;
  top: -11rem;
  right: -8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 48%;
  content: "";
  transform: rotate(19deg);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--saffron);
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.42fr);
  gap: 3rem;
  align-items: end;
}

.inner-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
}

.inner-hero .lead {
  max-width: 45rem;
  margin: 1.4rem 0 0;
  color: rgba(255, 250, 243, 0.72);
  font-size: 1.08rem;
}

.sale-stamp {
  justify-self: end;
  width: 13.5rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(242, 161, 63, 0.1);
  color: var(--saffron);
  font-family: var(--serif);
  font-size: 1.32rem;
  font-style: italic;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transform: rotate(7deg);
  box-shadow: inset 0 0 0 0.6rem rgba(255, 255, 255, 0.035);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.42fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.aside-box {
  position: sticky;
  top: 2rem;
  border: 1px solid rgba(10, 11, 29, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
  padding: 1.4rem;
}

.aside-box h2,
.aside-box h3 {
  margin: 0 0 0.8rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.aside-box p,
.aside-box li {
  color: rgba(10, 11, 29, 0.67);
  font-size: 0.9rem;
}

.aside-box ul {
  margin: 0;
  padding-left: 1.15rem;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.concept {
  border: 1px solid rgba(10, 11, 29, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  overflow: clip;
  transition: border-color 180ms ease, background 180ms ease;
}

.concept[open] {
  border-color: rgba(142, 36, 71, 0.38);
  background: rgba(255, 255, 255, 0.82);
}

.concept summary {
  min-height: 5.6rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  list-style: none;
}

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

.concept summary::after {
  content: "+";
  color: var(--garnet);
  font-size: 1.5rem;
  font-weight: 500;
}

.concept[open] summary::after {
  content: "−";
}

.concept summary strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  letter-spacing: -0.025em;
}

.concept-content {
  border-top: 1px solid rgba(10, 11, 29, 0.11);
  padding: 1.2rem;
}

.concept-content p {
  margin: 0;
  color: rgba(10, 11, 29, 0.68);
}

.two-column-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.list-panel {
  border-radius: var(--radius);
  padding: 1.4rem;
}

.list-panel.include {
  background: rgba(18, 108, 106, 0.11);
  border: 1px solid rgba(18, 108, 106, 0.24);
}

.list-panel.exclude {
  background: rgba(142, 36, 71, 0.08);
  border: 1px solid rgba(142, 36, 71, 0.2);
}

.list-panel h3 {
  margin: 0 0 0.9rem;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding: 0.36rem 0 0.36rem 1.6rem;
  color: rgba(10, 11, 29, 0.72);
  font-size: 0.92rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.36rem;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.exclude .check-list li::before {
  color: var(--garnet);
  content: "—";
}

.contact-card {
  border: 1px solid rgba(10, 11, 29, 0.13);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(242, 161, 63, 0.25), transparent 16rem),
    rgba(255, 255, 255, 0.58);
  padding: clamp(1.6rem, 5vw, 3.4rem);
  box-shadow: 0 24px 70px rgba(16, 12, 23, 0.1);
}

.contact-row {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  border-bottom: 1px solid rgba(10, 11, 29, 0.12);
  padding: 1.2rem 0;
}

.contact-row:first-of-type {
  border-top: 1px solid rgba(10, 11, 29, 0.12);
}

.contact-row small {
  color: rgba(10, 11, 29, 0.53);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-row a {
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.6vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.copy-button {
  min-height: 2.65rem;
  border: 1px solid rgba(10, 11, 29, 0.17);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 0.45rem 0.8rem;
  font-size: 0.76rem;
  font-weight: 850;
  cursor: pointer;
}

.copy-button:hover {
  background: var(--ink);
  color: var(--white);
}

.source-group {
  border-top: 1px solid rgba(10, 11, 29, 0.15);
  padding: 1.7rem 0;
}

.source-group:last-child {
  border-bottom: 1px solid rgba(10, 11, 29, 0.15);
}

.source-group h2 {
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.source-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.2rem;
}

.source-list li {
  color: rgba(10, 11, 29, 0.68);
}

.legal-index {
  margin: 0 0 2.4rem;
  padding: 1.2rem 1.2rem 1.2rem 2.2rem;
  border: 1px solid rgba(10, 11, 29, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
}

.legal-index a {
  color: var(--garnet);
  font-weight: 750;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #070817;
  color: var(--white);
  padding: 4.5rem 0 1.5rem;
}

.site-footer::before {
  position: absolute;
  right: -3rem;
  bottom: -9rem;
  color: rgba(255, 255, 255, 0.025);
  content: "swagat";
  font-family: var(--serif);
  font-size: 14rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.07em;
}

.footer-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(14rem, 1.2fr) repeat(3, minmax(9rem, 0.6fr));
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-intro p {
  max-width: 23rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.footer-heading {
  margin: 0 0 0.85rem;
  color: var(--saffron);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.46rem;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.3rem;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.72rem;
}

.footer-status {
  color: var(--saffron);
  font-weight: 800;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  max-width: min(22rem, calc(100vw - 2rem));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  padding: 0.8rem 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 161, 63, 0.09), transparent 68%);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(calc(var(--x, -30rem) - 50%), calc(var(--y, -30rem) - 50%), 0);
  transition: opacity 260ms ease;
}

@media (pointer: fine) {
  body:hover .cursor-glow { opacity: 1; }
}

.js [data-reveal] {
  transition: opacity 680ms cubic-bezier(.22,.61,.36,1), transform 680ms cubic-bezier(.22,.61,.36,1);
}

.js [data-reveal].reveal-ready {
  opacity: 0.08;
  transform: translateY(1.6rem);
}

.js [data-reveal].reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 68rem) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .header-actions > .language-switcher { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto auto; }
  .header-actions { justify-self: end; }
  .hero-grid { grid-template-columns: 1fr 0.75fr; }
  .cards.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: 1.1fr 1fr 1fr; }
  .footer-intro { grid-column: 1 / -1; }
}

@media (max-width: 52rem) {
  .site-header { position: absolute; }
  .header-inner { min-height: 5rem; gap: 0.65rem; }
  .brand-word { font-size: 1.36rem; }
  .header-sale { min-height: 2.55rem; padding-inline: 0.76rem; }
  .hero,
  .hero-grid { min-height: auto; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.3rem;
    padding-top: 9rem;
    padding-bottom: 3.5rem;
  }
  .hero h1 { max-width: 10ch; }
  .hero-art { min-height: 25rem; }
  .monogram-stage { width: min(23rem, 92vw); }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.11); }
  .split,
  .content-grid { grid-template-columns: 1fr; }
  .word-study,
  .aside-box { position: relative; top: auto; }
  .cards { grid-template-columns: 1fr; }
  .definition-line { grid-template-columns: 1fr; gap: 0.35rem; }
  .process-step { grid-template-columns: 3.5rem 1fr; }
  .process-step p { grid-column: 2; }
  .inner-hero-grid { grid-template-columns: 1fr; }
  .sale-stamp { justify-self: start; width: 10rem; }
  .details-grid,
  .two-column-list { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 1fr; gap: 0.4rem; }
  .contact-row .copy-button { width: fit-content; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .footer-intro { grid-column: 1 / -1; }
}

@media (max-width: 35rem) {
  .container { width: min(calc(100% - 1.25rem), var(--max)); }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-actions { display: none; }
  .mobile-nav { grid-column: 3; justify-self: end; }
  .brand-mark { width: 2.15rem; height: 2.15rem; }
  .brand-word { font-size: 1.23rem; }
  .header-sale { display: none; }
  .hero h1 { font-size: clamp(3.15rem, 16vw, 5rem); }
  .inner-hero h1 {
    font-size: clamp(2.9rem, 14vw, 3.2rem);
    overflow-wrap: anywhere;
  }
  .hero-lead { font-size: 1rem; }
  .hero-actions .button,
  .cta-actions .button,
  .contact-actions .button { width: 100%; }
  .hero-contact { display: grid; gap: 0.35rem; }
  .hero-contact span { display: none; }
  .sale-card { right: 0; }
  .orbit-label.two { left: 2%; }
  .fact { padding: 1rem 0.45rem; }
  .fact span { font-size: 0.61rem; }
  .section { padding: 4.4rem 0; }
  .section-title { font-size: clamp(2.5rem, 14vw, 4rem); }
  .cards.four { grid-template-columns: 1fr; }
  .card { min-height: 15rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-intro { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal].reveal-ready {
    opacity: 1;
    transform: none;
  }
  .cursor-glow { display: none; }
}

/* Deterministic mobile-preview mode used only for final QA captures. */
html.preview-mobile {
  background: #0a0b1d;
}

html.preview-mobile body {
  width: 390px;
  min-width: 390px;
  max-width: 390px;
}

html.preview-mobile .container {
  width: calc(390px - 1.25rem);
  max-width: calc(390px - 1.25rem);
  margin-inline: 0.625rem;
}
html.preview-mobile .desktop-nav,
html.preview-mobile .header-actions { display: none; }
html.preview-mobile .mobile-nav { display: block; grid-column: 3; justify-self: end; }
html.preview-mobile .header-inner { min-height: 5rem; gap: 0.55rem; grid-template-columns: auto 1fr auto; }
html.preview-mobile .brand-mark { width: 2.15rem; height: 2.15rem; }
html.preview-mobile .brand-word { font-size: 1.23rem; }
html.preview-mobile .header-sale { display: none; }
html.preview-mobile .hero,
html.preview-mobile .hero-grid { min-height: auto; }
html.preview-mobile .hero-grid { grid-template-columns: 1fr; gap: 2.3rem; padding-top: 9rem; padding-bottom: 3.5rem; }
html.preview-mobile .hero h1 { max-width: 10ch; font-size: 3.7rem; }
html.preview-mobile .inner-hero h1 { font-size: 3.2rem; overflow-wrap: anywhere; }
html.preview-mobile .hero-lead { font-size: 1rem; }
html.preview-mobile .hero-actions .button,
html.preview-mobile .cta-actions .button,
html.preview-mobile .contact-actions .button { width: 100%; }
html.preview-mobile .hero-contact { display: grid; gap: 0.35rem; }
html.preview-mobile .hero-contact span { display: none; }
html.preview-mobile .hero-art { min-height: 25rem; }
html.preview-mobile .monogram-stage { width: 23rem; }
html.preview-mobile .sale-card { right: 0; }
html.preview-mobile .facts { grid-template-columns: repeat(2, 1fr); }
html.preview-mobile .fact:nth-child(2) { border-right: 0; }
html.preview-mobile .fact:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.11); }
html.preview-mobile .split,
html.preview-mobile .content-grid,
html.preview-mobile .inner-hero-grid { grid-template-columns: 1fr; }
html.preview-mobile .word-study,
html.preview-mobile .aside-box { position: relative; top: auto; }
html.preview-mobile .cards,
html.preview-mobile .cards.four,
html.preview-mobile .details-grid,
html.preview-mobile .two-column-list { grid-template-columns: 1fr; }
html.preview-mobile .definition-line { grid-template-columns: 1fr; gap: 0.35rem; }
html.preview-mobile .process-step { grid-template-columns: 3.5rem 1fr; }
html.preview-mobile .process-step p { grid-column: 2; }
html.preview-mobile .sale-stamp { justify-self: start; width: 10rem; }
html.preview-mobile .contact-row { grid-template-columns: 1fr; gap: 0.4rem; }
html.preview-mobile .footer-top { grid-template-columns: 1fr; }
html.preview-mobile .footer-intro { grid-column: auto; }
html.preview-mobile .footer-bottom { flex-direction: column; }

/* Premium photographic / future-hospitality art direction */
:root {
  --ink: #07070d;
  --ink-2: #110c19;
  --ivory: #f4ede2;
  --ivory-2: #dfd0bc;
  --saffron: #ffb321;
  --garnet: #a82f50;
  --teal: #13766f;
  --gold: #dca746;
  --violet: #7157ff;
  --electric: #74f1d1;
  --white: #fffaf1;
  --muted: #bdb7c8;
  --line: rgba(255, 250, 241, 0.15);
  --shadow: 0 34px 100px rgba(1, 1, 8, 0.38);
  --radius: 0.85rem;
  --radius-lg: 1.35rem;
  --max: 80rem;
}

body {
  background:
    radial-gradient(circle at 80% 0%, rgba(113, 87, 255, 0.09), transparent 30rem),
    var(--ink);
}

body::before {
  z-index: 80;
  opacity: 0.035;
}

.site-header {
  position: fixed;
  border-bottom-color: rgba(255, 255, 255, 0.11);
  background: linear-gradient(180deg, rgba(7, 7, 13, 0.92), rgba(7, 7, 13, 0.68));
  backdrop-filter: blur(18px) saturate(130%);
}

.header-inner {
  min-height: 5.35rem;
}

.brand-mark {
  position: relative;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.75rem 0.75rem 0.75rem 0.18rem;
  border-color: rgba(255, 255, 255, 0.26);
  background: linear-gradient(140deg, var(--saffron), #f07442 47%, var(--garnet) 74%, var(--violet));
  box-shadow: 0 0 0 0.32rem rgba(255, 179, 33, 0.07), 0 0 2rem rgba(113, 87, 255, 0.13);
  color: #09070c;
}

.brand-mark::after {
  position: absolute;
  inset: 0.28rem;
  border: 1px solid rgba(8, 6, 11, 0.22);
  border-radius: 0.5rem 0.5rem 0.5rem 0.1rem;
  content: "";
}

.brand-word {
  font-size: 1.55rem;
}

.language-switcher,
.mobile-nav summary {
  background: rgba(10, 9, 18, 0.72);
}

.header-sale {
  border-color: rgba(255, 179, 33, 0.48);
  background: rgba(255, 179, 33, 0.13);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 0 1.8rem rgba(255, 179, 33, 0.08);
}

.header-sale:hover {
  background: var(--saffron);
  color: var(--ink);
}

.header-sale::before {
  background: var(--electric);
  box-shadow: 0 0 0 0.28rem rgba(116, 241, 209, 0.11), 0 0 1rem rgba(116, 241, 209, 0.45);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
}

.scroll-progress span {
  width: 100%;
  height: 100%;
  display: block;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--saffron), #ef6a4a, var(--violet), var(--electric));
  box-shadow: 0 0 1rem rgba(116, 241, 209, 0.55);
}

.hero {
  min-height: 54rem;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 38%, rgba(113, 87, 255, 0.24), transparent 24rem),
    radial-gradient(circle at 10% 76%, rgba(168, 47, 80, 0.25), transparent 30rem),
    radial-gradient(circle at 46% 8%, rgba(255, 179, 33, 0.1), transparent 25rem),
    linear-gradient(138deg, #07070d 0%, #100a17 48%, #071b1c 100%);
}

.hero::before {
  width: 30rem;
  height: 30rem;
  top: -15rem;
  right: 28%;
  background: linear-gradient(140deg, rgba(255, 179, 33, 0.2), rgba(113, 87, 255, 0.02));
  filter: blur(24px);
}

.hero::after {
  width: 38rem;
  height: 38rem;
  right: -18rem;
  bottom: -21rem;
  background: linear-gradient(140deg, rgba(19, 118, 111, 0.54), rgba(113, 87, 255, 0.08));
  filter: blur(12px);
}

.hero-gridlines,
.inner-gridlines,
.process-mesh {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 88%);
}

.hero-grid {
  min-height: 54rem;
  grid-template-columns: minmax(0, 1.02fr) minmax(23rem, 0.98fr);
  gap: clamp(2rem, 5vw, 5.6rem);
  padding-top: 10rem;
  padding-bottom: 7rem;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 7.2vw, 7rem);
  text-wrap: balance;
}

.hero-lead {
  max-width: 39rem;
  color: rgba(255, 250, 241, 0.77);
}

.hero-micro {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 250, 241, 0.48);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-micro span {
  width: 1.8rem;
  height: 1px;
  background: linear-gradient(90deg, var(--saffron), var(--electric));
}

.hero-visual {
  --px: 0deg;
  --py: 0deg;
  position: relative;
  min-height: 39rem;
  align-self: center;
  transform: perspective(1100px) rotateX(var(--px)) rotateY(var(--py));
  transform-style: preserve-3d;
  transition: transform 220ms ease-out;
}

.hero-photo-frame {
  position: absolute;
  inset: 1.4rem 1.5rem 1.8rem 3rem;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.7rem 5rem 0.7rem 0.7rem;
  background: #1a1015;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.52), 0 0 0 0.55rem rgba(255, 255, 255, 0.025);
  transform: translateZ(1rem);
}

.hero-picture,
.hero-picture img,
.meaning-picture,
.meaning-picture img,
.potential-picture,
.potential-picture img,
.inner-picture,
.inner-picture img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-picture img,
.meaning-picture img,
.potential-picture img,
.inner-picture img {
  object-fit: cover;
}

.hero-picture img {
  object-position: 54% center;
  filter: saturate(0.88) contrast(1.08) brightness(0.78);
  transform: scale(1.035);
  animation: hero-photo-breathe 14s ease-in-out infinite alternate;
}

.hero-photo-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 7, 13, 0.03) 42%, rgba(7, 7, 13, 0.86) 100%),
    linear-gradient(115deg, rgba(255, 179, 33, 0.18), transparent 34%, rgba(113, 87, 255, 0.13));
}

.hero-photo-frame figcaption {
  position: absolute;
  right: 1.2rem;
  bottom: 1.15rem;
  left: 1.2rem;
  z-index: 4;
  display: grid;
  gap: 0.18rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-photo-frame figcaption strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-photo-frame figcaption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
}

.photo-scan {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 3;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(116, 241, 209, 0.9), transparent);
  box-shadow: 0 0 1.1rem rgba(116, 241, 209, 0.55);
  opacity: 0.58;
  animation: photo-scan 7s ease-in-out infinite;
}

.photo-corner {
  position: absolute;
  z-index: 4;
  width: 1.7rem;
  height: 1.7rem;
  pointer-events: none;
}

.photo-corner-a {
  top: 0.8rem;
  left: 0.8rem;
  border-top: 1px solid var(--saffron);
  border-left: 1px solid var(--saffron);
}

.photo-corner-b {
  right: 0.8rem;
  bottom: 0.8rem;
  border-right: 1px solid var(--electric);
  border-bottom: 1px solid var(--electric);
}

.hero-interface {
  position: absolute;
  top: 0;
  right: 0;
  left: 0.5rem;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-orbit {
  position: absolute;
  top: -0.7rem;
  right: -0.7rem;
  z-index: 6;
  width: 7.5rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(8, 7, 13, 0.7);
  box-shadow: 0 0 0 0.65rem rgba(113, 87, 255, 0.07), 0 0 3rem rgba(113, 87, 255, 0.22);
  backdrop-filter: blur(14px);
  animation: orbit-breathe 4.6s ease-in-out infinite;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  inset: 0.65rem;
  border: 1px dashed rgba(255, 179, 33, 0.46);
  border-radius: 50%;
  content: "";
  animation: orbit-spin 19s linear infinite;
}

.hero-orbit::after {
  inset: -0.38rem;
  border-style: solid;
  border-color: transparent var(--electric) transparent transparent;
  animation-direction: reverse;
  animation-duration: 10s;
}

.hero-orbit span {
  font-family: var(--serif);
  font-size: 2.7rem;
  font-style: italic;
  color: var(--saffron);
}

.hero-visual .sale-card {
  right: auto;
  bottom: 0;
  left: 0;
  z-index: 7;
  width: min(15.5rem, 62vw);
  border-radius: 0.35rem 1.35rem 0.35rem 0.35rem;
  background: rgba(255, 250, 241, 0.96);
  transform: translateZ(2.1rem) rotate(-2.5deg);
}

.sale-card span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(7, 7, 13, 0.62);
  font-size: 0.67rem;
  font-weight: 700;
}

.scroll-cue {
  position: absolute;
  right: max(1rem, calc((100vw - var(--max)) / 2));
  bottom: 1.65rem;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 2.9rem;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--electric);
  transform: translateX(-100%);
  animation: cue-line 2.2s ease-in-out infinite;
}

.fact-strip {
  background: #0a0a11;
}

.fact strong {
  color: var(--saffron);
}

.meaning-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 179, 33, 0.19), transparent 22rem),
    var(--ivory);
  color: var(--ink);
}

.meaning-layout {
  display: grid;
  grid-template-columns: minmax(20rem, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}

.meaning-photo {
  position: relative;
  min-height: 42rem;
  overflow: hidden;
  margin: 0;
  border-radius: 5rem 0.7rem 0.7rem 0.7rem;
  box-shadow: 0 34px 90px rgba(37, 21, 12, 0.23);
}

.meaning-picture img {
  filter: saturate(0.82) contrast(1.06);
  transition: transform 900ms cubic-bezier(.22,.61,.36,1), filter 600ms ease;
}

.meaning-photo:hover .meaning-picture img {
  transform: scale(1.035);
  filter: saturate(0.96) contrast(1.04);
}

.meaning-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(7, 7, 13, 0.77));
  pointer-events: none;
}

.meaning-symbol {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  background: rgba(7,7,13,.54);
  color: var(--saffron);
  padding: 0.48rem 0.8rem;
  font-size: 1.1rem;
  backdrop-filter: blur(10px);
}

.meaning-photo figcaption {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 3;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.69rem;
  letter-spacing: 0.04em;
}

.meaning-copy .section-title {
  max-width: 11ch;
}

.word-lockup {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 1rem;
  margin: 2rem 0 1.4rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(7, 7, 13, 0.13);
  border-bottom: 1px solid rgba(7, 7, 13, 0.13);
}

.word-lockup > span {
  grid-row: 1 / 3;
  color: var(--garnet);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1;
}

.word-lockup strong {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.word-lockup small {
  margin-top: 0.4rem;
  color: rgba(7, 7, 13, 0.55);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.meaning-definition {
  margin: 0;
  color: rgba(7, 7, 13, 0.78);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.72;
}

.meaning-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.meaning-tags li {
  border: 1px solid rgba(168, 47, 80, 0.24);
  border-radius: 999px;
  background: rgba(168, 47, 80, 0.055);
  color: var(--garnet);
  padding: 0.45rem 0.78rem;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meaning-caution {
  margin: 0 0 1.6rem;
  border-left: 2px solid var(--gold);
  color: rgba(7, 7, 13, 0.58);
  padding-left: 1rem;
  font-size: 0.86rem;
}

.photo-potential {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(168, 47, 80, 0.2), transparent 30rem),
    radial-gradient(circle at 92% 82%, rgba(19, 118, 111, 0.2), transparent 30rem),
    #08080e;
  color: var(--white);
}

.photo-potential::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.45;
  pointer-events: none;
  background-image: linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.04) 50%, transparent 50.1%);
}

.photo-potential .section-kicker {
  color: var(--saffron);
}

.potential-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.55fr);
  gap: 2rem;
  align-items: end;
}

.potential-intro {
  margin: 0 0 0.4rem;
  color: rgba(255, 250, 241, 0.62);
}

.potential-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 9rem;
  gap: 0.85rem;
  margin-top: 3.3rem;
}

.potential-card {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  min-height: 19rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.45rem;
  background: #171018;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform 200ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.potential-card-1 { grid-column: 1 / span 7; grid-row: 1 / span 3; }
.potential-card-2 { grid-column: 8 / span 5; grid-row: 1 / span 2; }
.potential-card-3 { grid-column: 8 / span 5; grid-row: 3 / span 2; }
.potential-card-4 { grid-column: 1 / span 7; grid-row: 4 / span 2; }

.potential-card:hover {
  z-index: 4;
  border-color: rgba(255, 179, 33, 0.55);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42), 0 0 2.8rem rgba(113, 87, 255, 0.11);
}

.potential-picture img {
  filter: saturate(0.78) contrast(1.08) brightness(0.78);
  transition: transform 900ms cubic-bezier(.22,.61,.36,1), filter 500ms ease;
}

.potential-card:hover .potential-picture img {
  transform: scale(1.055);
  filter: saturate(1) contrast(1.05) brightness(0.82);
}

.potential-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 7, 13, 0.08) 20%, rgba(7, 7, 13, 0.92) 100%);
}

.potential-card-top,
.potential-card-copy {
  position: absolute;
  right: 1.15rem;
  left: 1.15rem;
  z-index: 2;
  transform: translateZ(1.2rem);
}

.potential-card-top {
  top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.potential-card-top span {
  color: var(--saffron);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 800;
}

.potential-card-top small {
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(7,7,13,.4);
  padding: 0.35rem 0.62rem;
  color: rgba(255,255,255,.72);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  backdrop-filter: blur(10px);
}

.potential-card-copy {
  bottom: 1.15rem;
}

.potential-card-copy h3 {
  max-width: 15ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.8vw, 2.55rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.potential-card-copy p {
  max-width: 38rem;
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.55;
}

.photo-potential .note {
  border-left-color: var(--electric);
  background: rgba(116, 241, 209, 0.065);
  color: rgba(255, 255, 255, 0.67);
}

.marquee {
  background: linear-gradient(90deg, #7b213f, var(--garnet), #44236e, var(--teal));
}

.process-lab {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 179, 33, 0.15), transparent 26rem),
    radial-gradient(circle at 87% 80%, rgba(113, 87, 255, 0.24), transparent 28rem),
    linear-gradient(145deg, #061c1c, #10101e 58%, #170a19);
  color: var(--white);
}

.process-lab .process-mesh {
  z-index: 0;
  opacity: 0.48;
  mask-image: radial-gradient(circle at 65% 40%, #000, transparent 75%);
}

.process-lab .container {
  position: relative;
  z-index: 2;
}

.process-lab .section-kicker,
.process-lab .process-step span {
  color: var(--electric);
}

.process-lab .process,
.process-lab .process-step {
  border-color: rgba(255, 255, 255, 0.14);
}

.process-lab .process-step::before {
  display: none;
}

.process-lab .process-step span {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 800;
}

.process-lab .process-step p {
  color: rgba(255, 250, 241, 0.63);
}

.process-lab .button-light {
  border-color: rgba(116, 241, 209, 0.4);
  background: rgba(116, 241, 209, 0.08);
  color: var(--white);
}

.cta-panel {
  border-radius: 0.55rem 4rem 0.55rem 0.55rem;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.04) 50%, transparent 50.1%),
    radial-gradient(circle at 88% 18%, rgba(255, 179, 33, 0.42), transparent 22rem),
    radial-gradient(circle at 13% 96%, rgba(19, 118, 111, 0.65), transparent 26rem),
    linear-gradient(135deg, #12111d, #681b39 62%, #321849);
}

.inner-hero {
  min-height: 43rem;
  isolation: isolate;
  background:
    radial-gradient(circle at 75% 36%, rgba(113, 87, 255, 0.24), transparent 24rem),
    radial-gradient(circle at 10% 90%, rgba(168, 47, 80, 0.25), transparent 27rem),
    linear-gradient(140deg, #07070d 0%, #100b19 60%, #071a1a 100%);
  padding: 9.8rem 0 5.6rem;
}

.inner-hero::after {
  border-color: rgba(116, 241, 209, 0.17);
}

.inner-gridlines {
  z-index: -1;
}

.inner-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.72fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5.5rem);
}

.inner-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 6.4vw, 6.05rem);
}

.inner-visual {
  --px: 0deg;
  --py: 0deg;
  position: relative;
  min-height: 25rem;
  transform: perspective(1000px) rotateX(var(--px)) rotateY(var(--py));
  transform-style: preserve-3d;
  transition: transform 220ms ease-out;
}

.inner-visual figure {
  position: absolute;
  inset: 0.5rem 1.2rem 2.8rem 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.45rem 3.2rem 0.45rem 0.45rem;
  background: #171019;
  box-shadow: var(--shadow);
}

.inner-picture img {
  filter: saturate(0.78) contrast(1.08) brightness(0.66);
}

.inner-visual figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(7,7,13,.82));
  pointer-events: none;
}

.inner-visual figcaption {
  position: absolute;
  right: 1rem;
  bottom: 0.9rem;
  left: 1rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

.inner-visual .sale-stamp {
  position: absolute;
  right: -0.4rem;
  bottom: 0;
  z-index: 4;
  width: 9.5rem;
  background: rgba(7, 7, 13, 0.78);
  font-size: 0.96rem;
  box-shadow: inset 0 0 0 0.45rem rgba(255,255,255,.035), 0 20px 55px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
}

.inner-visual .sale-stamp strong,
.inner-visual .sale-stamp small,
.inner-visual .sale-stamp span {
  display: block;
  max-width: 8.2rem;
}

.section-light,
.content-grid {
  color: var(--ink);
}

.aside-box {
  border-radius: 0.45rem 2rem 0.45rem 0.45rem;
  background: rgba(255,255,255,.62);
  box-shadow: 0 22px 60px rgba(35, 20, 12, 0.08);
}

.cursor-glow {
  z-index: 1;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(116, 241, 209, 0.08), rgba(113, 87, 255, 0.035) 42%, transparent 70%);
}

.js [data-reveal].reveal-ready.is-visible.hero-visual,
.js [data-reveal].reveal-ready.is-visible.inner-visual {
  transform: perspective(1100px) rotateX(var(--px)) rotateY(var(--py));
}

.js [data-reveal].reveal-ready.is-visible.potential-card {
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
}

@keyframes hero-photo-breathe {
  to { transform: scale(1.085) translate3d(-0.5%, -0.4%, 0); }
}

@keyframes photo-scan {
  0%, 12% { top: 7%; opacity: 0; }
  28% { opacity: 0.6; }
  76% { top: 89%; opacity: 0.5; }
  88%, 100% { top: 89%; opacity: 0; }
}

@keyframes orbit-breathe {
  50% { transform: translateY(-0.45rem); box-shadow: 0 0 0 0.8rem rgba(113,87,255,.08), 0 0 3.5rem rgba(113,87,255,.29); }
}

@keyframes cue-line {
  50%, 100% { transform: translateX(100%); }
}

@media (max-width: 68rem) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.78fr);
    gap: 2rem;
  }

  .hero h1 { font-size: clamp(3.7rem, 7vw, 5.7rem); }
  .hero-visual { min-height: 34rem; }
  .hero-photo-frame { inset: 1.6rem 0.7rem 1.6rem 1.2rem; }
  .hero-interface { left: 0; }
  .potential-grid { grid-auto-rows: 8.2rem; }
  .inner-hero-grid { grid-template-columns: 1fr minmax(18rem, .68fr); }
}

@media (max-width: 52rem) {
  .site-header { position: absolute; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 8.9rem;
    padding-bottom: 5rem;
  }

  .hero-visual { min-height: 38rem; }
  .hero-photo-frame { inset: 1.5rem 0.6rem 1.7rem 1.8rem; }
  .scroll-cue { display: none; }
  .meaning-layout { grid-template-columns: 1fr; }
  .meaning-photo { min-height: 34rem; position: relative; top: auto; }
  .potential-heading { grid-template-columns: 1fr; }
  .potential-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .potential-card,
  .potential-card-1,
  .potential-card-2,
  .potential-card-3,
  .potential-card-4 {
    grid-column: auto;
    grid-row: auto;
    min-height: 27rem;
  }
  .process-step { grid-template-columns: 3.3rem 1fr; }
  .process-step p { grid-column: 2; }
  .inner-hero-grid { grid-template-columns: 1fr; }
  .inner-visual { min-height: 27rem; }
  .inner-visual .sale-stamp { justify-self: auto; }
}

@media (max-width: 35rem) {
  .hero-grid { gap: 2.4rem; padding-top: 8.4rem; padding-bottom: 4rem; }
  .hero h1 { max-width: 9ch; font-size: clamp(3.05rem, 15vw, 4.45rem); }
  .hero-micro { line-height: 1.5; }
  .hero-visual { min-height: 29rem; }
  .hero-photo-frame { inset: 1.2rem 0 1.2rem 0.75rem; border-radius: 0.5rem 3.2rem 0.5rem 0.5rem; }
  .hero-orbit { top: -0.4rem; right: -0.3rem; width: 5.8rem; }
  .hero-orbit span { font-size: 2rem; }
  .hero-interface { font-size: 0.48rem; }
  .hero-visual .sale-card { bottom: -0.45rem; left: 0; width: 13.3rem; padding: 0.85rem; }
  .hero-photo-frame figcaption { right: .8rem; bottom: .85rem; left: .8rem; }
  .hero-photo-frame figcaption strong { font-size: 1rem; }
  .hero-photo-frame figcaption span { font-size: .57rem; }
  .meaning-photo { min-height: 29rem; border-radius: 3.2rem .45rem .45rem .45rem; }
  .word-lockup { grid-template-columns: 1fr; }
  .word-lockup > span { grid-row: auto; }
  .potential-card,
  .potential-card-1,
  .potential-card-2,
  .potential-card-3,
  .potential-card-4 { min-height: 24rem; }
  .potential-card-copy h3 { font-size: 1.9rem; }
  .potential-card-top small { max-width: 11rem; text-align: right; }
  .inner-hero { padding-top: 8.6rem; }
  .inner-visual { min-height: 23rem; }
  .inner-visual figure { inset: .35rem .5rem 2.2rem 0; }
  .inner-visual .sale-stamp { width: 8rem; font-size: .82rem; }
  .cta-panel { border-radius: .45rem 2.8rem .45rem .45rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-picture img,
  .photo-scan,
  .hero-orbit,
  .hero-orbit::before,
  .hero-orbit::after,
  .scroll-cue i::after {
    animation: none !important;
  }

  .hero-visual,
  .inner-visual,
  .potential-card {
    transform: none !important;
  }
}

/* Match CSS breakpoints in deterministic 390px preview captures. */
html.preview-mobile .hero-grid {
  gap: 2.4rem;
  padding-top: 8.4rem;
  padding-bottom: 4rem;
}
html.preview-mobile .site-header { position: absolute; }
html.preview-mobile .hero h1 { max-width: 9ch; font-size: 3.65rem; }
html.preview-mobile .hero-visual { min-height: 29rem; }
html.preview-mobile .hero-photo-frame { inset: 1.2rem 0 1.2rem .75rem; border-radius: .5rem 3.2rem .5rem .5rem; }
html.preview-mobile .hero-orbit { top: -.4rem; right: -.3rem; width: 5.8rem; }
html.preview-mobile .hero-orbit span { font-size: 2rem; }
html.preview-mobile .hero-interface { font-size: .48rem; }
html.preview-mobile .hero-visual .sale-card { bottom: -.45rem; left: 0; width: 13.3rem; padding: .85rem; }
html.preview-mobile .scroll-cue { display: none; }
html.preview-mobile .meaning-layout,
html.preview-mobile .potential-heading,
html.preview-mobile .inner-hero-grid { grid-template-columns: 1fr; }
html.preview-mobile .section { padding: 4.4rem 0; }
html.preview-mobile .section-title { font-size: 3.7rem; }
html.preview-mobile .meaning-photo { min-height: 29rem; position: relative; top: auto; border-radius: 3.2rem .45rem .45rem .45rem; }
html.preview-mobile .word-lockup { grid-template-columns: 1fr; }
html.preview-mobile .word-lockup > span { grid-row: auto; }
html.preview-mobile .potential-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
html.preview-mobile .potential-card,
html.preview-mobile .potential-card-1,
html.preview-mobile .potential-card-2,
html.preview-mobile .potential-card-3,
html.preview-mobile .potential-card-4 { grid-column: auto; grid-row: auto; min-height: 24rem; }
html.preview-mobile .process-step { grid-template-columns: 3.3rem 1fr; }
html.preview-mobile .process-step p { grid-column: 2; }
html.preview-mobile .inner-hero { padding-top: 8.6rem; }
html.preview-mobile .inner-visual { min-height: 23rem; }
html.preview-mobile .inner-visual figure { inset: .35rem .5rem 2.2rem 0; }
html.preview-mobile .inner-visual .sale-stamp { width: 8rem; font-size: .82rem; }
