:root {
  color-scheme: light;
  --ink: #101615;
  --muted: #64706d;
  --soft: #f4f1ea;
  --surface: #fffdf8;
  --line: #e8dece;
  --green: #0b6f5b;
  --green-2: #064b3d;
  --gold: #c08a3a;
  --gold-soft: #f5ead8;
  --shadow: 0 22px 70px -42px rgba(17, 22, 28, 0.45);
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(12, 24, 22, 0.58);
  color: #fff;
  box-shadow: 0 18px 60px -34px rgba(0, 0, 0, 0.7);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
}

.brand img {
  width: 198px;
  height: auto;
  display: block;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-header nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.site-header nav a:hover,
.site-header nav .login-link {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px max(24px, calc((100vw - 1180px) / 2)) 72px;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 17, 15, 0.92) 0%, rgba(4, 17, 15, 0.72) 34%, rgba(4, 17, 15, 0.18) 72%),
    linear-gradient(180deg, rgba(4, 17, 15, 0.38), rgba(4, 17, 15, 0.18) 48%, rgba(244, 241, 234, 0.92) 100%);
}

.hero-content {
  width: min(660px, 100%);
  color: #fff;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: -0.025em;
}

h1 {
  max-width: 620px;
  font-size: clamp(54px, 9vw, 106px);
  line-height: 0.9;
}

.hero-copy {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.primary-action {
  background: linear-gradient(135deg, #0d8a70, #064b3d);
  color: #fff;
  box-shadow: 0 18px 40px -24px rgba(13, 138, 112, 0.88);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-facts span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 26px;
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow);
}

.intro-section {
  margin-top: -40px;
  position: relative;
  z-index: 4;
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, 680px);
  gap: 12px;
  margin-bottom: 32px;
}

.section-title.compact {
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
}

h3 {
  font-size: 22px;
}

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

.feature-card,
.operations-grid article {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.icon,
.mini-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
  background: var(--gold-soft);
  color: var(--green);
  font-size: 24px;
  font-weight: 900;
}

.mini-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  font-size: 14px;
}

.feature-card p,
.operations-grid p,
.split-section p,
.cta-section p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 1fr);
  gap: 42px;
  align-items: center;
  background: #10231f;
  color: #fff;
}

.split-section p {
  color: rgba(255, 255, 255, 0.72);
}

.player-list {
  display: grid;
  gap: 12px;
}

.player-row {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.player-row strong {
  font-size: 20px;
}

.player-row span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.operations-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    radial-gradient(circle at 88% 18%, rgba(192, 138, 58, 0.16), transparent 28%),
    #fffdf8;
}

.cta-section > div {
  max-width: 720px;
}

.cta-section .primary-action {
  flex: 0 0 auto;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 24px 0 38px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.site-footer a {
  color: var(--green);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.legal-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 4%, rgba(11, 111, 91, 0.12), transparent 30%),
    var(--soft);
}

.legal-header {
  position: sticky;
  top: 18px;
  transform: none;
  left: auto;
  margin: 18px auto 0;
  background: rgba(12, 24, 22, 0.88);
}

.legal-main {
  padding: 42px 0 0;
}

.legal-panel {
  margin-top: 0;
}

.legal-panel h1 {
  color: var(--ink);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.96;
}

.legal-lead {
  max-width: 760px;
  margin: 18px 0 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

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

.legal-grid article,
.legal-stack article,
.legal-note {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.legal-stack {
  display: grid;
  gap: 16px;
}

.legal-note {
  margin-top: 16px;
}

.legal-panel h2 {
  margin-bottom: 10px;
  font-size: 23px;
}

.legal-panel p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

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

.legal-panel a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.legal-panel a:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  width: min(470px, calc(100% - 44px));
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(232, 222, 206, 0.96);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 24px 70px -36px rgba(17, 22, 28, 0.5);
  backdrop-filter: blur(16px);
}

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

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.cookie-banner div {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-banner a,
.cookie-banner button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.cookie-banner a {
  color: var(--green);
  text-decoration: none;
}

.cookie-banner button {
  border: 0;
  background: var(--green);
  color: #fff;
}

@media (max-width: 980px) {
  .site-header {
    border-radius: 24px;
  }

  .site-header nav a:not(.login-link) {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .feature-grid,
  .operations-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 34px 24px;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand img {
    width: 158px;
  }

  .hero {
    padding: 116px 18px 54px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 17, 15, 0.94), rgba(4, 17, 15, 0.72)),
      linear-gradient(180deg, rgba(4, 17, 15, 0.1), rgba(244, 241, 234, 0.94));
  }

  h1 {
    font-size: 52px;
  }

  .section {
    width: calc(100% - 20px);
    padding: 28px 18px;
    border-radius: 18px;
  }

  .feature-card,
  .operations-grid article {
    min-height: 0;
  }

  .cta-section,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
  }
}
