:root {
  --navy: #071424;
  --navy-soft: #0c2038;
  --panel: #102a47;
  --panel-light: #173957;
  --red: #ec3345;
  --red-light: #ff5d68;
  --white: #f7fbff;
  --muted: #a9bbcd;
  --line: rgba(255, 255, 255, 0.12);
  --success: #68d391;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, #15365a 0, transparent 32%),
    linear-gradient(145deg, #050e19, var(--navy) 45%, #091a2b);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 14, 25, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand strong {
  color: var(--red);
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.nav-cta {
  padding: 10px 16px;
  color: var(--white);
  border: 1px solid rgba(236, 51, 69, 0.55);
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(40px, 7vw, 100px);
  min-height: calc(100vh - 78px);
  align-items: center;
  overflow: hidden;
  padding: 90px clamp(24px, 7vw, 110px);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero-glow-one {
  top: 8%;
  right: 8%;
  width: 260px;
  height: 260px;
  background: rgba(236, 51, 69, 0.18);
}

.hero-glow-two {
  bottom: 8%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(36, 130, 199, 0.17);
}

.hero-content,
.platform-console {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, var(--red-light), #ff9a72);
  background-clip: text;
}

h2 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(120deg, var(--red), #ff5b61);
  box-shadow: 0 15px 40px rgba(236, 51, 69, 0.24);
}

.button-secondary {
  color: var(--white);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 7px 11px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
}

.platform-console {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(22, 57, 87, 0.9), rgba(7, 20, 36, 0.95));
  box-shadow: var(--shadow);
}

.console-header {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 18px 20px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.console-header strong {
  margin-left: 7px;
}

.console-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--muted);
}

.console-dot:nth-child(1) {
  background: var(--red);
}

.console-dot:nth-child(2) {
  background: #f6bd53;
}

.console-dot:nth-child(3) {
  background: var(--success);
}

.console-body {
  padding: 22px;
}

.console-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.console-row strong {
  color: var(--white);
  text-align: right;
}

.console-row .status-online {
  color: var(--success);
}

.console-event {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(104, 211, 145, 0.25);
  border-radius: 14px;
  background: rgba(104, 211, 145, 0.08);
}

.event-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--success);
}

.console-event p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.section,
.ownership-section,
.integration-section,
.contact-section {
  padding: 110px clamp(24px, 7vw, 110px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 54px;
}

.section-heading > p:last-child,
.integration-copy > p,
.contact-copy > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.feature-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.feature-card p {
  color: var(--muted);
}

.feature-number {
  display: block;
  margin-bottom: 46px;
  color: var(--red-light);
  font-size: 0.85rem;
  font-weight: 800;
}

.ownership-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 8vw, 120px);
  background: rgba(255, 255, 255, 0.025);
}

.ownership-points {
  display: grid;
  gap: 18px;
}

.ownership-points article {
  padding: 24px;
  border-left: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.035);
}

.ownership-points strong {
  font-size: 1.15rem;
}

.ownership-points p {
  margin: 7px 0 0;
  color: var(--muted);
}

.integration-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.check-list li::before {
  margin-right: 10px;
  color: var(--success);
  content: "✓";
}

.integration-flow {
  display: grid;
  gap: 12px;
}

.flow-node {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: linear-gradient(130deg, var(--panel), var(--navy-soft));
}

.flow-node span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  margin-right: 12px;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: var(--red);
}

.flow-node small {
  display: block;
  margin: 7px 0 0 46px;
  color: var(--muted);
}

.flow-line {
  width: 2px;
  height: 24px;
  margin-left: 36px;
  background: var(--line);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(400px, 1.15fr);
  gap: clamp(50px, 8vw, 100px);
  background:
    radial-gradient(circle at 80% 30%, rgba(236, 51, 69, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.02);
}

form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(6, 18, 31, 0.75);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: block;
  margin-bottom: 18px;
}

label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.88rem;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  background: rgba(255, 255, 255, 0.055);
  font: inherit;
}

input:focus,
textarea:focus {
  border-color: var(--red-light);
  box-shadow: 0 0 0 3px rgba(236, 51, 69, 0.13);
}

textarea {
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--muted);
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: #ff8a92;
}

footer {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px clamp(24px, 7vw, 110px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

footer p {
  margin: 0;
}

@media (max-width: 940px) {
  nav a:not(.nav-cta) {
    display: none;
  }

  .hero,
  .ownership-section,
  .integration-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 65px;
  }

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

  footer {
    grid-template-columns: 1fr;
  }
}

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

  .site-header {
    padding: 15px 20px;
  }

  .hero,
  .section,
  .ownership-section,
  .integration-section,
  .contact-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  form {
    padding: 22px;
  }
}
