:root {
  --ink: #152033;
  --muted: #5c6570;
  --paper: #f4f5f8;
  --white: #fff;
  --dark: #0c1220;
  --dark-soft: #151c2c;
  --line: #e0e4ea;
  --acid: #1e4a8c;
  --acid-dark: #163a6f;
  --green: #3b82f6;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 24px 70px rgba(21, 32, 51, 0.08);
  --section-space: clamp(54px, 6vw, 78px);
  --section-half-space: clamp(27px, 3vw, 39px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

::selection {
  background: #22c55e;
  color: var(--dark);
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--acid);
  color: var(--white);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.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;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.section-heading {
  max-width: 760px;
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-copy {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--acid);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--acid-dark);
  box-shadow: 0 12px 30px rgba(30, 74, 140, 0.22);
  transform: translateY(-2px);
}

.button:focus-visible,
.nav-link:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(79, 179, 126, 0.45);
  outline-offset: 3px;
}

.button svg {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 180ms ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: #252728;
  box-shadow: 0 12px 30px rgba(16, 17, 18, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 0;
  border-bottom: 1px solid rgba(21, 32, 51, 0.08);
  background: var(--white);
}

.nav {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-inline: clamp(28px, 6vw, 78px);
}

.utility-bar {
  border-bottom: 1px solid rgba(21, 32, 51, 0.06);
  background: var(--white);
}

.utility-links {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  padding-inline: clamp(28px, 6vw, 78px);
}

.utility-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #5c6570;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 180ms ease;
}

.utility-links a + a {
  position: relative;
}

.utility-links a + a::before {
  position: absolute;
  left: -10px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #9aa3b0;
  content: "";
}

.utility-links a:hover,
.utility-links a[aria-current="page"] {
  color: var(--ink);
}

.utility-links svg {
  width: 11px;
  height: 11px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  flex: 0 0 38px;
}

.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-mark .logo-a {
  fill: #1e4a8c;
}

.brand-mark .logo-b {
  fill: #22c55e;
}

.brand-name {
  display: grid;
  gap: 1px;
}

.brand-name strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand-name span {
  color: #7a8494;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  position: relative;
  padding-inline: 16px;
  color: #4a5563;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.nav-link + .nav-link::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 12px;
  background: rgba(21, 32, 51, 0.14);
  content: "";
  transform: translateY(-50%);
}

.nav-link:first-child {
  padding-left: 0;
}

.nav-link:hover {
  color: var(--ink);
}

.nav .button {
  min-height: 42px;
  margin-left: 18px;
  padding-inline: 14px 16px;
  gap: 8px;
  background: var(--acid);
  color: var(--white);
  line-height: 1;
}

.nav .button svg {
  width: 15px;
  height: 15px;
  translate: 0 -0.5px;
}

.nav .button:hover svg {
  transform: none;
}

.hero {
  padding: 0 0 26px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  min-height: 690px;
  margin: 0;
  border-radius: 0;
  background:
    radial-gradient(ellipse 48% 58% at 78% 42%, rgba(59, 130, 246, 0.16), transparent 72%),
    radial-gradient(ellipse 40% 46% at 12% 78%, rgba(99, 102, 241, 0.08), transparent 74%),
    #090b0a;
  color: var(--white);
  --spot-x: 65%;
  --spot-y: 40%;
  --spot-size: 420px;
}

.shell.hero-card {
  width: 100%;
  margin-inline: 0;
}

.hero-spotlight {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-spotlight canvas {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.hero-grid,
.hero-proof {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-spotlight {
    opacity: 0.4;
  }
}

.hero-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 70% 24% at 50% 0%, rgba(59, 130, 246, 0.08), transparent 70%);
  content: "";
  pointer-events: none;
}

.hero-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(9, 11, 10, 0.55) 0%, transparent 40%, transparent 70%, rgba(9, 11, 10, 0.2) 100%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: 590px;
  margin-inline: auto;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 30px;
  padding: clamp(48px, 6vw, 72px) clamp(28px, 6vw, 78px) 48px;
}

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

.hero .eyebrow {
  color: #9aa3b2;
}

