:root {
  --void: #070b1a;
  --ink: #0c1228;
  --panel: #121a33;
  --panel-2: #182240;
  --line: rgba(240, 198, 90, 0.18);
  --gold: #f0c65a;
  --gold-soft: #e6c378;
  --gold-deep: #b98f49;
  --crimson: #c91b12;
  --crimson-hot: #e0241a;
  --ice: #5ba3e0;
  --ember: #ff6a2a;
  --moss: #3d9a6a;
  --mist: #c8d0e0;
  --white: #ffffff;
  --muted: #8b95a8;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--white);
  background: var(--void);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

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

/* Atmosphere */
.forge-bg {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse 55% 40% at 0% 0%, rgba(91, 163, 224, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(255, 106, 42, 0.2), transparent 55%),
    radial-gradient(ellipse 45% 35% at 0% 100%, rgba(61, 154, 106, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(91, 163, 224, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(240, 198, 90, 0.08), transparent 60%),
    var(--void);
}

.forge-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
  background-image: radial-gradient(circle, rgba(240, 198, 90, 0.35) 0.6px, transparent 0.7px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
}

.font-display {
  font-family: "Syne", sans-serif;
  letter-spacing: -0.03em;
}

.gold-text {
  color: var(--gold);
}

.muted {
  color: var(--muted);
}

.focus-ring:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: var(--safe-top);
  background: rgba(7, 11, 26, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(7, 11, 26, 0.94);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .nav-inner {
    padding: 0.9rem 1.5rem;
  }
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 44px;
}

.brand-mark img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(240, 198, 90, 0.35), 0 0 18px rgba(201, 27, 18, 0.35);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy span:first-child {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-copy span:last-child {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mist);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--white);
  background: rgba(240, 198, 90, 0.08);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(18, 26, 51, 0.8);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  visibility: hidden;
  pointer-events: none;
}

.nav-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.nav-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.nav-drawer.is-open .nav-drawer-backdrop {
  opacity: 1;
}

.nav-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(20rem, 86vw);
  height: 100%;
  padding: calc(1.25rem + var(--safe-top)) 1.25rem calc(1.5rem + var(--safe-bottom));
  background: linear-gradient(180deg, #121a33, #070b1a);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-drawer.is-open .nav-drawer-panel {
  transform: translateX(0);
}

.nav-drawer-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  margin-bottom: 0.75rem;
}

.nav-drawer-panel a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  font-weight: 600;
  color: var(--mist);
}

.nav-drawer-panel a[aria-current="page"],
.nav-drawer-panel a:hover {
  background: rgba(240, 198, 90, 0.1);
  color: var(--white);
}

