﻿:root {
  --bg: #050505;
  --panel: #0d0c0a;
  --panel-2: #14120f;
  --line: rgba(246, 236, 214, 0.16);
  --text: #f5efe3;
  --muted: #afa89b;
  --soft: #d8c9ae;
  --gold: #d7a95f;
  --gold-2: #f0d49b;
  --cyan: #48e7ff;
  --cyan-2: #b9fbff;
  --cyan-soft: rgba(72, 231, 255, 0.12);
  --cyan-line: rgba(72, 231, 255, 0.28);
  --magenta: #ff4df2;
  --shadow: rgba(0, 0, 0, 0.6);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

::selection {
  background: rgba(72, 231, 255, 0.22);
  color: var(--text);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--text);
  color: #080807;
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem clamp(1rem, 4vw, 3rem);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.45), transparent);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
  padding-block: 0.75rem;
}

.brand {
  width: 190px;
}

.brand img {
  height: auto;
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  color: rgba(245, 239, 227, 0.76);
  font-size: 0.9rem;
}

.nav-links a,
.site-footer a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--cyan-2);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.2vw, 1.8rem);
}

.account-link {
  color: rgba(245, 239, 227, 0.76);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
  border-bottom: 1px solid transparent;
  transition:
    border-color 160ms ease,
    color 160ms ease;
}

.account-link:hover {
  color: var(--cyan-2);
  border-bottom-color: var(--cyan-line);
}

.header-action {
  border: 1px solid rgba(216, 201, 174, 0.34);
  color: var(--soft);
  padding: 0.72rem 1rem;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.header-action:hover {
  background: linear-gradient(135deg, rgba(215, 169, 95, 0.12), rgba(72, 231, 255, 0.08));
  border-color: var(--cyan-line);
  color: var(--text);
  box-shadow: 0 0 28px rgba(72, 231, 255, 0.12);
}

.hero {
  position: relative;
  min-height: 96svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(7rem, 12vw, 10rem) clamp(1rem, 4vw, 3rem) clamp(2.5rem, 7vw, 5rem);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: #050505;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 34%, rgba(72, 231, 255, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.72) 42%, rgba(5, 5, 5, 0.65) 100%),
    rgba(5, 5, 5, 0.65);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
  opacity: 1;
  filter: saturate(0.92) contrast(1.05);
}

.hero-grid {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background-image:
    linear-gradient(rgba(72, 231, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 236, 214, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

.hero-content,
.section-shell {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.hero-content {
  padding-top: 18vh;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow::after {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0.7;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 1.35rem;
  font-size: clamp(3rem, 8vw, 7.9rem);
  line-height: 0.92;
  font-weight: 760;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  line-height: 0.98;
  font-weight: 720;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  line-height: 1;
  font-weight: 720;
}

.hero-copy {
  max-width: 670px;
  color: rgba(245, 239, 227, 0.78);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
}

.hero-actions,
.cookie-banner div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  padding: 0.8rem 1.1rem;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    background 170ms ease,
    color 170ms ease,
    box-shadow 170ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #11100d;
  box-shadow:
    0 18px 46px rgba(215, 169, 95, 0.22),
    0 0 28px rgba(72, 231, 255, 0.08);
}

.button-primary:hover {
  box-shadow:
    0 20px 54px rgba(215, 169, 95, 0.26),
    0 0 34px rgba(72, 231, 255, 0.14);
}

.button-secondary {
  border-color: rgba(245, 239, 227, 0.22);
  background: rgba(245, 239, 227, 0.04);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--cyan-line);
  background: rgba(72, 231, 255, 0.07);
  color: #eaffff;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.hero-proof span {
  border: 1px solid rgba(245, 239, 227, 0.16);
  background: rgba(72, 231, 255, 0.035);
  color: rgba(245, 239, 227, 0.72);
  padding: 0.45rem 0.65rem;
  font-size: 0.78rem;
}

.hero-proof span:nth-child(3) {
  border-color: var(--cyan-line);
  color: #dffcff;
}

.section,
.statement,
.launch-section,
.disclaimer {
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1rem, 4vw, 3rem);
}

.statement {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 45%, rgba(72, 231, 255, 0.1), transparent 30%),
    linear-gradient(90deg, rgba(215, 169, 95, 0.07), transparent);
}

.statement p {
  max-width: 980px;
  margin: 0;
  color: var(--soft);
  font-size: clamp(1.5rem, 3vw, 3.2rem);
  line-height: 1.12;
}

.two-column,
.ethos-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 8vw, 6rem);
  align-items: start;
}

