:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #eef3f8;
  --ink: #07111f;
  --ink-2: #111827;
  --muted: #5d6b7c;
  --line: #d9e2ec;
  --dark: #05070b;
  --dark-2: #0b1220;
  --blue: #10a8f2;
  --blue-dark: #0073d8;
  --blue-soft: #e8f6ff;
  --shadow: 0 24px 70px rgba(7, 17, 31, 0.12);
  --shadow-soft: 0 14px 34px rgba(7, 17, 31, 0.08);
  --shadow-deep: 0 32px 90px rgba(7, 17, 31, 0.18);
  --surface-glow: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 253, 0.9));
  --surface-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(7, 17, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 31, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(178px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 12px clamp(18px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(217, 226, 236, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 178px;
  height: auto;
}

.brand-subline {
  max-width: 126px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.15;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  justify-self: center;
  padding: 4px;
  border: 1px solid rgba(217, 226, 236, 0.9);
  border-radius: 999px;
  background: rgba(245, 247, 251, 0.82);
  color: var(--muted);
  font-size: clamp(0.74rem, 0.68vw, 0.9rem);
  font-weight: 700;
}

@media (max-width: 1700px) {
  .site-header {
    grid-template-columns: minmax(178px, 1fr) auto minmax(150px, 1fr);
    gap: 12px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-subline {
    display: none;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.86rem;
  }
}

.site-nav a,
.site-footer a {
  text-decoration: none;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 clamp(8px, 0.62vw, 13px);
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--blue);
}

.site-nav a:hover {
  background: white;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(7, 17, 31, 0.14);
}

.menu-toggle,
.mobile-menu-cta {
  display: none;
}

.site-nav .mobile-menu-cta {
  display: none;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.section {
  padding: 86px max(18px, calc((100vw - var(--max)) / 2));
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.03;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(3.6rem, 4.1vw, 4.75rem);
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.2rem;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  font-weight: 900;
}

h4 {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.hero-brand {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  column-gap: 58px;
  row-gap: 30px;
  min-height: calc(100vh - 70px);
  padding-top: 78px;
  padding-bottom: 78px;
  color: white;
  background:
    radial-gradient(circle at 78% 18%, rgba(16, 168, 242, 0.22), transparent 34%),
    linear-gradient(135deg, #05070b 0%, #0b1220 58%, #0d1b2d 100%);
  perspective: 1200px;
}

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

.hero-head {
  grid-column: 1 / -1;
  max-width: 1220px;
}

.hero h1 {
  max-width: 1220px;
  color: white;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 18px;
  color: #d8e4ef;
  font-size: 1.28rem;
}

.hero-claim {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 10px 14px;
  border: 1px solid rgba(125, 216, 255, 0.28);
  border-radius: var(--radius);
  color: #dff5ff;
  background: rgba(16, 168, 242, 0.1);
  font-size: 1rem;
  font-weight: 900;
}

.hero-note {
  max-width: 760px;
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(125, 216, 255, 0.2);
  border-radius: var(--radius);
  color: #bed2e2;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.94rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

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

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent 42%);
  opacity: 0.55;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(145deg, #1189e6 0%, #0066c2 56%, #004f99 100%);
  box-shadow: 0 16px 34px rgba(0, 115, 216, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button-primary:hover {
  background: linear-gradient(145deg, #1695f7 0%, #006dcc 58%, #0056a8 100%);
  box-shadow: 0 22px 42px rgba(0, 115, 216, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 12px 28px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.subhero .button-secondary,
.cta-band .button-secondary {
  color: white;
}

.hero-points,
.example-list,
.price-card ul {
  padding: 0;
  list-style: none;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 14px;
  row-gap: 12px;
  max-width: 760px;
  margin: 0;
}

.hero-points li,
.example-list div {
  position: relative;
  padding: 13px 14px 13px 38px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  color: #dbe8f4;
  background: var(--surface-glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 14px 34px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.hero-points li::before,
.example-list div::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.quick-answer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
  gap: 20px;
  max-width: 1120px;
  margin: 24px 0 28px;
}

.quick-answer div {
  position: relative;
  overflow: hidden;
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(125, 216, 255, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.quick-answer div::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 38%);
  pointer-events: none;
}

.quick-answer span {
  display: block;
  margin-bottom: 8px;
  color: #77d7ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quick-answer strong {
  display: block;
  color: white;
  font-size: clamp(0.86rem, 0.82vw, 0.94rem);
  line-height: 1.3;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(125, 216, 255, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  transform: rotateX(2deg) rotateY(-3deg) translateZ(0);
  transform-style: preserve-3d;
}

.hero-panel::before {
  content: "";
  position: absolute;
  top: -22%;
  left: -18%;
  width: 62%;
  height: 70%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 70%);
  transform: rotate(-12deg);
  pointer-events: none;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  color: #aebdca;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workflow-stack {
  display: grid;
  gap: 12px;
}

.workflow-stack div {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(5, 7, 11, 0.72), rgba(13, 27, 45, 0.52));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 14px 30px rgba(0, 0, 0, 0.16);
}

.workflow-stack span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: #001826;
  background: var(--blue);
  font-weight: 900;
}

.workflow-stack strong {
  color: white;
}

.workflow-stack p,
.mini-output strong {
  margin: 0;
  color: #c6d3df;
}

.mini-output {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(5, 7, 11, 0.48);
}

.mini-output span {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
}

.mini-output span:nth-child(1) {
  width: 88%;
}

.mini-output span:nth-child(2) {
  width: 62%;
}

.mini-output span:nth-child(3) {
  width: 74%;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.problem-section {
  background: var(--surface);
}

.problem-section .section-heading {
  max-width: 960px;
}

.example-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.problem-section .example-list div {
  color: var(--ink);
  border-color: var(--line);
  background: linear-gradient(145deg, #ffffff, #edf4fb);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.deliverables,
.tool-section,
.advisory-section {
  background: #edf2f7;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.deliverables-grid article,
.info-card,
.steps article,
.price-card,
.task-form,
details {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-glow);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.deliverables-grid article::before,
.info-card::before,
.steps article::before,
.price-card::before,
.task-form::before,
details::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), transparent 36%);
  opacity: 0.58;
  pointer-events: none;
}

.deliverables-grid article,
.info-card,
.steps article,
.price-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.deliverables-grid article:hover,
.info-card:hover,
.steps article:hover,
.price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 168, 242, 0.26);
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.deliverables-grid article {
  min-height: 150px;
  padding: 22px 20px;
}

.deliverables-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.deliverables-grid h3 {
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.05vw, 1.22rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
  hyphens: auto;
}

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

.license-section {
  background: var(--surface);
}

.private-ai-section {
  color: white;
  background:
    linear-gradient(145deg, #05070b 0%, #0b1220 52%, #092d49 100%);
}

.private-ai-section h2,
.private-ai-section h3 {
  color: white;
}

.private-ai-section .section-heading p:not(.eyebrow) {
  color: #d8e4ef;
}

.private-ai-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.private-ai-card {
  color: white;
  border-color: rgba(125, 216, 255, 0.2);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.private-ai-card p,
.private-ai-card li {
  color: #d8e4ef;
}

.private-ai-card .button-primary,
.info-card .button-primary,
.article-card .button-primary,
.article-side-card .button-primary,
.article-cta .button-primary {
  color: #fff;
  text-decoration: none;
}

.tool-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tool-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(148, 163, 184, 0.38);
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(145deg, #ffffff, #eff6ff);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(7, 17, 31, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.brand-disclaimer {
  max-width: 820px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.tool-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.tool-checkboxes legend {
  padding: 0 6px;
  color: var(--ink);
  font-weight: 900;
}

.tool-checkboxes label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  font-weight: 800;
}

.tool-checkboxes input {
  width: 18px;
  height: 18px;
}

.pricing,
.process,
.faq {
  background: white;
}

.pricing-grid,
.cards-grid,
.steps {
  display: grid;
  gap: 18px;
}

.pricing-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  grid-column: span 2;
  padding: 58px 26px 26px;
}

.price-card:nth-last-child(-n + 2) {
  grid-column: span 3;
}

.price-card.featured {
  border-color: rgba(16, 168, 242, 0.5);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(230, 245, 255, 0.92));
  box-shadow: 0 30px 86px rgba(0, 115, 216, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.badge {
  position: absolute;
  top: 22px;
  right: 26px;
  max-width: calc(100% - 52px);
  padding: 5px 10px;
  border-radius: 999px;
  color: #003a63;
  background: var(--blue-soft);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.package {
  margin-bottom: 6px;
  color: var(--blue-dark);
  font-size: 1rem;
  font-weight: 900;
}

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

.price-line {
  display: grid;
  gap: 3px;
  max-width: 100%;
  font-size: clamp(2.15rem, 2.75vw, 3.05rem);
  line-height: 0.94;
}

.price-line span {
  white-space: nowrap;
}

.price-line small {
  display: block;
  color: #475569;
  font-size: clamp(1.12rem, 1.35vw, 1.4rem);
  font-weight: 900;
  line-height: 1.05;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
}

.price-card li {
  position: relative;
  padding-left: 20px;
  color: #334155;
}

.price-card li::before {
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.price-note {
  max-width: 980px;
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 800;
}

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

.info-card,
.steps article {
  padding: 24px;
}

.info-card span {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.info-card a,
.internal-links a {
  color: var(--blue-dark);
  text-decoration: none;
}

.info-card a:hover,
.internal-links a:hover {
  text-decoration: underline;
}

.info-card p,
.steps p,
.faq p {
  color: var(--muted);
}

.info-card h2,
.info-card h3,
.steps h3 {
  font-size: clamp(1.5rem, 1.85vw, 2rem);
  line-height: 1.06;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.cards-grid .info-card h2 {
  font-size: clamp(1.65rem, 1.95vw, 2.15rem);
}

.private-ai-card h3 {
  font-size: clamp(1.45rem, 1.7vw, 1.85rem);
}

.click-card {
  cursor: pointer;
}

.click-card > :not(.card-cover) {
  position: relative;
  z-index: 1;
}

.click-card h2,
.click-card h3 {
  color: var(--blue-dark);
}

.card-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
}

.card-cover:focus-visible {
  outline: 3px solid rgba(16, 168, 242, 0.45);
  outline-offset: 4px;
}

.card-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.card-list li {
  position: relative;
  padding-left: 18px;
}

.card-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(16, 168, 242, 0.1);
}

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

.steps span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: white;
  background: var(--ink);
  font-weight: 900;
}

.no-call {
  margin: 28px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(16, 168, 242, 0.22);
  border-radius: var(--radius);
  color: #003a63;
  background: var(--blue-soft);
  font-weight: 900;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  color: white;
  background:
    radial-gradient(circle at 88% 12%, rgba(16, 168, 242, 0.23), transparent 34%),
    var(--dark-2);
}

.cta-band h2 {
  color: white;
}

.cta-band p:not(.eyebrow) {
  max-width: 760px;
  color: #dbe5f0;
}

.legal-strip {
  padding-top: 36px;
  padding-bottom: 36px;
  background: #edf2f7;
}

.legal-strip p {
  max-width: 980px;
  margin: 0;
  color: var(--muted);
}

.subhero {
  color: white;
  background:
    radial-gradient(circle at 88% 12%, rgba(16, 168, 242, 0.22), transparent 34%),
    var(--dark-2);
}

.subhero h1 {
  color: white;
  max-width: 1080px;
  font-size: clamp(3.1rem, 4.6vw, 4.85rem);
}

.subhero h1,
.subhero p {
  max-width: 980px;
}

.subhero p {
  color: #dbe5f0;
  font-size: 1.2rem;
}

.soft-section {
  background: #edf2f7;
}

.article {
  max-width: 980px;
  margin: 0 auto;
  font-size: 1.06rem;
  line-height: 1.75;
}

.article-shell {
  background: #edf2f7;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(250px, 320px);
  gap: 34px;
  width: min(100%, var(--max));
  margin: 0 auto;
  align-items: start;
}

.article-main {
  display: grid;
  gap: 20px;
  min-width: 0;
  font-size: 1.08rem;
  line-height: 1.75;
}

.article-card,
.article-side-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: var(--radius);
  background: var(--surface-glow);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.article-card::before,
.article-side-card::before,
.article-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.54), transparent 36%);
  pointer-events: none;
}

.article-card h2,
.article-side-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 2.1vw, 2.35rem);
  overflow-wrap: anywhere;
  hyphens: auto;
}

.article-card p,
.article-card li,
.article-side-card p {
  color: #334155;
}

.article-intro {
  padding: 34px;
  color: white;
  background:
    linear-gradient(145deg, rgba(6, 18, 33, 0.96), rgba(9, 45, 73, 0.92));
  border-color: rgba(125, 216, 255, 0.2);
  box-shadow: 0 28px 80px rgba(7, 17, 31, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.article-intro .article-lead {
  margin: 0;
  color: #e6f2fb;
  font-size: clamp(1.12rem, 1.25vw, 1.3rem);
}

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

.article-list li {
  position: relative;
  padding-left: 24px;
}

.article-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(16, 168, 242, 0.1);
}

.article-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 16px;
}

.article-side-card {
  padding: 24px;
}

.article-side-card h2,
.article-side-cta h2 {
  font-size: 1.35rem;
  line-height: 1.1;
}

.article-side-links {
  display: grid;
  gap: 10px;
}

.article-side-links a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 115, 216, 0.14);
  border-radius: var(--radius);
  color: var(--blue-dark);
  background: rgba(232, 246, 255, 0.72);
  text-decoration: none;
  font-weight: 900;
}

.article-side-links a:hover {
  border-color: rgba(0, 115, 216, 0.28);
  background: white;
}

.legal-section {
  min-height: 42vh;
}

.legal-content {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 36px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: var(--radius);
  background: var(--surface-glow);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.legal-content p {
  max-width: 720px;
}

.article h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: 2.2rem;
}

.legal-content h2 {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  overflow-wrap: anywhere;
  hyphens: auto;
}

.article h3 {
  margin-top: 28px;
}

.article p,
.article li {
  color: #334155;
}

.article ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.article-lead {
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.65;
}

.article-cta {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
  padding: 28px;
  border: 1px solid rgba(16, 168, 242, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #f8fcff, #e8f6ff);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.article-cta h2 {
  margin-top: 0;
  font-size: 1.8rem;
}

.article-cta > * {
  position: relative;
  z-index: 1;
}

.article-side-cta {
  margin-top: 0;
}

.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
  color: var(--muted);
  font-weight: 800;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 64px;
  align-items: start;
  background: #edf2f7;
}

.form-copy {
  position: sticky;
  top: 100px;
}

.legal-note {
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(0, 115, 216, 0.25);
  border-radius: var(--radius);
  color: #14324f;
  background: var(--blue-soft);
}

.task-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: #263245;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: white;
  font: inherit;
  font-weight: 500;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(16, 168, 242, 0.24);
  border-color: var(--blue-dark);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
}

.checkbox input {
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin-top: 3px;
}

.form-fallback {
  margin-bottom: 0;
  color: var(--muted);
}

.form-fallback a,
.form-note {
  color: var(--blue-dark);
  font-weight: 900;
}

.form-note {
  margin: 0;
  color: var(--muted);
}

.form-status {
  min-height: 0;
  margin-top: 2px;
  font-weight: 800;
}

.form-status[data-status="success"] {
  padding: 14px;
  border: 1px solid rgba(16, 168, 242, 0.28);
  border-radius: var(--radius);
  color: #003a63;
  background: var(--blue-soft);
}

.form-status[data-status="error"] {
  padding: 14px;
  border: 1px solid rgba(185, 28, 28, 0.28);
  border-radius: var(--radius);
  color: #991b1b;
  background: #fff1f2;
}

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

details {
  overflow: hidden;
}

summary {
  padding: 20px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  padding: 0 20px 20px;
  margin: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  padding: 42px max(18px, calc((100vw - var(--max)) / 2));
  color: #c5cedb;
  background: var(--dark);
}

.footer-logo {
  display: block;
  width: 205px;
  height: auto;
  margin-bottom: 16px;
}

.site-footer p {
  margin-bottom: 5px;
}

.site-footer nav,
.site-footer address {
  display: grid;
  gap: 10px;
  align-content: start;
  font-style: normal;
}

@media (max-width: 1180px) {
  .section,
  .site-header,
  .site-footer {
    padding-left: 28px;
    padding-right: 28px;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .quick-answer,
  .example-list,
  .deliverables-grid,
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1320px) {
  .site-header {
    display: flex;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    inset: 68px 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: auto;
    max-height: calc(100vh - 92px);
    padding: 10px;
    overflow-y: auto;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    min-height: 44px;
    justify-content: center;
    white-space: normal;
  }

  .site-nav .mobile-menu-cta {
    display: inline-flex;
    color: white !important;
    background: var(--ink);
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .form-section,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    max-width: 760px;
    transform: none;
  }

  .pricing-grid,
  .cards-grid,
  .steps,
  .private-ai-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card,
  .price-card:nth-last-child(-n + 2) {
    grid-column: span 1;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-side-cta {
    grid-column: 1 / -1;
  }

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

  .form-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .section,
  .site-header,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header {
    gap: 10px;
  }

  .brand-logo {
    width: 154px;
  }

  .brand-subline {
    display: none;
  }

  .site-nav {
    font-size: 0.95rem;
  }

  .site-nav a {
    padding: 0 12px;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero {
    padding-top: 46px;
    padding-bottom: 54px;
    gap: 28px;
  }

  .hero h1 {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .subhero h1 {
    max-width: 100%;
    font-size: 2.75rem;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.08rem;
  }

  .hero-lead,
  .subhero p {
    font-size: 1.08rem;
  }

  .hero-claim {
    width: 100%;
  }

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

  .hero-points,
  .quick-answer,
  .example-list,
  .deliverables-grid,
  .deliverables-grid-wide,
  .pricing-grid,
  .cards-grid,
  .steps,
  .private-ai-layout,
  .tool-checkboxes,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .quick-answer div {
    min-height: auto;
  }

  .hero-panel,
  .price-card,
  .info-card,
  .steps article,
  .task-form,
  .article-card,
  .article-side-card,
  .article-cta {
    padding: 20px;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding-top: 54px;
  }

  .price-card,
  .price-card:nth-last-child(-n + 2) {
    grid-column: span 1;
  }

  .badge {
    top: 18px;
    right: 20px;
    max-width: calc(100% - 40px);
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.6rem;
  }

  .subhero h1 {
    font-size: 2.38rem;
  }

  h2 {
    font-size: 1.86rem;
  }

  .site-nav {
    left: 12px;
    right: 12px;
  }

  .price-card h3 {
    font-size: 2.2rem;
  }

  .price-line {
    font-size: 2.2rem;
  }

  .price-line small {
    font-size: 1rem;
  }
}