.hero .eyebrow::before {
  box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.14);
}

h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(48px, 5vw, 70px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h1 em {
  color: #7eb6ff;
  font-style: normal;
}

h1 em[data-hero-mark-green] {
  color: #22c55e;
}

.hero-lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: #b4bbc8;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  margin-top: 34px;
}

.hero-start {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
}

.hero-start label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.hero-field {
  position: relative;
  flex: 0 1 280px;
  width: 280px;
  min-width: 200px;
}

.hero-field-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 18px;
  height: 18px;
  color: rgba(180, 187, 200, 0.85);
  pointer-events: none;
  transform: translateY(-50%);
}

.hero-field input {
  width: 100%;
  height: 52px;
  padding: 0 18px 0 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: none;
}

.hero-field input::placeholder {
  color: rgba(180, 187, 200, 0.7);
}

.hero-field input:focus {
  border-color: rgba(126, 182, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
}

.hero-field:focus-within .hero-field-icon {
  color: rgba(126, 182, 255, 0.95);
}

.hero-start .button {
  flex-shrink: 0;
  border: 0;
  background: #16a34a;
  cursor: pointer;
}

.hero-start .button:hover {
  background: #15803d;
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.28);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d5dae3;
  font-size: 14px;
  font-weight: 700;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--white);
}

.hero-proof {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.proof {
  padding: 24px clamp(24px, 5vw, 58px);
}

.proof + .proof {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.proof strong {
  display: block;
  color: var(--white);
  font-size: 23px;
  letter-spacing: -0.045em;
}

.proof span {
  display: block;
  margin-top: 3px;
  color: #7e837c;
  font-size: 12px;
}

.services {
  padding: var(--section-space) 0 var(--section-half-space);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.45fr);
  align-items: start;
  gap: clamp(42px, 7vw, 86px);
}

.services-head {
  display: block;
  padding-top: 8px;
}

.services .section-heading {
  font-size: clamp(40px, 4.5vw, 60px);
}

.services-head .section-copy {
  max-width: 330px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
}

.service-card {
  display: grid;
  min-height: 0;
  grid-template-columns: 40px minmax(0, 1fr);
  align-content: start;
  gap: 7px 15px;
  padding: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: background 180ms ease;
}

.service-card:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.service-card:nth-child(-n + 4) {
  border-bottom: 1px solid var(--line);
}

.service-card:hover {
  background: var(--white);
}

.service-icon {
  display: grid;
  width: 42px;
  height: 42px;
  grid-row: 1 / span 2;
  place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
}

.service-icon.is-green {
  background: #16a34a;
  color: #fff;
}

.service-icon.is-soft {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}

.service-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.25;
}

.service-card h3 {
  grid-column: 2;
  margin: 1px 0 0;
  font-size: 16px;
  letter-spacing: -0.035em;
}

.service-card p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.service-foot {
  display: none;
}

.tag {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #545851;
  font-size: 10px;
  font-weight: 800;
}

.platform-bar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(0, 1.5fr);
  align-items: center;
  gap: 36px;
  margin-top: 14px;
  padding: 26px 30px;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: var(--white);
}

.platform-bar p {
  margin: 0;
  color: #b1b5ae;
  font-size: 12px;
  line-height: 1.55;
}

.platform-bar p strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 14px;
  letter-spacing: -0.02em;
}

.platform-logos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.platform-logos-set {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 32px);
}

.platform-logos-set.is-also {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.platform-logos img {
  display: block;
  width: auto;
  height: 25px;
  opacity: 0.7;
  transition: opacity 180ms ease, transform 180ms ease;
}

.platform-logos .is-wordmark {
  height: 18px;
}

.platform-logos-set.is-also img {
  opacity: 0.42;
}

.platform-logos img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.how {
  padding: var(--section-half-space) 0;
}

.how-card {
  padding: clamp(42px, 7vw, 80px);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(16, 17, 18, 0.04);
}

.how-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 50px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  border-top: 1px solid var(--line);
  list-style: none;
  padding: 0;
}