.section-copy,
.ethos-grid p,
.launch-box p,
.disclaimer p {
  color: rgba(245, 239, 227, 0.72);
  font-size: 1.05rem;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(2rem, 5vw, 4rem);
  border-block: 1px solid var(--line);
}

.signal-strip div {
  min-height: 220px;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(72, 231, 255, 0.035), transparent 52%);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip span {
  color: var(--cyan-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-shadow: 0 0 18px rgba(72, 231, 255, 0.2);
}

.signal-strip strong {
  display: block;
  margin: 1.6rem 0 0.8rem;
  font-size: 1.25rem;
}

.signal-strip p {
  color: var(--muted);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-heading p:last-child {
  color: var(--soft);
}

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

.plan-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(72, 231, 255, 0.5), transparent);
  opacity: 0.32;
}

.plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(72, 231, 255, 0.24);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.38),
    0 0 38px rgba(72, 231, 255, 0.08);
}

.featured-plan {
  border-color: var(--cyan-line);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.38),
    0 0 46px rgba(72, 231, 255, 0.1);
}

.featured-plan::before {
  height: 2px;
  opacity: 0.9;
}

.plan-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.plan-body {
  padding: 1.2rem;
}

.plan-kicker,
.alt-price {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.8rem 0 0.3rem;
}

.price-row strong {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1;
}

.price-row span {
  color: var(--muted);
}

.plan-body p {
  color: rgba(245, 239, 227, 0.7);
}

.button-plan {
  width: 100%;
  margin-top: 0.6rem;
  background: rgba(245, 239, 227, 0.05);
  border-color: rgba(245, 239, 227, 0.16);
}

.plan-pulse .button-plan:hover {
  border-color: var(--magenta);
  color: #ffd8fb;
}

.plan-intel .button-plan:hover {
  border-color: var(--cyan);
  color: #d7fbff;
}

.plan-vip .button-plan:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}

.tools-list {
  display: grid;
  gap: 0.75rem;
}

.tools-list div {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  transition:
    border-color 170ms ease,
    background 170ms ease;
}

.tools-list div:hover {
  border-top-color: var(--cyan-line);
  background: linear-gradient(90deg, rgba(72, 231, 255, 0.045), transparent);
}

.tools-list strong,
.tools-list span {
  display: block;
}

.tools-list span {
  color: var(--muted);
  margin-top: 0.3rem;
}

.ethos-section,
.launch-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(72, 231, 255, 0.1), transparent 34%),
    radial-gradient(circle at 30% 20%, rgba(215, 169, 95, 0.12), transparent 38%),
    var(--panel);
}

.launch-box {
  border: 1px solid rgba(72, 231, 255, 0.22);
  padding: clamp(1.4rem, 5vw, 3rem);
  background:
    linear-gradient(135deg, rgba(215, 169, 95, 0.12), rgba(72, 231, 255, 0.045) 58%, rgba(245, 239, 227, 0.03));
}

.launch-box h2 {
  max-width: 760px;
}

.launch-box p {
  max-width: 760px;
}

.disclaimer {
  border-top: 1px solid var(--line);
}

