:root {
  color-scheme: light;
  --page: #f7f7f8;
  --surface: #ffffff;
  --surface-soft: #f0f1f3;
  --surface-blue: #eef4ff;
  --ink: #14151a;
  --text: #292a30;
  --muted: #747780;
  --faint: #a4a7ae;
  --line: #dfe1e5;
  --line-strong: #c8cbd1;
  --blue: #0a84ff;
  --blue-soft: #e7f0ff;
  --green: #19b765;
  --orange: #ff8a1f;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgb(20 21 26 / 4%);
  --shadow-md: 0 18px 50px rgb(20 21 26 / 8%);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 11px;
  --content: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

/* Release layout corrections: true full-width sections and consistent spacing. */
.product-section,
.faq {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(24px, calc((100vw - var(--content)) / 2));
  padding-right: max(24px, calc((100vw - var(--content)) / 2));
  background: var(--surface);
  box-shadow: none;
  clip-path: none;
  overflow: clip;
}

.product-section::before,
.faq::before {
  content: none !important;
  display: none !important;
}

.bento-grid,
.workflow-grid {
  gap: 24px !important;
}

.workflow-grid {
  margin-bottom: 24px !important;
}

.spotlight-card {
  margin-top: 0 !important;
}

.privacy-section .text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

.privacy-section .text-link:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

@media (max-width: 760px) {
  .product-section,
  .faq {
    padding-left: 24px;
    padding-right: 24px;
  }

  .bento-grid,
  .workflow-grid {
    gap: 16px !important;
  }

  .workflow-grid {
    margin-bottom: 16px !important;
  }
}

/* Release layout override — keep this block last. */
.product-section,
.faq {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(24px, calc((100vw - var(--content)) / 2));
  padding-right: max(24px, calc((100vw - var(--content)) / 2));
  background: var(--surface);
  box-shadow: none;
  clip-path: none;
  overflow: clip;
}

.product-section::before,
.faq::before {
  content: none !important;
  display: none !important;
}

.bento-grid,
.workflow-grid {
  gap: 24px !important;
}

.workflow-grid {
  margin-bottom: 24px !important;
}

.spotlight-card {
  margin-top: 0 !important;
}

.privacy-section .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid #111827;
  border-radius: 12px;
  color: #fff;
  background: #111827;
  font-weight: 700;
  text-decoration: none;
}

.privacy-section .text-link:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

