@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-italic-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-italic-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #eef8f1;
  background: #06100d;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --ink: #eef8f1;
  --muted: #a5baac;
  --quiet: #71897a;
  --line: rgba(205, 255, 222, 0.13);
  --line-strong: rgba(205, 255, 222, 0.24);
  --panel: rgba(10, 27, 21, 0.72);
  --panel-solid: #0b1c16;
  --green: #7deaa4;
  --green-bright: #a2f4bc;
  --green-dark: #07130e;
  --gold: #d6aa5a;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --page-width: 90rem;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  margin: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, #153f2d 0%, #091b14 29rem, #06100d 62rem);
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.28));
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--green-dark);
  font-weight: 750;
  text-decoration: none;
  border-radius: 0.5rem;
  background: var(--green-bright);
  transform: translateY(-150%);
}

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

.ambient {
  position: fixed;
  z-index: -1;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(100px);
  pointer-events: none;
}

.ambient-one {
  top: -21rem;
  left: -13rem;
  background: #48d286;
}

.ambient-two {
  right: -20rem;
  bottom: -22rem;
  background: #13795b;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 3rem), var(--page-width));
  min-height: 6rem;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.65rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border: 1px solid rgba(151, 244, 180, 0.45);
  border-radius: 50%;
}

.brand-mark span {
  width: 0.48rem;
  height: 0.78rem;
  border-radius: 90% 0 90% 0;
  background: var(--green);
  box-shadow: 0 0 1.25rem rgba(117, 227, 157, 0.62);
  transform: rotate(-28deg);
}

.brand-name {
  display: block;
  width: 7rem;
  line-height: 0;
}

.brand-wordmark {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 0.65rem rgba(125, 234, 164, 0.24))
    drop-shadow(0 1px 0 rgba(5, 15, 11, 0.9));
}

.brand-domain {
  color: var(--quiet);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.06em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.4rem);
}

.main-nav a,
.footer-links a {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.main-nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--green-bright);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.22rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 15, 11, 0.42);
}

.language-switch a,
.language-switch span {
  display: grid;
  min-width: 2rem;
  min-height: 1.75rem;
  padding: 0 0.45rem;
  place-items: center;
  color: var(--quiet);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 999px;
}

.language-switch [aria-current="page"] {
  color: var(--ink);
  background: rgba(238, 248, 241, 0.1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  color: var(--green-dark);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0.8rem 2.4rem rgba(75, 213, 126, 0.2);
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  background: var(--green-bright);
  box-shadow: 0 1rem 3rem rgba(75, 213, 126, 0.3);
  transform: translateY(-2px);
}

.button:focus-visible,
.main-nav a:focus-visible,
.footer-links a:focus-visible,
.text-link:focus-visible,
.contact-card a:focus-visible,
.language-switch a:focus-visible,
.brand:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

.button-small {
  min-height: 2.65rem;
  padding: 0.65rem 1.15rem;
  font-size: 0.73rem;
}

.button-primary {
  min-height: 4rem;
  padding: 0.85rem 1.65rem;
}

.button svg {
  width: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6.5rem);
  width: min(calc(100% - 3rem), var(--page-width));
  min-height: max(44rem, calc(100svh - 6rem));
  margin: 0 auto;
  padding: 4.5rem 0 6rem;
}

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

.eyebrow,
.section-index {
  margin: 0;
  color: var(--green);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.eyebrow span {
  width: 1.7rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
}

h1 {
  width: min(100%, 39rem);
  max-width: 100%;
  margin: 1.2rem 0 0;
  line-height: 0;
}

.hero-wordmark {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 1.4rem rgba(125, 234, 164, 0.18))
    drop-shadow(0 0.3rem 1.1rem rgba(2, 9, 6, 0.72));
}

h1 em,
.final-cta h2 em {
  display: inline-block;
  color: var(--green);
  font-weight: 400;
}

.hero-lead {
  max-width: 37rem;
  margin: 2.1rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
  margin-top: 2.25rem;
}

.text-link {
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 160ms ease;
}

.text-link span {
  display: inline-block;
  margin-left: 0.45rem;
  color: var(--green);
}

