﻿:root {
  color-scheme: dark;
  --bg-0: #080d0d;
  --bg-1: #0b1414;
  --bg-2: #0b1f1b;
  --panel: rgba(12, 27, 24, 0.72);
  --panel-strong: rgba(14, 32, 28, 0.92);
  --text: #e9f6f1;
  --muted: #a7bdb5;
  --brand-1: #23e4c2;
  --brand-2: #16c0a1;
  --brand-3: #0a7f6b;
  --border: rgba(35, 228, 194, 0.2);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  --radius-lg: 22px;
  --light-bg: #eef6f3;
  --light-bg-strong: #e4f1ed;
  --light-panel: rgba(255, 255, 255, 0.92);
  --light-panel-strong: #ffffff;
  --light-text: #0b1a17;
  --light-muted: #3c5c55;
  --light-border: rgba(10, 127, 107, 0.18);
  --light-shadow: 0 18px 40px rgba(9, 26, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(35, 228, 194, 0.18), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(22, 192, 161, 0.12), transparent 55%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 45%, var(--bg-2) 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(35, 228, 194, 0.06), transparent 50%),
    radial-gradient(600px 600px at 15% 70%, rgba(35, 228, 194, 0.08), transparent 60%);
  opacity: 0.8;
  z-index: 0;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
}

main {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 10, 10, 0.75);
  border-bottom: 1px solid rgba(35, 228, 194, 0.12);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  background: rgba(6, 10, 10, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 38px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 22px;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.3s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-2), var(--brand-1));
  color: #04100e;
  box-shadow: 0 12px 30px rgba(22, 192, 161, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(22, 192, 161, 0.45);
}

.btn-ghost {
  background: rgba(15, 30, 28, 0.6);
  border-color: rgba(35, 228, 194, 0.35);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--brand-1);
  background: rgba(15, 30, 28, 0.85);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 140px 0 96px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 70% 10%, rgba(35, 228, 194, 0.22), transparent 60%),
    linear-gradient(140deg, rgba(8, 18, 18, 0.9), rgba(8, 18, 18, 0.2));
}



.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) brightness(0.65);
  opacity: 0.8;
  z-index: 1;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) brightness(0.65);
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 10, 10, 0.4) 0%, rgba(6, 10, 10, 0.92) 75%),
    radial-gradient(900px 500px at 80% 20%, rgba(35, 228, 194, 0.16), transparent 55%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 44px;
  align-items: center;
}

.hero-main {
  max-width: 640px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  color: var(--brand-1);
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2.4rem, 3.6vw + 1rem, 4.2rem);
  line-height: 1.1;
  margin: 0 0 16px;
}

h2 {
  font-size: clamp(1.8rem, 2.6vw + 0.8rem, 3rem);
  line-height: 1.2;
  margin: 0 0 12px;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

p {
  margin: 0;
}

.lead {
  font-size: clamp(1.05rem, 0.9vw + 0.9rem, 1.35rem);
  color: var(--muted);
  margin: 0 0 22px;
}

.subhead {
  color: var(--muted);
}

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

.hero-chips {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(35, 228, 194, 0.15);
  border: 1px solid rgba(35, 228, 194, 0.3);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

.chip:focus-visible {
  outline: 2px solid rgba(35, 228, 194, 0.8);
  outline-offset: 3px;
}

.chip-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-highlights {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.highlight-card {
  background: rgba(10, 24, 22, 0.7);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.highlight-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.highlight-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-contrast {
  background:
    radial-gradient(700px 480px at 10% 20%, rgba(22, 192, 161, 0.12), transparent 60%),
    linear-gradient(180deg, var(--light-bg), var(--light-bg-strong));
  color: var(--light-text);
  --text: var(--light-text);
  --muted: var(--light-muted);
  --panel: var(--light-panel);
  --panel-strong: var(--light-panel-strong);
  --border: var(--light-border);
  --shadow: var(--light-shadow);
}

.section-contrast .eyebrow {
  color: var(--brand-3);
}

.section-contrast .card:hover {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(10, 127, 107, 0.35);
}

.section-contrast .btn-ghost {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(10, 127, 107, 0.35);
  color: var(--light-text);
}

.section-contrast .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(10, 127, 107, 0.5);
}

.section-contrast .icon {
  background: rgba(22, 192, 161, 0.2);
}
.section-head {
  max-width: 720px;
  margin-bottom: 32px;
}

.card-grid,
.trust-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 228, 194, 0.45);
  background: rgba(15, 34, 30, 0.9);
}

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

.icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(35, 228, 194, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand-1);
}

.card-detail,
.step-detail {
  margin-top: 10px;
  color: color-mix(in srgb, var(--muted) 70%, var(--text));
  font-size: 0.86rem;
}

.section-contrast .card-detail,
.section-contrast .step-detail {
  color: color-mix(in srgb, var(--light-muted) 70%, var(--light-text));
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 18px;
}

.steps-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-2), var(--brand-1));
  color: #04110f;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

[data-toggle] {
  cursor: pointer;
}

[data-toggle]:focus-visible {
  outline: 2px solid rgba(35, 228, 194, 0.8);
  outline-offset: 3px;
}

.card.is-open,
.highlight-card.is-open,
.steps-list li.is-open {
  border-color: rgba(35, 228, 194, 0.6);
}

.contact-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  background: var(--panel-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-final {
  padding-bottom: 120px;
}

.cta-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px;
  background: linear-gradient(120deg, rgba(22, 192, 161, 0.22), rgba(8, 14, 14, 0.95));
  border: 1px solid rgba(35, 228, 194, 0.35);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 40px 0 80px;
  border-top: 1px solid rgba(35, 228, 194, 0.12);
  background: rgba(6, 10, 10, 0.6);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(220px, 1.2fr) repeat(auto-fit, minmax(180px, 1fr));
  align-items: start;
  margin-bottom: 28px;
}

.footer-brand p {
  margin-top: 12px;
  color: var(--muted);
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(35, 228, 194, 0.12);
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  color: var(--muted);
}

.footer-logo {
  height: 28px;
  width: auto;
}

.footer-link {
  color: var(--brand-1);
  font-weight: 600;
}

.footer-link:hover {
  color: var(--text);
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: none;
}

.sticky-cta .btn {
  padding: 12px 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 960px) {
  .hero-content {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 90px;
  }

  .hero {
    padding: 120px 0 72px;
  }

  .header-inner {
    padding: 12px 0;
  }

  .sticky-cta {
    display: flex;
  }
}

@media (max-width: 520px) {
  .header-cta .btn {
    padding: 10px 16px;
  }

  .hero-chips {
    gap: 8px;
  }

  .chip {
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}



