:root {
  --ink: #071428;
  --ink-2: #0a2446;
  --text: #0c1930;
  --muted: #66758d;
  --blue: #2b69f5;
  --blue-2: #6ba8ff;
  --green: #18a66a;
  --surface: #f7f9fc;
  --surface-2: #eef3f9;
  --white: #ffffff;
  --line: #dce4f0;
  --line-dark: rgba(147, 181, 231, 0.22);
  --shadow-sm: 0 12px 34px rgba(19, 44, 82, 0.09);
  --shadow-md: 0 24px 70px rgba(8, 29, 63, 0.16);
  --shadow-dark: 0 30px 90px rgba(0, 0, 0, 0.34);
  --radius-sm: 16px;
  --radius: 24px;
  --radius-lg: 32px;
  --shell: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

p {
  margin: 0;
  line-height: 1.7;
}

h1,
h2,
h3 {
  margin: 0;
  text-wrap: balance;
}

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

:focus-visible {
  outline: 3px solid var(--blue-2);
  outline-offset: 4px;
}

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

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

.skip-link:focus {
  transform: translateY(0);
}

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

.announcement {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 8px 24px;
  color: #dce9fb;
  background: #041021;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
}

.announcement p {
  line-height: 1.35;
}

.announcement a {
  color: #8bc0ff;
  font-weight: 800;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 0 max(24px, calc((100vw - var(--shell)) / 2));
  color: var(--white);
  background: rgba(7, 20, 40, 0.93);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.brand span {
  color: #78b1ff;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  color: #c7d5e8;
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a,
.site-footer a {
  transition: color 180ms ease;
}

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

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: var(--white);
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(43, 105, 245, 0.28);
  font-size: 0.95rem;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(43, 105, 245, 0.34);
}

.button-large {
  min-height: 58px;
  padding: 0 28px;
  border-radius: 16px;
  font-size: 1rem;
}

.button-quiet {
  color: #d7e3f3;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.button-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(143, 187, 249, 0.45);
  box-shadow: none;
}

.button-light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.button-outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(7, 20, 40, 0.18);
}

.button-block {
  width: 100%;
}

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

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

.hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(7, 20, 40, 0.98) 0%, rgba(8, 28, 57, 0.96) 58%, rgba(9, 43, 85, 0.98) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 85%);
}

.hero-glow,
.signature-orb,
.final-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow-one {
  width: 620px;
  height: 620px;
  right: -140px;
  top: -170px;
  background: radial-gradient(circle, rgba(44, 116, 255, 0.34), transparent 68%);
}

.hero-glow-two {
  width: 420px;
  height: 420px;
  left: -130px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(46, 207, 194, 0.14), transparent 68%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
  padding-block: 108px 96px;
}

.eyebrow {
  color: var(--blue);
  font-size: 0.78rem;
  line-height: 1.3;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.section-signature .eyebrow,
.final-cta .eyebrow {
  color: #79b5ff;
}

.hero-copy h1 {
  max-width: 720px;
  margin-top: 20px;
  font-size: clamp(3.5rem, 5.7vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.064em;
}

.hero-lede {
  max-width: 670px;
  margin-top: 26px;
  color: #c4d1e4;
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  line-height: 1.75;
}

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

.hero-helper {
  margin-top: 13px;
  color: #94a8c5;
  font-size: 0.88rem;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 34px;
  color: #afbed3;
  font-size: 0.88rem;
  font-weight: 750;
}

.trust-line span {
  position: relative;
  padding-left: 18px;
}

.trust-line span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6fd4aa;
  box-shadow: 0 0 0 4px rgba(111, 212, 170, 0.1);
}

.hero-product {
  position: relative;
}

.product-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(166, 197, 239, 0.3);
  border-radius: var(--radius-lg);
  background: #eff4fb;
  box-shadow: var(--shadow-dark);
}

.product-frame-hero {
  transform: perspective(1800px) rotateY(-3deg) rotateX(1deg);
  transform-origin: center;
}

