@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&display=swap');

:root {
  --teal: #007C92;
  --mint: #00B8A9;
  --bg: #0b0f12;
  --card: #101820;
  --card2: #0f1a23;
  --text: #eaeaea;
  --muted: #b0b0b0;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Montserrat', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(1200px 800px at 30% 0%, rgba(0, 124, 146, 0.18), transparent 55%), var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-weight: 500;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  background: #000;
  border: 1px solid var(--line);
  border-radius: 12px;
  z-index: 9999;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: saturate(140%) blur(10px);
  background: rgba(11, 15, 18, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 16px;
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
}
/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.brandLogoWrap {
  height: 55px;
  width: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.brandLogo {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: left center;
  transform: scale(1.22);
  transform-origin: left center;
  filter: drop-shadow(0 0 10px rgba(0, 184, 169, 0.12));
}
.brand:hover .brandLogo {
  filter: drop-shadow(0 0 16px rgba(0, 184, 169, 0.2));
  transform: scale(1.22) translateY(-0.5px);
  transition: filter 0.25s ease, transform 0.25s ease;
}

/* Responsive Brand */
@media (max-width: 980px) {
  .header-inner {
    padding: 12px 14px;
  }
  .brandLogoWrap {
    width: auto;
    max-width: 170px;
    overflow: visible;
  }
  .brandLogo {
    transform: none;
    height: 100%;
    width: auto;
    filter: none;
  }
  .brand:hover .brandLogo {
    transform: none;
    filter: none;
  }
}
@media (max-width: 640px) {
  .header-inner {
    padding: 10px 12px;
  }
}

/* ========== Navigation ========== */
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  opacity: 0.92;
  transition: color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}
.nav a:hover {
  opacity: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-weight: 600;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
}

/* Mobile Nav */
@media (max-width: 860px) {
  .nav {
    display: none;
    position: absolute;
    top: 64px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(10, 20, 24, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 80;
  }
  .nav.is-open {
    display: flex;
  }
  .nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 6px 10px;
  }
  .nav-toggle {
    display: block;
  }
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}
.btn-primary {
  background: #bfeec8;
  border-color: transparent;
  color: #0a1416;
  font-weight: 700;
}
.btn-ghost {
  background: transparent;
}

/* ========== Hero ========== */
.hero {
  padding: 72px 0 56px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero-frame {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 18px;
  height: 520px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 70%);
  position: relative;
  overflow: hidden;
}
.hero-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 14px;
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(255, 255, 255, 0.08), transparent 60%),
    radial-gradient(120% 90% at 80% 90%, rgba(0, 184, 169, 0.12), transparent 55%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 -18px 28px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  opacity: 0.85;
}
.hero-title {
  font-size: 84px;
  line-height: 1.12;
  margin: 0 0 16px;
  letter-spacing: -0.02px;
  font-weight: 600;
}
.hero-sub {
  color: rgba(234, 234, 234, 0.82);
  margin: 0 0 24px;
  max-width: 520px;
}
.hero-sub .muted {
  color: rgba(234, 234, 234, 0.62);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
/* ========== Value / Features Section ========== */
.value {
  padding: 72px 0;
  background: #bfe6c7;
  color: #071215;
}
.value-head {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 34px;
  max-width: 860px;
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feature-card {
  background: #0f1a23;
  color: #eaeaea;
  padding: 26px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  backdrop-filter: blur(8px);
}
.feature-card h3 {
  margin: 18px 0 10px;
  font-size: 20px;
}
.feature-card p {
  margin: 0;
  color: rgba(234, 234, 234, 0.78);
}
.feature-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.feature-num {
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -1px;
  opacity: 0.92;
}

/* Glowing Blob Effect */
.blob::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 44px;
  background: radial-gradient(500px 220px at 20% 10%, rgba(0, 184, 169, 0.22), transparent 60%), radial-gradient(500px 260px at 80% 90%, rgba(0, 124, 146, 0.18), transparent 60%);
  opacity: 0.8;
  z-index: 0;
}
.blob * {
  position: relative;
  z-index: 1;
}

/* ========== Method Section & Accordion ========== */
.method {
  padding: 72px 0;
}
.method-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: start;
}
.method-title {
  font-size: 46px;
  line-height: 1.1;
  margin: 0 0 14px;
}
.method-sub {
  margin: 0 0 22px;
  color: rgba(234, 234, 234, 0.75);
  max-width: 620px;
}