/* Buttons */
.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 48px;
  padding: 0.55rem 1rem 0.55rem 0.85rem;
  border-radius: 14px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-store:hover {
  transform: translateY(-1px);
  border-color: rgba(240, 198, 90, 0.45);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.btn-store i {
  font-size: 1.55rem;
  line-height: 1;
}

.btn-store .meta {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.btn-store .meta small {
  font-size: 0.65rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
}

.btn-store .meta strong {
  font-size: 1.05rem;
  font-weight: 700;
}

.btn-crimson {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--crimson-hot), var(--crimson));
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 28px rgba(201, 27, 18, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-crimson:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(201, 27, 18, 0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.2rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  color: var(--gold-soft);
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-ghost:hover {
  background: rgba(240, 198, 90, 0.08);
  border-color: rgba(240, 198, 90, 0.4);
}

/* Layout helpers */
.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .shell {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .shell {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section {
  padding: 3.5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 1.25rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
}

.section-title {
  margin: 0.7rem 0 0.8rem;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-lead {
  margin: 0;
  max-width: 36rem;
  color: var(--mist);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - 4.5rem);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 26, 0.72) 0%, rgba(7, 11, 26, 0.78) 45%, rgba(7, 11, 26, 0.92) 100%),
    linear-gradient(90deg, rgba(7, 11, 26, 0.82) 0%, rgba(7, 11, 26, 0.55) 55%, rgba(7, 11, 26, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 0 2.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 2.5rem 0 3rem;
  }
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.hero-brand img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(240, 198, 90, 0.45), 0 0 40px rgba(201, 27, 18, 0.35);
}

@media (min-width: 768px) {
  .hero-brand img {
    width: 80px;
    height: 80px;
    border-radius: 18px;
  }
}

.hero-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-brand-text .name {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 7vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero-brand-text .tag {
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  margin: 0 0 0.85rem;
  max-width: 14ch;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: clamp(1.45rem, 3.8vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero p {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  color: var(--mist);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.age-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Phone frame for screenshots outside hero */
.phone-frame {
  position: relative;
  margin: 0 auto;
  width: min(100%, 280px);
  border-radius: 2rem;
  padding: 0.55rem;
  background: linear-gradient(160deg, rgba(240, 198, 90, 0.45), rgba(201, 27, 18, 0.35), rgba(91, 163, 224, 0.3));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

@media (min-width: 768px) {
  .phone-frame {
    width: min(100%, 300px);
  }
}

.phone-frame img {
  width: 100%;
  border-radius: 1.55rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Feature rails */
.feature-rail {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .feature-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .feature-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.feature-item {
  position: relative;
  padding: 1.4rem 1.3rem 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(24, 34, 64, 0.9), rgba(12, 18, 40, 0.95));
  border: 1px solid rgba(240, 198, 90, 0.12);
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--crimson));
}

.feature-item .icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(201, 27, 18, 0.15);
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.feature-item h3 {
  margin: 0 0 0.45rem;
  font-family: "Syne", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.98rem;
}

/* Element strip */
.element-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .element-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.element-chip {
  min-height: 88px;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.element-chip i {
  font-size: 1.15rem;
}

.element-chip.fire {
  background: linear-gradient(160deg, rgba(255, 106, 42, 0.28), rgba(12, 18, 40, 0.2));
}
.element-chip.water {
  background: linear-gradient(160deg, rgba(91, 163, 224, 0.28), rgba(12, 18, 40, 0.2));
}
.element-chip.earth {
  background: linear-gradient(160deg, rgba(61, 154, 106, 0.28), rgba(12, 18, 40, 0.2));
}
.element-chip.air {
  background: linear-gradient(160deg, rgba(200, 208, 224, 0.22), rgba(12, 18, 40, 0.2));
}

/* Showcase */
.showcase-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .showcase-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.shot-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.shot-stack .phone-frame:nth-child(2) {
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .shot-stack {
    gap: 1.1rem;
  }
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  padding: 2rem 1.35rem;
  border: 1px solid rgba(240, 198, 90, 0.2);
  background:
    radial-gradient(circle at 15% 20%, rgba(201, 27, 18, 0.28), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(240, 198, 90, 0.18), transparent 40%),
    linear-gradient(135deg, #121a33, #0c1228);
}

@media (min-width: 768px) {
  .cta-band {
    padding: 2.75rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.cta-band h2 {
  margin: 0.5rem 0 0.6rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.1;
}

.cta-band p {
  margin: 0;
  color: var(--mist);
  max-width: 32rem;
}

/* Page hero (inner) */
.page-hero {
  padding: 2.5rem 0 1.5rem;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 3.5rem 0 2rem;
  }
}

.page-hero h1 {
  margin: 0.6rem 0 0.75rem;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
}

.page-hero p {
  margin: 0;
  max-width: 40rem;
  color: var(--mist);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* About */
.about-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
  }
}

.prose-panel {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: rgba(18, 26, 51, 0.75);
  border: 1px solid rgba(240, 198, 90, 0.12);
}

.prose-panel p {
  margin: 0 0 1rem;
  color: var(--mist);
  line-height: 1.65;
}

.prose-panel p:last-child {
  margin-bottom: 0;
}

.value-list {
  display: grid;
  gap: 0.85rem;
}

.value-list li {
  list-style: none;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(12, 18, 40, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.value-list {
  margin: 0;
  padding: 0;
}

.value-list i {
  margin-top: 0.15rem;
  color: var(--gold);
}

.value-list strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: "Syne", sans-serif;
}

.value-list span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Contact */
.contact-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.email-block {
  padding: 1.75rem 1.4rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(240, 198, 90, 0.16), transparent 45%),
    linear-gradient(180deg, #182240, #0c1228);
  border: 1px solid rgba(240, 198, 90, 0.2);
}

.email-block h2 {
  margin: 0 0 0.6rem;
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
}

.email-block p {
  margin: 0 0 1.25rem;
  color: var(--mist);
  line-height: 1.55;
}

.mailto-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 52px;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  background: rgba(201, 27, 18, 0.16);
  border: 1px solid rgba(201, 27, 18, 0.4);
  color: var(--white);
  font-weight: 700;
  word-break: break-all;
  transition: background 0.2s ease;
}

.mailto-link:hover {
  background: rgba(201, 27, 18, 0.28);
}

.mailto-link i {
  color: var(--gold);
  flex-shrink: 0;
}

.response-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 26, 51, 0.7);
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
}

.faq-btn i {
  color: var(--gold);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-btn i {
  transform: rotate(45deg);
}

.faq-panel {
  display: none;
  padding: 0 1.1rem 1.1rem;
  color: var(--mist);
  line-height: 1.6;
  font-size: 0.98rem;
}

.faq-item.open .faq-panel {
  display: block;
}

/* Legal */
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-body {
  max-width: 48rem;
  padding-bottom: 4rem;
}

.legal-body h2 {
  margin: 2rem 0 0.7rem;
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
}

.legal-body p,
.legal-body li {
  color: var(--mist);
  line-height: 1.65;
}

.legal-body ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0 1rem;
}

.legal-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-lead {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(240, 198, 90, 0.12);
  padding: 2.5rem 0 calc(2rem + var(--safe-bottom));
  background: #050814;
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-brand {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.footer-brand strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 22rem;
}

.footer-col h3 {
  margin: 0 0 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-col a {
  display: flex;
  align-items: center;
  min-height: 40px;
  color: var(--mist);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.disclaimer {
  max-width: 40rem;
  line-height: 1.5;
}

/* Motion accents */
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-brand,
.hero h1,
.hero p,
.hero-actions {
  animation: rise-in 0.7s ease both;
}

.hero h1 {
  animation-delay: 0.08s;
}

.hero p {
  animation-delay: 0.16s;
}

.hero-actions {
  animation-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-brand,
  .hero h1,
  .hero p,
  .hero-actions {
    animation: none;
  }
}