.disclaimer h2 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.disclaimer p {
  max-width: 1060px;
  font-size: 0.95rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem clamp(1rem, 4vw, 3rem);
  color: var(--muted);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer img {
  width: 190px;
  margin-bottom: 0.8rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  z-index: 30;
  left: 50%;
  bottom: 1rem;
  width: min(calc(100% - 2rem), 920px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(72, 231, 255, 0.2);
  background: rgba(8, 8, 7, 0.92);
  color: var(--text);
  padding: 1rem;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 80px rgba(0, 0, 0, 0.5);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: rgba(245, 239, 227, 0.72);
  font-size: 0.9rem;
}

.legal-page {
  padding-top: 8rem;
}

.legal-content {
  max-width: 880px;
}

.legal-content h1 {
  font-size: clamp(2.7rem, 6vw, 5.8rem);
}

.legal-content h2 {
  margin-top: 2.4rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.legal-content p,
.legal-content li {
  color: rgba(245, 239, 227, 0.74);
}


.account-main {
  min-height: 100svh;
  background:
    radial-gradient(circle at 82% 18%, rgba(72, 231, 255, 0.12), transparent 32%),
    radial-gradient(circle at 18% 82%, rgba(215, 169, 95, 0.1), transparent 34%),
    var(--bg);
}

.account-portal {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(7.5rem, 12vw, 10rem) clamp(1rem, 4vw, 3rem) clamp(4rem, 7vw, 6rem);
  isolation: isolate;
}

.account-portal::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.7) 48%, rgba(5, 5, 5, 0.92)),
    url("/assets/eidara-hero-background.png") 82% center / cover no-repeat;
  opacity: 0.82;
}

.account-portal::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 44%;
  background-image:
    linear-gradient(rgba(72, 231, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 236, 214, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
}

.account-shell {
  position: relative;
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}

.account-surface {
  border: 1px solid rgba(246, 236, 214, 0.14);
  background:
    linear-gradient(145deg, rgba(14, 13, 11, 0.88), rgba(7, 7, 6, 0.76)),
    rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(22px);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.account-signin {
  padding: clamp(1.25rem, 3vw, 2.4rem);
}

.account-signin h1 {
  max-width: 560px;
  margin-bottom: 1rem;
  font-size: clamp(2.45rem, 5.4vw, 5.4rem);
  line-height: 0.96;
}

.account-lede {
  max-width: 560px;
  color: rgba(245, 239, 227, 0.74);
  font-size: clamp(1rem, 1.6vw, 1.17rem);
}

.signin-form {
  display: grid;
  gap: 0.9rem;
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
}

.field-group {
  display: grid;
  gap: 0.45rem;
}

.field-group label {
  color: rgba(245, 239, 227, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.field-group input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(246, 236, 214, 0.18);
  background: rgba(5, 5, 5, 0.58);
  color: var(--text);
  padding: 0.92rem 1rem;
  font: inherit;
  outline: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.field-group input::placeholder {
  color: rgba(245, 239, 227, 0.32);
}

.field-group input:focus {
  border-color: var(--cyan-line);
  background: rgba(5, 5, 5, 0.72);
  box-shadow: 0 0 0 4px rgba(72, 231, 255, 0.08);
}

.signin-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(245, 239, 227, 0.68);
  font-size: 0.9rem;
}

.signin-options a,
.portal-support {
  color: var(--cyan-2);
  border-bottom: 1px solid rgba(72, 231, 255, 0.24);
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

.signin-options a:hover,
.portal-support:hover {
  color: var(--text);
  border-color: rgba(245, 239, 227, 0.34);
}

.checkline {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.checkline input {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  accent-color: var(--cyan);
}

.signin-button {
  width: 100%;
  margin-top: 0.35rem;
}

.form-status {
  min-height: 1.35em;
  margin: 0;
  color: rgba(245, 239, 227, 0.56);
  font-size: 0.86rem;
}

.form-status.is-visible {
  color: var(--gold-2);
}

.security-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(246, 236, 214, 0.12);
}

.security-row span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(72, 231, 255, 0.18);
  background: rgba(72, 231, 255, 0.045);
  color: rgba(245, 239, 227, 0.68);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.portal-panel {
  overflow: hidden;
}

.portal-visual {
  position: relative;
  min-height: 260px;
  border-bottom: 1px solid rgba(72, 231, 255, 0.18);
  overflow: hidden;
}

.portal-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 37%;
  filter: saturate(0.88) contrast(1.05);
}

.portal-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 30%, rgba(72, 231, 255, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.66) 56%, rgba(5, 5, 5, 0.78)),
    rgba(5, 5, 5, 0.65);
}

.portal-visual-copy {
  position: absolute;
  z-index: 1;
  left: clamp(1.1rem, 3vw, 2rem);
  bottom: clamp(1.1rem, 3vw, 1.8rem);
  max-width: 430px;
}

.panel-label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.portal-visual-copy h2 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  line-height: 0.98;
}

