@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 112.5%;
}

:root {
  --content-max: min(1460px, calc(100vw - 2.25rem));
  --page-pad: clamp(1.25rem, 4.5vw, 3rem);
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #020617;
  background-image: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(30, 27, 75, 0.45) 0%, transparent 55%),
    radial-gradient(circle at top left, #0f172a 0, #020617 50%, #020617 100%);
  color: #e5e7eb;
  line-height: 1.55;
}

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

.app-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.gradient-bg {
  background: radial-gradient(circle at top left, #4f46e5 0, #7c3aed 25%, #0f172a 70%);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  overflow: visible;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.7),
    rgba(15, 23, 42, 0.9)
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.nav-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0.9rem var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  width: 64px;
  height: 64px;
  display: block;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  border-radius: 9999px;
  background-color: rgba(94, 234, 212, 0.10);
  border: 1px solid rgba(165, 180, 252, 0.35);
  box-shadow: 0 0 20px rgba(94, 234, 212, 0.45);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
  line-height: 1.15;
}

.logo-slogan {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #c7d2fe;
  line-height: 1.25;
  margin-top: 0.12rem;
}

.logo-subtitle {
  font-size: 0.7rem;
  color: #9ca3af;
  margin-top: 0.1rem;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.92rem;
}

.nav-links button {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
}

.nav-link {
  color: #e5e7eb;
  opacity: 0.85;
  font-weight: 500;
}

.nav-link:hover {
  opacity: 1;
}

.nav-cta {
  padding: 0.52rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #5eead4, #a5b4fc);
  color: #0b1224;
  font-weight: 700;
  font-size: 0.84rem;
  box-shadow: 0 4px 18px rgba(94, 234, 212, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.28) inset;
  border: 1px solid rgba(15, 23, 42, 0.2);
  cursor: pointer;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(56, 189, 248, 0.5);
}

.logo-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.logo-link:focus-visible {
  outline: 2px solid rgba(94, 234, 212, 0.8);
  outline-offset: 3px;
  border-radius: 0.5rem;
}

.page-main {
  flex: 1;
  width: 100%;
}

.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.92rem;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 0.2rem;
}

.nav-chevron {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.15rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.75;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.nav-dropdown.is-open .nav-chevron {
  transform: rotate(180deg);
}

.nav-chevron.is-up {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 0;
  width: max-content;
  min-width: 13.5rem;
  max-width: min(22rem, calc(100vw - 2rem));
  padding: 0.85rem 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 1rem;
  background: linear-gradient(165deg, rgba(24, 32, 54, 0.98) 0%, rgba(15, 23, 42, 0.99) 100%);
  border: 1px solid rgba(129, 140, 248, 0.45);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.6) inset,
    0 20px 48px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(99, 102, 241, 0.12);
  z-index: 50;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.85rem;
  margin: 0;
  padding: 0 1.35rem;
  border: none;
  border-radius: 0.95rem;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #f1f5f9;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

.nav-dropdown-item:hover,
.nav-dropdown-item:focus-visible {
  background: rgba(99, 102, 241, 0.22);
  color: #fff;
  outline: none;
}

.nav-dropdown-item.is-current {
  background: rgba(99, 102, 241, 0.32);
  color: #e0e7ff;
  box-shadow: 0 0 0 1px rgba(165, 180, 252, 0.35) inset;
}

.nav-link.is-active {
  opacity: 1;
  color: #c7d2fe;
}

.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.65);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-burger-lines {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: #e5e7eb;
  box-shadow: 0 -6px 0 #e5e7eb, 0 6px 0 #e5e7eb;
}

.nav-mobile {
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(12px);
}

.nav-mobile-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0.65rem var(--page-pad) 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.nav-mobile-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.65rem 0.5rem;
  border: none;
  border-radius: 0.55rem;
  font: inherit;
  font-size: 0.88rem;
  color: #e5e7eb;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.nav-mobile-row:hover,
.nav-mobile-link:hover {
  background: rgba(99, 102, 241, 0.15);
}

