:root {
  color-scheme: dark;
  --night: #07100f;
  --forest: #10211c;
  --ivory: #f4efdf;
  --muted: rgba(244, 239, 223, 0.66);
  --gold: #d9ad5c;
  --gold-bright: #f2d68f;
  --line: rgba(244, 239, 223, 0.16);
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ui: "Manrope", "Segoe UI Variable Text", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--night);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 26%, rgba(74, 132, 119, 0.12), transparent 34rem),
    var(--night);
  color: var(--ivory);
  font-family: var(--ui);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.eve-visually-hidden {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.eve-skip {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ivory);
  color: var(--night);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.eve-skip:focus {
  transform: translateY(0);
}

.eve-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(3, 9, 8, 0.72), rgba(3, 9, 8, 0));
}

.eve-header-inner,
.eve-section-inner,
.eve-footer-inner,
.eve-hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.eve-header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.eve-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.eve-brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 214, 143, 0.55);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1;
  box-shadow: inset 0 0 0 5px rgba(6, 15, 13, 0.36);
}

.eve-brand-copy {
  display: grid;
  line-height: 1;
}

.eve-brand-copy strong {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
}

.eve-brand-copy small {
  margin-top: 5px;
  color: rgba(244, 239, 223, 0.62);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eve-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.eve-nav a {
  position: relative;
  color: rgba(244, 239, 223, 0.8);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.eve-nav a:not(.eve-nav-newsletter)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.eve-nav a:hover::after,
.eve-nav a:focus-visible::after {
  transform: scaleX(1);
}

.eve-nav-newsletter {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid rgba(242, 214, 143, 0.42);
  border-radius: 999px;
  background: rgba(7, 16, 15, 0.38);
}

.eve-nav-newsletter:hover,
.eve-nav-newsletter:focus-visible {
  border-color: var(--gold-bright);
  background: rgba(217, 173, 92, 0.14);
}

.eve-hero {
  min-height: 0;
  position: relative;
  aspect-ratio: 1731 / 909;
  isolation: isolate;
  overflow: hidden;
  background-color: #102522;
  background-image: url("/assets/img/landing/eveardel-social.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.eve-hero-art {
  display: none;
}

.eve-hero-inner {
  display: none;
}

.eve-hero-copy {
  width: min(680px, 100%);
}

.eve-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eve-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eve-hero h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.3rem, 10vw, 8.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.76;
  text-wrap: balance;
}

.eve-hero h2 em {
  display: block;
  margin-left: clamp(0px, 5vw, 68px);
  color: var(--gold-bright);
  font-weight: 400;
}

.eve-hero-lead {
  max-width: 610px;
  margin: 32px 0 0;
  color: rgba(244, 239, 223, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.75;
}

.eve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.eve-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: #152019;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.eve-button:hover,
.eve-button:focus-visible {
  border-color: var(--gold-bright);
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.eve-button-quiet {
  border-color: rgba(244, 239, 223, 0.32);
  background: rgba(6, 15, 13, 0.42);
  color: var(--ivory);
  backdrop-filter: blur(10px);
}

.eve-button-quiet:hover,
.eve-button-quiet:focus-visible {
  border-color: rgba(244, 239, 223, 0.72);
  background: rgba(244, 239, 223, 0.12);
  color: var(--ivory);
}

.eve-button-arrow {
  font-size: 1rem;
  transition: transform 160ms ease;
}

.eve-button:hover .eve-button-arrow,
.eve-button:focus-visible .eve-button-arrow {
  transform: translateX(3px);
}

.eve-world {
  padding: clamp(92px, 11vw, 160px) 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(119, 185, 179, 0.11), transparent 32rem),
    var(--night);
}

.eve-world-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(52px, 8vw, 110px);
}

.eve-overline {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eve-section-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.eve-section-copy {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.eve-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.eve-pillar {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.eve-pillar strong,
.eve-pillar span {
  display: block;
}

.eve-pillar strong {
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 600;
}

.eve-pillar span {
  margin-top: 6px;
  color: rgba(244, 239, 223, 0.48);
  font-size: 0.7rem;
  line-height: 1.45;
}

.eve-world-visual {
  position: relative;
  min-height: 660px;
}

.eve-world-image {
  position: absolute;
  inset: 0 0 54px 42px;
  margin: 0;
  overflow: hidden;
  border-radius: 220px 220px 18px 18px;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.48);
}

.eve-world-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.02);
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.eve-world-visual:hover .eve-world-image img {
  transform: scale(1.025);
}

.eve-world-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(244, 239, 223, 0.16);
  border-radius: inherit;
  box-shadow: inset 0 -120px 90px rgba(4, 13, 11, 0.32);
  pointer-events: none;
}

.eve-map-note {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: min(310px, 72%);
  padding: 24px;
  border: 1px solid rgba(217, 173, 92, 0.28);
  border-radius: 12px;
  background: rgba(14, 30, 25, 0.94);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
}

.eve-map-note small {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eve-map-note strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.05;
}

.eve-map-note p {
  margin: 10px 0 0;
  color: rgba(244, 239, 223, 0.58);
  font-size: 0.78rem;
  line-height: 1.55;
}

.eve-realms {
  padding: 28px 0 clamp(90px, 10vw, 140px);
}

.eve-realms-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}

.eve-realms-heading p {
  max-width: 440px;
  margin: 0;
  color: rgba(244, 239, 223, 0.58);
}

.eve-realm-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eve-realm {
  min-height: 280px;
  position: relative;
  padding: 36px 32px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  text-decoration: none;
  isolation: isolate;
}

.eve-realm:last-child {
  border-right: 0;
}

.eve-realm::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(145deg, rgba(119, 185, 179, 0.13), transparent 70%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.eve-realm:hover::before,
.eve-realm:focus-visible::before {
  opacity: 1;
}

.eve-realm-index {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.eve-realm h3 {
  margin: 74px 0 0;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
}

.eve-realm p {
  margin: 14px 0 0;
  color: rgba(244, 239, 223, 0.56);
  font-size: 0.82rem;
}

.eve-realm-arrow {
  position: absolute;
  right: 30px;
  bottom: 26px;
  color: var(--gold-bright);
  font-size: 1.2rem;
  transition: transform 160ms ease;
}

.eve-realm:hover .eve-realm-arrow,
.eve-realm:focus-visible .eve-realm-arrow {
  transform: translateX(5px);
}

.eve-newsletter {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(6, 14, 12, 0.98) 0%, rgba(6, 14, 12, 0.9) 52%, rgba(6, 14, 12, 0.34) 82%),
    url("/assets/img/admin/eveardel-dungeon-login.png") center 48% / cover;
}

.eve-newsletter::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(244, 239, 223, 0.12);
  border-bottom: 1px solid rgba(244, 239, 223, 0.12);
  pointer-events: none;
}

.eve-newsletter-inner {
  position: relative;
  z-index: 1;
  min-height: 600px;
  display: grid;
  align-items: center;
}

.eve-newsletter-copy {
  max-width: 650px;
  padding: 100px 0;
}

.eve-newsletter .eve-section-copy {
  max-width: 580px;
}

.eve-newsletter-form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  margin-top: 32px;
}

