:root {
  --bg: #030b14;
  --surface: #091a2b;
  --surface-alt: #0f253b;
  --text: #d9ecff;
  --muted: #90adc8;
  --brand-blue: #35a4ff;
  --brand-green: #19d8b4;
  --ring: rgba(53, 164, 255, 0.35);
  --shadow: 0 24px 60px rgba(3, 10, 18, 0.55);
  --radius: 16px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(53, 164, 255, 0.14), transparent 45%),
    radial-gradient(900px 500px at -10% 30%, rgba(25, 216, 180, 0.12), transparent 40%),
    linear-gradient(180deg, #020910 0%, #041221 42%, #020910 100%);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 120;
  background: var(--brand-blue);
  color: #011220;
  padding: 8px 10px;
  border-radius: 8px;
}

.container {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
}

.narrow {
  width: min(780px, 92%);
}

.glass {
  background: linear-gradient(155deg, rgba(15, 37, 59, 0.8), rgba(7, 20, 34, 0.76));
  border: 1px solid rgba(93, 136, 177, 0.23);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  border-bottom: 1px solid rgba(93, 136, 177, 0.2);
}

.header-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.4px;
}

#brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  background: linear-gradient(140deg, var(--brand-blue), var(--brand-green));
  padding: 2px;
}

.quick-nav {
  display: none;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.quick-nav a:hover {
  color: var(--text);
}

.section {
  padding: 64px 0;
}

.hero {
  padding-top: 72px;
}

.hero-grid {
  display: grid;
  gap: 22px;
}

.eyebrow {
  color: var(--brand-green);
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.2;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(1.9rem, 4.6vw, 3.3rem);
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.45rem, 3.2vw, 2.2rem);
}

.hero-text {
  color: var(--muted);
  margin: 0;
  max-width: 56ch;
}

.cta-group {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.secondary-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand-blue), #3cb6f4 45%, var(--brand-green));
  color: #041122;
  box-shadow: 0 10px 35px rgba(42, 168, 233, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 16px 38px rgba(42, 168, 233, 0.5);
}

.btn-ghost {
  background: rgba(8, 21, 35, 0.72);
  border-color: rgba(93, 136, 177, 0.3);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(53, 164, 255, 0.65);
}

.hero-points,
.hero-card ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.hero-points li,
.hero-card li {
  position: relative;
  padding-left: 18px;
  color: #b9d2ea;
}

.hero-points li::before,
.hero-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--brand-blue), var(--brand-green));
}

.hero-card {
  border-radius: var(--radius);
  padding: 22px;
}

.hero-card h2 {
  font-size: 1.2rem;
  margin: 0;
}

.lead-subtitle {
  margin: 0;
  color: var(--muted);
}

#lead-form {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.form-grid {
  display: grid;
  gap: 10px;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field label {
  font-size: 0.88rem;
  color: #b4cbe2;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(93, 136, 177, 0.35);
  background: rgba(4, 16, 29, 0.85);
  color: var(--text);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #6f90af;
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 1px;
  border-color: transparent;
}

.consent-check {
  margin-top: 4px;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  align-items: start;
  color: #b4cbe2;
  font-size: 0.86rem;
}

.consent-check input {
  margin-top: 2px;
}

.lead-submit {
  margin-top: 2px;
}

.form-note {
  margin: 0;
  color: #87a8c5;
  font-size: 0.84rem;
}

.form-status {
  min-height: 1.2em;
  margin: 0;
  font-size: 0.9rem;
  color: var(--brand-green);
}

.form-status.error {
  color: #ff8fa0;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.feature-grid {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.feature-item {
  border-radius: 14px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(10, 25, 40, 0.8), rgba(9, 27, 45, 0.68));
  border: 1px solid rgba(93, 136, 177, 0.22);
}

.feature-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(93, 136, 177, 0.25);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(8, 21, 35, 0.7);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--text);
  text-align: left;
  font: inherit;
  font-weight: 700;
  padding: 14px;
  cursor: pointer;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 14px;
  color: var(--muted);
  transition: max-height 260ms ease;
}

.faq-item.open .faq-content {
  max-height: 220px;
  padding: 0 14px 14px;
}

.text-card,
.contact-card {
  border-radius: var(--radius);
  padding: 22px;
}

.text-card p,
.contact-card p {
  margin: 0;
  color: #b9d2ea;
}

.contact-email-wrap {
  margin-top: 8px !important;
}

.contact-email-wrap a {
  color: var(--brand-green);
}

.contact-links {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.site-footer {
  border-top: 1px solid rgba(93, 136, 177, 0.2);
  background: rgba(3, 11, 20, 0.7);
}

.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 120;
  border: 1px solid rgba(93, 136, 177, 0.4);
  background: rgba(4, 15, 28, 0.97);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 10px;
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner p {
  margin: 0;
  color: #c0d8ee;
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-actions a {
  color: var(--brand-green);
  margin-right: auto;
}

.footer-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 0;
}

#footer-copy {
  color: var(--muted);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: #b3d1ea;
}

.footer-links a:hover {
  color: var(--brand-green);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 700px) {
  .quick-nav {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1.25fr 0.85fr;
    align-items: start;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-field.full {
    grid-column: 1 / -1;
  }

  .cookie-banner {
    left: auto;
    width: min(680px, 95vw);
  }
}

@media (min-width: 980px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section {
    padding: 80px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