.step {
  position: relative;
  padding: 32px 28px 0 0;
}

.step:not(:first-child) {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.step-num {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.step h3 {
  margin: 28px 0 0;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.step p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.pricing {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: var(--section-half-space) 0;
  background: var(--dark);
  color: var(--white);
}

.pricing::before {
  position: absolute;
  top: -18%;
  right: -12%;
  z-index: 0;
  width: min(620px, 70%);
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.2), transparent 68%);
  content: "";
  pointer-events: none;
}

.pricing .shell {
  position: relative;
  z-index: 1;
}

.pricing .eyebrow {
  color: #93c5a4;
}

.pricing .eyebrow::before {
  background: #22c55e;
}

.pricing-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.pricing .section-copy {
  max-width: 520px;
  margin-top: 14px;
  color: #a8b0bc;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(21, 28, 44, 0.92);
}

.plan-featured {
  border-color: rgba(34, 197, 94, 0.55);
  background:
    linear-gradient(180deg, rgba(22, 163, 74, 0.16), rgba(21, 28, 44, 0.96) 42%),
    var(--dark-soft);
  box-shadow: 0 18px 50px rgba(22, 163, 74, 0.12);
}

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 26px;
}

.plan-label {
  margin: 0;
  color: #9aa3b2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-featured .plan-label {
  color: #86efac;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #16a34a;
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: flex-end;
  min-height: 72px;
  margin: 16px 0 0;
  font-size: clamp(40px, 4.4vw, 58px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 1;
}

.price-custom {
  font-size: clamp(28px, 2.6vw, 34px);
  letter-spacing: -0.045em;
}

.price small {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 4px 10px;
  color: #8b93a1;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
}

.price small span {
  margin-top: 3px;
  font-size: 11px;
  font-weight: 700;
}

.plan-featured .price small {
  color: #bbf7d0;
}

.plan-desc {
  max-width: 410px;
  min-height: 72px;
  margin: 16px 0 0;
  color: #b4bbc6;
  font-size: 14px;
  line-height: 1.7;
}

.plan-featured .plan-desc {
  color: #d7e6dc;
}

.plan-list {
  display: grid;
  gap: 11px;
  margin: 28px 0 32px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
}

.plan-featured .plan-list {
  border-color: rgba(134, 239, 172, 0.22);
}

.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #e8eaee;
  font-size: 14px;
  font-weight: 600;
}

.plan-list li::before {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 50%;
  background: #16a34a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5.2 10.4l3.1 3.2 6.5-7.2' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.16);
  content: "";
  margin-top: 1px;
}

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

.plan-featured .button {
  background: #16a34a;
  color: var(--white);
}

.plan-featured .button:hover {
  background: #15803d;
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.28);
}

.pricing-note {
  margin: 20px 0 0;
  color: #8b93a1;
  font-size: 12px;
  text-align: center;
}

.journal {
  padding: var(--section-half-space) 0;
}

.journal-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.journal .section-heading {
  font-size: clamp(38px, 4.5vw, 58px);
}

.journal-head .section-copy {
  max-width: 420px;
  margin-bottom: 4px;
}

.journal-head .text-link {
  color: var(--acid);
  text-decoration-color: rgba(30, 74, 140, 0.35);
}

.journal-head .text-link:hover {
  color: var(--acid-dark);
}

.journal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 14px;
  margin-top: 40px;
}

.journal-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.5);
}

.journal-card {
  overflow: hidden;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: background 180ms ease;
}

.journal-row {
  display: block;
  position: relative;
  min-height: 111px;
  padding: 19px 54px 18px 21px;
}

.journal-row:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.journal-row:hover {
  background: var(--white);
}

.journal-row::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  content: "→";
  font-size: 13px;
  transform: translateY(-50%);
}

.journal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: #777b75;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journal-meta span:first-child {
  color: #367d59;
}