@media (max-width: 760px) {
  .product-section,
  .faq {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .bento-grid,
  .workflow-grid {
    gap: 16px !important;
  }

  .workflow-grid {
    margin-bottom: 16px !important;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
  background: var(--page);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

main,
section,
article,
div {
  min-width: 0;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  color: inherit;
  font: inherit;
}

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

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgb(10 132 255 / 32%);
  outline-offset: 3px;
}

::selection {
  background: #cfe2ff;
  color: var(--ink);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  padding: 18px 0 0;
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgb(223 225 229 / 88%);
  border-radius: 18px;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 12px 34px rgb(20 21 26 / 7%);
  backdrop-filter: blur(18px) saturate(140%);
  pointer-events: auto;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.015em;
}

.wordmark img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu > a:not(.nav-download) {
  padding: 10px 12px;
  border-radius: 9px;
  color: #5d5f66;
  font-size: 14px;
  font-weight: 540;
  transition: color 160ms ease, background 160ms ease;
}

.nav-menu > a:not(.nav-download):hover {
  background: var(--surface-soft);
  color: var(--ink);
}

.nav-download,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-download {
  min-height: 42px;
  margin-left: 4px;
  padding-inline: 17px;
}

.nav-download:hover,
.button-primary:hover {
  transform: translateY(-1px);
  background: #28292f;
  box-shadow: 0 8px 20px rgb(20 21 26 / 14%);
}

.button-secondary {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--ink);
}

.button-secondary:hover {
  transform: translateY(-1px);
  border-color: #aeb1b7;
  box-shadow: 0 7px 18px rgb(20 21 26 / 7%);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  position: relative;
  display: block;
  width: 19px;
  height: 1.5px;
  background: var(--ink);
}

.menu-button span::before,
.menu-button span::after {
  position: absolute;
  left: 0;
  width: 19px;
  height: 1.5px;
  background: var(--ink);
  content: "";
}

.menu-button span::before {
  top: -6px;
}

.menu-button span::after {
  top: 6px;
}

.hero {
  padding: 118px 0 88px;
}

.hero-copy {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 29px;
  margin: 0 0 22px;
  padding: 5px 10px;
  border: 1px solid #cbd9f4;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #255bb5;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 630;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.hero-actions,
.final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.hero-actions .button,
.final-actions .button {
  min-width: 152px;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-meta span:not(:last-child)::after {
  width: 3px;
  height: 3px;
  margin-left: 2px;
  border-radius: 50%;
  background: var(--faint);
  content: "";
}

.hero-stage {
  position: relative;
  width: min(1100px, 100%);
  margin: 94px auto 0;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 82% 15%, rgb(10 132 255 / 9%), transparent 30%),
    linear-gradient(145deg, #f3f4f6, #e9ebef);
  box-shadow: var(--shadow-md);
}

.app-window {
  position: relative;
  overflow: hidden;
  border: 1px solid #d5d8dd;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 20px 48px rgb(20 21 26 / 13%);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgb(25 183 101 / 11%);
}

.app-window img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto !important;
  object-fit: contain;
  object-position: center top;
}

.floating-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid rgb(223 225 229 / 90%);
  border-radius: 12px;
  background: rgb(255 255 255 / 91%);
  box-shadow: 0 12px 32px rgb(20 21 26 / 11%);
  color: var(--text);
  font-size: 12px;
  font-weight: 620;
  backdrop-filter: blur(15px);
}

.floating-chip strong {
  color: var(--blue);
}

.chip-markets {
  top: 27px;
  right: 30px;
}

.chip-ranks {
  bottom: 28px;
  left: 26px;
}

.section-heading {
  max-width: 670px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.pricing-aside h2,
.faq-heading h2,
.final-cta h2,
.legal-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 610;
  letter-spacing: -0.052em;
  line-height: 1.03;
}

.section-heading p,
.pricing-aside > p,
.faq-heading > p,
.final-cta > p,
.legal-hero p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  letter-spacing: -0.015em;
}

.product-section,
.workflow,
.privacy-section,
.pricing-section,
.faq,
.final-cta {
  padding: 120px 0;
}

.product-section,
.privacy-section,
.faq {
  background: var(--surface);
}

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

.feature-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.feature-card-wide {
  display: grid;
  min-height: 530px;
  grid-column: 1 / -1;
  grid-template-columns: 0.78fr 1.22fr;
}

.card-copy {
  position: relative;
  z-index: 2;
  padding: 42px;
}

.feature-card:not(.feature-card-wide) .card-copy {
  min-height: 245px;
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin: 0 0 20px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--surface-blue);
  color: #3268bd;
  font-size: 11px;
  font-weight: 680;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.card-copy h3,
.spotlight-copy h3,
.pricing-point h3,
.legal-document h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 610;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.card-copy > p,
.spotlight-copy > p,
.pricing-point p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

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

.mini-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4a4c53;
  font-size: 14px;
  font-weight: 540;
}

.mini-list li::before {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  content: "✓";
  font-size: 11px;
  font-weight: 800;
}

.card-media {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-width: 0;
  min-height: 0;
  padding: 0 26px;
  overflow: hidden;
  background: linear-gradient(180deg, transparent, rgb(235 237 241 / 80%));
}

.feature-card-wide .card-media {
  align-items: center;
  padding: 34px 34px 34px 0;
  background: linear-gradient(90deg, transparent, rgb(235 237 241 / 75%));
}

.card-media img {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  height: auto !important;
  object-fit: contain;
  object-position: center top;
  border: 1px solid #d8dade;
  border-radius: 15px 15px 0 0;
  box-shadow: 0 14px 35px rgb(20 21 26 / 11%);
}

.feature-card-wide .card-media img {
  border-radius: 15px;
}

.media-bottom {
  margin-top: auto;
}

.media-zoom-left img,
.media-zoom-right img {
  width: 100%;
  max-width: 100%;
  transform: none;
}

