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

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/manrope-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: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../assets/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: 500 700;
  font-display: swap;
  src: url("../assets/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: 500;
  font-display: swap;
  src: url("../assets/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: 500;
  font-display: swap;
  src: url("../assets/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 {
  --ink: #203f49;
  --ink-soft: #58747b;
  --teal: #417b8a;
  --teal-dark: #2f6574;
  --aqua: #dceff0;
  --aqua-pale: #f0f8f7;
  --ivory: #fffdf9;
  --gold: #caa968;
  --line: rgba(54, 102, 113, 0.14);
  --shadow: 0 24px 70px rgba(58, 101, 109, 0.13);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { max-width: 100%; display: block; }
.page-shell { overflow: clip; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.48);
}
.site-header::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(255,255,255,.54), rgba(255,255,255,.16)); backdrop-filter: blur(12px); }
.header-inner { height: 94px; display: flex; align-items: center; gap: 34px; }
.brand { width: 260px; display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand .brand-emblem { width: 58px; height: 58px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; color: #183e4d; white-space: nowrap; }
.brand-copy b { font-family: var(--serif); font-size: 25px; font-weight: 700; letter-spacing: .11em; line-height: .9; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 2.3vw, 38px); margin-left: auto; }
.site-nav a { position: relative; color: #3f626b; font-size: 13px; font-weight: 600; white-space: nowrap; }
.site-nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: -10px; height: 1px; background: var(--teal); transition: .25s ease; }
.site-nav a:hover::after { left: 0; right: 0; }
.header-actions { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.text-link { border: 0; background: none; padding: 8px 0; cursor: pointer; font-size: 12px; font-weight: 700; white-space: nowrap; }
.text-link:hover { color: var(--teal); }

.button {
  border: 1px solid transparent;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 27px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .035em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { color: white; background: linear-gradient(135deg, #538d99, #346c7b); box-shadow: 0 12px 28px rgba(42,100,113,.22); }
.button--primary:hover { box-shadow: 0 16px 34px rgba(42,100,113,.3); }
.button--compact { min-height: 42px; padding-inline: 21px; }
.button--large { min-width: 184px; min-height: 58px; }
.button--large svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.button--ghost { border-color: rgba(55,101,111,.25); background: rgba(255,255,255,.38); color: var(--ink); backdrop-filter: blur(8px); }
.button--ghost:hover { background: rgba(255,255,255,.7); }

.hero { position: relative; min-height: 850px; height: min(900px, 100vh); overflow: hidden; background: #e7f3f5; }
.hero-backdrop { position: absolute; inset: 0; background-image: url("../assets/images/elendarpw-hero-background.webp"); background-size: cover; background-position: center; transform: scale(1.01); }
.hero-backdrop::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(249,253,251,.94) 0%, rgba(247,252,251,.74) 30%, rgba(240,249,248,.12) 64%, rgba(230,245,245,.06) 100%), linear-gradient(0deg, rgba(252,252,248,.32), transparent 35%); }
.hero-glow { position: absolute; width: 720px; height: 720px; left: -210px; top: 70px; border-radius: 50%; background: rgba(255,255,255,.4); filter: blur(50px); }
.hero-inner { position: relative; height: 100%; display: flex; align-items: center; }
.hero-copy { position: relative; z-index: 3; width: min(620px, 54%); margin-top: 65px; }
.eyebrow, .kicker { color: var(--teal); font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.eyebrow span { width: 30px; height: 1px; background: var(--gold); }
.hero h1, .section-heading h2, .world-copy h2 { margin: 25px 0 23px; font-family: var(--serif); font-weight: 600; line-height: .93; letter-spacing: -.03em; }
.hero h1 { font-size: clamp(58px, 6vw, 88px); }
h1 em, h2 em { color: var(--teal); font-weight: 500; }
.hero-lead { max-width: 530px; margin: 0; color: #526f77; font-size: 16px; line-height: 1.8; }
.hero-actions { display: flex; gap: 13px; margin-top: 34px; }
.hero-meta { display: flex; align-items: stretch; gap: 24px; margin-top: 35px; }
.hero-meta > div { display: flex; align-items: center; gap: 10px; }
.hero-meta b, .hero-meta small { display: block; }
.hero-meta b { font-size: 11px; line-height: 1.4; }
.hero-meta small { color: #789097; font-size: 9px; letter-spacing: .03em; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #71a88e; box-shadow: 0 0 0 5px rgba(113,168,142,.14); }
.meta-divider { width: 1px; background: rgba(53,92,101,.16); }
.hero-character { position: absolute; z-index: 2; right: clamp(8px, 2vw, 32px); bottom: -205px; width: min(590px, 45vw); height: auto; pointer-events: none; filter: drop-shadow(0 28px 35px rgba(36,72,88,.2)); }
.scroll-hint { position: absolute; z-index: 4; left: 50%; bottom: 23px; display: flex; flex-direction: column; align-items: center; gap: 10px; transform: translateX(-50%); color: rgba(36,73,81,.7); font-size: 8px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.scroll-hint i { width: 1px; height: 28px; background: linear-gradient(var(--teal), transparent); animation: scroll 2s ease-in-out infinite; }
.petals i { position: absolute; z-index: 2; top: -20px; width: 9px; height: 14px; border-radius: 70% 0 70% 0; background: rgba(239,190,200,.6); animation: fall 12s linear infinite; }
.petals i:nth-child(1){left:11%;animation-delay:-3s}.petals i:nth-child(2){left:28%;animation-delay:-8s;animation-duration:15s}.petals i:nth-child(3){left:48%;animation-delay:-1s;animation-duration:18s}.petals i:nth-child(4){left:67%;animation-delay:-11s}.petals i:nth-child(5){left:83%;animation-delay:-5s;animation-duration:16s}.petals i:nth-child(6){left:94%;animation-delay:-9s;animation-duration:19s}

.section { padding: 125px 0; }
.intro { position: relative; background: var(--ivory); }
.intro::before { content: ""; position: absolute; top: 0; left: 0; width: 32%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.intro-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 100px; align-items: end; }
.section-heading h2, .world-copy h2 { font-size: clamp(46px, 5vw, 68px); }
.section-heading h2 { margin-bottom: 0; }
.intro-copy { padding-bottom: 4px; }
.intro-copy p { max-width: 490px; margin: 0 0 24px; color: var(--ink-soft); }
.arrow-link { display: inline-flex; align-items: center; gap: 20px; border: 0; border-bottom: 1px solid rgba(49,104,116,.28); background: none; padding: 0 0 7px; color: var(--teal-dark); cursor: pointer; font-size: 11px; font-weight: 700; letter-spacing: .05em; }
.arrow-link span { transition: transform .2s; }
.arrow-link:hover span { transform: translateX(4px); }
.feature-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 88px; border: 1px solid var(--line); background: white; box-shadow: 0 25px 80px rgba(67,105,111,.07); }
.feature-card { position: relative; min-height: 305px; padding: 44px 34px 38px; border-right: 1px solid var(--line); transition: background .25s, transform .25s; }
.feature-card:last-child { border-right: 0; }
.feature-card:hover { z-index: 1; background: #f1f8f7; transform: translateY(-5px); }
.feature-number { position: absolute; top: 24px; right: 26px; color: #b8cbcc; font-family: var(--serif); font-size: 13px; }
.feature-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 27px;
  padding: 11px;
  overflow: visible;
  background: linear-gradient(145deg, #315f70, #183e50);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  fill: none;
  stroke: #e7c987;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 9px 12px rgba(31,70,84,.2));
}
.feature-card h3, .step h3 { margin: 0 0 13px; font-family: var(--serif); font-size: 27px; font-weight: 600; }
.feature-card p, .step p { margin: 0; color: #70868c; font-size: 12px; line-height: 1.75; }

.world { padding-top: 50px; background: linear-gradient(180deg, var(--ivory), #f2f8f7); }
.world-card { min-height: 570px; display: grid; grid-template-columns: 1fr 1fr; background: linear-gradient(135deg, #deeff0, #f4f9f7 55%, #fffaf0); box-shadow: var(--shadow); }
.world-visual { position: relative; overflow: hidden; display: grid; place-items: center; background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.88), rgba(197,225,227,.34) 35%, transparent 68%); }
.world-visual::before, .world-visual::after { content: ""; position: absolute; width: 320px; height: 620px; top: -30px; border-radius: 50% 50% 45% 45%; border: 1px solid rgba(87,134,143,.16); transform: rotate(32deg); }
.world-visual::after { transform: rotate(-32deg); }
.world-visual img { position: relative; z-index: 2; width: 126px; filter: drop-shadow(0 22px 24px rgba(61,110,119,.17)); }
.world-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(72,122,131,.16); }
.world-ring--one { width: 265px; height: 265px; }
.world-ring--two { width: 400px; height: 400px; border-color: rgba(202,169,104,.2); }
.world-copy { padding: 84px 70px; background: rgba(255,255,255,.46); }
.world-copy h2 { margin-top: 20px; }
.world-copy p { max-width: 500px; margin: 0; color: var(--ink-soft); }
.world-stats { display: flex; gap: 45px; margin-top: 45px; padding-top: 27px; border-top: 1px solid var(--line); }
.world-stats div { display: flex; align-items: baseline; gap: 8px; }
.world-stats b { color: var(--teal); font-family: var(--serif); font-size: 33px; font-weight: 600; }
.world-stats span { color: #779097; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.start { background: #f2f8f7; }
.section-heading--center { max-width: 700px; margin: 0 auto; text-align: center; }
.section-heading--center h2 { margin-top: 17px; }
.section-heading--center > p { margin: 18px auto 0; color: var(--ink-soft); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 64px; }
.step { position: relative; padding: 44px 40px 40px; background: rgba(255,255,255,.78); border: 1px solid rgba(74,118,126,.11); box-shadow: 0 15px 45px rgba(60,105,112,.06); transition: transform .25s, box-shadow .25s; }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step-index { position: absolute; top: 30px; right: 30px; color: #b2c8c9; font-family: var(--serif); font-size: 14px; }
.step-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  background: linear-gradient(145deg, #315f70, #183e50);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  box-shadow: inset 0 0 0 1px rgba(231,201,135,.35);
}
.step-icon svg { width: 27px; fill: none; stroke: #e7c987; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.step .arrow-link { margin-top: 24px; }

.community { padding: 80px 0; background: linear-gradient(100deg, #ddebeb, #fbf8f0); border-top: 1px solid rgba(81,125,133,.12); }
.community-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; }
.community-inner > img { width: 74px; }
.community h2 { margin: 8px 0 0; font-family: var(--serif); font-size: clamp(30px,4vw,46px); font-weight: 600; line-height: 1.05; }

.site-footer { padding: 70px 0 24px; background: #183841; color: rgba(235,246,245,.67); }
.footer-main { display: flex; justify-content: space-between; gap: 60px; padding-bottom: 55px; }
.footer-brand { display: flex; align-items: center; gap: 14px; align-self: flex-start; color: white; }
.footer-brand img { width: 52px; height: 52px; }
.footer-brand span { display: flex; flex-direction: column; }
.footer-brand b { font-family: var(--serif); font-size: 26px; font-weight: 500; letter-spacing: .13em; line-height: 1; }
.footer-links { display: grid; grid-template-columns: repeat(2, 160px); gap: 70px; }
.footer-links div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-links b { margin-bottom: 8px; color: white; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.footer-links a, .footer-links button { border: 0; background: none; padding: 0; color: inherit; cursor: pointer; font-size: 11px; }
.footer-links a:hover, .footer-links button:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 9px; }
.footer-bottom p { margin: 0; text-align: right; }

.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; }
.menu-toggle span { display: block; width: 17px; height: 1px; margin: 5px auto; background: var(--ink); transition: .2s; }
.toast { position: fixed; z-index: 50; right: 24px; bottom: 24px; max-width: 360px; padding: 14px 18px; border: 1px solid rgba(255,255,255,.25); border-radius: 6px; background: rgba(30,65,74,.94); box-shadow: 0 16px 45px rgba(23,55,63,.3); color: white; font-size: 12px; opacity: 0; transform: translateY(12px); pointer-events: none; transition: .25s; }
.toast.is-visible { opacity: 1; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes fall { 0%{transform:translate(0,-30px) rotate(0);opacity:0}10%{opacity:.75}100%{transform:translate(90px,920px) rotate(540deg);opacity:0} }
@keyframes scroll { 0%,100%{transform:scaleY(.45);transform-origin:top}50%{transform:scaleY(1)} }

@media (max-width: 1100px) {
  .header-inner { gap: 20px; }
  .site-nav { gap: 18px; }
  .site-nav a:nth-child(4) { display: none; }
  .text-link { display: none; }
  .hero-character { right: -55px; bottom: -185px; width: min(540px, 49vw); }
  .feature-card { padding-inline: 25px; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 34px, 680px); }
  .site-header { position: absolute; }
  .header-inner { height: 82px; }
  .brand { width: auto; gap: 8px; }
  .brand .brand-emblem { width: 48px; height: 48px; }
  .brand-copy b { font-size: 21px; }
  .brand { position: relative; z-index: 2; }
  .menu-toggle { position: relative; z-index: 2; display: block; margin-left: auto; }
  .menu-toggle span { position: absolute; left: 12px; top: 17px; margin: 0; }
  .menu-toggle span:last-child { top: 23px; }
  .site-nav { position: fixed; inset: 0; z-index: 1; display: flex; flex-direction: column; gap: 26px; padding: 130px 30px 50px; background: rgba(245,251,250,.98); opacity: 0; visibility: hidden; transition: .25s; }
  .site-nav a, .site-nav a:nth-child(4) { display: block; font-family: var(--serif); font-size: 34px; font-weight: 600; }
  .site-nav.is-open { opacity: 1; visibility: visible; }
  .menu-toggle.is-open span:first-child, .menu-toggle.is-open span:last-child { top: 20px; }
  .menu-toggle.is-open span:first-child { transform: rotate(45deg); }
  .menu-toggle.is-open span:last-child { transform: rotate(-45deg); }
  .header-actions { display: none; }
  .hero { min-height: 780px; height: 92vh; }
  .hero-copy { width: 66%; margin-top: 55px; }
  .hero h1 { font-size: clamp(52px, 9vw, 72px); }
  .hero-character { right: -145px; bottom: -150px; width: 420px; opacity: .94; }
  .hero-backdrop::after { background: linear-gradient(90deg, rgba(249,253,251,.96), rgba(247,252,251,.78) 54%, rgba(240,249,248,.1)); }
  .intro-grid { grid-template-columns: 1fr; gap: 35px; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-card { border-bottom: 1px solid var(--line); }
  .feature-card:nth-child(2) { border-right: 0; }
  .feature-card:nth-child(n+3) { border-bottom: 0; }
  .world-card { grid-template-columns: 1fr; }
  .world-visual { min-height: 330px; }
  .world-copy { padding: 64px 50px; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 225px; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 28px); }
  .brand .brand-emblem { width: 44px; height: 44px; }
  .brand-copy b { font-size: 19px; letter-spacing: .09em; }
  .hero { min-height: 790px; height: auto; }
  .hero-inner { min-height: 790px; align-items: flex-start; padding-top: 145px; }
  .hero-backdrop { background-position: 62% center; }
  .hero-backdrop::after { background: linear-gradient(180deg, rgba(249,253,251,.96) 0%, rgba(249,253,251,.79) 55%, rgba(235,247,247,.26) 100%); }
  .hero-copy { width: 100%; margin: 0; }
  .hero h1 { margin-top: 20px; font-size: 50px; }
  .hero-lead { max-width: 93%; font-size: 14px; line-height: 1.65; }
  .hero-actions { align-items: stretch; flex-direction: column; width: min(100%, 290px); margin-top: 27px; }
  .button--large { min-height: 53px; }
  .hero-meta { margin-top: 25px; }
  .hero-character { right: -105px; bottom: -115px; width: 300px; opacity: .82; }
  .scroll-hint { display: none; }
  .section { padding: 90px 0; }
  .section-heading h2, .world-copy h2 { font-size: 45px; }
  .feature-strip { grid-template-columns: 1fr; margin-top: 58px; }
  .feature-card, .feature-card:nth-child(2), .feature-card:nth-child(n+3) { min-height: 255px; border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-card:last-child { border-bottom: 0; }
  .world { padding-top: 0; }
  .world-card { width: 100%; }
  .world-visual { min-height: 300px; }
  .world-copy { padding: 55px 28px; }
  .world-stats { gap: 22px; }
  .steps { margin-top: 45px; }
  .step { padding: 36px 30px; }
  .community-inner { grid-template-columns: 1fr; text-align: center; }
  .community-inner > img, .community .button { margin-inline: auto; }
  .footer-main { flex-direction: column; }
  .footer-links { width: 100%; grid-template-columns: repeat(2,1fr); gap: 30px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom p { text-align: left; }
  .toast { right: 14px; bottom: 14px; left: 14px; max-width: none; }
}

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