:root {
  --bg: #fffaf1;
  --surface: #ffffff;
  --text: #1f2a37;
  --muted: #5f6f81;
  --line: #dbe4ec;
  --ink: #0f1724;

  --brand-1: #0f766e;
  --brand-2: #0ea5a5;
  --brand-3: #ff8a3d;
  --brand-4: #ffd08a;

  --shadow: 0 16px 40px rgba(14, 52, 83, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 208, 138, 0.42), transparent 36%),
    radial-gradient(circle at 92% 8%, rgba(14, 165, 165, 0.18), transparent 34%),
    var(--bg);
  line-height: 1.58;
}

h1,
h2,
h3,
.eyebrow,
.btn,
.brand {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

a {
  color: var(--brand-1);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(1100px, calc(100% - 2.2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(255, 250, 241, 0.86);
  border-bottom: 1px solid rgba(219, 228, 236, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-3));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy small {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--muted);
  font-size: 0.72rem;
}

.text-link {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 4rem 0 3rem;
}

.shape {
  position: absolute;
  pointer-events: none;
}

.shape-a {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 138, 61, 0.24);
  top: 14%;
  right: 4%;
}

.shape-b {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(14, 165, 165, 0.15);
  bottom: 5%;
  left: -80px;
}

.shape-c {
  width: 160px;
  height: 160px;
  border-radius: 16px;
  transform: rotate(20deg);
  background: rgba(255, 208, 138, 0.34);
  top: 35%;
  left: 40%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 1.4rem;
  align-items: stretch;
}

.eyebrow {
  display: inline-block;
  background: rgba(14, 118, 110, 0.1);
  color: var(--brand-1);
  border: 1px solid rgba(14, 118, 110, 0.2);
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.hero-copy h1 {
  margin: 1rem 0 0.7rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.04;
  color: var(--ink);
}

.hero-sub {
  font-size: 1.05rem;
  max-width: 62ch;
  color: #233345;
}

.hero-cta {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-facts {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
  color: #2b3b4f;
}

.hero-facts strong {
  color: var(--ink);
}

.hero-panel {
  background: linear-gradient(180deg, #fff, #f7fffb);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.hero-panel h2 {
  margin: 0.4rem 0 0.2rem;
  font-size: 1.8rem;
}

.panel-time {
  color: var(--brand-1);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0.1rem 0 0.65rem;
}

.panel-desc {
  color: #35506c;
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.74rem 1rem;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.25);
}

.btn-ghost {
  background: #fff;
  color: #17324a;
  border: 1px solid #bfd0df;
}

.btn-panel {
  margin-top: 0.4rem;
  background: linear-gradient(135deg, #ff8a3d, #ffb76d);
  color: #1f2a37;
}

.pathways {
  padding: 2.3rem 0 1.6rem;
}

.pathways h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  margin: 0 0 1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.card-accent {
  background: linear-gradient(180deg, #fff, #f6fbff);
}

.card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.card p {
  color: #3b4f66;
}

.card ul {
  margin: 0.7rem 0 1rem;
  padding-left: 1rem;
}

.card li {
  margin: 0.4rem 0;
}

.lead-form {
  display: grid;
  gap: 0.5rem;
}

.lead-form label {
  font-size: 0.86rem;
  font-weight: 700;
}

.lead-form input {
  width: 100%;
  border: 1px solid #bfd0df;
  border-radius: 10px;
  min-height: 42px;
  padding: 0.6rem 0.7rem;
  font: inherit;
}

.lead-form input:focus {
  border-color: var(--brand-2);
  outline: 3px solid rgba(14, 165, 165, 0.16);
}

.form-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.form-error {
  margin: 0;
  min-height: 1rem;
  color: #b91c1c;
  font-size: 0.82rem;
}

.form-success {
  margin: 0;
  min-height: 1rem;
  color: #0f766e;
  font-size: 0.82rem;
  font-weight: 700;
}

.calendar-actions {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.closing-cta {
  padding: 2rem 0 4.5rem;
}

.closing-inner {
  border-radius: 22px;
  border: 1px solid rgba(29, 89, 130, 0.2);
  background: linear-gradient(135deg, rgba(255, 208, 138, 0.46), rgba(14, 165, 165, 0.16));
  padding: 1.3rem;
}

.closing-inner h2 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.closing-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem 0 5rem;
}

.footer-row {
  display: flex;
  gap: 0.6rem;
  justify-content: space-between;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 18;
  background: rgba(255, 250, 241, 0.96);
  border-top: 1px solid var(--line);
  display: none;
  gap: 0.5rem;
  padding: 0.6rem;
}

.mobile-sticky .btn {
  flex: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.6s ease forwards;
}

.reveal.delay-1 {
  animation-delay: 0.18s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .shape-c {
    display: none;
  }

  .topbar {
    padding: 0.78rem 1rem;
  }

  .text-link {
    font-size: 0.88rem;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 2.8rem;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .mobile-sticky {
    display: flex;
  }
}
