:root {
  --navy: #0f172a;
  --text: #1e293b;
  --muted: #64748b;
  --orange: #f97316;
  --orange-soft: #fff7ed;
  --sky: #0ea5e9;
  --blue-soft: #eff6ff;
  --bg: #f8fafc;
  --card: #ffffff;
  --border: #e2e8f0;
  --success: #10b981;
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 50px rgba(15, 23, 42, 0.1);
  --radius: 8px;
  --max: 1160px;
  --header-height: 74px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

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

a:hover {
  color: var(--orange);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--sky));
}

.announcement {
  background: var(--navy);
  color: #fff;
  font-size: 0.9rem;
}

.announcement-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 9px 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.announcement-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.16);
  flex: 0 0 auto;
}

.announcement-text {
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(248, 250, 252, 0.84);
  border-bottom: 1px solid rgba(226, 232, 240, 0.78);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.nav-inner {
  max-width: var(--max);
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #1d4ed8 58%, var(--orange));
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.16);
}

.brand span {
  display: block;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.72rem;
  margin-top: 3px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-link,
.mega-trigger {
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 10px 12px;
  border-radius: var(--radius);
  font-weight: 650;
  line-height: 1;
}

.nav-link:hover,
.nav-link.is-active,
.mega-trigger:hover,
.mega-trigger[aria-expanded="true"] {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: var(--orange);
  color: #fff;
  font-weight: 750;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(249, 115, 22, 0.25);
}

.btn[disabled],
.btn[aria-disabled="true"] {
  opacity: 0.62;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn.secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--border);
  box-shadow: none;
}

.btn.secondary:hover {
  color: var(--navy);
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.btn.ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
  box-shadow: none;
}

.btn.small {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 0.92rem;
}

.desktop-cta {
  display: none;
}

.mobile-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy);
  display: inline-grid;
  place-items: center;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
  position: relative;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
  transition: transform 0.2s ease, top 0.2s ease;
}

.mobile-toggle span::before {
  top: -6px;
}

.mobile-toggle span::after {
  top: 6px;
}

.mobile-toggle[aria-expanded="true"] span {
  background: transparent;
}

.mobile-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px 22px;
  display: grid;
  gap: 8px;
}

.mobile-panel a,
.mobile-panel button {
  width: 100%;
  justify-content: space-between;
  text-align: left;
}

.mega-menu {
  display: none;
}

.mega-menu.is-open {
  display: block;
}

.mobile-mega {
  display: none;
  padding: 8px 0 8px 12px;
  border-left: 2px solid var(--border);
}

.mobile-mega.is-open {
  display: grid;
  gap: 10px;
}

.mega-column h3,
.mobile-mega h3 {
  margin: 0 0 9px;
  font-size: 0.84rem;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.mega-list {
  display: grid;
  gap: 8px;
}

.mega-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border-radius: var(--radius);
  color: var(--text);
}

.mega-list a:hover {
  background: var(--bg);
  color: var(--navy);
}

main {
  overflow: clip;
}

.section {
  padding: 72px 20px;
}

.section.compact {
  padding: 42px 20px;
}

.section.white {
  background: #fff;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  min-width: 0;
}

.narrow {
  max-width: 820px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-weight: 750;
  font-size: 0.82rem;
}

.section-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
  min-width: 0;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 4.6rem);
}

h1,
h2,
h3,
p,
.lead,
.btn,
.badge,
.card-link {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 4vw, 3rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

p {
  margin: 0 0 16px;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

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

.hero {
  position: relative;
  padding: 64px 20px 72px;
  background:
    linear-gradient(135deg, rgba(239, 246, 255, 0.92), rgba(255, 247, 237, 0.82) 48%, rgba(248, 250, 252, 1));
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 38px;
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 4.6vw, 3.75rem);
  line-height: 1.08;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 18px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.96rem;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
}

.hero-visual {
  min-height: 500px;
  position: relative;
  display: grid;
  align-items: center;
}

.hero-slider {
  position: relative;
  width: min(100%, 560px);
  height: clamp(460px, 42vw, 540px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.18);
  isolation: isolate;
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 4;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: calc(var(--radius) - 2px);
}

.hero-slider::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 5;
  width: 78px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.3);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition: opacity 0.7s ease, visibility 0.7s ease, transform 1.1s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.12) 0%, rgba(15, 23, 42, 0.22) 42%, rgba(15, 23, 42, 0.86) 100%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.54), transparent 55%);
}