.hero-caption {
  position: absolute;
  left: 26px;
  bottom: -34px;
  max-width: 520px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: var(--white);
  background: rgba(6, 20, 43, 0.88);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.hero-caption strong,
.hero-caption span {
  display: block;
}

.hero-caption strong {
  font-size: 0.96rem;
}

.hero-caption span {
  margin-top: 4px;
  color: #aebfd6;
  font-size: 0.82rem;
  line-height: 1.45;
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-top: 4px;
  border-radius: 50%;
  background: #39d98a;
  box-shadow: 0 0 0 5px rgba(57, 217, 138, 0.12);
}

.proof-strip {
  color: var(--white);
  background: #06152c;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.proof-grid article {
  min-height: 190px;
  padding: 34px clamp(24px, 3vw, 48px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-grid article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-number {
  color: #72afff;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.proof-grid h2 {
  margin-top: 16px;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

.proof-grid p {
  margin-top: 10px;
  color: #aabbd2;
  font-size: 0.92rem;
  line-height: 1.6;
}

.section {
  position: relative;
  padding-block: clamp(88px, 10vw, 140px);
}

.section-heading {
  margin-bottom: 54px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: end;
  gap: clamp(44px, 7vw, 110px);
}

.split-heading h2,
.centered-heading h2,
.founder-copy h2,
.final-cta h2,
.onboarding-copy h2,
.faq-heading h2 {
  margin-top: 16px;
  font-size: clamp(2.65rem, 4.7vw, 4.55rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.split-heading > div:last-child > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.split-heading-light > div:last-child > p,
.section-dark .section-heading p {
  color: #b8c8df;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 850;
}

.text-link::after {
  content: "->";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.text-link-light {
  color: #85bdff;
}

.editorial-grid,
.inventory-spotlight,
.team-layout,
.website-layout,
.explorer-grid {
  display: grid;
  gap: 24px;
}

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

.editorial-grid-close > :nth-child(1) {
  grid-column: span 8;
}

.editorial-grid-close > :nth-child(2) {
  grid-column: span 4;
}

.editorial-grid-close > :nth-child(3),
.editorial-grid-close > :nth-child(4) {
  grid-column: span 4;
}

.editorial-grid-close > :nth-child(5) {
  grid-column: span 4;
}

.feature {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.section-dark .feature,
.section-signature .feature {
  border-color: var(--line-dark);
  background: rgba(9, 30, 60, 0.82);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.feature-media-button {
  position: relative;
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: #edf3fa;
  cursor: zoom-in;
}

.section-dark .feature-media-button,
.section-signature .feature-media-button {
  background: #06162f;
}

.feature-media-button::after {
  content: "Open full screen";
  position: absolute;
  right: 14px;
  bottom: 14px;
  transform: translateY(8px);
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 20, 40, 0.82);
  opacity: 0;
  font-size: 0.72rem;
  font-weight: 800;
  transition: opacity 180ms ease, transform 180ms ease;
}

.feature-media-button:hover::after,
.feature-media-button:focus-visible::after {
  transform: translateY(0);
  opacity: 1;
}

.feature-media-button img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: top;
  transition: transform 280ms ease;
}

.feature-media-button:hover img {
  transform: scale(1.008);
}

.feature-copy {
  padding: 22px 24px 25px;
}

.feature-copy h3 {
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: -0.028em;
}

.feature-copy p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.section-dark .feature-copy p,
.section-signature .feature-copy p {
  color: #afc0d7;
}

.feature-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-dark .feature-kicker,
.section-signature .feature-kicker {
  color: #79b6ff;
}

.section-signature {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #071428 0%, #0a2952 62%, #0b3b6a 100%);
}

.signature-orb-one {
  width: 760px;
  height: 760px;
  right: -280px;
  top: -220px;
  background: radial-gradient(circle, rgba(62, 127, 255, 0.34), transparent 68%);
}

.signature-orb-two {
  width: 520px;
  height: 520px;
  left: -220px;
  bottom: -240px;
  background: radial-gradient(circle, rgba(22, 194, 148, 0.13), transparent 68%);
}

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

.inline-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.inline-proof span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #d3e1f4;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  font-weight: 750;
}

.website-layout {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
}

.feature-customer-site {
  grid-column: span 8;
  grid-row: span 2;
}

.website-side {
  grid-column: span 4;
  display: grid;
  gap: 24px;
}

.website-layout > .feature-wide {
  grid-column: span 8;
}

.website-layout > .feature-portrait {
  grid-column: span 4;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

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

.inventory-spotlight > :nth-child(1),
.inventory-spotlight > :nth-child(2) {
  grid-column: span 6;
}

.inventory-spotlight > :nth-child(3),
.inventory-spotlight > :nth-child(4) {
  grid-column: span 6;
}

.explorer-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 82px;
  margin-bottom: 24px;
}

.explorer-header h3 {
  margin-top: 12px;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  letter-spacing: -0.045em;
}

.explorer-header > p {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.explorer-grid .feature-double {
  grid-column: span 2;
}

.feature-small .feature-copy {
  padding: 18px 19px 20px;
}

.feature-small .feature-copy h3 {
  font-size: 1rem;
}

.feature-small .feature-copy p {
  font-size: 0.82rem;
}

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

.team-layout > :nth-child(1) {
  grid-column: span 8;
}

.team-layout > :nth-child(2) {
  grid-column: span 4;
}

.team-layout > :nth-child(3),
.team-layout > :nth-child(4) {
  grid-column: span 6;
}

.team-layout > :nth-child(5),
.team-layout > :nth-child(6) {
  grid-column: span 3;
}

.team-layout > :nth-child(7) {
  grid-column: span 6;
}

.founder-section {
  background: var(--white);
}

.founder-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.founder-mark {
  min-height: 380px;
  display: grid;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(43, 105, 245, 0.08), rgba(24, 166, 106, 0.06)),
    radial-gradient(circle at 30% 30%, rgba(43, 105, 245, 0.16), transparent 50%),
    var(--surface);
  box-shadow: var(--shadow-sm);
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.82;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.founder-mark span {
  display: block;
}

.founder-mark span:last-child {
  color: var(--blue);
}

.founder-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 1.08rem;
}

.trust-section {
  background: #edf3fa;
}

.centered-heading {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading > p:last-child {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.trust-cards article {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.trust-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue);
  background: #eaf1ff;
  font-size: 0.78rem;
  font-weight: 950;
}

.trust-cards h3 {
  margin-top: 24px;
  font-size: 1.24rem;
  letter-spacing: -0.03em;
}

.trust-cards p {
  margin-top: 11px;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 34px;
}

.pricing-section {
  background: var(--white);
}

.pricing-grid {
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 52px auto 0;
}

.price-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.price-card-featured {
  border-color: rgba(43, 105, 245, 0.45);
  background: linear-gradient(180deg, #ffffff, #f2f6ff);
  box-shadow: var(--shadow-md);
}

.price-label {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-top: 12px;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.price-card > p:not(.price-label) {
  margin-top: 16px;
  color: var(--muted);
}

.price-card ul {
  min-height: 168px;
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 26px;
  color: #33435c;
  font-size: 0.94rem;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.onboarding-section {
  color: var(--white);
  background: #0a2345;
}

.onboarding-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.onboarding-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 24px 0 30px;
  color: #b8c8de;
  font-size: 1.04rem;
}

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

.steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.steps li > span {
  color: #79b5ff;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.steps strong {
  display: block;
  font-size: 1.06rem;
}

.steps p {
  margin-top: 6px;
  color: #aebed4;
  font-size: 0.88rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.faq-heading > p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted);
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 46px 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 820;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 20px;
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  max-width: 760px;
  padding: 0 46px 24px 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 104px;
  background: linear-gradient(125deg, #061429, #0b2d58);
}

.final-glow {
  width: 760px;
  height: 760px;
  right: -260px;
  top: -300px;
  background: radial-gradient(circle, rgba(43, 105, 245, 0.33), transparent 68%);
}

.final-cta-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
}

.final-cta h2 {
  max-width: 800px;
}

.final-cta p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 22px;
  color: #b9c9de;
  font-size: 1.04rem;
}

.final-actions {
  min-width: 220px;
  display: grid;
  gap: 12px;
}

.final-actions > span {
  color: #95a9c4;
  font-size: 0.78rem;
  text-align: center;
}

.site-footer {
  color: #c1d0e3;
  background: #030d1d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 48px;
  padding-block: 68px 50px;
}

.footer-brand p {
  max-width: 300px;
  margin-top: 18px;
  color: #879ab5;
}

.site-footer h2 {
  margin-bottom: 17px;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.site-footer div:not(.footer-brand) > a {
  display: block;
  margin-top: 12px;
  color: #93a6c0;
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #71849e;
  font-size: 0.8rem;
}

.product-dialog {
  width: min(96vw, 1600px);
  max-height: 94vh;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  color: var(--text);
  background: var(--white);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.52);
}

.product-dialog::backdrop {
  background: rgba(2, 8, 20, 0.86);
  backdrop-filter: blur(7px);
}

.dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  color: var(--white);
  background: var(--ink);
}

.dialog-header h2 {
  margin-top: 5px;
  font-size: 1.22rem;
}

.dialog-close {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.dialog-media {
  max-height: calc(94vh - 142px);
  overflow: auto;
  background: #edf3fa;
}

.dialog-media img {
  width: 100%;
  height: auto;
  display: block;
}

.dialog-caption {
  padding: 14px 22px 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 14px 24px 24px;
    background: rgba(7, 20, 40, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .header-actions {
    justify-self: end;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 92px;
  }

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

  .hero-product {
    margin-top: 20px;
  }

  .product-frame-hero {
    transform: none;
  }

  .editorial-grid-close > :nth-child(1) {
    grid-column: span 12;
  }

  .editorial-grid-close > :nth-child(n+2) {
    grid-column: span 6;
  }

  .website-layout > .feature-customer-site {
    grid-column: span 12;
  }

  .website-side {
    grid-column: span 6;
  }

  .website-layout > .feature-wide,
  .website-layout > .feature-portrait {
    grid-column: span 6;
  }

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

  .team-layout > :nth-child(1) {
    grid-column: span 12;
  }

  .team-layout > :nth-child(2),
  .team-layout > :nth-child(3),
  .team-layout > :nth-child(4),
  .team-layout > :nth-child(7) {
    grid-column: span 6;
  }

  .team-layout > :nth-child(5),
  .team-layout > :nth-child(6) {
    grid-column: span 6;
  }
}

@media (max-width: 860px) {
  .shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .announcement {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding: 9px 20px;
  }

  .site-header {
    min-height: 70px;
    padding-inline: 20px;
  }

  .main-nav {
    top: 70px;
  }

  .header-actions .button-quiet {
    display: none;
  }

  .hero-layout {
    min-height: auto;
    padding-block: 78px 88px;
  }

  .hero-caption {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

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

  .proof-grid article,
  .proof-grid article:last-child {
    min-height: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .split-heading,
  .founder-layout,
  .onboarding-layout,
  .faq-layout,
  .final-cta-layout {
    grid-template-columns: 1fr;
  }

  .split-heading {
    align-items: start;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .editorial-grid-close > *,
  .inventory-spotlight > :nth-child(n),
  .website-layout > .feature-customer-site,
  .website-layout > .feature-wide,
  .website-layout > .feature-portrait,
  .website-side,
  .team-layout > :nth-child(n) {
    grid-column: span 12;
  }

  .website-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .explorer-header {
    align-items: start;
    flex-direction: column;
    margin-top: 60px;
  }

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

  .price-card ul {
    min-height: 0;
  }

  .final-actions {
    max-width: 320px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .site-header {
    gap: 10px;
    grid-template-columns: auto auto 1fr;
  }

  .brand {
    font-size: 1.32rem;
  }

  .header-actions .button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 13vw, 3.8rem);
  }

  .hero-actions,
  .section-cta {
    align-items: stretch;
    flex-direction: column;
  }

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

  .trust-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .split-heading h2,
  .centered-heading h2,
  .founder-copy h2,
  .final-cta h2,
  .onboarding-copy h2,
  .faq-heading h2 {
    font-size: clamp(2.2rem, 10vw, 3.25rem);
  }

  .editorial-grid,
  .inventory-spotlight,
  .team-layout,
  .website-layout,
  .explorer-grid {
    gap: 16px;
  }

  .website-side {
    grid-template-columns: 1fr;
  }

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

  .explorer-grid .feature-double {
    grid-column: span 1;
  }

  .feature-copy {
    padding: 18px 19px 21px;
  }

  .founder-mark {
    min-height: 280px;
  }

  .price-card {
    padding: 27px 23px;
  }

  .steps li {
    grid-template-columns: 42px 1fr;
    padding: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .dialog-header {
    align-items: flex-start;
  }

  .dialog-header .eyebrow {
    display: none;
  }
}

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