.nav-mobile-caret {
  font-weight: 600;
}

.nav-mobile-sub {
  display: flex;
  flex-direction: column;
  padding-left: 0.75rem;
  margin-bottom: 0.35rem;
  border-left: 2px solid rgba(99, 102, 241, 0.45);
  margin-left: 0.5rem;
}

.nav-mobile-link {
  padding: 0.45rem 0.5rem;
  border: none;
  border-radius: 0.45rem;
  font: inherit;
  font-size: 0.82rem;
  color: #cbd5e1;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.nav-mobile-cta {
  margin-top: 0.35rem;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  border: none;
  font: inherit;
  font-weight: 700;
  font-size: 0.82rem;
  background: linear-gradient(135deg, #5eead4, #a5b4fc);
  color: #0b1224;
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-tight-top {
  padding-top: 1.75rem !important;
}

.section-page-intro {
  padding-top: clamp(2rem, 4vw, 3rem) !important;
}

.page-h1 {
  font-size: clamp(1.6rem, 3.75vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.22;
  margin: 0 0 0.55rem;
}

.section-description-wide {
  max-width: 52rem;
}

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

.segment-teaser-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 1.15rem 1.2rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.38);
  background: linear-gradient(150deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.88));
  color: inherit;
  cursor: pointer;
  font: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.segment-teaser-card:hover {
  border-color: rgba(129, 140, 248, 0.55);
  box-shadow: 0 16px 40px rgba(30, 27, 75, 0.35);
  transform: translateY(-2px);
}

.segment-teaser-card:focus-visible {
  outline: 2px solid rgba(94, 234, 212, 0.75);
  outline-offset: 2px;
}

.segment-teaser-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #818cf8;
  margin-bottom: 0.35rem;
}

.segment-teaser-title {
  font-size: 1.12rem;
  font-weight: 600;
  margin: 0 0 0.45rem;
}

.segment-teaser-text {
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.5;
  margin: 0 0 0.85rem;
  flex: 1;
}

.segment-teaser-cta {
  font-size: 0.84rem;
  font-weight: 600;
  color: #a5b4fc;
}

.page-next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.hero-shell {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #020617;
  background-image: radial-gradient(ellipse 120% 90% at 0% -10%, rgba(99, 102, 241, 0.72) 0%, transparent 58%),
    radial-gradient(ellipse 90% 70% at 100% -5%, rgba(168, 85, 247, 0.55) 0%, transparent 52%),
    radial-gradient(ellipse 85% 45% at 50% 120%, rgba(2, 6, 23, 0) 0%, #020617 65%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0) 0%, rgba(2, 6, 23, 0.35) 88%, #020617 100%);
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(2.75rem, 6vw, 4.75rem) var(--page-pad) clamp(3rem, 7vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.98fr);
  gap: clamp(2.25rem, 5vw, 4rem);
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #22c55e, #16a34a);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
}

.hero-heading {
  font-size: clamp(2.5rem, 5.25vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 1.15rem;
}

.hero-highlight {
  background: linear-gradient(120deg, #22d3ee, #a855f7, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: #c4c9d4;
  font-size: clamp(0.98rem, 1.75vw, 1.12rem);
  line-height: 1.65;
  max-width: 44rem;
  margin-bottom: 1.65rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.pill {
  font-size: 0.76rem;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #cbd5f5;
  background: rgba(15, 23, 42, 0.8);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.btn-primary {
  padding: 0.78rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #22d3ee, #6366f1);
  color: #020617;
  font-weight: 600;
  font-size: 0.97rem;
  box-shadow: 0 18px 45px rgba(59, 130, 246, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.75);
}

.btn-ghost {
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.35);
  background: rgba(15, 23, 42, 0.35);
  color: #f1f5f9;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(226, 232, 240, 0.5);
}

.hero-note {
  margin-top: 1.15rem;
  font-size: 0.84rem;
  color: #a8b0bd;
  max-width: 44rem;
}

.hero-note span {
  color: #a5b4fc;
}

.hero-right {
  position: relative;
  min-width: 0;
}

.hero-card {
  position: relative;
  border-radius: 1.5rem;
  padding: clamp(1.35rem, 3vw, 1.75rem);
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.28), transparent 62%),
    linear-gradient(155deg, rgba(15, 23, 42, 0.92) 0%, rgba(2, 6, 23, 0.98) 100%);
  border: 1px solid rgba(148, 163, 184, 0.38);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(99, 102, 241, 0.12) inset;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.15rem);
}

.tile {
  border-radius: 1rem;
  padding: clamp(0.85rem, 2vw, 1.05rem);
  background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.82));
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.tile-label {
  font-size: 0.76rem;
  color: #9ca3af;
  margin-bottom: 0.4rem;
}