.metrics-band {
  padding: 78px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

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

.metrics-grid > div {
  padding: 0 34px;
  text-align: center;
}

.metrics-grid > div:not(:last-child) {
  border-right: 1px solid var(--line-strong);
}

.metrics-grid strong {
  display: block;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 590;
  letter-spacing: -0.045em;
  line-height: 1;
}

.metrics-grid span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

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

.spotlight-card {
  display: grid;
  min-height: 420px;
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.spotlight-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 46px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 25px;
  font-size: 14px;
  font-weight: 650;
}

.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

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

.spotlight-media {
  display: flex;
  align-items: flex-end;
  min-width: 0;
  min-height: 0;
  padding: 34px 0 0 34px;
  overflow: hidden;
  background: var(--surface-soft);
}

.spotlight-media img {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  height: auto !important;
  object-fit: contain;
  object-position: center top;
  border: 1px solid #d8dade;
  border-radius: 16px 0 0 0;
  box-shadow: 0 15px 40px rgb(20 21 26 / 11%);
}

.workflow-grid > article {
  min-height: 230px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.workflow-grid h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 610;
  letter-spacing: -0.03em;
}

.workflow-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.workflow-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

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

.privacy-intro {
  padding-right: 28px;
}

.privacy-intro h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 610;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.privacy-intro p {
  margin: 18px 0 0;
  color: var(--muted);
}

.privacy-grid article {
  min-height: 255px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.privacy-icon {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 50px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
  font-weight: 760;
}

.privacy-grid article h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 620;
  letter-spacing: -0.025em;
}

.privacy-grid article p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  gap: 76px;
  align-items: center;
}

.pricing-aside > p {
  max-width: 490px;
}

.pricing-points {
  display: grid;
  gap: 25px;
  margin-top: 42px;
}

.pricing-point {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
}

.pricing-point::before {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
  color: var(--blue);
  content: "✓";
  font-size: 13px;
  font-weight: 800;
}

.pricing-point h3 {
  font-size: 16px;
  letter-spacing: -0.015em;
}

.pricing-point p {
  margin-top: 3px;
  font-size: 14px;
}

.price-card {
  overflow: hidden;
  border: 1px solid #d5d7dc;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.price-toggle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin: 24px 24px 0;
  padding: 4px;
  border-radius: 11px;
  background: var(--surface-soft);
}

.price-toggle button {
  min-height: 40px;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}

.price-toggle button[aria-pressed="true"] {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 1px 3px rgb(20 21 26 / 8%);
  color: var(--ink);
}

.price-card-head {
  padding: 32px 34px 28px;
}

.price-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.price-title {
  font-size: 17px;
  font-weight: 650;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #2861b8;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.price-amount-row {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  margin-top: 26px;
}