.development-note {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 1.65rem 0 0;
  color: var(--quiet);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.development-note span,
.status-dot {
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #6ee79b;
  box-shadow: 0 0 0.8rem #6ee79b;
}

.hero-stage {
  position: relative;
  min-height: clamp(34rem, 66vw, 42rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.5rem 5rem 1.5rem 1.5rem;
  background:
    radial-gradient(circle at 75% 18%, rgba(158, 235, 183, 0.13), transparent 16%),
    linear-gradient(180deg, #173b2e 0%, #0c261d 44%, #07130f 100%);
  box-shadow:
    0 3rem 8rem rgba(0, 0, 0, 0.42),
    inset 0 1px rgba(255, 255, 255, 0.06);
  isolation: isolate;
}

.hero-stage::after {
  position: absolute;
  z-index: 8;
  inset: 0;
  content: "";
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(6, 16, 13, 0.42), transparent 26%, transparent 72%, rgba(6, 16, 13, 0.18)),
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.36));
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, 0.2);
}

.moon {
  position: absolute;
  z-index: 1;
  top: 5.5rem;
  right: 5.2rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #effbdc, #b6d9aa 58%, #709a7b);
  box-shadow: 0 0 4.5rem rgba(183, 232, 195, 0.28);
}

.cloud {
  position: absolute;
  z-index: 2;
  height: 1.2rem;
  border-radius: 999px;
  background: rgba(143, 178, 155, 0.15);
  filter: blur(3px);
  animation: cloud-drift 18s ease-in-out infinite alternate;
}

.cloud::before,
.cloud::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: inherit;
}

.cloud::before {
  top: -1rem;
  left: 22%;
  width: 3rem;
  height: 2rem;
}

.cloud::after {
  top: -0.65rem;
  right: 18%;
  width: 2.5rem;
  height: 1.6rem;
}

.cloud-one {
  top: 9.5rem;
  left: 14%;
  width: 8.5rem;
}

.cloud-two {
  top: 15.5rem;
  right: 8%;
  width: 10rem;
  opacity: 0.65;
  animation-delay: -6s;
}

.ridge {
  position: absolute;
  left: -10%;
  width: 120%;
  transform-origin: bottom;
}

.ridge-back {
  z-index: 2;
  bottom: 22%;
  height: 42%;
  background: #163b2b;
  clip-path: polygon(0 100%, 0 58%, 12% 34%, 25% 62%, 42% 22%, 56% 62%, 71% 30%, 84% 58%, 100% 18%, 100% 100%);
}

.ridge-mid {
  z-index: 3;
  bottom: 8%;
  height: 43%;
  background: #0c281d;
  clip-path: polygon(0 100%, 0 55%, 15% 31%, 29% 70%, 43% 39%, 57% 58%, 69% 24%, 82% 62%, 100% 40%, 100% 100%);
}

.ridge-front {
  z-index: 6;
  bottom: -4%;
  height: 29%;
  background: #07140f;
  clip-path: polygon(0 100%, 0 42%, 14% 61%, 31% 26%, 50% 55%, 67% 32%, 82% 68%, 100% 37%, 100% 100%);
}

.river {
  position: absolute;
  z-index: 4;
  right: 13%;
  bottom: -15%;
  width: 31%;
  height: 72%;
  background: linear-gradient(180deg, rgba(106, 191, 151, 0.18), rgba(71, 176, 148, 0.52));
  clip-path: polygon(42% 0, 58% 0, 82% 100%, 0 100%);
  filter: drop-shadow(0 0 1.7rem rgba(78, 208, 155, 0.16));
  transform: rotate(-7deg);
}

.river::after {
  position: absolute;
  inset: 0 23%;
  content: "";
  background: linear-gradient(180deg, rgba(229, 255, 235, 0.25), transparent 55%);
  clip-path: inherit;
}

.trees {
  position: absolute;
  z-index: 5;
  bottom: 13%;
  left: 3%;
  width: 3.3rem;
  height: 11rem;
  background: #091c14;
  clip-path: polygon(50% 0, 79% 31%, 65% 31%, 92% 59%, 69% 59%, 100% 88%, 58% 88%, 58% 100%, 42% 100%, 42% 88%, 0 88%, 31% 59%, 8% 59%, 35% 31%, 21% 31%);
}

.trees-back {
  opacity: 0.8;
  box-shadow:
    5.4rem 1.2rem #091c14,
    10.4rem -0.4rem #091c14,
    16.8rem 2.2rem #091c14,
    24.5rem 0.2rem #091c14,
    31rem 1.8rem #091c14,
    37rem -0.6rem #091c14;
}