.hero-slide-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 70px;
  z-index: 3;
  max-width: 390px;
  color: #fff;
}

.hero-slide-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.94);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
}

.hero-slide-title {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(1.72rem, 4vw, 2.45rem);
  line-height: 1.05;
  font-weight: 900;
}

.hero-slide-content p {
  max-width: 340px;
  margin-bottom: 14px;
  color: #e2e8f0;
  font-weight: 650;
}

.hero-slide-content a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-weight: 850;
}

.hero-slide-content a:hover {
  color: #fed7aa;
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.58);
  color: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.2);
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.hero-slider-arrow:hover,
.hero-slider-arrow:focus-visible {
  background: var(--orange);
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-50%) scale(1.04);
}

.hero-slider-prev {
  left: 18px;
}

.hero-slider-next {
  right: 18px;
}

.hero-slider-dots {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  transition: width 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-slider-dots button.is-active {
  width: 30px;
  background: var(--orange);
  border-color: var(--orange);
}

.workspace-mark {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--navy);
  color: #fff;
  font-weight: 850;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
}

.grid {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.grid-2,
.grid-3,
.grid-4 {
  grid-template-columns: 1fr;
}

.card {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(14, 165, 233, 0.28);
}

.card.no-hover:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.icon-bubble {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  display: inline-grid;
  place-items: center;
  color: var(--navy);
  background: var(--blue-soft);
  border: 1px solid #dbeafe;
  flex: 0 0 auto;
}

.icon-bubble.orange {
  background: var(--orange-soft);
  border-color: #fed7aa;
  color: #c2410c;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #0369a1;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.badge.orange {
  background: var(--orange-soft);
  color: #c2410c;
}

.badge.green {
  background: #ecfdf5;
  color: #047857;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 800;
}

.list-check {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.list-check li {
  position: relative;
  padding-left: 25px;
  color: var(--text);
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #ecfdf5;
  border: 1px solid rgba(16, 185, 129, 0.32);
}

.list-check li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.74em;
  width: 5px;
  height: 8px;
  border: solid var(--success);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.service-universe {
  display: grid;
  gap: 34px;
  align-items: center;
}

.universe-cta {
  margin-top: 10px;
  min-height: 46px;
  padding-inline: 18px;
}

.ecosystem-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}

.ecosystem-center,
.ecosystem-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.ecosystem-center {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: linear-gradient(135deg, var(--navy), #1d4ed8);
  color: #fff;
}

.ecosystem-center strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.2;
}

.ecosystem-center small {
  display: block;
  margin-top: 4px;
  color: #cbd5e1;
  font-weight: 650;
}

.ecosystem-center .workspace-mark {
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.22);
}

.ecosystem-card {
  padding: 18px;
  min-height: 180px;
  display: grid;
  gap: 10px;
  align-content: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ecosystem-card:hover {
  transform: translateY(-3px);
  border-color: rgba(249, 115, 22, 0.32);
  box-shadow: var(--shadow-md);
}

.ecosystem-card h3 {
  margin-bottom: 0;
}

.ecosystem-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.core-services-grid .card,
.tools-grid .card {
  min-height: 100%;
}

.service-card,
.tool-card {
  display: flex;
  flex-direction: column;
}

.service-card p,
.tool-card p {
  flex: 1;
}

.service-card .card-link,
.tool-card .card-link {
  margin-top: auto;
}

.service-card:hover,
.tool-card:hover {
  border-color: rgba(249, 115, 22, 0.32);
}

@media (min-width: 700px) {
  .ecosystem-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ecosystem-center {
    grid-column: span 2;
  }
}

@media (min-width: 940px) {
  .ecosystem-visual {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-areas:
      "web web center center brand brand"
      "growth growth center center compliance compliance";
  }

  .ecosystem-center {
    grid-area: center;
    min-height: 376px;
    display: grid;
    justify-items: center;
    align-content: center;
    text-align: center;
  }

  .ecosystem-center .workspace-mark {
    width: 64px;
    height: 64px;
  }

  .pillar-web {
    grid-area: web;
  }

  .pillar-brand {
    grid-area: brand;
  }

  .pillar-growth {
    grid-area: growth;
  }

  .pillar-compliance {
    grid-area: compliance;
  }

  .ecosystem-card {
    min-height: 180px;
  }
}

.founder-note {
  display: grid;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, var(--blue-soft));
  box-shadow: var(--shadow-sm);
}

