:root {
  --bg: #080A0D;
  --panel: #11151C;
  --panel-2: #161B24;
  --text: #EDE7DA;
  --muted: #B8B0A2;
  --gold: #F3B35D;
  --rust: #B95A38;
  --oxblood: #6E1F2C;
  --line: rgba(237, 231, 218, 0.14);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(243, 179, 93, 0.16), transparent 28rem),
    radial-gradient(circle at 85% 18%, rgba(110, 31, 44, 0.35), transparent 26rem),
    linear-gradient(180deg, #080A0D 0%, #0B0E13 42%, #080A0D 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 13, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  width: 2.2rem;
  height: 2.2rem;
}

nav {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.4rem);
  color: var(--muted);
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 82vh;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 1.3rem;
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

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

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.lead {
  max-width: 45rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.primary {
  background: linear-gradient(135deg, var(--gold), var(--rust) 58%, var(--oxblood));
  color: #080A0D;
}

.secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(237, 231, 218, 0.04);
}

.hero-card {
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(237, 231, 218, 0.07), rgba(237, 231, 218, 0.02));
  box-shadow: var(--shadow);
}

.hero-card img {
  display: block;
  width: 100%;
  border-radius: 1.2rem;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strip span {
  padding: 1.2rem;
  text-align: center;
  color: var(--muted);
  border-right: 1px solid var(--line);
  font-weight: 700;
}

.strip span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 4vw, 4rem);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.cards {
  display: grid;
  gap: 1rem;
}

.card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  background: rgba(17, 21, 28, 0.82);
}

.card p,
.platform p,
.contact p {
  color: var(--muted);
}

.platform {
  max-width: 78rem;
}

.platform > p {
  max-width: 56rem;
  font-size: 1.12rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.feature-grid div {
  min-height: 11rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(243, 179, 93, 0.09), rgba(237, 231, 218, 0.025));
}

.feature-grid strong {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 1.4rem;
}

.feature-grid span {
  color: var(--muted);
}

.contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin: 0 clamp(1rem, 4vw, 4rem) clamp(1rem, 4vw, 4rem);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(110, 31, 44, 0.45), rgba(17, 21, 28, 0.86)),
    var(--panel);
  box-shadow: var(--shadow);
}

.contact h2 {
  max-width: 12ch;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 840px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 9ch;
  }

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

  .strip span {
    border-bottom: 1px solid var(--line);
  }

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

  .contact,
  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  nav {
    width: 100%;
    justify-content: space-between;
  }

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

  .strip span {
    border-right: 0;
  }

  .button {
    width: 100%;
  }
}


.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem;
}

.mailing-address {
  margin-top: 1.2rem;
  color: var(--muted);
  font-style: normal;
}
