:root {
  --bg: #111933;
  --bg-deep: #090f22;
  --bg-panel: #182346;
  --surface: rgba(19, 30, 58, 0.82);
  --surface-strong: rgba(12, 20, 42, 0.95);
  --text: #fff9ef;
  --muted: #bfcae2;
  --line: rgba(255, 255, 255, 0.11);
  --gold: #ffbd12;
  --gold-soft: #ffe35c;
  --orange: #ff8d00;
  --orange-deep: #f35b00;
  --green: #95d63a;
  --shadow: 0 34px 90px rgba(1, 4, 14, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 227, 92, 0.16), transparent 18%),
    radial-gradient(circle at 82% 16%, rgba(243, 91, 0, 0.18), transparent 20%),
    radial-gradient(circle at 78% 62%, rgba(149, 214, 58, 0.14), transparent 18%),
    linear-gradient(180deg, #1b2851 0%, var(--bg) 44%, var(--bg-deep) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent);
}

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

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

.site-shell {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  padding: 1.2rem 0 2.5rem;
}

.site-header,
.site-footer,
.hero,
.content-section,
.info-strip,
.brand-story,
.cta-band,
.page-hero,
.policy-note,
.not-found {
  animation: fade-up 700ms ease both;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  margin-bottom: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    rgba(8, 13, 29, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
}

.brand-copy strong,
.site-nav a,
.button,
h1,
h2,
h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.88rem;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(135deg, rgba(255, 227, 92, 0.14), rgba(243, 91, 0, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-mark-small {
  width: 54px;
  height: 54px;
  padding: 0.35rem;
  border-radius: 18px;
}

.brand-mark-large {
  width: min(100%, 420px);
  min-height: 320px;
  padding: 1.15rem;
  border-radius: 28px;
}

.brand-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.22));
}

.brand-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
  color: #fff6dd;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #ffe35c, #ff8d00 55%, #f35b00);
}

.brand-fallback-small {
  font-size: 1.05rem;
}

.brand-fallback-large {
  flex-direction: column;
  gap: 0.25rem;
  padding: 2rem;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  border-radius: 22px;
}

.brand-fallback-large span {
  font-size: clamp(1rem, 3vw, 1.55rem);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 0.75rem 1rem;
  color: var(--muted);
  font-size: 0.96rem;
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.nav-cta {
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--gold-soft);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange) 70%, var(--green));
  box-shadow: 0 0 20px rgba(255, 180, 45, 0.55);
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 1.1rem;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero-text,
.section-heading p,
.page-hero p {
  max-width: 62ch;
}

.hero-actions,
.cta-band-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 1.8rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #161109;
  background: linear-gradient(135deg, var(--gold-soft), var(--orange) 62%, var(--orange-deep));
  box-shadow: 0 20px 40px rgba(255, 141, 0, 0.32);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding: 0.8rem 1rem;
  color: #ecf1ff;
  font-size: 0.92rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  width: 100%;
  max-width: 560px;
  padding: 1.4rem;
  background:
    radial-gradient(circle at top, rgba(255, 227, 92, 0.16), transparent 24%),
    radial-gradient(circle at 85% 80%, rgba(149, 214, 58, 0.11), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(255, 227, 92, 0.18), transparent 24%),
    radial-gradient(circle at 86% 88%, rgba(149, 214, 58, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(7, 11, 26, 0.72), rgba(24, 35, 70, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-grid {
  display: grid;
  gap: 0.85rem;
}

.signal-card,
.feature-card,
.trust-card,
.review-card,
.policy-card,
.support-card,
.info-strip article,
.brand-story-copy,
.brand-story-card,
.page-brand-banner,
.policy-note,
.cta-band {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.signal-card {
  padding: 1rem 1.15rem;
}

.signal-card span,
.info-strip span,
.brand-story-label {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-card strong,
.info-strip strong {
  display: block;
  font-size: 1rem;
  line-height: 1.45;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0 2rem;
}

.info-strip article,
.feature-card,
.trust-card,
.review-card,
.policy-card,
.support-card,
.brand-story-copy,
.brand-story-card,
.page-brand-banner,
.policy-note,
.cta-band {
  padding: 1.35rem;
}

.brand-story {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: stretch;
  margin: 0.5rem 0 0;
}

.brand-story-card {
  display: grid;
  gap: 0.9rem;
  align-content: center;
  background:
    radial-gradient(circle at top right, rgba(149, 214, 58, 0.16), transparent 25%),
    radial-gradient(circle at bottom left, rgba(255, 141, 0, 0.18), transparent 24%),
    var(--surface-strong);
}

.brand-story-logo,
.page-brand-badge,
.footer-logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-story-logo {
  min-height: 190px;
  padding: 1rem;
  border-radius: 26px;
}

.brand-story-logo img {
  width: min(100%, 280px);
  border-radius: 20px;
}

.content-section,
.page-main {
  padding: 2.5rem 0;
}

.content-section-accent {
  position: relative;
}

.content-section-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 227, 92, 0.08), rgba(255, 141, 0, 0.08));
  pointer-events: none;
}

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

.feature-grid,
.review-grid,
.policy-grid,
.support-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.trust-card,
.review-card,
.policy-card,
.support-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after,
.trust-card::after,
.review-card::after,
.policy-card::after,
.support-card::after {
  content: "";
  position: absolute;
  top: -28%;
  right: -12%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 227, 92, 0.16), transparent 62%);
  pointer-events: none;
}

.trust-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.page-hero {
  padding: 1.2rem 0 1rem;
}

.page-brand-banner {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
  background:
    radial-gradient(circle at left center, rgba(255, 141, 0, 0.14), transparent 22%),
    var(--surface-strong);
}

.page-brand-banner p {
  margin: 0;
}

.page-brand-badge,
.footer-logo-pill {
  flex: 0 0 auto;
  padding: 0.35rem;
  border-radius: 20px;
}

.page-brand-badge img,
.footer-logo-pill img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 16px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 2.2rem 0 1rem;
  background:
    radial-gradient(circle at left center, rgba(255, 227, 92, 0.12), transparent 24%),
    radial-gradient(circle at right center, rgba(149, 214, 58, 0.1), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 0 0.5rem;
  color: var(--muted);
}

.footer-branding {
  display: grid;
  gap: 0.8rem;
}

.footer-brand-lockup {
  display: flex;
  align-items: center;
}

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

.updated-note {
  color: #dfe8ff;
  font-size: 0.94rem;
}

.policy-note,
.support-card-primary {
  background:
    radial-gradient(circle at top left, rgba(255, 227, 92, 0.11), transparent 30%),
    radial-gradient(circle at bottom right, rgba(149, 214, 58, 0.09), transparent 24%),
    var(--surface-strong);
}

.support-card-primary .support-email {
  margin-bottom: 0.6rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.support-email a {
  color: #fff5d0;
}

.not-found {
  display: grid;
  place-items: center;
  min-height: 82vh;
  text-align: center;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .site-header,
  .hero,
  .cta-band,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .trust-layout,
  .info-strip,
  .brand-story,
  .feature-grid,
  .review-grid,
  .policy-grid,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 1.8rem;
  }

  h1 {
    max-width: none;
  }

  .page-brand-banner {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(calc(100% - 1rem), var(--container));
    padding-top: 0.7rem;
  }

  .site-header {
    position: static;
    padding: 1rem;
    border-radius: 28px;
  }

  .brand {
    width: 100%;
  }

  .brand-copy span {
    font-size: 0.8rem;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav a {
    padding-left: 0;
  }

  .hero-actions,
  .cta-band-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .logo-panel {
    min-height: 280px;
  }

  .page-brand-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
