:root {
  --forest-950: #06150d;
  --forest-900: #0f2e1e;
  --forest-800: #123923;
  --forest-700: #166534;
  --forest-600: #16803c;
  --green-500: #22c55e;
  --mint-300: #a7f3d0;
  --mint-100: #dcfce7;
  --stone-950: #0f1720;
  --stone-800: #1f2937;
  --stone-700: #374151;
  --stone-600: #4b5563;
  --stone-500: #6b7280;
  --stone-300: #d1d5db;
  --stone-200: #e5e7eb;
  --stone-100: #f3f4f6;
  --stone-50: #f8faf8;
  --white: #ffffff;
  --amber: #f59e0b;
  --shadow-sm: 0 1px 2px rgba(15, 46, 30, 0.08);
  --shadow-md: 0 18px 48px rgba(15, 46, 30, 0.12);
  --shadow-lg: 0 26px 80px rgba(15, 46, 30, 0.22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    'Plus Jakarta Sans',
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: var(--stone-950);
  background: var(--stone-50);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
p {
  margin: 0 0 1rem;
  color: var(--stone-600);
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--forest-950);
}
h1 {
  font-size: clamp(3rem, 7vw, 6.6rem);
  max-width: 980px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}
h3 {
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}
.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.section {
  padding: 96px 0;
}
.section-pad {
  padding: 128px 0 88px;
}
.section-muted {
  background: linear-gradient(180deg, #ffffff 0%, #f1f8f2 100%);
  border-top: 1px solid rgba(15, 46, 30, 0.08);
  border-bottom: 1px solid rgba(15, 46, 30, 0.08);
}
.section-dark {
  background:
    radial-gradient(circle at 20% 0%, rgba(34, 197, 94, 0.28), transparent 32%),
    linear-gradient(135deg, var(--forest-950), var(--forest-900));
  color: var(--white);
}
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}
.section-dark p {
  color: rgba(255, 255, 255, 0.76);
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  z-index: 999;
  background: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.skip-link:focus {
  left: 16px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 248, 0.76);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(15, 46, 30, 0.08);
  transition:
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(15, 46, 30, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--forest-900);
  letter-spacing: -0.03em;
  font-size: 1.04rem;
}
.brand img {
  filter: drop-shadow(0 8px 18px rgba(15, 46, 30, 0.12));
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 46, 30, 0.08);
  border-radius: 999px;
  padding: 5px;
  box-shadow: var(--shadow-sm);
}
.nav-link {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--stone-600);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  background: var(--forest-900);
  color: var(--white);
}
.nav-link-login {
  margin-left: 4px;
  background: var(--forest-900);
  color: var(--white);
  font-weight: 800;
}
.nav-link-login:hover {
  background: var(--forest-700);
  color: var(--white);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 17px;
  border-radius: 999px;
  background: var(--forest-900);
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 12px 30px rgba(15, 46, 30, 0.16);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 46, 30, 0.12);
  background: var(--white);
  border-radius: 999px;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--forest-900);
  margin: 5px 0;
  border-radius: 999px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-700);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.eyebrow span {
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-500);
}
.eyebrow.light {
  color: var(--mint-300);
}
.lead {
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  color: var(--stone-600);
  max-width: 720px;
}
.hero {
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(167, 243, 208, 0.55),
      transparent 30%
    ),
    radial-gradient(circle at 88% 8%, rgba(34, 197, 94, 0.2), transparent 28%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto -16% -28% 30%;
  height: 420px;
  background: radial-gradient(circle, rgba(22, 101, 52, 0.13), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy h1 {
  margin-bottom: 24px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  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(--forest-900), var(--forest-700));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(15, 46, 30, 0.24);
}
.btn-secondary {
  background: var(--white);
  color: var(--forest-900);
  border-color: rgba(15, 46, 30, 0.12);
  box-shadow: var(--shadow-sm);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}
.trust-row span,
.tag-cloud span {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(15, 46, 30, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--forest-800);
  font-size: 0.82rem;
  font-weight: 800;
}
.hero-visual {
  min-width: 0;
}
.app-shell {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 46, 30, 0.12);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(1.2deg);
}
.app-top {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(15, 46, 30, 0.08);
  padding: 14px 16px;
  background: linear-gradient(180deg, #fff, #f7fbf8);
}
.traffic {
  display: flex;
  gap: 6px;
}
.traffic i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--stone-300);
}
.traffic i:nth-child(2) {
  background: var(--amber);
}
.traffic i:nth-child(3) {
  background: var(--green-500);
}
.ask-bar {
  flex: 1;
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--forest-950);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 700;
}
.app-layout {
  display: grid;
  grid-template-columns: 128px 1fr;
  min-height: 450px;
}
.app-layout aside {
  padding: 18px 14px;
  background: rgba(15, 46, 30, 0.04);
  border-right: 1px solid rgba(15, 46, 30, 0.08);
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.app-layout aside b,
.app-layout aside span {
  padding: 9px 10px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--stone-600);
}
.app-layout aside b {
  background: var(--forest-900);
  color: var(--white);
}
.app-main {
  padding: 18px;
  display: grid;
  gap: 16px;
}
.status-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.status-strip div,
.feed div {
  background: #fff;
  border: 1px solid rgba(15, 46, 30, 0.08);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow-sm);
}
.status-strip strong {
  display: block;
  font-size: 1.55rem;
  color: var(--forest-900);
  letter-spacing: -0.05em;
}
.status-strip span {
  color: var(--stone-500);
  font-size: 0.73rem;
  font-weight: 800;
}
.route-card {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 16px;
  background: linear-gradient(135deg, var(--forest-900), #19492d);
  border-radius: 24px;
  padding: 18px;
  color: var(--white);
}
.route-card h3 {
  color: var(--white);
  margin: 4px 0 8px;
}
.route-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}
.mini-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mint-300) !important;
  font-size: 0.65rem !important;
  font-weight: 900;
  margin-bottom: 0;
}
.map-card {
  min-height: 150px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(167, 243, 208, 0.44),
    rgba(255, 255, 255, 0.1)
  );
  position: relative;
  overflow: hidden;
}
.map-card::before,
.map-card::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transform: rotate(-22deg);
}
.map-card::before {
  width: 240px;
  height: 60px;
  left: -48px;
  top: 45px;
  border-radius: 999px;
}
.map-card::after {
  width: 190px;
  height: 72px;
  left: 24px;
  bottom: 6px;
  border-radius: 999px;
}
.map-card span {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 3px solid var(--white);
  background: var(--green-500);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.18);
}
.map-card span:nth-child(1) {
  top: 32px;
  left: 38px;
}
.map-card span:nth-child(2) {
  top: 80px;
  right: 42px;
}
.map-card span:nth-child(3) {
  bottom: 35px;
  left: 72px;
}
.feed {
  display: grid;
  gap: 12px;
}
.feed b {
  display: block;
  color: var(--forest-900);
  font-size: 0.9rem;
}
.feed p {
  margin: 4px 0 0;
  font-size: 0.82rem;
}
.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}
.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-heading.narrow {
  max-width: 680px;
}
.section-heading p {
  font-size: 1.08rem;
  margin-top: 16px;
}
.card-grid {
  display: grid;
  gap: 18px;
}
.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 46, 30, 0.1);
  border-radius: var(--radius-md);
  padding: 25px;
  box-shadow: var(--shadow-sm);
}
.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mint-100);
  color: var(--forest-700);
  font-weight: 900;
  margin-bottom: 20px;
}
.card h3 {
  margin-bottom: 10px;
}
.card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 64px;
  align-items: center;
}
.split.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}
.split > div > p {
  font-size: 1.05rem;
}
.text-link {
  color: var(--forest-700);
  font-weight: 900;
}
.workflow-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  counter-reset: item;
}
.workflow-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 16px;
  background: var(--white);
  border: 1px solid rgba(15, 46, 30, 0.1);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.workflow-list span {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest-900);
  color: var(--mint-300);
  font-weight: 900;
  font-size: 0.76rem;
}
.workflow-list b {
  color: var(--forest-950);
  font-size: 1.02rem;
}
.workflow-list p {
  grid-column: 2;
  margin: 3px 0 0;
  font-size: 0.92rem;
}
.ai-panel,
.command-card,
.principle-card,
.stat-card,
.contact-card,
.fit-card {
  border: 1px solid rgba(15, 46, 30, 0.1);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 30px;
  box-shadow: var(--shadow-md);
}
.section-dark .ai-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}
.ai-bubble,
.ai-response {
  padding: 18px 20px;
  border-radius: 22px;
  margin-bottom: 14px;
  font-weight: 700;
}
.ai-bubble {
  background: rgba(167, 243, 208, 0.14);
  color: var(--mint-300);
  border: 1px solid rgba(167, 243, 208, 0.28);
}
.ai-response {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.role-grid,
.use-case-grid,
.belief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.role-grid div,
.use-case-grid div,
.belief-grid div {
  background: var(--white);
  border: 1px solid rgba(15, 46, 30, 0.1);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.role-grid b,
.use-case-grid b,
.belief-grid b {
  color: var(--forest-900);
  display: block;
  margin-bottom: 8px;
}
.section-dark .use-case-grid div {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}
.cta-section {
  padding: 42px 0 96px;
}
.cta-card {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 36px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ffffff, #eef9f1);
  border: 1px solid rgba(15, 46, 30, 0.1);
  box-shadow: var(--shadow-md);
}
.cta-card p {
  max-width: 680px;
  margin-top: 10px;
}
.page-hero {
  padding: 110px 0 74px;
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(167, 243, 208, 0.55),
      transparent 34%
    ),
    linear-gradient(180deg, #f8faf8, #ffffff);
  border-bottom: 1px solid rgba(15, 46, 30, 0.08);
}
.page-hero-inner p {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 820px;
  margin-top: 20px;
}
.feature-stack {
  display: grid;
  gap: 24px;
}
.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
  gap: 30px;
  align-items: start;
  background: var(--white);
  border: 1px solid rgba(15, 46, 30, 0.1);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.feature-number {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--green-500);
  font-weight: 900;
  letter-spacing: 0.14em;
}
.feature-row p {
  margin-top: 12px;
  max-width: 680px;
}
.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--stone-700);
  font-weight: 650;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--mint-100);
  border: 1px solid rgba(22, 101, 52, 0.18);
}
.check-list li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 0.68em;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--forest-700);
  border-bottom: 2px solid var(--forest-700);
  transform: rotate(-45deg);
}
.command-input {
  border-radius: 999px;
  padding: 15px 18px;
  background: var(--forest-950);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  margin-bottom: 16px;
}
.command-result {
  border-radius: 20px;
  background: var(--stone-50);
  border: 1px solid rgba(15, 46, 30, 0.08);
  padding: 18px;
}
.command-result b {
  color: var(--forest-900);
}
.persona-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.persona-list article {
  padding: 24px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(15, 46, 30, 0.1);
  box-shadow: var(--shadow-sm);
}
.persona-list h3 {
  margin-bottom: 8px;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.timeline {
  display: grid;
  gap: 16px;
}
.timeline article {
  display: grid;
  grid-template-columns: 76px 220px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(15, 46, 30, 0.1);
  box-shadow: var(--shadow-sm);
}
.timeline span {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--forest-900);
  color: var(--mint-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.timeline h2 {
  font-size: 1.35rem;
}
.stat-card b {
  display: block;
  color: var(--forest-900);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pricing-card {
  border-radius: 30px;
  background: var(--white);
  border: 1px solid rgba(15, 46, 30, 0.1);
  box-shadow: var(--shadow-sm);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pricing-card h2 {
  font-size: 2rem;
}
.pricing-card p {
  margin: 0;
}
.pricing-card .plan {
  color: var(--forest-700);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 900;
}
.pricing-card .btn {
  margin-top: auto;
}
.pricing-card.featured {
  background: linear-gradient(135deg, var(--forest-950), var(--forest-900));
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}
.pricing-card.featured h2,
.pricing-card.featured .plan {
  color: var(--white);
}
.pricing-card.featured p,
.pricing-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}
.pricing-card.featured .check-list li::before {
  background: rgba(167, 243, 208, 0.18);
  border-color: rgba(167, 243, 208, 0.28);
}
.pricing-card.featured .check-list li::after {
  border-color: var(--mint-300);
}
.faq {
  max-width: 860px;
}
details {
  background: var(--white);
  border: 1px solid rgba(15, 46, 30, 0.1);
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
summary {
  cursor: pointer;
  color: var(--forest-900);
  font-weight: 900;
}
details p {
  margin: 12px 0 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}
.email-link {
  display: inline-flex;
  color: var(--forest-700);
  font-weight: 900;
  font-size: 1.08rem;
  margin: 8px 0 16px;
}
.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(15, 46, 30, 0.12);
  background: var(--white);
  color: var(--forest-900);
  font-weight: 800;
  cursor: pointer;
  padding: 0 16px;
}
.contact-form {
  background: var(--white);
  border: 1px solid rgba(15, 46, 30, 0.1);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--forest-900);
  font-weight: 850;
}
input,
textarea {
  width: 100%;
  border: 1px solid rgba(15, 46, 30, 0.14);
  background: var(--stone-50);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--stone-950);
  outline: none;
}
input:focus,
textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.13);
}
.form-note {
  font-size: 0.86rem;
  margin: 0;
}
.fit-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}
.columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.legal-wrap {
  max-width: 840px;
  background: var(--white);
  border: 1px solid rgba(15, 46, 30, 0.1);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.legal-wrap h2 {
  font-size: 1.28rem;
  margin: 28px 0 10px;
}
.legal-note {
  background: var(--stone-50);
  border: 1px solid rgba(15, 46, 30, 0.1);
  border-radius: 14px;
  padding: 14px;
  font-weight: 700;
}
.site-footer {
  background: var(--forest-950);
  color: var(--white);
  padding: 62px 0 28px;
}
.site-footer p,
.site-footer a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
}
.site-footer a:hover {
  color: var(--mint-300);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.7fr);
  gap: 44px;
}
.brand-footer {
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p {
  max-width: 340px;
}
.site-footer h2 {
  color: var(--white);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.site-footer div > a {
  display: block;
  margin-bottom: 10px;
  font-weight: 650;
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.9rem;
}
@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }
  .site-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.97);
  }
  .site-nav.open {
    display: flex;
  }
  .nav-link {
    height: 44px;
    justify-content: center;
  }
  .nav-toggle {
    display: block;
  }
  .hero-grid,
  .split,
  .split.reverse,
  .contact-grid,
  .fit-card {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    gap: 44px;
  }
  .app-shell {
    transform: none;
  }
  .card-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-row,
  .timeline article {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }
  .section {
    padding: 72px 0;
  }
  .section-pad {
    padding: 98px 0 68px;
  }
  .page-hero {
    padding: 82px 0 54px;
  }
  h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }
  .hero-actions,
  .cta-card,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
  }
  .card-grid.three,
  .card-grid.four,
  .role-grid,
  .use-case-grid,
  .belief-grid,
  .persona-list,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
  .app-layout {
    grid-template-columns: 1fr;
  }
  .app-layout aside {
    display: none;
  }
  .route-card {
    grid-template-columns: 1fr;
  }
  .status-strip {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .columns {
    grid-template-columns: 1fr;
  }
}
@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;
  }
}
