:root {
  color-scheme: light;
  --ink: #0f172a;
  --muted: #475569;
  --muted-soft: #64748b;
  --card: #ffffff;
  --accent: #0ea5e9;
  --accent-strong: #0284c7;
  --accent-soft: #e0f2fe;
  --sea: #16a34a;
  --sea-soft: #e8f7ee;
  --sun: #f59e0b;
  --sun-soft: #fff4da;
  --fern: #a855f7;
  --fern-soft: #f3e8ff;
  --shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
  --border: #e2ecf7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f5f9ff 0%, #eef6ff 45%, #ffffff 100%);
  min-height: 100vh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  filter: blur(0px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

body::before {
  top: -16vw;
  right: -12vw;
  background: radial-gradient(circle at 30% 30%, rgba(14, 165, 233, 0.25), transparent 65%);
}

body::after {
  bottom: -18vw;
  left: -18vw;
  background: radial-gradient(circle at 40% 40%, rgba(14, 165, 233, 0.18), transparent 65%);
}

.page {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

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

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

.inline-highlight {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
  text-decoration-color: rgba(14, 165, 233, 0.35);
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 251, 255, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-transform: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  box-shadow: 0 8px 18px rgba(14, 165, 233, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-transform: none;
}

.brand-name {
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.site-nav a:not(.button) {
  color: #334155;
  font-weight: 600;
}

.site-nav a:not(.button):hover {
  color: var(--ink);
}


.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #ffffff;
  color: #1e293b;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(14, 165, 233, 0.25);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(14, 165, 233, 0.3);
}

.button.full {
  width: 100%;
}

.site-main {
  padding-bottom: 4rem;
}

.hero {
  padding: 4.6rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 2rem + 2vw, 3.6rem);
  line-height: 1.05;
  margin: 1rem 0 1rem;
  font-weight: 800;
}

.hero-content h1 .hero-accent {
  color: var(--accent);
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

.lead.small {
  max-width: 640px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f1f7ff;
  color: var(--accent-strong);
  border: 1px solid #dbeafe;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.note {
  font-size: 0.9rem;
  color: var(--muted-soft);
  max-width: 420px;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted-soft);
  margin-bottom: 1rem;
}

.chip {
  background: #e9f8ee;
  color: #15803d;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-weight: 600;
  font-size: 0.72rem;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.mini-card {
  background: #f1f7ff;
  padding: 0.85rem;
  border-radius: 18px;
  border: 1px solid #dbeafe;
  font-size: 0.9rem;
}

.mini-card h3 {
  font-size: 0.85rem;
  margin: 0 0 0.4rem;
  color: var(--accent-strong);
}

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

.mini-card.sun {
  background: var(--sun-soft);
  border-color: #fde8bf;
}

.mini-card.sun h3 {
  color: #c76b12;
}

.mini-card.sea {
  background: var(--sea-soft);
  border-color: #d6f0df;
}

.mini-card.sea h3 {
  color: var(--sea);
}

.mini-card.fern {
  background: var(--fern-soft);
  border-color: #e3d7ff;
}

.mini-card.fern h3 {
  color: var(--fern);
}

.mission {
  margin-top: 1.2rem;
  padding: 1rem;
  border-radius: 20px;
  background: #0f172a;
  color: #f5f5f5;
}

.mission-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c7d2fe;
  margin: 0 0 0.3rem;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.mission-highlight {
  margin: 0 0 0.4rem;
  font-weight: 600;
  font-size: 1rem;
}

.mission-body {
  margin: 0;
  font-size: 0.85rem;
  color: #dbeafe;
  line-height: 1.5;
}

.section {
  padding: 3.5rem 0;
  scroll-margin-top: 6rem;
}

.section h2 {
  font-size: clamp(2rem, 1.6rem + 1vw, 2.6rem);
  margin-top: 0;
  font-weight: 800;
}

.section p {
  color: var(--muted);
  line-height: 1.7;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
  display: grid;
  gap: 0.75rem;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.15);
}

.callout {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.8rem;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  color: var(--accent-strong);
  margin: 0 0 0.7rem;
  font-weight: 600;
}

.callout-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.faq-item + .faq-item {
  margin-top: 1.3rem;
}

.callout-grid h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: 0 18px 45px rgba(24, 28, 41, 0.08);
}

.card ul {
  padding-left: 1.1rem;
  color: var(--muted);
}

.card p {
  margin-top: 0.8rem;
}

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

.feature {
  background: #fff;
  border-radius: 20px;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--border);
}

.feature ul {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.feature.sea {
  background: var(--sea-soft);
}

.feature.sun {
  background: var(--sun-soft);
}

.quote-card {
  background: #0f172a;
  border-radius: 26px;
  padding: 1.8rem;
  color: #f1f1f1;
  box-shadow: var(--shadow);
}

.quote-card .eyebrow {
  color: #c7d2fe;
}

.quote {
  font-size: 1.4rem;
  margin: 0.6rem 0;
  font-weight: 700;
}

.quote-card .muted {
  color: #cbd5f5;
}

.quote-grid {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
}

.quote-grid h3 {
  margin: 0 0 0.4rem;
  color: #fff;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.price-card h3 {
  margin-top: 0.8rem;
}

.price-box {
  margin-top: 1.2rem;
  padding: 1.2rem;
  border-radius: 18px;
  background: var(--accent-soft);
}

.price {
  font-size: 2.2rem;
  margin: 0.4rem 0;
  font-weight: 700;
}

.info-stack {
  display: grid;
  gap: 1rem;
}

.info-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 22px;
}

.info-card.dark {
  background: #0f172a;
  color: #f1f1f1;
  border-color: #0f172a;
}

.info-card.dark .muted {
  color: #cbd5f5;
}

.contact-details {
  margin-top: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1.2rem;
}

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  border: 1px solid #dbeafe;
  font-family: inherit;
  font-size: 0.95rem;
  background: #f8fbff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(14, 165, 233, 0.25);
  border-color: var(--accent);
}

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

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

.small {
  font-size: 0.88rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(246, 251, 255, 0.92);
  padding: 1.8rem 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

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

@media (max-width: 980px) {
  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 250, 244, 0.98);
    padding: 1.4rem;
    gap: 0.9rem;
    border-bottom: 1px solid var(--border);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav .button {
    width: 100%;
    justify-content: center;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, 100% - 1.5rem);
  }

  .hero {
    padding: 3.5rem 0 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    transition: none;
  }

  .button {
    transition: none;
  }
}