.status-pill {
  position: absolute;
  z-index: 1;
  top: 1rem;
  right: 1rem;
  border: 1px solid rgba(72, 231, 255, 0.28);
  background: rgba(5, 5, 5, 0.64);
  color: var(--cyan-2);
  padding: 0.44rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.portal-body {
  padding: clamp(1.1rem, 2.4vw, 1.8rem);
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgba(246, 236, 214, 0.12);
}

.portal-stat {
  min-height: 92px;
  padding: 1rem;
  border-right: 1px solid rgba(246, 236, 214, 0.12);
}

.portal-stat:last-child {
  border-right: 0;
}

.portal-stat span,
.access-row span,
.access-row em {
  color: rgba(245, 239, 227, 0.58);
}

.portal-stat span {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.portal-stat strong {
  display: block;
  color: var(--text);
  font-size: clamp(1rem, 1.55vw, 1.24rem);
  line-height: 1.1;
}

.access-list {
  margin-top: 1.15rem;
}

.access-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid rgba(246, 236, 214, 0.1);
}

.access-row:first-child {
  border-top: 0;
}

.access-dot {
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.42rem;
  border-radius: 999px;
  box-shadow: 0 0 20px currentColor;
}

.access-dot.is-cyan {
  color: var(--cyan);
  background: var(--cyan);
}

.access-dot.is-gold {
  color: var(--gold-2);
  background: var(--gold-2);
}

.access-row strong,
.access-row span,
.access-row em {
  display: block;
}

.access-row strong {
  color: var(--text);
  font-size: 1rem;
}

.access-row span {
  margin-top: 0.18rem;
  font-size: 0.92rem;
}

.access-row em {
  min-width: max-content;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.portal-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.8rem;
}

.account-footer {
  background: #050505;
}
@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-bg-image {
    object-position: 58% center;
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.72) 0%, rgba(5, 5, 5, 0.74) 38%, rgba(5, 5, 5, 0.92) 100%),
      rgba(5, 5, 5, 0.65);
  }

  .two-column,
  .ethos-grid,
  .plans-grid,
  .signal-strip,
  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .signal-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-strip div:last-child {
    border-bottom: 0;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
  .account-shell {
    grid-template-columns: 1fr;
  }

  .account-portal::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.92) 58%, rgba(5, 5, 5, 0.96)),
      url("/assets/eidara-hero-background.png") 58% center / cover no-repeat;
  }

  .portal-panel {
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 620px) {

  .account-portal {
    padding-inline: 1rem;
    padding-top: 6.7rem;
  }

  .account-signin h1 {
    font-size: clamp(2.3rem, 15vw, 3.05rem);
  }

  .signin-options,
  .portal-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .portal-actions .button,
  .security-row,
  .portal-grid {
    width: 100%;
  }

  .security-row,
  .portal-grid {
    grid-template-columns: 1fr;
  }

  .portal-stat {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(246, 236, 214, 0.12);
  }

  .portal-stat:last-child {
    border-bottom: 0;
  }

  .portal-visual {
    min-height: 230px;
  }

  .access-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .access-row em {
    grid-column: 2;
  }  .site-header {
    padding-inline: 1rem;
  }

  .brand {
    width: 150px;
  }

  .header-actions {
    gap: 0.7rem;
  }

  .account-link {
    font-size: 0.78rem;
  }

  .header-action {
    padding: 0.62rem 0.72rem;
    font-size: 0.74rem;
  }

  .hero {
    padding-inline: 1rem;
  }

  .hero-actions .button,
  .cookie-banner .button {
    width: 100%;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner div {
    width: 100%;
  }
}

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

@media (max-width: 380px) {
  .brand {
    width: 132px;
  }

  .account-link {
    font-size: 0.7rem;
  }

  .header-action {
    padding: 0.56rem 0.62rem;
    font-size: 0.68rem;
  }
}