.eve-newsletter-field {
  min-width: min(100%, 300px);
  flex: 1 1 320px;
}

.eve-newsletter-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(244, 239, 223, 0.28);
  border-radius: 999px;
  background: rgba(4, 11, 10, 0.58);
  color: var(--ivory);
  outline: none;
  backdrop-filter: blur(10px);
}

.eve-newsletter-field input::placeholder {
  color: rgba(244, 239, 223, 0.44);
}

.eve-newsletter-field input:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 4px rgba(217, 173, 92, 0.12);
}

.eve-newsletter-submit {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: #152019;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.eve-newsletter-submit:hover,
.eve-newsletter-submit:focus-visible {
  border-color: var(--gold-bright);
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.eve-newsletter-honeypot {
  width: 1px;
  height: 1px;
  position: absolute;
  left: -10000px;
  overflow: hidden;
}

.eve-newsletter-note {
  margin: 14px 0 0;
  color: rgba(244, 239, 223, 0.46);
  font-size: 0.68rem;
}

.eve-newsletter-message {
  max-width: 580px;
  margin: 24px 0 0;
  padding: 12px 16px;
  border: 1px solid rgba(244, 239, 223, 0.16);
  border-radius: 10px;
  background: rgba(4, 11, 10, 0.54);
  font-size: 0.8rem;
}

.eve-newsletter-message-success {
  border-color: rgba(119, 185, 179, 0.44);
  color: #c7efe8;
}

.eve-newsletter-message-error {
  border-color: rgba(217, 173, 92, 0.46);
  color: var(--gold-bright);
}

.eve-footer {
  padding: 30px 0 34px;
  border-top: 1px solid rgba(244, 239, 223, 0.08);
  background: #050b0a;
}

.eve-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(244, 239, 223, 0.42);
  font-size: 0.68rem;
}

.eve-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.eve-footer a {
  text-decoration: none;
}

.eve-footer a:hover,
.eve-footer a:focus-visible {
  color: var(--gold-bright);
}

@media (max-width: 960px) {
  .eve-nav a:not(.eve-nav-newsletter) {
    display: none;
  }

  .eve-world-grid {
    grid-template-columns: 1fr;
  }

  .eve-world-copy {
    max-width: 720px;
  }

  .eve-world-visual {
    min-height: 600px;
  }

  .eve-realms-heading {
    display: grid;
  }

  .eve-realm-grid {
    grid-template-columns: 1fr;
  }

  .eve-realm {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .eve-realm:last-child {
    border-bottom: 0;
  }

  .eve-realm h3 {
    margin-top: 45px;
  }

}

@media (max-width: 680px) {
  .eve-header-inner,
  .eve-section-inner,
  .eve-footer-inner,
  .eve-hero-inner {
    width: min(100% - 28px, 1180px);
  }

  .eve-header-inner {
    min-height: 76px;
  }

  .eve-brand-copy small {
    display: none;
  }

  .eve-nav-newsletter {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.62rem !important;
  }

  .eve-hero {
    min-height: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;
    overflow: hidden;
    background-color: var(--night);
    background-image: none;
  }

  .eve-hero::after {
    display: none;
  }

  .eve-hero-art {
    width: 100%;
    height: auto;
    position: static;
    z-index: auto;
    display: block;
    flex: 0 0 auto;
  }

  .eve-hero-inner {
    min-height: 0;
    position: relative;
    z-index: 2;
    display: block;
    padding: 52px 0 58px;
  }

  .eve-hero h2 {
    font-size: clamp(3.5rem, 19vw, 5.6rem);
    line-height: 0.82;
  }

  .eve-hero h2 em {
    margin-left: 0;
  }

  .eve-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .eve-button {
    width: 100%;
  }

  .eve-pillars {
    grid-template-columns: 1fr;
  }

  .eve-world-visual {
    min-height: 500px;
  }

  .eve-world-image {
    inset: 0 0 52px 18px;
    border-radius: 140px 140px 16px 16px;
  }

  .eve-map-note {
    width: min(290px, 88%);
    padding: 18px;
  }

  .eve-realm {
    padding: 30px 24px;
  }

  .eve-newsletter {
    background-position: 65% center;
  }

  .eve-newsletter-inner {
    min-height: 640px;
  }

  .eve-newsletter-form {
    flex-direction: column;
  }

  .eve-newsletter-submit {
    width: 100%;
  }

  .eve-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