.tile-value {
  font-size: clamp(0.95rem, 1.9vw, 1.12rem);
  font-weight: 600;
  line-height: 1.3;
}

.tile-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.76rem;
  margin-top: 0.3rem;
  color: #a5b4fc;
}

.spark-orbit {
  position: absolute;
  inset: -40%;
  opacity: 0.35;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 10%, rgba(59, 130, 246, 0.18), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(45, 212, 191, 0.22), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(244, 114, 182, 0.22), transparent 55%);
}

.section {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 3.25rem var(--page-pad) 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.7rem;
}

.section-title {
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.section-kicker {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 0.35rem;
}

.section-description {
  font-size: 0.93rem;
  color: #9ca3af;
  max-width: 38rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-end;
}

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

.offering-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 1.1rem;
  padding: 1.2rem;
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.95),
    rgba(15, 23, 42, 0.96)
  );
  border: 1px solid rgba(148, 163, 184, 0.4);
  position: relative;
  overflow: hidden;
}

.offering-chip {
  font-size: 0.76rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.1);
  color: #7dd3fc;
  border: 1px solid rgba(56, 189, 248, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.offering-title {
  margin-top: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
}

.offering-target {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 0.6rem;
}

.offering-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  color: #d1d5db;
  flex: 1 1 auto;
}

.offering-list li {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
  margin-bottom: 0.35rem;
}

.offering-list-bullet {
  margin-top: 0.22rem;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #4ade80;
  flex-shrink: 0;
}

.offering-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  font-size: 0.87rem;
  color: #9ca3af;
}

.offering-duration {
  font-weight: 600;
  color: #cbd5e1;
  line-height: 1.35;
}

.offering-intensity {
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.45;
  max-width: 22rem;
}

/* Schools / Universities / Companies: larger readable type */
.segment-program-page .section-kicker {
  font-size: 0.82rem;
}

.segment-program-page .page-h1 {
  font-size: clamp(1.85rem, 4.2vw, 2.5rem);
  line-height: 1.18;
}

.segment-program-page .section-description {
  font-size: 1.06rem;
  line-height: 1.62;
  max-width: 58rem;
}

.segment-program-page .pill-row .pill {
  font-size: 0.84rem;
  padding: 0.3rem 0.8rem;
}

.segment-program-page .offering-grid {
  gap: 1.2rem;
}

.segment-program-page .offering-card {
  padding: 1.4rem 1.35rem;
}

.segment-program-page .offering-chip {
  font-size: 0.85rem;
  padding: 0.18rem 0.68rem;
}

.segment-program-page .offering-title {
  font-size: 1.2rem;
  margin-top: 0.65rem;
  line-height: 1.28;
}

.segment-program-page .offering-target {
  font-size: 1.02rem;
  margin-bottom: 0.72rem;
  line-height: 1.45;
}

.segment-program-page .offering-list {
  font-size: 1.02rem;
  line-height: 1.58;
  margin-bottom: 0.85rem;
}

.segment-program-page .offering-list li {
  margin-bottom: 0.45rem;
}

.segment-program-page .offering-list-bullet {
  width: 6px;
  height: 6px;
  margin-top: 0.48rem;
}

.segment-program-page .offering-meta {
  font-size: 0.98rem;
  gap: 0.4rem;
  padding-top: 0.95rem;
}

