:root {
  color-scheme: dark;
  --bg: #111515;
  --bg-soft: #181d1e;
  --panel: rgba(27, 22, 22, 0.88);
  --panel-strong: rgba(36, 27, 26, 0.96);
  --line: rgba(255, 244, 221, 0.14);
  --text: #fff4df;
  --muted: #d5c2b3;
  --cyan: #57d4e7;
  --coral: #ff7a63;
  --gold: #ffd56a;
  --pink: #ff5f99;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(160deg, rgba(255, 122, 99, 0.1), transparent 28%),
    linear-gradient(320deg, rgba(87, 212, 231, 0.09), transparent 26%),
    linear-gradient(180deg, #111515, #0f1213 56%, #171211);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 88px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 88px
    );
  opacity: 0.22;
}

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

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

button {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.section-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(17, 21, 21, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

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

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1.2;
}

.brand-copy small {
  color: var(--gold);
  font-size: 0.875rem;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topnav a,
.footer-links a,
.text-link {
  color: var(--muted);
  transition: color 140ms ease;
}

.topnav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--text);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  gap: 4px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.lang-toggle button {
  border: 0;
  border-radius: 6px;
  padding: 8px 12px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.lang-toggle button.is-active {
  background: rgba(255, 122, 99, 0.18);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: center;
  padding: 48px 0 92px;
}

.hero-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(255, 122, 99, 0.12), transparent 34%),
    linear-gradient(300deg, rgba(87, 212, 231, 0.1), transparent 32%);
}

.hero-lines::before,
.hero-lines::after {
  content: "";
  position: absolute;
  inset: auto auto 14% 50%;
  width: min(620px, 48vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 213, 106, 0.9), transparent);
  transform: translateX(-30%) rotate(22deg);
  box-shadow: 0 0 28px rgba(255, 213, 106, 0.36);
}

.hero-lines::after {
  width: min(520px, 40vw);
  inset: 36% auto auto 58%;
  background: linear-gradient(90deg, transparent, rgba(87, 212, 231, 0.9), transparent);
  transform: translateX(-50%) rotate(-24deg);
  box-shadow: 0 0 24px rgba(87, 212, 231, 0.34);
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(260px, 1fr);
  gap: 24px;
  align-items: center;
}

.hero-copy-block {
  position: relative;
  z-index: 1;
  padding: 20px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  max-width: 8ch;
  font-size: 4rem;
  line-height: 0.96;
}

h2 {
  font-size: 2.4rem;
  line-height: 1.02;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.14;
}

.hero-body,
.section-lead,
.feature-card p,
.coming-soon p,
.support-copy p,
.page-lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-body {
  max-width: 34rem;
  margin-top: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(135deg, rgba(255, 122, 99, 0.94), rgba(255, 95, 153, 0.92));
  color: #241210;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.hero-stats li {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-art {
  position: relative;
  min-height: 460px;
}

.hero-logo,
.hero-core {
  position: absolute;
  inset: 50% auto auto 58%;
  filter: drop-shadow(0 18px 44px rgba(0, 0, 0, 0.34));
  user-select: none;
  pointer-events: none;
}

.hero-logo {
  width: min(460px, 100%);
  opacity: 0.96;
  transform: translate(-48%, -52%) rotate(-12deg);
}

.hero-core {
  width: min(360px, 84%);
  opacity: 0.88;
  transform: translate(-18%, -18%) rotate(18deg);
}

.band {
  position: relative;
  padding: 92px 0;
}

.band-primary {
  background: linear-gradient(180deg, rgba(19, 17, 18, 0.3), rgba(19, 17, 18, 0.8));
}

.band-contrast {
  background:
    linear-gradient(140deg, rgba(255, 213, 106, 0.09), transparent 38%),
    linear-gradient(180deg, rgba(24, 21, 21, 0.94), rgba(29, 20, 23, 0.96));
}

.band-support {
  background:
    linear-gradient(180deg, rgba(255, 122, 99, 0.05), transparent 22%),
    linear-gradient(180deg, rgba(16, 19, 20, 0.98), rgba(16, 19, 20, 1));
}

.feature-grid,
.info-grid,
.skin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.feature-card,
.skin-card,
.coming-soon {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature-card h3,
.feature-card h2,
.skin-card h3 {
  margin-bottom: 10px;
}

.skin-card {
  position: relative;
  overflow: hidden;
  min-height: 196px;
}

.skin-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
}

.skin-ion::before {
  background:
    linear-gradient(135deg, rgba(87, 212, 231, 0.5), transparent 42%),
    linear-gradient(320deg, rgba(255, 213, 106, 0.4), transparent 46%);
}

.skin-pulse::before {
  background:
    linear-gradient(145deg, rgba(255, 95, 153, 0.45), transparent 40%),
    linear-gradient(320deg, rgba(255, 122, 99, 0.42), transparent 48%);
}

.skin-glacier::before {
  background:
    linear-gradient(135deg, rgba(87, 212, 231, 0.45), transparent 42%),
    linear-gradient(320deg, rgba(255, 244, 223, 0.3), transparent 44%);
}

.skin-chip,
.coming-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
}

.skin-card > *,
.coming-soon > * {
  position: relative;
}

.coming-soon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
}

.support-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-main {
  min-height: calc(100svh - 80px);
}

.page-hero {
  padding: 86px 0 36px;
}

.page-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 28px;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-contact a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(255, 244, 223, 0.28);
  text-underline-offset: 3px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 960px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 36px 0 72px;
  }

  .hero-art {
    min-height: 340px;
    margin-top: 28px;
  }

  .hero-logo {
    inset: 50% auto auto 50%;
    width: min(360px, 92%);
    transform: translate(-58%, -52%) rotate(-10deg);
  }

  .hero-core {
    inset: 50% auto auto 50%;
    width: min(290px, 74%);
    transform: translate(-8%, -12%) rotate(16deg);
  }
}

@media (max-width: 780px) {
  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .feature-grid,
  .info-grid,
  .skin-grid {
    grid-template-columns: 1fr;
  }

  .coming-soon,
  .topbar-inner,
  .support-strip,
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .section-shell {
    width: min(100% - 20px, 1120px);
  }

  .topbar-inner {
    padding: 14px 0;
  }

  .brand {
    width: 100%;
  }

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .topnav {
    width: 100%;
    gap: 12px;
    justify-content: flex-start;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-body,
  .section-lead,
  .feature-card p,
  .coming-soon p,
  .support-copy p,
  .page-lead {
    font-size: 0.98rem;
  }

  .hero-art {
    min-height: 280px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .band,
  .page-hero {
    padding: 72px 0;
  }
}
