:root {
  --bg: #071c1b;
  --bg-soft: #0d2f2c;
  --surface: #103a36;
  --surface-2: rgba(255, 255, 255, 0.08);
  --surface-3: #f4f6f7;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.12);
  --primary: #11867a;
  --primary-deep: #0d6058;
  --silver: #d8e0e4;
  --silver-deep: #98aab0;
  --gold: #c7a35d;
  --text: #eaf1f2;
  --text-dark: #102625;
  --muted: #aac0c1;
  --line: rgba(216, 224, 228, 0.16);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(17, 134, 122, 0.32), transparent 28%),
    radial-gradient(circle at bottom left, rgba(199, 163, 93, 0.18), transparent 22%),
    linear-gradient(180deg, #041010 0%, #081e1d 30%, #0a1f1e 100%);
  min-height: 100vh;
}

body.page-light {
  color: var(--text-dark);
  background:
    radial-gradient(circle at top right, rgba(17, 134, 122, 0.18), transparent 26%),
    linear-gradient(180deg, #f8fbfb 0%, #edf3f3 45%, #e8eeee 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(6, 20, 19, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-light .site-header {
  background: rgba(248, 251, 251, 0.88);
  border-bottom-color: rgba(16, 38, 37, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
}

.brand-mark {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.82rem;
}

.page-light .brand-subtitle {
  color: #4d6666;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: inherit;
  border-radius: 999px;
  padding: 10px 14px;
}

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

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.page-light .site-nav a {
  color: #4d6666;
}

.page-light .site-nav a:hover,
.page-light .site-nav a.active {
  color: var(--text-dark);
  background: rgba(16, 38, 37, 0.08);
}

.section {
  padding: 80px 0;
}

.section-tight {
  padding: 52px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--silver);
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-light .eyebrow {
  background: rgba(16, 38, 37, 0.05);
  border-color: rgba(16, 38, 37, 0.08);
  color: #315554;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--silver));
  box-shadow: 0 0 18px rgba(199, 163, 93, 0.45);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-visual {
  position: relative;
}

.hero-copy {
  padding: 38px;
  border-radius: 34px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(17, 134, 122, 0.15), rgba(0, 0, 0, 0));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.page-light .hero-copy {
  background: linear-gradient(180deg, rgba(17, 134, 122, 0.08), rgba(255, 255, 255, 0.92));
  border-color: rgba(16, 38, 37, 0.08);
}

.hero h1,
.hero h2,
.display-title {
  margin: 18px 0 16px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero h1,
.display-title {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}

.hero p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.78;
}

.page-light .hero p,
.page-light .lead {
  color: #4e6666;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn,
.download-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 180ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #17a194);
  color: white;
  box-shadow: 0 14px 28px rgba(17, 134, 122, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
}

.page-light .btn-secondary {
  color: var(--text-dark);
  border-color: rgba(16, 38, 37, 0.14);
}

.hero-stats,
.stat-grid,
.mini-grid,
.card-grid,
.contact-grid,
.policy-grid,
.steps-grid,
.download-grid,
.commitment-grid {
  display: grid;
  gap: 18px;
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.stat,
.card,
.glass-card,
.info-card,
.policy-card,
.step-card,
.contact-card,
.download-card,
.quote-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.page-light .stat,
.page-light .card,
.page-light .glass-card,
.page-light .info-card,
.page-light .policy-card,
.page-light .step-card,
.page-light .contact-card,
.page-light .download-card,
.page-light .quote-card {
  border-color: rgba(16, 38, 37, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 55px rgba(16, 38, 37, 0.08);
}

.stat {
  padding: 20px;
}

.stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.page-light .stat span {
  color: #536d6d;
}

.hero-visual {
  min-height: 100%;
  padding: 18px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(216, 224, 228, 0.18), rgba(17, 134, 122, 0.08)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.page-light .hero-visual {
  background: linear-gradient(180deg, rgba(17, 134, 122, 0.08), rgba(255, 255, 255, 0.92));
  border-color: rgba(16, 38, 37, 0.08);
}

.hero-media {
  height: 100%;
  min-height: 560px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(5, 14, 14, 0.74));
}

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

.floating-panel {
  position: absolute;
  inset: auto 24px 24px 24px;
  z-index: 1;
  padding: 18px;
  border-radius: 22px;
  background: rgba(5, 18, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.floating-panel strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.floating-panel p {
  margin: 0;
  color: var(--silver);
  line-height: 1.6;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 16px 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.page-light .section-heading p {
  color: #536d6d;
}

.feature-layout,
.split-layout,
.download-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 24px;
  align-items: start;
}

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

.card,
.glass-card,
.info-card,
.policy-card,
.contact-card,
.download-card,
.quote-card,
.step-card {
  padding: 24px;
}

.card h3,
.glass-card h3,
.info-card h3,
.policy-card h3,
.contact-card h3,
.download-card h3,
.quote-card h3,
.step-card h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.24rem;
}

.card p,
.glass-card p,
.info-card p,
.policy-card p,
.contact-card p,
.download-card p,
.quote-card p,
.step-card p,
.card li,
.info-card li,
.policy-card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.page-light .card p,
.page-light .glass-card p,
.page-light .info-card p,
.page-light .policy-card p,
.page-light .contact-card p,
.page-light .download-card p,
.page-light .quote-card p,
.page-light .step-card p,
.page-light .card li,
.page-light .info-card li,
.page-light .policy-card li {
  color: #536d6d;
}

.feature-media,
.about-media,
.contact-media,
.download-media {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.page-light .feature-media,
.page-light .about-media,
.page-light .contact-media,
.page-light .download-media {
  background: white;
  border-color: rgba(16, 38, 37, 0.08);
}

.feature-media img,
.about-media img,
.contact-media img,
.download-media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.media-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(5, 18, 18, 0.72);
  color: var(--silver);
  backdrop-filter: blur(12px);
}

.media-caption strong {
  display: block;
  color: white;
  margin-bottom: 6px;
}

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

.mini-pill,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--silver);
  font-size: 0.94rem;
}

.page-light .mini-pill,
.page-light .tag {
  background: rgba(16, 38, 37, 0.05);
  border-color: rgba(16, 38, 37, 0.08);
  color: #355857;
}

.mini-pill::before,
.tag::before {
  content: "•";
  color: var(--gold);
}

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

.step-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(17, 134, 122, 0.24), rgba(199, 163, 93, 0.22));
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.quote-card {
  background:
    linear-gradient(135deg, rgba(17, 134, 122, 0.16), rgba(199, 163, 93, 0.16)),
    rgba(255, 255, 255, 0.06);
}

.quote-card p:first-of-type {
  font-size: 1.06rem;
  color: var(--text);
}

.page-light .quote-card p:first-of-type {
  color: var(--text-dark);
}

.quote-meta {
  margin-top: 16px;
  color: var(--silver);
  font-size: 0.92rem;
}

.page-light .quote-meta {
  color: #587373;
}

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

.policy-card ul,
.info-card ul,
.download-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.highlight-band {
  padding: 26px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(17, 134, 122, 0.18), rgba(199, 163, 93, 0.12)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.page-light .highlight-band {
  border-color: rgba(16, 38, 37, 0.08);
  background: linear-gradient(180deg, rgba(17, 134, 122, 0.08), rgba(255, 255, 255, 0.95));
}

.highlight-band strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.contact-grid,
.download-grid,
.commitment-grid,
.stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-card {
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(5, 18, 18, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.page-light .form-card {
  background: white;
  border-color: rgba(16, 38, 37, 0.08);
  box-shadow: 0 20px 55px rgba(16, 38, 37, 0.08);
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.checkbox-row {
  font-size: 0.94rem;
  color: var(--silver);
}

.page-light .field label,
.page-light .checkbox-row {
  color: #456160;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  border-radius: 16px;
  padding: 15px 16px;
  outline: none;
  transition: 180ms ease;
}

.page-light .field input,
.page-light .field textarea {
  border-color: rgba(16, 38, 37, 0.1);
  background: rgba(244, 246, 247, 0.85);
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(17, 134, 122, 0.6);
  box-shadow: 0 0 0 4px rgba(17, 134, 122, 0.12);
}

.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checkbox-row input {
  margin-top: 3px;
}

.form-message {
  min-height: 24px;
  margin-top: 12px;
  font-size: 0.95rem;
}

.form-message.success {
  color: #5bc9a3;
}

.page-light .form-message.success {
  color: #0f7f66;
}

.form-message.error {
  color: #ff9494;
}

.page-light .form-message.error {
  color: #b33c3c;
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 28px;
}

.download-chip {
  min-width: 220px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  justify-content: flex-start;
  padding: 14px 18px;
}

.page-light .download-chip {
  border-color: rgba(16, 38, 37, 0.1);
  background: white;
}

.download-chip strong,
.download-chip span {
  display: block;
}

.download-chip span {
  color: var(--muted);
  font-size: 0.88rem;
}

.page-light .download-chip span {
  color: #536d6d;
}

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

.legal-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(16, 38, 37, 0.08);
  box-shadow: 0 20px 55px rgba(16, 38, 37, 0.08);
}

.legal-card h2 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
}

.legal-card p,
.legal-card li {
  color: #496060;
  line-height: 1.78;
}

.legal-card ol,
.legal-card ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

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

.site-footer {
  padding: 28px 0 52px;
}

.footer-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-light .footer-panel {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(16, 38, 37, 0.08);
}

.footer-copy {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.page-light .footer-copy {
  color: #536d6d;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.page-light .footer-links a {
  background: rgba(16, 38, 37, 0.05);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-page {
  background:
    radial-gradient(circle at top center, rgba(17, 134, 122, 0.22), transparent 25%),
    linear-gradient(180deg, #091716 0%, #0b2120 100%);
}

.mobile-page .mobile-frame {
  width: min(540px, calc(100% - 24px));
  margin: 0 auto;
  padding: 22px 0 40px;
}

.mobile-page .mobile-card {
  padding: 22px;
  margin-bottom: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.mobile-page .mobile-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.mobile-page .mobile-brand img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}

.mobile-page .mobile-card h1,
.mobile-page .mobile-card h2 {
  margin: 10px 0 12px;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.08;
}

.mobile-page .mobile-card p,
.mobile-page .mobile-card li {
  color: var(--muted);
  line-height: 1.72;
}

.mobile-page .mobile-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.mobile-page .mobile-photo {
  overflow: hidden;
  border-radius: 20px;
  margin-top: 18px;
}

.mobile-page .mobile-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 980px) {
  .hero-grid,
  .feature-layout,
  .split-layout,
  .download-layout,
  .contact-layout,
  .legal-meta,
  .contact-grid,
  .download-grid,
  .commitment-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .policy-grid,
  .hero-stats,
  .stat-grid,
  .mini-grid,
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-media,
  .feature-media img,
  .about-media img,
  .contact-media img,
  .download-media img {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 84px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 22px;
    background: rgba(6, 20, 19, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .page-light .site-nav {
    background: rgba(248, 251, 251, 0.98);
    border-color: rgba(16, 38, 37, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-copy,
  .hero-visual,
  .form-card {
    padding: 22px;
  }

  .card-grid,
  .policy-grid,
  .hero-stats,
  .stat-grid,
  .mini-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .hero h1,
  .display-title {
    font-size: clamp(2.3rem, 12vw, 3.6rem);
  }

  .footer-panel,
  .header-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-chip {
    min-width: 100%;
  }
}