.segment-program-page .offering-intensity {
  font-size: 0.9rem;
  max-width: 24rem;
}

.segment-program-page .tools-strip {
  padding: 1.15rem 1.25rem;
}

.segment-program-page .tools-strip-label {
  font-size: 0.82rem;
}

.segment-program-page .tools-chips .pill {
  font-size: 0.86rem;
  padding: 0.3rem 0.78rem;
}

.segment-program-page .page-next-actions {
  gap: 0.9rem;
}

.segment-program-page .page-next-actions .btn-ghost {
  font-size: 1.02rem;
  padding: 0.82rem 1.45rem;
}

.segment-program-page .page-next-actions .btn-primary {
  font-size: 1.04rem;
  padding: 0.88rem 1.65rem;
}

.segment-block {
  margin-top: 2.25rem;
}

.segment-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}

.segment-audience {
  font-size: 0.92rem;
  color: #9ca3af;
  margin: 0 0 1rem;
  max-width: 52rem;
  line-height: 1.55;
}

.tools-strip {
  margin-top: 2.25rem;
  padding: 1rem 1.1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.65);
}

.tools-strip-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 0.55rem;
}

.tools-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.formats-lead {
  max-width: 40rem;
}

.format-headline {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0.35rem 0 0.15rem;
  line-height: 1.2;
}

.tier-span {
  grid-column: 1 / -1;
}

.tier-headline {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.tier-strong-list {
  margin-top: 0.35rem;
  line-height: 1.45;
  color: #d1d5db;
}

.price-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.65fr;
  gap: 1.5rem;
  align-items: stretch;
}

.price-note {
  font-size: 0.84rem;
  color: #9ca3af;
  margin-top: 0.3rem;
}

.price-card {
  border-radius: 1.1rem;
  padding: 1.1rem;
  background: radial-gradient(circle at top, rgba(129, 140, 248, 0.35), transparent 60%),
    linear-gradient(to bottom right, #020617, #020617);
  border: 1px solid rgba(129, 140, 248, 0.6);
  box-shadow: 0 25px 55px rgba(30, 64, 175, 0.85);
}

.price-pill {
  font-size: 0.76rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(191, 219, 254, 0.6);
  background: rgba(15, 23, 42, 0.9);
  color: #bfdbfe;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.6rem;
}

.price-pill span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

.price-amount {
  font-size: 1.7rem;
  font-weight: 700;
}

.price-amount span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #9ca3af;
}

.price-sub {
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: #e5e7eb;
}

.price-inclusions {
  font-size: 0.88rem;
  color: #d1d5db;
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0.9rem;
}

.price-inclusions > li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 0.45rem;
}

.price-inclusion-body {
  flex: 1;
  min-width: 0;
  line-height: 1.45;
}

.price-inclusion-body:has(.bullet-nested) strong {
  display: block;
  margin-bottom: 0.35rem;
}

.bullet-nested {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: #cbd5e1;
}

.bullet-nested li {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 0.2rem;
}

.bullet-nested li::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: #818cf8;
  flex-shrink: 0;
}

.bullet-tight {
  list-style: none;
  padding: 0;
  margin: 0.35rem 0 0.5rem;
  font-size: 0.88rem;
  color: #cbd5e1;
}

.bullet-tight li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.35rem;
  line-height: 1.45;
}

.bullet-tight li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #22d3ee;
}

.formats-intro-bullets {
  list-style: none;
  padding: 0;
  margin: 0.35rem 0 0;
  max-width: 52rem;
  font-size: 0.93rem;
  color: #9ca3af;
  line-height: 1.55;
}

.formats-intro-bullets li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.5rem;
}

.formats-intro-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #818cf8;
}

.popular-starts {
  margin-top: 0.35rem;
}

.popular-start-block {
  margin-bottom: 0.85rem;
}

.popular-start-block:last-child {
  margin-bottom: 0;
}

.popular-start-block strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a5b4fc;
  margin-bottom: 0.35rem;
}