.trees-front {
  z-index: 7;
  bottom: 2%;
  left: 10%;
  width: 4.2rem;
  height: 14rem;
  background: #050d0a;
  box-shadow:
    7.5rem 2.4rem #050d0a,
    19.5rem 1.1rem #050d0a,
    35rem 1.9rem #050d0a;
}

.wanderer {
  position: absolute;
  z-index: 9;
  right: 28%;
  bottom: 14%;
  width: 3rem;
  height: 7rem;
  animation: wanderer-breathe 3.5s ease-in-out infinite;
}

.wanderer-head {
  position: absolute;
  top: 0;
  left: 0.83rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: #030806;
}

.wanderer-body {
  position: absolute;
  top: 1.15rem;
  left: 0.48rem;
  width: 2rem;
  height: 4.6rem;
  border-radius: 45% 45% 20% 20%;
  background: #030806;
  clip-path: polygon(27% 0, 73% 0, 100% 66%, 76% 100%, 55% 62%, 45% 62%, 24% 100%, 0 66%);
}

.torch {
  position: absolute;
  top: 1.9rem;
  left: -0.35rem;
  width: 0.48rem;
  height: 2.4rem;
  border-radius: 999px;
  background: #1d1007;
  transform: rotate(-12deg);
}

.torch::before {
  position: absolute;
  top: -0.55rem;
  left: -0.16rem;
  width: 0.8rem;
  height: 1.05rem;
  content: "";
  border-radius: 80% 15% 65% 35%;
  background: #ffd47a;
  box-shadow:
    0 0 0.9rem #ffb54f,
    0 0 2.8rem 1rem rgba(255, 154, 52, 0.42);
  transform: rotate(18deg);
  animation: torch-flicker 1.1s ease-in-out infinite alternate;
}

.stage-label {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #a4b9ac;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-label strong {
  color: var(--ink);
  font-size: inherit;
}

.stage-label-top {
  top: 1.5rem;
  right: 1.7rem;
  left: 1.7rem;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.stage-label-bottom {
  right: 1.7rem;
  bottom: 1.5rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(4, 13, 10, 0.62);
  backdrop-filter: blur(10px);
}

.stage-label-bottom span:last-child {
  color: #789080;
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #586f61;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateY(-100%);
  transform-origin: left bottom;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 3.5rem;
  height: 1px;
  overflow: hidden;
  background: rgba(117, 227, 157, 0.24);
}

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

.section {
  position: relative;
  width: min(calc(100% - 3rem), var(--page-width));
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 10rem) 0;
  border-top: 1px solid var(--line);
}