.journal-title {
  display: block;
  margin-top: 12px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.journal-summary {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.journal-more {
  display: none;
}

.journal-body {
  padding: 0 21px 20px;
  border-top: 1px solid var(--line);
}

.journal-body p {
  margin: 17px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.journal-feature {
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.journal-feature::after {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(9, 11, 10, 0.72);
  content: "→";
  font-size: 13px;
  backdrop-filter: blur(8px);
}

.journal-feature-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 8.2;
  background: #0b1715;
}

.journal-feature-image svg {
  display: block;
  width: 100%;
  height: 100%;
}

.journal-feature-copy {
  display: block;
  padding: 23px 25px 25px;
}

.journal-feature .journal-title {
  max-width: 18em;
  margin-top: 15px;
  font-size: 27px;
  line-height: 1.13;
}

.journal-feature .journal-summary {
  max-width: 44em;
}

.journal-feature .journal-body {
  padding-inline: 25px;
}

.article {
  padding: var(--section-space) 0 calc(var(--section-space) + 12px);
}

.article-shell {
  max-width: 760px;
  overflow-wrap: break-word;
}

.article .eyebrow a {
  color: var(--acid);
  text-decoration: none;
}

.article .eyebrow a:hover {
  text-decoration: underline;
}

.article-title {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.article-lead {
  max-width: 38em;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  text-wrap: wrap;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 22px 0 0;
  color: #777b75;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.article-avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  object-fit: cover;
  background: transparent;
}

.article-byline-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.article-byline-copy strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.article-byline-copy span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.article-byline .article-meta {
  margin: 0 0 0 auto;
}

.article-body {
  margin-top: 36px;
}

.article-body p,
.article-body li {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
}

.article-body p {
  margin: 0 0 1.1em;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.1em;
  padding-left: 1.2em;
}

.article-body h2 {
  margin: 1.8em 0 0.55em;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.article-body h3 {
  margin: 1.35em 0 0.4em;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.article-body a {
  color: var(--acid);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.legal-nav a {
  color: var(--acid);
  text-decoration: none;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.portal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.portal-page main {
  flex: 1;
  display: grid;
}

.portal {
  display: grid;
  place-items: center;
  padding: var(--section-space) 0;
}

.portal-shell {
  width: min(460px, calc(100% - 40px));
}

.portal-card {
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.portal-card .article-title {
  font-size: clamp(28px, 6vw, 34px);
}

.portal-card .article-lead {
  margin-top: 12px;
  font-size: 16px;
}

.portal-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.portal-form .field input {
  border-color: var(--line);
  background: var(--paper);
}

.portal-form .field input:focus {
  border-color: var(--acid);
  background: var(--white);
}

.portal-form .button {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.portal-form .button:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.portal-error {
  margin: 0;
  color: #b42318;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.portal-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.portal-note a {
  color: var(--acid);
  font-weight: 700;
  text-underline-offset: 3px;
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 48px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.article-cta p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.article-cta-magnet {
  display: grid;
  gap: 16px;
}

.article-cta-copy {
  display: grid;
  gap: 6px;
}

.article-cta-note,
.article-cta-alt {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.article-cta-alt a {
  color: var(--acid);
  font-weight: 700;
  text-underline-offset: 3px;
}

.magnet-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.magnet-form input[type="email"] {
  flex: 1 1 220px;
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
}

.magnet-form input[type="email"]:focus {
  border-color: var(--acid);
  background: var(--white);
}

.magnet-form .button {
  border: 0;
  cursor: pointer;
}

.magnet-form .button:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.magnet-error {
  flex: 1 1 100%;
  margin: 0;
  color: #b42318;
  font-size: 13px;
  font-weight: 700;
}

.magnet-success {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.magnet-success a {
  color: var(--acid);
}

.related-posts {
  margin-top: 56px;
}

.related-posts h2 {
  margin: 0 0 18px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.related-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.related-card {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.5);
  color: inherit;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}

.related-card:hover {
  background: var(--white);
  border-color: #cfd5de;
}

.related-card .journal-title {
  font-size: 18px;
}

.related-card .journal-summary {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.blog-index {
  padding: var(--section-space) 0;
}

.blog-index-list {
  display: grid;
  gap: 14px;
  margin-top: 40px;
}

.blog-index-card {
  display: block;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.5);
  color: inherit;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}

.blog-index-card:hover {
  background: var(--white);
  border-color: #cfd5de;
}

.blog-index-card .journal-title {
  font-size: 22px;
}

.blog-index-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin-top: 14px;
  color: #777b75;
  font-size: 12px;
  font-weight: 700;
}

.blog-index-byline time::before {
  margin-right: 10px;
  content: "·";
}

.faq {
  padding: var(--section-half-space) 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 9vw, 110px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 2px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  content: "+";
  font-size: 17px;
  transition: transform 180ms ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  max-width: 610px;
  margin: -6px 0 0;
  padding: 0 46px 25px 2px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.contact {
  padding: var(--section-half-space) 0 30px;
  scroll-margin-top: 90px;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 28px clamp(40px, 8vw, 80px);
  padding: clamp(32px, 5vw, 52px) clamp(42px, 7vw, 72px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(34, 197, 94, 0.18), transparent 42%),
    var(--acid);
  color: var(--white);
}

.contact-card .eyebrow {
  color: #86efac;
}

.contact-card .eyebrow::before {
  background: #22c55e;
}

.contact-card .section-heading {
  font-size: clamp(38px, 5vw, 58px);
}

.contact-card .section-copy {
  color: rgba(255, 255, 255, 0.74);
}

.contact-alt {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-alt p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.55;
}

.contact-alt-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.contact-alt-links a {
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  text-underline-offset: 3px;
}

.contact-alt-links a:hover {
  color: #bbf7d0;
}

.wizard-progress {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.wizard-progress li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  padding: 0 10px 14px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.wizard-progress li.is-done,
.wizard-progress li.is-active {
  color: var(--white);
}

.wizard-progress li.is-done {
  cursor: pointer;
}

.wizard-progress li.is-active {
  border-bottom-color: #22c55e;
}

.wizard-progress li span {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.wizard-progress li.is-active span,
.wizard-progress li.is-done span {
  border-color: #16a34a;
  background: #16a34a;
  color: var(--white);
}

.contact-form {
  display: grid;
  align-content: start;
  gap: 16px;
}

.wizard-panel {
  display: grid;
  gap: 13px;
}

.wizard-panel[hidden] {
  display: none;
}

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

.field label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field input {
  width: 100%;
  height: 54px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  outline: none;
  transition: background 180ms ease, border-color 180ms ease;
}

.field input:focus {
  border-color: #16a34a;
  background: var(--white);
}

.field input::placeholder {
  color: #8b93a1;
}

.need-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.need {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.need input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  accent-color: #16a34a;
}

.need:has(input:checked) {
  border-color: #22c55e;
  background: rgba(22, 163, 74, 0.22);
}

.wizard-nav {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.wizard-nav .button {
  flex: 1;
}

.contact-form .button {
  border: 0;
  background: #16a34a;
  cursor: pointer;
}

.contact-form .button:hover {
  background: #15803d;
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.28);
}

.contact-form .button:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.contact-form .button-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.contact-form .button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.wizard-done {
  display: grid;
  align-content: start;
  gap: 12px;
}

.wizard-done[hidden] {
  display: none;
}

.wizard-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: #16a34a;
  font-size: 22px;
  font-weight: 800;
}

.wizard-done strong {
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: -0.045em;
}

.wizard-done p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.65;
}

.form-note {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.form-note a {
  color: #bbf7d0;
  text-underline-offset: 3px;
}

.form-note a:hover {
  color: var(--white);
}

.form-error {
  margin: 0 0 8px;
  color: #ffb4b4;
  font-size: 13px;
  line-height: 1.4;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form.is-done .form-note,
.contact-form.is-done .wizard-nav,
.contact-form.is-done .wizard-panel,
.contact-card.is-done .wizard-progress {
  display: none;
}

footer {
  padding: 25px 0 35px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #6f726c;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 16px;
}

.footer-row a {
  text-decoration-color: #b8bbb1;
  text-underline-offset: 4px;
}

.footer-row a:hover {
  color: var(--ink);
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  padding: 16px 0 calc(16px + env(safe-area-inset-bottom));
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 -16px 40px rgba(12, 18, 32, 0.18);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 0;
}

.cookie-banner p {
  max-width: 720px;
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.cookie-banner a {
  color: #bbf7d0;
  text-underline-offset: 3px;
}

.cookie-banner-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.cookie-banner .button {
  min-height: 44px;
  padding-inline: 18px;
  background: #16a34a;
}

.cookie-banner .button:hover {
  background: #15803d;
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.28);
}

.cookie-banner .button-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.cookie-banner .button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

body.has-cookie-banner {
  padding-bottom: 120px;
}

.article-body .text-link {
  min-height: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--acid);
  font-size: 17px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.article-body .text-link:hover {
  transform: none;
}

@media (max-width: 960px) {
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-bottom: 20px;
  }

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

  .services-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .services-head .section-copy {
    max-width: 590px;
  }

  .services-head,
  .pricing-head,
  .journal-head {
    display: block;
  }

  .journal-head .text-link {
    margin-top: 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .platform-bar {
    grid-template-columns: 1fr;
  }

  .platform-logos {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .how-top,
  .faq-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .wizard-progress li {
    flex-direction: column;
    gap: 7px;
    font-size: 11px;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 24px, 1180px);
  }

  .portal-shell {
    width: min(100% - 24px, 460px);
  }

  .site-header {
    padding: 0;
  }

  .nav {
    min-height: 68px;
    padding-inline: 18px;
  }

  .utility-links {
    min-height: 30px;
    padding-inline: 18px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-link {
    display: none;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .brand-name strong {
    font-size: 14px;
  }

  .nav .button {
    min-height: 40px;
    padding-inline: 15px;
  }

  .hero-card {
    width: 100%;
    min-height: 0;
    border-radius: 0;
  }

  .hero-grid {
    width: min(100% - 24px, 1180px);
    padding: 132px 22px 8px;
  }

  h1 {
    font-size: clamp(42px, 12.5vw, 50px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions,
  .hero-start {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .hero-field {
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
  }

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

  .text-link {
    justify-content: center;
  }

  .hero-proof {
    width: min(100% - 24px, 1180px);
    grid-template-columns: 1fr;
    padding: 10px 22px 22px;
  }

  .proof {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 14px 0;
  }

  .proof + .proof {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .proof strong {
    font-size: 18px;
  }

  .section-heading {
    font-size: clamp(38px, 12vw, 54px);
  }

  .service-grid,
  .pricing-grid,
  .journal-layout {
    grid-template-columns: 1fr;
  }

  .journal-layout {
    margin-top: 28px;
  }

  .journal-row {
    min-height: 98px;
  }

  .journal-feature .journal-title {
    font-size: 24px;
  }

  .article-byline .article-meta {
    margin-left: 0;
    flex-basis: 100%;
  }

  .related-list {
    grid-template-columns: 1fr;
  }

  .magnet-form .button {
    width: 100%;
  }

  .platform-bar {
    padding: 25px 22px;
  }

  .platform-logos {
    gap: 18px 22px;
  }

  .platform-logos-set.is-also {
    padding-left: 22px;
  }

  .platform-logos img {
    height: 22px;
  }

  .platform-logos .is-wordmark {
    height: 16px;
  }

  .service-card {
    min-height: 0;
    padding: 21px 18px;
  }

  .service-card h3 {
    margin-top: 1px;
  }

  .service-card:nth-child(odd) {
    border-right: 0;
  }

  .service-card:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .how-card {
    padding: 42px 24px;
    border-radius: 22px;
  }

  .steps {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .step,
  .step:not(:first-child) {
    padding: 26px 0;
    border-left: 0;
  }

  .step:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .plan {
    padding: 28px 23px;
  }

  .plan-desc {
    min-height: 0;
  }

  .contact-card {
    padding: 28px 22px 24px;
    border-radius: 22px;
  }

  .need-grid {
    grid-template-columns: 1fr;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner .button {
    width: 100%;
    min-width: 0;
    padding-inline: 12px;
  }

  body.has-cookie-banner {
    padding-bottom: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