.accordion {
  max-width: 560px;
}
.acc-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 24, 32, 0.35);
  color: var(--text);
  cursor: pointer;
  margin-bottom: 12px;
  text-align: left;
  font-weight: 600;
}
.acc-item:hover {
  border-color: rgba(255, 255, 255, 0.22);
}
.acc-plus {
  opacity: 0.7;
  font-size: 18px;
}
.acc-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.35s ease;
  padding: 0 18px;
  color: rgba(234, 234, 234, 0.76);
}
.acc-panel.open {
  padding: 12px 18px 18px;
  max-height: 220px;
  opacity: 1;
}

/* ========== Timeline ========== */
.process-timeline {
  --tl-pad: 44px;
  --tl-dot: 14px;
  --tl-line: 2px;
  position: relative;
  width: min(520px, 100%);
  padding-left: var(--tl-pad);
  margin-top: 96px;
}
.timeline-spine {
  position: absolute;
  left: calc(var(--tl-pad) + (var(--tl-dot) / 2) - (var(--tl-line) / 2));
  top: 24px;
  bottom: 64px;
  width: var(--tl-line);
  background: linear-gradient(to bottom, rgba(0, 184, 169, 0.45), rgba(255, 255, 255, 0.08));
}
.timeline-spine::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid rgba(0, 184, 169, 0.55);
}
.timeline-step {
  position: relative;
  display: flex;
  gap: 18px;
  padding: 18px 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.timeline-step.is-visible {
  opacity: 0.55;
  transform: translateY(0);
}
.timeline-step.is-visible:hover {
  opacity: 1;
}
.timeline-dot {
  width: var(--tl-dot);
  height: var(--tl-dot);
  margin-top: 4px;
  border-radius: 999px;
  background: rgba(0, 184, 169, 0.35);
  box-shadow: 0 0 0 6px rgba(0, 184, 169, 0.10);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.timeline-step:hover .timeline-dot {
  background: rgba(0, 184, 169, 0.95);
  box-shadow: 0 0 0 8px rgba(0, 184, 169, 0.22);
}
.timeline-title {
  font-weight: 800;
  font-size: 16px;
}
.timeline-sub {
  margin-top: 2px;
  font-size: 14px;
  color: rgba(234, 234, 234, 0.68);
  line-height: 1.45;
}
.timeline-note {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.7;
}
.timeline-outcomes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.timeline-outcomes.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.outcome-pill {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 24, 32, 0.55);
  color: rgba(234, 234, 234, 0.9);
}
/* ========== Phase Deck Carousel ========== */
.phase {
  padding: 78px 0;
  position: relative;
}
.phase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.phase-copy h2 {
  font-size: 52px;
  margin: 0 0 12px;
}
.phase-copy p {
  margin: 0 0 18px;
  color: rgba(234, 234, 234, 0.74);
}
.media-stack {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 24, 32, 0.35);
  padding: 22px;
  height: 420px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.media-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0.88;
}
.media-lottie {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  opacity: 0.95;
  z-index: 0;
}
.media-stack .pill { z-index: 1; }
.pill {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: #0a1416;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}
.pill.pink { background: rgba(227, 159, 190, 0.92); top: 24px; left: 24px; color: #fff; }
.pill.blue { background: rgba(106, 170, 255, 0.92); top: 92px; right: 24px; color: #fff; }
.pill.yellow { background: rgba(246, 231, 119, 0.92); left: 26px; bottom: 96px; }
.pill.mint { background: rgba(211, 246, 223, 0.92); right: 26px; bottom: 26px; }

.phase-deck {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.phase-deck .container {
  position: relative;
}
.phase-deck-inner {
  position: relative;
  min-height: 460px;
}
.phase-deck .phase {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(56px) scale(0.96);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.phase-deck .phase.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  z-index: 3;
}
.phase-deck .phase.is-prev {
  opacity: 0.22;
  transform: translateX(-56px) scale(0.94);
  z-index: 2;
}
.phase-deck .phase {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(16, 24, 32, 0.9), rgba(9, 14, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
}
.deck-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
}
.deck-step {
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(234, 234, 234, 0.6);
}
.deck-step-count {
  color: #fff;
}
.deck-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.85), rgba(11, 15, 18, 0.65));
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.deck-nav:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.35);
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(11, 15, 18, 0.85));
}
.deck-nav.is-hidden {
  visibility: hidden;
  pointer-events: none;
}
.deck-arrow {
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 999px;
  font-size: 18px;
}
.deck-arrow:hover {
  transform: translateY(-2px) scale(1.04);
}