.section-heading h2,
.creator-copy h2,
.contact-copy h2 {
  margin: 1.25rem 0 0;
  font-size: clamp(3.3rem, 6.5vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.world-section {
  display: grid;
  grid-template-columns: minmax(15rem, 0.8fr) minmax(18rem, 1fr) minmax(15rem, 0.6fr);
  align-items: start;
  gap: clamp(2.5rem, 6vw, 7rem);
}

.world-copy {
  padding-top: 2.7rem;
}

.world-copy p,
.creator-copy > p,
.contact-copy > p,
.features-heading > p:last-child {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.world-copy .world-intro,
.creator-copy .creator-lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.25vw, 1.8rem);
  line-height: 1.5;
}

.world-note {
  position: relative;
  margin-top: 2.7rem;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0 2rem 0 2rem;
  background: linear-gradient(145deg, rgba(14, 35, 27, 0.82), rgba(6, 16, 13, 0.7));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.world-note-mark {
  position: absolute;
  top: -0.8rem;
  right: 1rem;
  color: rgba(117, 234, 164, 0.12);
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 1;
}

.world-note blockquote {
  position: relative;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.45;
}

.world-note-caption {
  display: block;
  margin-top: 2rem;
  color: var(--green);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.features-section {
  display: grid;
  grid-template-columns: minmax(15rem, 0.42fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(3rem, 6vw, 7rem);
}

.features-heading {
  position: sticky;
  top: 4rem;
}

.features-heading > p:last-child {
  max-width: 27rem;
  margin-top: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 18rem;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(117, 234, 164, 0.09), transparent 42%),
    linear-gradient(145deg, rgba(14, 35, 27, 0.76), rgba(6, 16, 13, 0.62));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.feature-card::after {
  position: absolute;
  right: -2rem;
  bottom: -4.5rem;
  width: 10rem;
  height: 10rem;
  content: "";
  border: 1px solid rgba(117, 234, 164, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 2.2rem rgba(117, 234, 164, 0.025),
    0 0 0 4.4rem rgba(117, 234, 164, 0.016);
}

.feature-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.feature-card-wide {
  grid-column: span 2;
}

.feature-card-wide:last-child {
  grid-column: 2 / span 2;
}

.feature-number {
  color: var(--green);
  font-family: var(--serif);
  font-size: 0.82rem;
  font-style: italic;
}

.feature-card div {
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  font-weight: 500;
  line-height: 1.05;
}

.feature-card p {
  max-width: 36rem;
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.creator-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(20rem, 1fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 10rem);
}

.creator-portrait {
  position: relative;
  display: grid;
  width: min(100%, 34rem);
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50% 50% 0 50%;
  background:
    radial-gradient(circle at 50% 48%, rgba(117, 234, 164, 0.17), transparent 26%),
    linear-gradient(145deg, #123226, #07140f 72%);
  box-shadow:
    0 3rem 7rem rgba(0, 0, 0, 0.3),
    inset 0 1px rgba(255, 255, 255, 0.05);
}

.creator-portrait::before {
  position: absolute;
  inset: 8%;
  content: "";
  border: 1px solid rgba(117, 234, 164, 0.11);
  border-radius: 50%;
}

.creator-initials {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 10rem);
  font-style: italic;
  letter-spacing: -0.12em;
  text-shadow: 0 0 3rem rgba(117, 234, 164, 0.24);
}

.creator-initials-pair {
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  letter-spacing: -0.06em;
}

.creator-ring {
  position: absolute;
  width: 62%;
  height: 62%;
  border: 1px solid rgba(117, 234, 164, 0.14);
  border-radius: 50%;
}

.creator-ring-one {
  transform: rotate(33deg) scaleY(0.38);
}

.creator-ring-two {
  transform: rotate(-36deg) scaleY(0.38);
}

.creator-caption {
  position: absolute;
  bottom: 8%;
  color: var(--quiet);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.creator-copy > p:not(.section-index) {
  max-width: 42rem;
}

.creator-copy h2,
.contact-copy h2 {
  margin-bottom: 2.4rem;
}

.creator-copy strong {
  color: var(--green-bright);
  font-weight: 500;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(20rem, 1fr) minmax(22rem, 0.72fr);
  align-items: end;
  gap: clamp(4rem, 9vw, 10rem);
}

.contact-copy > p:not(.section-index) {
  max-width: 44rem;
}

.contact-card {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid var(--line-strong);
  border-radius: 2rem 0 2rem 2rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(117, 234, 164, 0.13), transparent 42%),
    linear-gradient(145deg, rgba(14, 39, 29, 0.95), rgba(7, 18, 14, 0.92));
  box-shadow:
    0 2.5rem 7rem rgba(0, 0, 0, 0.32),
    inset 0 1px rgba(255, 255, 255, 0.05);
}

.contact-card-label {
  display: block;
  margin-bottom: 1rem;
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 1.35rem 0;
  text-decoration: none;
  border-top: 1px solid var(--line);
}

.contact-card a span {
  grid-column: 1;
  color: var(--quiet);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card a strong {
  grid-column: 1;
  margin-top: 0.3rem;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 500;
  transition: color 160ms ease;
}

.contact-card a i {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--green);
  font-size: 1.2rem;
  font-style: normal;
}

.contact-card a:hover strong {
  color: var(--green-bright);
}

.contact-card > p {
  margin: 1.2rem 0 0;
  color: #62796a;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-transform: uppercase;
}

.final-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(calc(100% - 3rem), var(--page-width));
  min-height: 42rem;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 3rem 3rem 0 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(64, 155, 100, 0.26), transparent 26%),
    linear-gradient(180deg, rgba(17, 48, 35, 0.82), rgba(6, 16, 13, 0.88));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  bottom: -1rem;
  width: 34rem;
  height: 24rem;
  content: "";
  opacity: 0.65;
  background: #07130f;
  clip-path: polygon(7% 100%, 12% 46%, 5% 46%, 20% 7%, 35% 46%, 27% 46%, 35% 100%, 61% 100%, 66% 58%, 60% 58%, 72% 21%, 86% 58%, 80% 58%, 90% 100%);
}

.final-cta::before {
  left: -7rem;
}

.final-cta::after {
  right: -8rem;
  transform: scaleX(-1);
}

.final-cta > * {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  margin: 1.2rem 0 2.4rem;
  font-size: clamp(5rem, 11vw, 10rem);
  line-height: 0.75;
  letter-spacing: -0.075em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  width: min(calc(100% - 3rem), var(--page-width));
  min-height: 8rem;
  margin: 0 auto;
}

.site-footer p {
  color: #5e7567;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.25rem;
}

@keyframes cloud-drift {
  to {
    transform: translateX(2.2rem);
  }
}

@keyframes wanderer-breathe {
  50% {
    transform: translateY(-0.18rem);
  }
}

@keyframes torch-flicker {
  50% {
    opacity: 0.8;
    transform: rotate(10deg) scale(0.92);
  }
  100% {
    transform: rotate(24deg) scale(1.08);
  }
}

@keyframes scroll-line {
  55%,
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 0.85fr) minmax(25rem, 1fr);
    gap: 3rem;
  }

  .world-section {
    grid-template-columns: 1fr 1fr;
  }

  .world-note {
    grid-column: 2;
    margin-top: -1rem;
  }

  .features-section {
    grid-template-columns: 1fr;
  }

  .features-heading {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 2rem;
  }

  .features-heading .section-index {
    grid-column: 1 / -1;
  }

  .features-heading > p:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 840px) {
  .site-header,
  .hero,
  .section,
  .final-cta,
  .site-footer {
    width: min(calc(100% - 2rem), var(--page-width));
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 4rem;
  }

  .hero-copy {
    max-width: 42rem;
  }

  .hero-stage {
    min-height: 38rem;
  }

  .scroll-cue {
    display: none;
  }

  .world-section,
  .creator-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .world-copy,
  .world-note {
    grid-column: auto;
  }

  .world-note {
    margin: 0;
  }

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

  .feature-card-wide,
  .feature-card-wide:last-child {
    grid-column: span 2;
  }

  .creator-portrait {
    width: min(100%, 29rem);
    margin: 0 auto;
  }

  .contact-section {
    align-items: start;
  }

  .contact-card {
    width: min(100%, 37rem);
  }

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

  .site-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0 0 1.5rem;
    text-align: left;
  }
}

