@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/Satoshi-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/Satoshi-Medium.otf") format("opentype");
}
@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/Satoshi-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-weight: 900;
  src: url("fonts/Satoshi-Black.otf") format("opentype");
}

:root {
  --bg: #120a0e;
  --coral: #fa5c4c;
  --coral-light: #ff8577;
  --coral-deep: #d8453a;
  --ink: #f5edea;
  --muted: #b4a3ab;
  --ash: #a7a2a6;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.1);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-line: 1px solid rgba(255, 255, 255, 0.12);
  --radius: 24px;
  --shadow: 0 30px 70px -24px rgba(0, 0, 0, 0.7);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(1200px circle at 82% -6%, rgba(250, 92, 76, 0.14), transparent 42%),
    radial-gradient(1000px circle at 10% 4%, rgba(52, 68, 166, 0.16), transparent 46%),
    var(--bg);
  background-attachment: fixed;
  color: var(--ink);
  font-family: "Satoshi", "Segoe UI", system-ui, Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.wrap {
  margin: 0 auto;
  max-width: 1080px;
  padding: 0 22px;
}

/* ---------- Header ---------- */
.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  border-radius: 12px;
  height: 44px;
  object-fit: cover;
  width: 44px;
}

.brand span {
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.3px;
}

.header-nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.header-nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.header-nav a:hover {
  color: #fff;
}

/* ---------- Hero (used by some pages) ---------- */
.hero {
  background:
    radial-gradient(circle at 88% 8%, rgba(250, 92, 76, 0.2), transparent 40%),
    linear-gradient(155deg, #1a1016, #120a0e 60%, #0c0609);
  border: var(--glass-line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  margin-top: 8px;
  overflow: hidden;
  padding: 64px 48px;
  text-align: center;
}

.eyebrow {
  color: var(--coral-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero h1 {
  color: #fff;
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -1.4px;
  line-height: 1.02;
  margin: 0 auto;
  max-width: 760px;
}

.hero p {
  color: var(--muted);
  font-size: 19px;
  margin: 20px auto 0;
  max-width: 620px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 34px;
}

.btn {
  border-radius: 999px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  padding: 15px 26px;
  text-decoration: none;
}

.btn.primary {
  background: linear-gradient(180deg, var(--coral-light), var(--coral) 55%, var(--coral-deep));
  box-shadow: 0 12px 28px -6px rgba(216, 69, 58, 0.55);
  color: var(--white);
}

.btn.ghost {
  background: var(--glass);
  border: var(--glass-line);
  color: #fff;
}

.btn.disabled {
  opacity: 0.55;
  pointer-events: none;
}

/* ---------- Features / cards ---------- */
.section {
  margin-top: 56px;
}

.section h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin: 0 0 8px;
  text-align: center;
}

.section .sub {
  color: var(--muted);
  margin: 0 auto 30px;
  max-width: 560px;
  text-align: center;
}

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

.card {
  background: var(--glass);
  border: var(--glass-line);
  border-radius: var(--radius);
  box-shadow: 0 20px 44px -20px rgba(0, 0, 0, 0.7);
  padding: 24px;
}

.card .icon {
  align-items: center;
  background: linear-gradient(135deg, rgba(250, 92, 76, 0.24), rgba(250, 92, 76, 0.06));
  border: 1px solid rgba(250, 92, 76, 0.28);
  border-radius: 16px;
  color: var(--coral-light);
  display: flex;
  font-size: 22px;
  height: 52px;
  justify-content: center;
  margin-bottom: 16px;
  width: 52px;
}

.card.navy .icon {
  background: linear-gradient(135deg, rgba(66, 87, 201, 0.32), rgba(35, 42, 110, 0.12));
  border-color: rgba(66, 87, 201, 0.4);
}

.card h3 {
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  margin: 0 0 8px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 64px;
  padding: 40px 0 56px;
}

.footer-inner {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding-top: 28px;
}

.footer-brand {
  align-items: center;
  color: #fff;
  display: flex;
  gap: 10px;
  font-weight: 900;
}

.footer-brand img {
  height: 30px;
  width: 30px;
  border-radius: 9px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}

.footer-links a {
  color: var(--ash);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--coral-light);
}

.footer-copy {
  color: var(--ash);
  font-size: 13px;
  width: 100%;
}

/* ---------- Legal pages ---------- */
.legal {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: var(--glass-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 8px;
  padding: 48px;
}

.legal h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.8px;
  margin: 0 0 6px;
}

.legal .updated {
  color: var(--coral-light);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 28px;
}

.legal h2 {
  color: #fff;
  font-size: 21px;
  font-weight: 900;
  margin: 32px 0 10px;
}

.legal h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  margin: 20px 0 6px;
}

.legal p,
.legal li {
  color: rgba(245, 237, 234, 0.82);
  font-size: 16px;
}

.legal ul {
  padding-left: 22px;
}

.legal li {
  margin-bottom: 8px;
}

.legal a {
  color: var(--coral-light);
  font-weight: 700;
}

.legal strong {
  color: #fff;
}

.back-link {
  color: var(--muted);
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  margin-top: 24px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.back-link:hover {
  color: var(--coral-light);
}

@media (max-width: 820px) {
  .hero {
    padding: 44px 24px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .legal {
    padding: 28px 22px;
  }
  .header-nav {
    display: none;
  }
}