/* ========== FAQ Section ========== */
.faq {
  padding: 74px 0;
  position: relative;
  overflow: hidden;
}
.faq-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.faq > .container { position: relative; z-index: 1; }
.faq-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: start;
}
.faq-title {
  font-size: 44px;
  margin: 0 0 18px;
}
.faq-item {
  margin: 22px 0;
}
.faq-q {
  font-weight: 800;
  font-size: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.dot {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0, 124, 146, 0.22);
  border: 1px solid rgba(0, 124, 146, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 2px;
}
.faq-a {
  margin-left: 40px;
  color: rgba(234, 234, 234, 0.72);
}

/* ========== Contact / CTA Section ========== */
.contact {
  padding: 88px 0;
}
.contact-box {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 24, 32, 0.55);
  padding: 44px;
  text-align: center;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.contact-title {
  font-size: 46px;
  margin: 0 0 10px;
}
.contact-sub {
  margin: 0 auto 22px;
  color: rgba(234, 234, 234, 0.74);
  max-width: 860px;
  font-size: 18px;
}
.contact-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 18px auto 0;
}
.contact-icon {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 16px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 15, 18, 0.45);
  color: rgba(234, 234, 234, 0.9);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
}
.contact-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(0, 184, 169, 0.08), rgba(255, 255, 255, 0.05));
  opacity: 0.6;
  pointer-events: none;
}
.contact-icon:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(16, 24, 32, 0.6);
}
.contact-icon img {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
}
.contact-icon span {
  position: relative;
  z-index: 1;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.chip.blue { background: #4a97ff; color: #fff; }
.chip.purple { background: #b29df4; color: #0a1416; }
.chip.yellow { background: #f0df57; color: #0a1416; }
.chip.mint { background: #bfeec8; color: #0a1416; }
.toast {
  margin-top: 14px;
  min-height: 20px;
  color: rgba(191, 238, 200, 0.95);
  font-weight: 700;
}

/* ========== Footer ========== */
.footer {
  padding: 26px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(234, 234, 234, 0.7);
  font-size: 12px;
}
.footer a {
  color: rgba(234, 234, 234, 0.7);
}
.footer a:hover {
  color: #fff;
}

/* ========== Responsive Tweaks ========== */
@media (max-width: 980px) {
  .hero-grid,
  .method-grid,
  .phase-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero-frame {
    height: 380px;
  }
  .hero-title {
    font-size: 64px;
  }
  .value-head {
    font-size: 36px;
  }
  .feature-cards {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
  .contact-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .phase-deck .phase {
    min-height: 720px;
  }
  .phase-copy p {
    line-height: 1.5;
    max-height: 7.5em;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 5;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }
}
@media (max-width: 760px) {
  .hero {
    padding-top: 36px;
  }
  .nav {
    position: absolute;
    right: 24px;
    top: 70px;
    flex-direction: column;
    align-items: stretch;
    width: min(320px, calc(100vw - 48px));
    padding: 14px;
    background: rgba(11, 15, 18, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    display: none;
  }
  .nav.is-open {
    display: flex;
  }
  .hero-title {
    font-size: 52px;
  }
  .contact-title {
    font-size: 38px;
  }
  .contact-box {
    padding: 28px;
  }
  .contact-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .phase-deck .phase {
    padding: 18px;
    min-height: 760px;
  }
  .phase-copy p {
    max-height: none;
    overflow: visible;
    display: block;
    line-clamp: unset;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
  }
  .phase-deck-inner {
    min-height: 520px;
  }
  .media-stack {
    height: 300px;
    padding: 18px;
  }
  .media-lottie {
    width: 240px;
    height: 240px;
  }
  .pill {
    font-size: 12px;
    padding: 8px 12px;
  }
  .pill.pink { top: 18px; left: 18px; }
  .pill.blue { top: 74px; right: 18px; }
  .pill.yellow { left: 18px; bottom: 86px; }
  .pill.mint { right: 18px; bottom: 18px; }
}