[data-price-amount] {
  font-size: 61px;
  font-weight: 580;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

[data-price-period] {
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 14px;
}

[data-price-note] {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.price-divider {
  height: 1px;
  margin: 0 34px;
  background: var(--line);
}

.price-body {
  padding: 28px 34px 34px;
}

.included-label {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 620;
}

.price-features {
  display: grid;
  gap: 13px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #44464d;
  font-size: 14px;
}

.price-features li::before {
  color: var(--ink);
  content: "✓";
  font-weight: 800;
}

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

.price-alt {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.price-saving {
  color: var(--green);
  font-weight: 660;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 118px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 25px 42px 25px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 2px;
  color: var(--muted);
  content: "+";
  font-size: 24px;
  font-weight: 300;
}

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

.faq-list details p {
  max-width: 710px;
  margin: -5px 0 25px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.final-cta {
  text-align: center;
}

.final-cta .page-width {
  padding: 80px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.final-cta > .page-width > p {
  max-width: 580px;
  margin-inline: auto;
}

.site-footer {
  padding: 72px 0 30px;
  border-top: 1px solid var(--line);
  background: #eff0f2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.footer-brand strong {
  display: block;
  font-size: 15px;
}

.footer-brand span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.footer-column h3 {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 620;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin-top: 9px;
  color: #3f4147;
  font-size: 13px;
}

.footer-column a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 23px;
  border-top: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-content nav {
  display: flex;
  gap: 20px;
}

.footer-content nav a,
.footer-content > p {
  color: var(--muted);
  font-size: 13px;
}

.legal-main {
  padding: 100px 0 120px;
}

.legal-hero {
  max-width: 770px;
  padding: 65px 0 50px;
}

.legal-hero p {
  max-width: 650px;
}

.legal-document {
  max-width: 820px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.legal-document h2 {
  margin-top: 46px;
  font-size: 25px;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document h3 {
  margin: 30px 0 0;
  font-size: 18px;
}

.legal-document p,
.legal-document li {
  color: #595b62;
  font-size: 15px;
  line-height: 1.7;
}

.legal-document a {
  color: #1f62bf;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-note {
  padding: 17px 19px;
  border: 1px solid #cbd9f4;
  border-radius: var(--radius-sm);
  background: var(--surface-blue);
  color: #395578;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2, .7, .2, 1);
}

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

@media (max-width: 960px) {
  .page-width {
    width: min(calc(100% - 36px), var(--content));
  }

  .hero {
    padding-top: 95px;
  }

  .hero-stage {
    padding: 28px;
  }

  .feature-card-wide,
  .spotlight-card {
    grid-template-columns: 1fr;
  }

  .feature-card-wide .card-media {
    padding: 0 34px 34px;
  }

  .spotlight-copy {
    padding-bottom: 35px;
  }

  .spotlight-media {
    min-height: 0;
  }

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

  .privacy-intro {
    grid-column: 1 / -1;
    max-width: 620px;
    margin-bottom: 22px;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .pricing-aside {
    max-width: 680px;
  }

  .price-card {
    width: min(590px, 100%);
  }

  .faq-layout {
    gap: 55px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 78px;
  }

  .page-width {
    width: min(calc(100% - 28px), var(--content));
  }

  .site-header {
    padding-top: 10px;
  }

  .nav {
    min-height: 54px;
    padding: 6px 7px 6px 10px;
    border-radius: 14px;
  }

  .wordmark span {
    display: none;
  }

  .wordmark img {
    width: 36px;
    height: 36px;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    top: 74px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgb(255 255 255 / 97%);
    box-shadow: 0 18px 50px rgb(20 21 26 / 13%);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
  }

  .nav-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-menu > a:not(.nav-download) {
    padding: 13px 12px;
  }

  .nav-download {
    width: 100%;
    margin: 4px 0 0;
  }

  .hero {
    padding: 92px 0 68px;
  }

  .eyebrow,
  .section-pill {
    margin-bottom: 17px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 56px);
    letter-spacing: -0.055em;
    line-height: 1;
  }

  .hero-copy > p:not(.eyebrow) {
    margin-top: 20px;
    font-size: 17px;
  }

  .hero-actions,
  .final-actions {
    width: 100%;
    flex-direction: column;
    gap: 8px;
    margin-top: 28px;
  }

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

  .hero-meta {
    gap: 7px;
    font-size: 12px;
  }

  .hero-stage {
    margin-top: 64px;
    padding: 16px;
    border-radius: 20px;
  }

  .app-window {
    border-radius: 13px;
  }

  .floating-chip {
    display: none;
  }

  .product-section,
  .workflow,
  .privacy-section,
  .pricing-section,
  .faq,
  .final-cta {
    padding: 86px 0;
  }

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

  .section-heading h2,
  .pricing-aside h2,
  .faq-heading h2,
  .final-cta h2,
  .legal-hero h1 {
    font-size: 38px;
  }

  .section-heading p,
  .pricing-aside > p,
  .faq-heading > p,
  .final-cta > p,
  .legal-hero p {
    font-size: 16px;
  }

  .bento-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-wide {
    display: flex;
    min-height: 0;
  }

  .card-copy,
  .feature-card:not(.feature-card-wide) .card-copy {
    min-height: 0;
    padding: 30px 26px;
  }

  .card-copy h3,
  .spotlight-copy h3 {
    font-size: 25px;
  }

  .feature-card-wide .card-media,
  .card-media {
    min-height: 0;
    padding: 0 18px;
  }

  .feature-card-wide .card-media {
    padding-bottom: 18px;
  }

  .feature-card-wide .card-media img {
    border-radius: 12px;
  }

  .metrics-band {
    padding: 52px 0;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 38px;
  }

  .metrics-grid > div {
    padding: 0 14px;
  }

  .metrics-grid > div:nth-child(2) {
    border-right: 0;
  }

  .spotlight-copy {
    padding: 34px 27px;
  }

  .spotlight-media {
    min-height: 0;
    padding: 18px 0 0 18px;
  }

  .workflow-grid > article {
    min-height: 210px;
    padding: 30px 27px;
  }

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

  .privacy-intro {
    grid-column: auto;
    padding-right: 0;
  }

  .privacy-grid article {
    min-height: 220px;
  }

  .privacy-icon {
    margin-bottom: 36px;
  }

  .pricing-layout {
    gap: 42px;
  }

  .price-card-head,
  .price-body {
    padding-inline: 26px;
  }

  .price-divider {
    margin-inline: 26px;
  }

  [data-price-amount] {
    font-size: 53px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-heading {
    position: static;
  }

  .final-cta .page-width {
    padding: 54px 22px;
    border-radius: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 25px;
  }

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

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

  .footer-content nav {
    flex-wrap: wrap;
  }

  .legal-main {
    padding: 70px 0 85px;
  }

  .legal-document {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .page-width {
    width: min(calc(100% - 24px), var(--content));
  }

  .hero {
    padding-top: 76px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-meta span:not(:last-child)::after {
    display: none;
  }

  .hero-meta {
    flex-direction: column;
  }

  .section-heading h2,
  .pricing-aside h2,
  .faq-heading h2,
  .final-cta h2,
  .legal-hero h1 {
    font-size: 34px;
  }

  .feature-card,
  .workflow-grid > article,
  .privacy-grid article,
  .price-card,
  .final-cta .page-width {
    border-radius: 18px;
  }

  .metrics-grid strong {
    font-size: 34px;
  }

  .metrics-grid span {
    font-size: 12px;
  }

  .price-toggle {
    margin-inline: 18px;
  }

  .price-card-head,
  .price-body {
    padding-inline: 22px;
  }

  .price-divider {
    margin-inline: 22px;
  }

  .faq-list summary {
    font-size: 16px;
  }

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

/* 2026-08-19 final layout overrides — keep this block at EOF. */
.product-section,
.faq {
  position: relative;
  isolation: isolate;
  background: transparent;
}

.product-section::before,
.faq::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--surface);
}

.bento-grid,
.workflow-grid {
  gap: 24px;
}

.workflow-grid {
  margin-bottom: 24px;
}

.spotlight-card {
  margin-top: 0;
}

.privacy-section {
  display: grid;
  grid-template-columns: 64px minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 40px 44px;
  margin-top: 96px;
  margin-bottom: 96px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.privacy-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--surface-soft);
}

.privacy-section h2 {
  font-size: clamp(30px, 3vw, 40px);
}

.privacy-section > div:last-child {
  max-width: 570px;
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.privacy-section > div:last-child > p {
  max-width: none;
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.6;
}

.privacy-section .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
}

@media (max-width: 960px) {
  .privacy-section {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .privacy-section > div:last-child {
    grid-column: 1 / -1;
    max-width: none;
    padding: 28px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .bento-grid,
  .workflow-grid {
    gap: 16px;
  }

  .workflow-grid {
    margin-bottom: 16px;
  }

  .privacy-section {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 26px 22px;
    margin-top: 72px;
    margin-bottom: 72px;
    border-radius: 22px;
  }

  .privacy-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .privacy-section > div:last-child {
    grid-column: auto;
    padding-top: 22px;
  }
}

/* Final layout polish: full-width section backgrounds and clearer spacing. */
.product-section,
.faq {
  position: relative;
  isolation: isolate;
  background: transparent;
}

.product-section::before,
.faq::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset-block: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--surface);
}

.bento-grid,
.workflow-grid {
  gap: 24px;
}

.workflow-grid {
  margin-bottom: 24px;
}

.privacy-section {
  display: grid;
  grid-template-columns: 64px minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 40px 44px;
  margin-top: 96px;
  margin-bottom: 96px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.privacy-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--surface-soft);
}

.privacy-section h2 {
  font-size: clamp(30px, 3vw, 40px);
}

.privacy-section > div:last-child {
  max-width: 570px;
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.privacy-section > div:last-child > p {
  max-width: none;
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.6;
}

.privacy-section .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
}

@media (max-width: 960px) {
  .privacy-section {
    grid-template-columns: 56px 1fr;
    padding: 34px;
  }

  .privacy-section > div:last-child {
    grid-column: 1 / -1;
    max-width: none;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .bento-grid,
  .workflow-grid {
    gap: 16px;
  }

  .workflow-grid {
    margin-bottom: 16px;
  }

  .privacy-section {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 22px;
    margin-top: 72px;
    margin-bottom: 72px;
  }

  .privacy-section > div:last-child {
    grid-column: auto;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Blank-inspired responsive composition for the current landing-page markup. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  margin: -1px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 9px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.menu-button {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.menu-button .sr-only::before,
.menu-button .sr-only::after {
  content: none;
}

.menu-button i {
  position: absolute;
  left: 50%;
  display: block;
  width: 19px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: top 160ms ease, transform 160ms ease;
}

.menu-button i:first-of-type {
  top: 17px;
}

.menu-button i:last-of-type {
  top: 24px;
}

.menu-button[aria-expanded="true"] i:first-of-type {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-button[aria-expanded="true"] i:last-of-type {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

.hero-meta span:not(:last-child)::after {
  content: none;
}

.hero-meta i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--faint);
}

.product-section,
.workflow,
.pricing-section,
.faq {
  padding: 120px 0;
}

.product-section,
.faq {
  background: var(--surface);
}

.text-link::after {
  content: none;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(3px);
}

.workflow-grid .feature-card {
  min-height: 470px;
}

.workflow-grid .feature-card .card-copy {
  min-height: 230px;
}

.privacy-section {
  display: grid;
  grid-template-columns: 56px minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: start;
  padding: 0;
  margin-top: 120px;
  margin-bottom: 120px;
  background: transparent;
}

.privacy-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
}

.privacy-icon svg {
  width: 22px;
  height: 22px;
}

.privacy-section h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 610;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.privacy-section > div:last-child > p {
  max-width: 650px;
  margin: 3px 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(440px, 1.05fr) minmax(0, 0.95fr);
  gap: 60px;
  align-items: center;
  max-width: 1060px;
  margin: 60px auto 0;
}

.price-card {
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.price-toggle {
  margin: 0 0 28px;
}

.price-toggle button span {
  display: inline-flex;
  margin-left: 4px;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #2861b8;
  font-size: 10px;
}

.price-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 0 10px 24px;
}

.price-plan {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.price-title {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  margin-top: 22px;
}

[data-price-amount] {
  font-size: 62px;
  font-weight: 590;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

[data-price-period] {
  padding-bottom: 3px;
}

[data-price-note] {
  margin-top: 14px;
}

.price-divider {
  margin: 0 10px;
}

.included-label {
  margin: 24px 10px 18px;
}

.price-features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 20px;
  margin: 0 10px 28px;
}

.price-features li {
  font-size: 13px;
  line-height: 1.45;
}

.price-card > .button,
.price-card > .price-alt,
.price-card > .price-saving {
  margin-right: 10px;
  margin-left: 10px;
}

.price-card > .button {
  width: calc(100% - 20px);
}

.price-saving {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 12px;
  text-align: center;
}

.pricing-aside {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.pricing-point {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.pricing-point::before {
  content: none;
}

.pricing-point > span {
  color: var(--faint);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.pricing-point strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  letter-spacing: -0.02em;
}

.pricing-point p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 90px;
  align-items: start;
}

.faq-list summary::after {
  content: none;
}

.faq-list summary > span {
  color: var(--faint);
  font-size: 22px;
  font-weight: 400;
  transition: transform 160ms ease;
}

.faq-list details[open] summary > span {
  transform: rotate(45deg);
}

.final-cta {
  display: grid;
  justify-items: center;
  padding: 80px 32px;
  margin-top: 120px;
  margin-bottom: 120px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface-soft);
  text-align: center;
}

.final-cta img {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  border-radius: 16px;
}

.final-cta > p {
  max-width: 620px;
  margin: 20px auto 0;
}

.footer-brand p {
  max-width: 240px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.footer-grid > nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid > nav span {
  margin-bottom: 4px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 650;
}

.footer-grid > nav a {
  color: var(--ink);
  font-size: 13px;
}

.footer-grid > nav a:hover {
  color: var(--blue);
}

@media (max-width: 960px) {
  .privacy-section {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .privacy-section > div:last-child {
    grid-column: 2;
  }

  .pricing-layout,
  .faq {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .pricing-layout {
    max-width: 700px;
  }

  .pricing-aside {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 0;
    gap: 22px;
  }

  .pricing-point {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
    border-bottom: 0;
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 760px) {
  .product-section,
  .workflow,
  .pricing-section,
  .faq {
    padding: 88px 0;
  }

  .hero-meta {
    flex-direction: row;
  }

  .workflow-grid .feature-card,
  .workflow-grid .feature-card .card-copy {
    min-height: 0;
  }

  .privacy-section {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 88px;
    margin-bottom: 88px;
  }

  .privacy-section > div:last-child {
    grid-column: 1;
  }

  .privacy-section h2 {
    font-size: 34px;
  }

  .pricing-layout {
    margin-top: 46px;
  }

  .price-card {
    padding: 18px;
    border-radius: 20px;
  }

  .price-card-head {
    padding-right: 5px;
    padding-left: 5px;
  }

  .price-divider,
  .included-label,
  .price-features,
  .price-card > .button,
  .price-card > .price-alt,
  .price-card > .price-saving {
    margin-right: 5px;
    margin-left: 5px;
  }

  .price-card > .button {
    width: calc(100% - 10px);
  }

  .price-features {
    grid-template-columns: 1fr;
  }

  .pricing-aside {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .pricing-point {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
  }

  .faq {
    gap: 48px;
  }

  .final-cta {
    padding: 64px 22px;
    margin-top: 88px;
    margin-bottom: 88px;
    border-radius: 22px;
  }

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

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

@media (max-width: 480px) {
  .hero-meta i {
    display: none;
  }

  .hero-meta {
    flex-direction: column;
  }

  .price-card-head {
    grid-template-columns: 1fr;
  }

  .price-badge {
    justify-self: start;
  }

  [data-price-amount] {
    font-size: 54px;
  }

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

/* Final full-bleed, card spacing, privacy and FAQ corrections. */
.product-section,
.faq {
  background: var(--surface);
  box-shadow: 0 0 0 100vmax var(--surface);
  clip-path: inset(0 -100vmax);
}

.product-section::before,
.faq::before {
  display: none;
}

.bento-grid,
.workflow-grid {
  column-gap: 24px;
  row-gap: 24px;
}

.workflow-grid {
  margin-bottom: 24px;
}

.spotlight-card {
  margin-top: 0;
}

.privacy-section {
  display: grid;
  grid-template-columns: 64px minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 40px 44px;
  margin-top: 96px;
  margin-bottom: 96px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.privacy-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--surface-soft);
}

.privacy-section h2 {
  font-size: clamp(30px, 3vw, 40px);
}

.privacy-section > div:last-child {
  max-width: 570px;
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.privacy-section > div:last-child > p {
  max-width: none;
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.6;
}

.privacy-section .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
}

@media (max-width: 960px) {
  .privacy-section {
    grid-template-columns: 64px 1fr;
  }

  .privacy-section > div:last-child {
    grid-column: 1 / -1;
    max-width: none;
    padding: 28px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .bento-grid,
  .workflow-grid {
    column-gap: 16px;
    row-gap: 16px;
  }

  .workflow-grid {
    margin-bottom: 16px;
  }

  .privacy-section {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 22px;
    margin-top: 72px;
    margin-bottom: 72px;
    border-radius: 22px;
  }

  .privacy-icon {
    width: 56px;
    height: 56px;
  }

  .privacy-section > div:last-child {
    grid-column: 1;
    padding-top: 22px;
  }

  .privacy-section h2 {
    font-size: 32px;
  }

  .privacy-section > div:last-child > p {
    font-size: 16px;
  }
}

/* Release layout override — keep this block last. */
.product-section,
.faq {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(24px, calc((100vw - var(--content)) / 2));
  padding-right: max(24px, calc((100vw - var(--content)) / 2));
  background: var(--surface);
  box-shadow: none;
  clip-path: none;
  overflow: clip;
}

.product-section::before,
.faq::before {
  content: none !important;
  display: none !important;
}

.bento-grid,
.workflow-grid {
  gap: 24px !important;
}

.workflow-grid {
  margin-bottom: 24px !important;
}

.spotlight-card {
  margin-top: 0 !important;
}

.privacy-section .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid #111827;
  border-radius: 12px;
  color: #fff;
  background: #111827;
  font-weight: 700;
  text-decoration: none;
}

.privacy-section .text-link:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

@media (max-width: 760px) {
  .product-section,
  .faq {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .bento-grid,
  .workflow-grid {
    gap: 16px !important;
  }

  .workflow-grid {
    margin-bottom: 16px !important;
  }
}