.popular-start-block ul {
  list-style: none;
  padding: 0 0 0 0.65rem;
  margin: 0;
  border-left: 2px solid rgba(99, 102, 241, 0.4);
}

.popular-start-block li {
  font-size: 0.78rem;
  color: #d1d5db;
  line-height: 1.45;
  margin-bottom: 0.25rem;
}

.popular-start-block li:last-child {
  margin-bottom: 0;
}

.tier-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  color: #9ca3af;
  line-height: 1.45;
}

.tier-bullet-list li {
  position: relative;
  padding-left: 0.95rem;
  margin-bottom: 0.3rem;
}

.tier-bullet-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: #818cf8;
  font-weight: 700;
}

.checkmark {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: #bbf7d0;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pricing-tiers {
  border-radius: 1.1rem;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  padding: 1rem;
  font-size: 0.87rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.tier {
  padding: 0.55rem 0.6rem;
  border-radius: 0.8rem;
  background: rgba(15, 23, 42, 0.8);
}

.tier-label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.tier-headline {
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.tier-meta {
  font-size: 0.8rem;
  color: #9ca3af;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.7rem;
}

.metric {
  min-width: 120px;
}

.metric-value {
  font-size: 1.32rem;
  font-weight: 600;
}

.metric-label {
  font-size: 0.82rem;
  color: #9ca3af;
}

.timeline {
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0.9rem 0.9rem 0.5rem;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.98)
  );
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  padding: 0.5rem 0;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #6366f1;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.45);
}

.timeline-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, rgba(148, 163, 184, 0.5), transparent);
  margin-top: 0.1rem;
}

.timeline-title {
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.timeline-body {
  font-size: 0.86rem;
  color: #9ca3af;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 1.3rem;
}

.contact-card {
  border-radius: 1.1rem;
  padding: 1rem;
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.96),
    rgba(15, 23, 42, 0.98)
  );
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0.6rem;
  font-size: 0.88rem;
  color: #e5e7eb;
}

.contact-list li {
  margin-bottom: 0.4rem;
}

.contact-label {
  color: #9ca3af;
  font-size: 0.82rem;
}

.contact-email {
  color: #bfdbfe;
}

.contact-email:hover {
  text-decoration: underline;
}

.contact-form {
  border-radius: 1.1rem;
  padding: 1rem;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.22), transparent 60%),
    linear-gradient(to bottom right, #020617, #020617);
  border: 1px solid rgba(56, 189, 248, 0.6);
}

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

.form-field {
  margin-bottom: 0.6rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.2rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  font-size: 0.9rem;
  padding: 0.52rem 0.62rem;
  outline: none;
}

.form-textarea {
  min-height: 90px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.5);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.6rem;
}

.form-helper {
  font-size: 0.78rem;
  color: #9ca3af;
}

.status-pill {
  font-size: 0.78rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
}

.status-pill.success {
  background: rgba(22, 163, 74, 0.18);
  color: #bbf7d0;
  border: 1px solid rgba(34, 197, 94, 0.7);
}

.status-pill.error {
  background: rgba(220, 38, 38, 0.18);
  color: #fecaca;
  border: 1px solid rgba(248, 113, 113, 0.7);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  font-size: 0.88rem;
}

.faq-item {
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0.7rem 0.75rem;
  background: rgba(15, 23, 42, 0.95);
}

.faq-q {
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.faq-a {
  color: #9ca3af;
}

.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  margin-top: 2.5rem;
  padding: 1rem var(--page-pad) 1.5rem;
  font-size: 0.82rem;
  color: #6b7280;
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 0.8rem;
}

.footer-links a {
  color: #9ca3af;
}

.footer-links a:hover {
  color: #e5e7eb;
}

@media (max-width: 960px) {
  .segment-teaser-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: clamp(2rem, 5vw, 2.75rem);
    gap: 2rem;
  }

  .hero-right {
    order: -1;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-links-desktop {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

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

  .pricing-tiers {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .section {
    padding-inline: var(--page-pad);
  }
}