.avatar {
  width: 88px;
  height: 88px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 850;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: var(--border);
}

.timeline-fill {
  position: absolute;
  left: 19px;
  top: 16px;
  width: 2px;
  height: 0;
  background: linear-gradient(var(--orange), var(--sky));
  transition: height 0.2s linear;
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}

.timeline-number {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--orange);
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.price {
  font-size: 2rem;
  color: var(--navy);
  font-weight: 850;
  line-height: 1.1;
  margin: 8px 0;
}

.price small {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 5px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 54px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-weight: 800;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
}

.faq-icon::before {
  content: "+";
}

.faq-question[aria-expanded="true"] .faq-icon::before {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
}

.faq-answer.is-open {
  display: block;
}

.cta-band {
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--orange-soft), #fff, var(--blue-soft));
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.footer {
  background: var(--navy);
  color: #cbd5e1;
  padding: 58px 20px 28px;
}

.footer .brand {
  color: #fff;
}

.footer .brand small {
  color: #cbd5e1;
}

.footer a:hover {
  color: #fff;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.footer h3 {
  color: #fff;
  font-size: 0.96rem;
  margin-bottom: 12px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-bottom {
  max-width: var(--max);
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(226, 232, 240, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: #94a3b8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--orange);
}

.page-hero {
  padding: 54px 20px 64px;
  background: linear-gradient(135deg, #fff, var(--blue-soft));
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  min-width: 0;
}

.page-hero .lead {
  max-width: 780px;
  margin-top: 18px;
}

.answer-block {
  border-left: 4px solid var(--orange);
  background: #fff;
  border-radius: var(--radius);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.summary-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.summary-table th,
.summary-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.summary-table th {
  color: var(--navy);
  background: var(--bg);
  width: 34%;
}

.summary-table tr:last-child th,
.summary-table tr:last-child td {
  border-bottom: 0;
}

.content-layout {
  display: grid;
  gap: 26px;
  align-items: start;
  min-width: 0;
}

.content-main {
  display: grid;
  gap: 28px;
}

.aside-card {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.toc {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.toc a {
  display: block;
  padding: 9px 10px;
  border-radius: var(--radius);
  color: var(--muted);
}

.toc a:hover {
  background: var(--bg);
  color: var(--navy);
}

.article-body {
  display: grid;
  gap: 28px;
}

.article-body section,
.content-block {
  scroll-margin-top: calc(var(--header-height) + 26px);
}

.article-body h2,
.content-block h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.tool-shell {
  display: grid;
  gap: 22px;
  align-items: start;
  min-width: 0;
}

.tool-form,
.contact-form {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.form-grid {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--navy);
  font-weight: 780;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(14, 165, 233, 0.65);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

.result-card {
  min-width: 0;
  min-height: 132px;
  border: 1px solid rgba(14, 165, 233, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, var(--blue-soft));
  padding: 20px;
}

.result-card h3 {
  margin-bottom: 8px;
}

.result-card .big-result {
  font-size: 1.9rem;
  color: var(--navy);
  font-weight: 850;
  line-height: 1.15;
}

.generated-box {
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px;
  color: var(--text);
}

.mini-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 0.93rem;
}

.mini-table th,
.mini-table td {
  border-bottom: 1px solid var(--border);
  padding: 8px;
  text-align: left;
}

.checklist-tool {
  display: grid;
  gap: 10px;
}

.progress-track {
  height: 10px;
  background: var(--bg);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.progress-track span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--success));
}

.download-placeholder {
  display: grid;
  gap: 12px;
  border: 1px dashed rgba(14, 165, 233, 0.55);
  background: var(--blue-soft);
  border-radius: var(--radius);
  padding: 22px;
}

.doc-preview {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.doc-preview-header {
  padding: 14px 16px;
  background: var(--navy);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.doc-lines {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.doc-line {
  height: 12px;
  border-radius: 999px;
  background: var(--bg);
}

.doc-line.short {
  width: 62%;
}

.demo-frame {
  min-height: 170px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(14, 165, 233, 0.1), transparent),
    repeating-linear-gradient(135deg, #fff, #fff 14px, #f8fafc 14px, #f8fafc 28px);
  padding: 18px;
  display: grid;
  align-content: end;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: #fff;
  font-size: 0.84rem;
  font-weight: 720;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  display: none;
  place-items: center;
}

.back-to-top.is-visible {
  display: grid;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 700px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .founder-note {
    grid-template-columns: auto 1fr;
  }
}

@media (min-width: 940px) {
  .hero-grid {
    grid-template-columns: 1.02fr 0.98fr;
  }

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

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

  .service-universe {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .content-layout {
    grid-template-columns: minmax(0, 1fr) 310px;
  }

  .tool-shell {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .footer-grid {
    grid-template-columns: 1.25fr repeat(5, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (min-width: 1040px) {
  .nav-links,
  .desktop-cta {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }

  .mega-menu {
    position: absolute;
    left: 50%;
    top: calc(100% + 12px);
    transform: translateX(-50%) translateY(8px);
    width: min(860px, calc(100vw - 40px));
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .mega-menu.is-open,
  .nav-item:hover .mega-menu {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 1039px) {
  .mobile-panel.is-open {
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.08);
  }

  .mobile-mega {
    max-height: 56vh;
    overflow-y: auto;
  }

  .mega-list a {
    min-height: 38px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px 70px;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 8vw, 3.25rem);
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-slider {
    width: min(100%, 500px);
    height: clamp(380px, 66vw, 440px);
  }

  .service-universe {
    gap: 26px;
  }

  .card,
  .ecosystem-card,
  .tool-card,
  .service-card {
    overflow-wrap: anywhere;
  }

  .footer-grid {
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 54px 18px;
  }

  h1 {
    font-size: 2.18rem;
    line-height: 1.18;
    overflow-wrap: break-word;
  }

  .page-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.12rem);
  }

  .hero-copy h1 {
    font-size: 2.18rem;
    line-height: 1.18;
  }

  .lead {
    font-size: 1rem;
  }

  .announcement-inner {
    flex-wrap: wrap;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .announcement-text {
    max-width: 290px;
    text-align: center;
  }

  .hero {
    padding: 52px 18px 62px;
  }

  .page-hero {
    padding: 42px 18px 52px;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy h1,
  .hero-copy .lead {
    max-width: 330px;
  }

  .hero-actions,
  .trust-line,
  .hero-slider {
    max-width: calc(100vw - 36px);
  }

  .trust-line {
    display: grid;
    gap: 6px;
  }

  .trust-line span[aria-hidden="true"] {
    display: none;
  }

  .hero-slider {
    width: 100%;
    height: clamp(320px, 88vw, 360px);
  }

  .hero-slider::before {
    inset: 10px;
  }

  .hero-slider::after {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 5px;
  }

  .hero-slider-arrow {
    display: none;
  }

  .hero-slide-content {
    left: 20px;
    right: 20px;
    bottom: 58px;
  }

  .hero-slide-title {
    font-size: 1.62rem;
  }

  .hero-slide-content p {
    max-width: 270px;
    margin-bottom: 10px;
    font-size: 0.94rem;
  }

  .hero-slider-dots {
    left: 20px;
    bottom: 20px;
  }

  .ecosystem-center {
    align-items: flex-start;
  }

  .summary-table th,
  .summary-table td {
    display: block;
    width: 100%;
  }

  .summary-table th {
    border-bottom: 0;
    padding-bottom: 5px;
  }

  .summary-table td {
    padding-top: 5px;
  }
}