@media (max-width: 580px) {
  .site-header {
    min-height: 5rem;
  }

  .brand-domain,
  .button-small {
    display: none;
  }

  .hero {
    padding: 3.5rem 0 5rem;
  }

  .hero-lead {
    line-height: 1.65;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 1.25rem;
  }

  .button-primary {
    width: 100%;
  }

  .text-link {
    text-align: center;
  }

  .development-note {
    line-height: 1.5;
  }

  .hero-stage {
    min-height: 31rem;
    border-radius: 1.2rem 3.2rem 1.2rem 1.2rem;
  }

  .moon {
    top: 5.5rem;
    right: 3rem;
    width: 5rem;
    height: 5rem;
  }

  .trees-back {
    left: -2rem;
  }

  .trees-front {
    left: -1.5rem;
  }

  .wanderer {
    right: 25%;
    bottom: 12%;
    transform: scale(0.82);
  }

  .stage-label-top {
    right: 1.2rem;
    left: 1.2rem;
  }

  .stage-label-bottom {
    right: 1.2rem;
    bottom: 1.2rem;
  }

  .section-heading h2,
  .creator-copy h2,
  .contact-copy h2 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .world-copy {
    padding-top: 0;
  }

  .features-heading {
    display: block;
  }

  .features-heading > p:last-child {
    margin-top: 1.5rem;
  }

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

  .feature-card,
  .feature-card-wide,
  .feature-card-wide:last-child {
    grid-column: auto;
    min-height: 15rem;
  }

  .creator-section,
  .contact-section {
    gap: 3rem;
  }

  .contact-card {
    border-radius: 1.5rem 0 1.5rem 1.5rem;
  }

  .contact-card a strong {
    font-size: 1.35rem;
  }

  .final-cta {
    min-height: 34rem;
    border-radius: 2rem 2rem 0 0;
  }

  .final-cta h2 {
    font-size: clamp(4.2rem, 21vw, 6.5rem);
  }

  .final-cta::before,
  .final-cta::after {
    width: 25rem;
    height: 17rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 2rem 0;
  }

  .site-footer p {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
  }

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

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

  .button,
  .main-nav a,
  .footer-links a,
  .text-link,
  .feature-card,
  .contact-card a strong {
    transition: none;
  }

  .cloud,
  .wanderer,
  .torch::before,
  .scroll-cue i::after {
    animation: none;
  }
}
