:root {
  --ink: #09101a;
  --ink-soft: #15273b;
  --mint: #20d39b;
  --mint-deep: #10b97f;
  --sand: #f4efe6;
  --sun: #ffc562;
  --text: #e9f4ff;
  --text-muted: #b7c6d8;
  --panel: rgba(21, 39, 59, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(32, 211, 155, 0.08), transparent 42%),
    radial-gradient(circle at 86% 22%, rgba(255, 197, 98, 0.11), transparent 38%),
    linear-gradient(145deg, #05080f 0%, #0a1625 58%, #06101e 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.45;
}

.bg-glow-1 {
  width: 380px;
  height: 380px;
  background: rgba(32, 211, 155, 0.35);
  top: -120px;
  right: -80px;
}

.bg-glow-2 {
  width: 420px;
  height: 420px;
  background: rgba(255, 197, 98, 0.24);
  bottom: -170px;
  left: -130px;
}

.container {
  width: min(1080px, calc(100% - 3rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(9, 16, 26, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.brand {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  height: 64px;
  width: auto;
  max-width: min(42vw, 220px);
}

.brand-fallback {
  display: none;
  font-size: 1rem;
}

.hero {
  padding: 7rem 0 4.5rem;
}

.kicker {
  margin: 0 0 1rem;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.16;
  margin: 0;
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.6rem);
  max-width: 16ch;
}

.hero-copy {
  max-width: 62ch;
  color: var(--text-muted);
  margin: 1.35rem 0 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  padding: 0.72rem 1.2rem;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

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

.btn-primary {
  color: #04140d;
  background: linear-gradient(120deg, var(--mint) 0%, #63f3c2 100%);
  box-shadow: 0 10px 30px rgba(32, 211, 155, 0.28);
}

.btn-outline {
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  font-size: 0.94rem;
}

.section {
  padding: 4rem 0;
}

.section h2 {
  font-size: clamp(1.6rem, 4.1vw, 2.5rem);
  margin-bottom: 1rem;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 1.25rem;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.55rem;
}

.card p,
.split p {
  margin: 0;
  color: var(--text-muted);
}

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

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 16, 26, 0.72);
}

.timeline li {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline li:last-child {
  border-bottom: 0;
}

.timeline span {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(32, 211, 155, 0.18);
  color: var(--mint);
  font-weight: 700;
  font-size: 0.85rem;
}

.cta-panel {
  border: 1px solid rgba(255, 197, 98, 0.36);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(140deg, rgba(255, 197, 98, 0.11), rgba(32, 211, 155, 0.08));
  padding: 2rem;
}

.cta-panel p {
  margin: 0.75rem 0 1.4rem;
  color: var(--text-muted);
}

.calendly-panel {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 16, 26, 0.72);
  padding: 0.55rem;
  overflow: hidden;
}

.calendly-inline-mount {
  min-width: 320px;
  height: 700px;
}

.calendly-consent-note {
  margin-top: 1rem;
  color: var(--text-muted);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
}

.cookie-banner-inner {
  margin: 0 auto;
  width: min(1080px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 16, 26, 0.94);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.35);
  padding: 1rem;
}

.cookie-banner-inner p {
  margin: 0;
  color: var(--text-muted);
}

.cookie-banner-inner a {
  color: var(--mint);
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.2rem 0 2.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-link-btn {
  margin-left: 0.6rem;
  border: 0;
  background: transparent;
  color: var(--mint);
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
}

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

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    flex-direction: column;
  }

  .hero {
    padding-top: 5.2rem;
  }

  .calendly-inline-mount {
    height: 640px;
  }

  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }
}
