:root {
  --page: #f6f0e7;
  --paper: #fffdf8;
  --panel: rgba(255, 252, 246, 0.84);
  --panel-strong: #ffffff;
  --line: rgba(47, 65, 99, 0.14);
  --line-strong: rgba(45, 67, 109, 0.24);
  --ink: #18253e;
  --ink-soft: #607089;
  --ink-faint: #7f8da5;
  --blue: #3f67eb;
  --blue-deep: #2347bf;
  --teal: #159f96;
  --mint: #dff6ea;
  --mint-ink: #2f8058;
  --peach: #ffd6b4;
  --gold: #e6ac4b;
  --rose: #e36c68;
  --amber: #f4a448;
  --night: #ef8a2b;
  --shadow: 0 24px 80px rgba(31, 45, 73, 0.12);
  --shadow-soft: 0 12px 32px rgba(31, 45, 73, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --content: min(1180px, calc(100vw - 48px));
  --editorial-font: "Baskerville", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --clean-sans-font: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(110, 170, 255, 0.22), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 199, 143, 0.26), transparent 32%),
    linear-gradient(180deg, #fbf8f2 0%, #f5eee4 54%, #fbfaf6 100%);
}

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

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

button,
.button {
  font: inherit;
}

.page-shell {
  overflow: clip;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(transparent 0, transparent 98%, rgba(255, 255, 255, 0.6) 100%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.32) 0, transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.22) 0, transparent 24%),
    radial-gradient(circle at 60% 80%, rgba(255, 255, 255, 0.24) 0, transparent 18%);
  mix-blend-mode: screen;
}

.container {
  width: var(--content);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 248, 242, 0.72);
  border-bottom: 1px solid rgba(39, 62, 106, 0.08);
}

.site-header__inner {
  width: var(--content);
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  padding: 8px;
  background: linear-gradient(160deg, #091121 0%, #14274b 100%);
  box-shadow: 0 16px 40px rgba(29, 42, 72, 0.2);
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

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

.brand-copy__eyebrow {
  margin: 0 0 3px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.brand-copy__name {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
}

.brand-copy__sub {
  margin: 0;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  transition: background-color 140ms ease, color 140ms ease, transform 140ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--ink);
  background: rgba(75, 108, 187, 0.08);
  transform: translateY(-1px);
}

.hero {
  padding: 54px 0 34px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 28px;
  align-items: center;
}

.eyebrow-row,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(63, 103, 235, 0.14);
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink-soft);
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(26, 39, 64, 0.04);
}

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

.hero h1,
.page-hero h1,
.section-heading h2,
.legal-hero h1,
.support-hero h1 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(2.85rem, 5.2vw, 5rem);
  margin-bottom: 16px;
}

.hero p.lead,
.page-hero p.lead,
.support-hero p.lead,
.legal-hero p.lead {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.68;
  color: var(--ink-soft);
  max-width: 620px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease, background-color 140ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, #355ce0 0%, #1ea9a0 100%);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(49, 91, 203, 0.22);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(50, 76, 124, 0.12);
  color: var(--ink);
}

.button--ghost {
  background: transparent;
  border-color: rgba(50, 76, 124, 0.12);
  color: var(--ink-soft);
}

.home-main {
  padding-top: 18px;
  font-family: var(--editorial-font);
}

.home-main .chip,
.home-main .button,
.home-main .home-status-pill strong,
.home-main .media-expand-button,
.home-main .demo-chip,
.home-main .kicker,
.home-main .home-feature-card__eyebrow {
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
}

.home-landing {
  padding: 10px 0 8px;
}

.home-landing__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 22px;
  align-items: start;
}

.home-landing__copy {
  padding-top: 10px;
}

.home-manifesto {
  margin: 0 0 10px;
  color: #314a7b;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
}

.home-landing__copy h1 {
  max-width: 560px;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  margin-bottom: 14px;
  font-family: var(--editorial-font);
  line-height: 0.95;
}

.home-landing__hook {
  margin: 0 0 10px;
  max-width: 520px;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.45;
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
}

.home-landing__copy .lead {
  max-width: 560px;
  font-size: 0.98rem;
  line-height: 1.58;
}

.home-landing__support {
  margin: 10px 0 0;
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
}

.home-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.home-status-pill {
  display: inline-flex;
  flex-direction: column;
  flex: 1 1 180px;
  gap: 4px;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(39, 60, 98, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(31, 45, 73, 0.06);
}

.home-status-pill strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.home-status-pill span {
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.4;
}

.home-landing__media {
  display: flex;
  justify-content: flex-end;
}

.home-feature-card {
  width: min(100%, 430px);
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(39, 60, 98, 0.1);
  background:
    radial-gradient(circle at top right, rgba(255, 213, 173, 0.24), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(249, 251, 255, 0.82) 100%);
  box-shadow: var(--shadow-soft);
}

.home-feature-card__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.home-feature-card__eyebrow {
  display: inline-flex;
  margin-bottom: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.home-feature-card__header h2 {
  margin: 0;
  font-size: 1.08rem;
  font-family: var(--editorial-font);
}

.home-feature-card__caption {
  margin: 12px 2px 0;
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 0.88rem;
}

.home-snapshot-row {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 16px;
  margin-top: 10px;
  padding: 2px 0 6px;
}

.home-snapshot-card {
  flex: 0 1 230px;
  margin: 0;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid rgba(39, 60, 98, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
}

.home-media-frame {
  margin: 0;
  display: grid;
  position: relative;
  overflow: hidden;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(36, 56, 92, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 245, 252, 0.88) 100%);
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
}

.home-media-frame--featured {
  padding: 12px;
}

.home-media-frame img,
.home-media-frame video {
  grid-area: 1 / 1;
  width: 100%;
  display: block;
  aspect-ratio: 2940 / 1912;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(36, 56, 92, 0.08);
  background: linear-gradient(180deg, #fbfaf7 0%, #eef3fb 100%);
}

.home-snapshot-card img {
  width: 100%;
  display: block;
  aspect-ratio: 2940 / 1912;
  object-fit: contain;
  border-radius: 13px;
  border: 1px solid rgba(36, 56, 92, 0.08);
  background: linear-gradient(180deg, #fbfaf7 0%, #eef3fb 100%);
}

.home-snapshot-card--left {
  transform: translateY(18px) rotate(-4deg);
}

.home-snapshot-card--center {
  transform: translateY(0) rotate(-1deg);
}

.home-snapshot-card--right {
  transform: translateY(16px) rotate(3deg);
}

.media-expand-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(38, 61, 104, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  cursor: pointer;
  transition: transform 140ms ease, background-color 140ms ease, box-shadow 140ms ease;
}

.media-expand-button:hover,
.media-expand-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 18px rgba(31, 45, 73, 0.1);
}

.home-proof {
  padding: 18px 0 36px;
}

.home-proof__compact {
  max-width: 760px;
}

.home-proof__compact h2 {
  margin: 0 0 14px;
  font-family: var(--editorial-font);
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.home-proof__compact p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 0.98rem;
}

.home-proof__list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.home-proof__item {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(39, 60, 98, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 22px rgba(31, 45, 73, 0.05);
}

.home-proof__item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.98rem;
}

.home-proof__item span {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

.home-gallery-source {
  display: none;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(8, 14, 26, 0.7);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.media-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.media-lightbox__panel {
  position: relative;
  width: min(1240px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(147, 167, 214, 0.16);
  background: rgba(12, 20, 38, 0.94);
  box-shadow: 0 32px 84px rgba(0, 0, 0, 0.34);
}

.media-lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
}

.media-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font-size: 1.45rem;
}

.media-lightbox__nav--prev {
  left: 16px;
}

.media-lightbox__nav--next {
  right: 16px;
}

.media-lightbox__meta {
  margin: 0 54px 14px 4px;
  color: rgba(240, 244, 255, 0.88);
}

.media-lightbox__meta strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.media-lightbox__meta span {
  display: block;
  margin-top: 5px;
  color: rgba(201, 212, 236, 0.76);
  font-size: 0.92rem;
}

.media-lightbox__media {
  display: grid;
  place-items: center;
  min-height: min(72vh, 820px);
  padding: 12px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(16, 27, 48, 1) 0%, rgba(9, 18, 33, 1) 100%);
  overflow: hidden;
}

.media-lightbox__media img,
.media-lightbox__media video {
  max-width: 100%;
  max-height: calc(100vh - 150px);
  width: auto;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
}

body.media-lightbox-open {
  overflow: hidden;
}

.hero-note {
  margin-top: 18px;
  color: var(--ink-faint);
  line-height: 1.6;
  max-width: 600px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-point {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(43, 63, 108, 0.1);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow-soft);
}

.hero-point strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.hero-point span {
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.visual-card {
  position: absolute;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 56px 14px 14px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(35, 55, 94, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(246, 248, 252, 0.88) 100%);
  box-shadow: var(--shadow);
}

.visual-card img {
  width: 100%;
  aspect-ratio: 2940 / 1912;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfaf7 0%, #f0f4fb 100%);
  border: 1px solid rgba(40, 63, 101, 0.08);
}

.visual-card--main {
  top: 34px;
  right: 0;
  width: 84%;
}

.visual-card--top {
  top: 8px;
  left: 0;
  width: 42%;
}

.visual-card--bottom {
  left: 9%;
  bottom: 8px;
  width: 46%;
}

.visual-label {
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 28, 49, 0.84);
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section {
  padding: 44px 0;
}

.section--wide {
  padding: 70px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 26px;
}

.section-heading h2 {
  font-size: clamp(1.95rem, 3.5vw, 3rem);
}

.section-heading p,
.section-intro {
  max-width: 600px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 1rem;
}

.panel-grid {
  display: grid;
  gap: 18px;
}

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

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

.feature-card,
.product-card,
.surface-card,
.quote-card,
.legal-card,
.support-card,
.timeline-card,
.privacy-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(39, 60, 98, 0.1);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.feature-card h3,
.product-card h3,
.surface-card h3,
.quote-card h3,
.legal-card h2,
.support-card h2,
.timeline-card h3,
.privacy-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.feature-card p,
.product-card p,
.surface-card p,
.quote-card p,
.legal-card p,
.support-card p,
.timeline-card p,
.privacy-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.list {
  margin: 16px 0 0;
  padding: 0 0 0 18px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.list li + li {
  margin-top: 10px;
}

.section-band {
  border-block: 1px solid rgba(39, 60, 98, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.45) 100%);
}

.product-card {
  position: relative;
  overflow: hidden;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(76, 129, 255, 0.12) 0%, transparent 70%);
}

.product-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.product-state strong {
  color: var(--ink);
}

.state-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.state-dot--assist {
  background: #2bb673;
}

.state-dot--insight {
  background: #4472ff;
}

.state-dot--auto {
  background: #9e62ff;
}

.surface-card {
  display: grid;
  gap: 18px;
}

.surface-card figure,
.showcase-card figure,
.story-card figure,
.demo-card__media {
  margin: 0;
  display: grid;
  position: relative;
  overflow: hidden;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(36, 56, 92, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 246, 255, 0.88) 100%);
  box-shadow: var(--shadow-soft);
}

.surface-card img,
.surface-card video,
.showcase-card img,
.showcase-card video,
.story-card img,
.story-card video,
.demo-card__media img,
.demo-card__media video {
  grid-area: 1 / 1;
  width: 100%;
  display: block;
  aspect-ratio: 2940 / 1912;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(36, 56, 92, 0.08);
  background: linear-gradient(180deg, #fbfaf7 0%, #eef3fb 100%);
}

.surface-card video,
.showcase-card video,
.story-card video,
.demo-card__media video {
  object-fit: cover;
  transform: scale(var(--site-demo-scale, 1.04)) translate3d(var(--site-demo-x, 0%), var(--site-demo-y, -1.5%), 0);
  transform-origin: center center;
  will-change: transform;
}

.site-demo-video--linkedin {
  --site-demo-scale: 1.045;
  --site-demo-y: -1.6%;
}

.site-demo-video--slots {
  --site-demo-scale: 1.03;
  --site-demo-y: -1%;
}

.site-demo-video--gmail {
  --site-demo-scale: 1.05;
  --site-demo-y: -1.8%;
}

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

.demo-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(39, 60, 98, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.demo-card h3 {
  margin: 16px 0 8px;
  font-size: 1.18rem;
}

.demo-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.demo-chip {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(18, 28, 49, 0.84);
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.demo-note {
  margin-top: 12px;
  color: var(--ink-faint);
  font-size: 0.92rem;
  line-height: 1.6;
}

.surface-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.surface-meta span {
  color: var(--ink-faint);
  font-size: 0.95rem;
}

.showcase-grid,
.story-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.15fr 0.85fr;
}

.showcase-card,
.story-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(39, 60, 98, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.showcase-card h3,
.story-card h3 {
  margin: 16px 0 8px;
  font-size: 1.18rem;
}

.showcase-card p,
.story-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.page-hero,
.legal-hero,
.support-hero {
  padding: 58px 0 24px;
}

.page-hero h1,
.legal-hero h1,
.support-hero h1 {
  font-size: clamp(2.5rem, 4.2vw, 4.2rem);
  margin-bottom: 16px;
  max-width: 860px;
}

.page-columns {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 20px;
  margin-top: 26px;
}

.page-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(39, 60, 98, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.page-card h2 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.page-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

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

.metric {
  padding: 20px 18px;
  border-radius: 18px;
  background: rgba(248, 251, 255, 0.78);
  border: 1px solid rgba(49, 72, 118, 0.08);
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.22rem;
}

.metric span {
  color: var(--ink-soft);
  line-height: 1.55;
}

.privacy-note,
.warning-note,
.beta-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(39, 60, 98, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(244, 248, 255, 0.75) 100%);
  color: var(--ink-soft);
  line-height: 1.65;
}

.privacy-note strong,
.warning-note strong,
.beta-note strong {
  color: var(--ink);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-card {
  position: relative;
  padding-left: 76px;
}

.timeline-card::before {
  content: attr(data-step);
  position: absolute;
  left: 24px;
  top: 24px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(63, 103, 235, 0.12);
  color: var(--blue-deep);
  font-weight: 700;
}

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

.compare-column {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(39, 60, 98, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.compare-column h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.compare-column p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.support-grid,
.legal-grid {
  display: grid;
  gap: 18px;
}

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

.legal-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  border-radius: 18px;
  border: 1px solid rgba(39, 60, 98, 0.1);
  background: rgba(255, 255, 255, 0.72);
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

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

.faq p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.inline-link {
  color: var(--blue-deep);
}

.legal-copy {
  display: grid;
  gap: 16px;
}

.legal-block {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(39, 60, 98, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.legal-block h2 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.legal-block p,
.legal-block li {
  color: var(--ink-soft);
  line-height: 1.75;
}

.legal-block ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.cta-band {
  margin: 52px 0 16px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 211, 168, 0.42), transparent 32%),
    linear-gradient(135deg, rgba(19, 31, 55, 0.98) 0%, rgba(35, 71, 191, 0.92) 46%, rgba(21, 159, 150, 0.88) 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0 0 10px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.02;
}

.cta-band p {
  margin: 0;
  max-width: 680px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.cta-band .cta-row {
  margin-top: 22px;
}

.cta-band .button--secondary {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

body.landing-page {
  background:
    radial-gradient(circle at 0% 0%, rgba(78, 124, 223, 0.12), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(44, 170, 168, 0.08), transparent 24%),
    linear-gradient(180deg, #fcfbf8 0%, #f7f5f1 46%, #fcfbf9 100%);
}

body.landing-page .grain {
  opacity: 0.18;
}

body.landing-page .site-header {
  background: rgba(252, 250, 246, 0.82);
  border-bottom: 1px solid rgba(32, 48, 82, 0.07);
}

body.landing-page .site-header__inner {
  padding: 16px 0;
}

body.landing-page .brand-mark {
  box-shadow: 0 18px 36px rgba(23, 34, 58, 0.16);
}

.landing-home {
  padding: 8px 0 28px;
}

.landing-home section {
  position: relative;
}

.landing-hero-minimal {
  padding: 34px 0 18px;
}

.landing-hero-minimal__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.landing-hero-minimal__inner h1 {
  margin: 0;
  max-width: none;
  margin-inline: auto;
  font-family: var(--clean-sans-font);
  width: fit-content;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
  white-space: nowrap;
  color: #16233c;
}

.landing-hero-minimal__lead {
  margin: 18px auto 0;
  max-width: 760px;
  color: #5e6b80;
  font-size: 0.98rem;
  line-height: 1.74;
}

.landing-hero-minimal .landing-button {
  margin-top: 24px;
}

.landing-duo {
  padding: 12px 0 24px;
}

.landing-duo__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  gap: 16px;
  align-items: start;
}

.landing-explain-card,
.landing-video-card,
.landing-product-info__card {
  border-radius: 30px;
  border: 1px solid rgba(32, 48, 82, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 252, 0.86) 100%);
  box-shadow:
    0 20px 52px rgba(25, 36, 62, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.landing-explain-card {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.landing-explain-card__stack {
  position: relative;
  height: 272px;
  margin: 24px 0 0;
}

.landing-explain-card__stack-card {
  position: absolute;
  display: block;
  width: 100%;
  padding: 10px;
  margin: 0;
  border: 0;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(242, 246, 252, 0.95) 100%);
  box-shadow:
    0 22px 44px rgba(25, 36, 62, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  cursor: pointer;
  overflow: hidden;
}

.landing-explain-card__stack-card--first {
  left: 0;
  bottom: 10px;
  width: 42%;
  transform: rotate(-4deg);
  z-index: 1;
}

.landing-explain-card__stack-card--second {
  left: 26%;
  top: 30px;
  width: 46%;
  z-index: 2;
}

.landing-explain-card__stack-card--third {
  right: 2%;
  top: -6px;
  width: 38%;
  transform: rotate(3deg);
  z-index: 3;
}

.landing-explain-card__stack-label {
  position: absolute;
  left: 20px;
  top: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  max-width: calc(100% - 40px);
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(17, 27, 47, 0.88);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.landing-explain-card__stack-image {
  width: 100%;
  display: block;
  aspect-ratio: 2940 / 1912;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(34, 54, 92, 0.08);
  background: linear-gradient(180deg, #fcfbf8 0%, #eef3fa 100%);
}

.landing-explain-card__stack-image--first {
  object-position: left top;
}

.landing-explain-card__stack-image--second {
  object-position: center top;
}

.landing-explain-card__stack-image--third {
  object-position: left center;
}

.landing-explain-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.landing-trust-pills--inline {
  justify-content: flex-end;
  margin-bottom: 0;
}

.landing-trust-pills--inline .landing-pill {
  min-height: 32px;
  padding: 0 12px;
  font-size: 0.8rem;
}

.landing-explain-card h2,
.landing-video-card h2,
.landing-product-info__header h2 {
  margin: 0;
  font-family: var(--editorial-font);
  color: #16233c;
  letter-spacing: -0.03em;
}

.landing-explain-card h2 {
  font-size: clamp(1.95rem, 3vw, 2.9rem);
  line-height: 0.98;
}

.landing-explain-card > p,
.landing-video-card__caption,
.landing-product-info__header p,
.landing-product-info__card p {
  color: var(--ink-soft);
  line-height: 1.68;
}

.landing-explain-card > p {
  margin: 14px 0 0;
  max-width: 720px;
}

.landing-video-card {
  width: 100%;
  max-width: none;
  padding: 18px;
  justify-self: stretch;
}

.landing-video-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.landing-video-card__top .landing-section-heading__eyebrow {
  margin-bottom: 0;
}

.landing-video-card h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.landing-video-card__frame {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px;
  margin: 0;
  border: 0;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 246, 252, 0.92) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  cursor: pointer;
  overflow: hidden;
}

.landing-video-card__frame video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  transform: scale(var(--landing-demo-scale, 1.05)) translate3d(var(--landing-demo-x, 0%), var(--landing-demo-y, -1.8%), 0);
  transform-origin: center center;
  border-radius: 16px;
  border: 1px solid rgba(34, 54, 92, 0.08);
  background: linear-gradient(180deg, #fcfbf8 0%, #eef3fa 100%);
}

.landing-video-card__media {
  will-change: transform;
}

.landing-video-card__media--gmail {
  object-position: 32% center;
  --landing-demo-scale: 1;
  --landing-demo-x: 0%;
  --landing-demo-y: 0%;
}

.landing-video-card__play {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(14, 22, 37, 0.86);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(10, 16, 27, 0.18);
}

.landing-video-card__caption {
  margin: 14px 0 0;
  font-size: 0.93rem;
}

.landing-product-info {
  padding: 12px 0 36px;
}

.landing-product-info__header {
  max-width: 760px;
  margin-bottom: 20px;
}

.landing-product-info__header h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 0.98;
}

.landing-product-info__header p {
  margin: 14px 0 0;
}

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

.landing-product-info__card {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.landing-product-info__card h3 {
  margin: 0;
  color: #16233c;
  font-size: 1.28rem;
  line-height: 1.2;
}

.landing-hero {
  padding: 40px 0 20px;
}

.landing-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.landing-hero__copy {
  max-width: 520px;
  padding-top: 4px;
}

.landing-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.landing-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(34, 54, 92, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(25, 36, 62, 0.05);
  color: var(--ink-soft);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.landing-hero h1 {
  margin: 0;
  max-width: 11.5ch;
  font-family: var(--editorial-font);
  font-size: clamp(2.75rem, 4.8vw, 4.45rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #16233c;
}

.landing-hero__lead {
  margin: 18px 0 0;
  max-width: 500px;
  color: #5e6b80;
  font-size: 0.98rem;
  line-height: 1.72;
}

.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.landing-button:hover,
.landing-button:focus-visible {
  transform: translateY(-1px);
}

.landing-button--primary {
  background: linear-gradient(135deg, #315ad6 0%, #1e9f9a 100%);
  color: #fff;
  box-shadow: 0 18px 38px rgba(41, 79, 183, 0.18);
}

.landing-button--secondary {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(34, 54, 92, 0.1);
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(25, 36, 62, 0.06);
}

.landing-hero__note {
  margin: 16px 0 0;
  max-width: 500px;
  color: var(--ink-faint);
  font-size: 0.89rem;
  line-height: 1.64;
}

.landing-hero__visual {
  width: 100%;
  max-width: 430px;
  justify-self: end;
}

.landing-media-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(32, 48, 82, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 249, 253, 0.9) 100%);
  box-shadow:
    0 28px 72px rgba(25, 36, 62, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.landing-media-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 34px 84px rgba(25, 36, 62, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.landing-media-card--main {
  grid-row: 1 / span 2;
  padding-bottom: 20px;
}

.landing-media-card--clean {
  margin-top: 14px;
}

.landing-media-card--slots {
  margin-top: -10px;
}

.landing-media-card__label {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 25, 43, 0.9);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-media-card__frame {
  position: relative;
  display: block;
  width: 100%;
  padding: 12px;
  margin: 0;
  border: 0;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 246, 252, 0.92) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  cursor: pointer;
}

.landing-media-card__frame img,
.landing-media-card__frame video {
  width: 100%;
  display: block;
  aspect-ratio: 2940 / 1912;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(34, 54, 92, 0.08);
  background: linear-gradient(180deg, #fcfbf8 0%, #eef3fa 100%);
}

.landing-media-card__play {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(14, 22, 37, 0.86);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 16px 32px rgba(10, 16, 27, 0.18);
}

.landing-gallery-source {
  display: none;
}

.landing-demo-switcher {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 28px;
  border: 1px solid rgba(32, 48, 82, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 249, 253, 0.9) 100%);
  box-shadow:
    0 24px 64px rgba(25, 36, 62, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.landing-demo-switcher__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.landing-demo-switcher__eyebrow {
  margin: 8px 0 0;
  color: var(--ink-faint);
  font-size: 0.82rem;
  line-height: 1.4;
}

.landing-demo-switcher__hint {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(34, 54, 92, 0.08);
  color: var(--ink-faint);
  font-size: 0.77rem;
  white-space: nowrap;
}

.landing-demo-switcher__frame {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px;
  margin: 0;
  border: 0;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 246, 252, 0.92) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  cursor: pointer;
}

.landing-demo-switcher__frame video {
  width: 100%;
  display: block;
  aspect-ratio: 2940 / 1912;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(34, 54, 92, 0.08);
  background: linear-gradient(180deg, #fcfbf8 0%, #eef3fa 100%);
}

.landing-demo-switcher__play {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(14, 22, 37, 0.86);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(10, 16, 27, 0.18);
}

.landing-demo-switcher__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-demo-switcher__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(34, 54, 92, 0.08);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink-soft);
  cursor: pointer;
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.landing-demo-switcher__tab:hover,
.landing-demo-switcher__tab:focus-visible {
  transform: translateY(-1px);
}

.landing-demo-switcher__tab.is-active {
  background: rgba(51, 91, 214, 0.1);
  border-color: rgba(51, 91, 214, 0.22);
  color: #1f3f9d;
}

.landing-demo-switcher__caption {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.62;
}

.landing-proof,
.landing-positioning,
.landing-trust,
.landing-cta {
  padding: 34px 0;
}

.landing-trust {
  padding-top: 44px;
}

.landing-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.landing-section-heading__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: #5d6f95;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-section-heading h2 {
  margin: 0;
  font-family: var(--editorial-font);
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #16233c;
}

.landing-section-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.72;
}

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

.landing-proof-card,
.landing-product-card,
.landing-trust-card {
  border-radius: 28px;
  border: 1px solid rgba(32, 48, 82, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(248, 249, 252, 0.85) 100%);
  box-shadow:
    0 18px 46px rgba(25, 36, 62, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.landing-proof-card {
  padding: 18px;
}

.landing-proof-card__media {
  display: block;
  width: 100%;
  padding: 12px;
  margin: 0 0 16px;
  border: 0;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 246, 255, 0.9) 100%);
  cursor: pointer;
}

.landing-proof-card__media img {
  width: 100%;
  display: block;
  aspect-ratio: 2940 / 1912;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(34, 54, 92, 0.08);
  background: linear-gradient(180deg, #fbfaf7 0%, #eef3fb 100%);
}

.landing-proof-card h3,
.landing-product-card h3,
.landing-trust-card h3 {
  margin: 0 0 10px;
  color: #16233c;
}

.landing-proof-card h3 {
  font-size: 1.14rem;
  line-height: 1.28;
}

.landing-proof-card p,
.landing-product-card p,
.landing-trust-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.68;
}

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

.landing-product-card {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.landing-product-card--assist {
  background:
    radial-gradient(circle at top right, rgba(77, 117, 219, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 255, 0.88) 100%);
}

.landing-product-card--insight {
  background:
    radial-gradient(circle at top right, rgba(60, 160, 150, 0.11), transparent 30%),
    linear-gradient(180deg, rgba(251, 252, 255, 0.9) 0%, rgba(246, 249, 253, 0.86) 100%);
}

.landing-product-card__state {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.landing-product-card__state strong {
  color: var(--ink);
}

.landing-product-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2bb673;
}

.landing-product-card__dot--insight {
  background: #4a70f0;
}

.landing-product-card h3 {
  font-size: 1.35rem;
  line-height: 1.18;
}

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

.landing-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.6;
}

.landing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(55, 92, 206, 0.7);
}

.landing-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2a4fc7;
  font-weight: 600;
}

.landing-trust__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: start;
}

.landing-trust__copy h2 {
  margin: 0;
  max-width: 10ch;
  font-family: var(--editorial-font);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #16233c;
}

.landing-trust__copy p {
  margin: 16px 0 0;
  max-width: 420px;
  color: var(--ink-soft);
  line-height: 1.72;
}

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

.landing-trust-card {
  padding: 22px;
}

.landing-cta__panel {
  padding: 34px;
  border-radius: 32px;
  border: 1px solid rgba(31, 47, 85, 0.08);
  background:
    radial-gradient(circle at top right, rgba(117, 192, 189, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(20, 30, 50, 0.98) 0%, rgba(28, 52, 102, 0.96) 58%, rgba(29, 122, 139, 0.92) 100%);
  box-shadow: 0 28px 72px rgba(14, 23, 42, 0.22);
  color: #fff;
}

.landing-cta__panel h2 {
  margin: 0;
  max-width: 11ch;
  font-family: var(--editorial-font);
  font-size: clamp(2.2rem, 3.8vw, 3.55rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.landing-cta__panel p {
  margin: 16px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.72;
}

.landing-cta__panel .landing-button--secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: none;
}

.landing-home {
  padding: 6px 0 26px;
}

.landing-marquee {
  padding: 34px 0 16px;
}

.landing-marquee__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 34px;
  border: 1px solid rgba(32, 48, 82, 0.08);
  background:
    radial-gradient(circle at top right, rgba(63, 103, 235, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 249, 252, 0.88) 100%);
  box-shadow:
    0 30px 80px rgba(25, 36, 62, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.landing-marquee__copy {
  max-width: 530px;
}

.landing-marquee__copy h1 {
  margin: 0;
  max-width: 11.5ch;
  font-family: var(--editorial-font);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #16233c;
}

.landing-marquee__lead {
  margin: 18px 0 0;
  max-width: 500px;
  color: #5e6b80;
  font-size: 1rem;
  line-height: 1.72;
}

.landing-marquee__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.landing-marquee__note {
  margin: 16px 0 0;
  max-width: 520px;
  color: var(--ink-faint);
  font-size: 0.89rem;
  line-height: 1.66;
}

.landing-marquee__media {
  display: flex;
  justify-content: flex-end;
}

.landing-thread-card {
  width: 100%;
  max-width: 470px;
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(32, 48, 82, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 247, 252, 0.92) 100%);
  box-shadow:
    0 20px 54px rgba(25, 36, 62, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.landing-thread-card__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.landing-thread-card__header h2 {
  margin: 0;
  max-width: 12ch;
  font-family: var(--editorial-font);
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #16233c;
}

.landing-thread-card__status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(34, 54, 92, 0.08);
  color: var(--ink-soft);
  font-size: 0.78rem;
  white-space: nowrap;
}

.landing-thread-card__primary,
.landing-thread-card__secondary,
.landing-story-card__shot {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 0;
  border: 0;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 246, 252, 0.92) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  cursor: pointer;
}

.landing-thread-card__primary img,
.landing-thread-card__secondary img,
.landing-story-card__shot img {
  width: 100%;
  display: block;
  aspect-ratio: 2940 / 1912;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(34, 54, 92, 0.08);
  background: linear-gradient(180deg, #fcfbf8 0%, #eef3fa 100%);
}

.landing-thread-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.landing-overview {
  padding: 18px 0 20px;
}

.landing-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(290px, 0.84fr);
  gap: 18px;
  align-items: start;
}

.landing-story-card,
.landing-summary-card,
.landing-demo-switcher {
  padding: 20px;
  border-radius: 30px;
  border: 1px solid rgba(32, 48, 82, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 252, 0.86) 100%);
  box-shadow:
    0 20px 52px rgba(25, 36, 62, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.landing-story-card h2,
.landing-summary__header h2 {
  margin: 0;
  font-family: var(--editorial-font);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #16233c;
}

.landing-story-card p,
.landing-summary__header p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.landing-story-card__shots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.landing-story-card__points {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.landing-story-card__point {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(39, 60, 98, 0.08);
  background: rgba(255, 255, 255, 0.62);
}

.landing-story-card__point strong {
  display: block;
  margin-bottom: 4px;
  color: #16233c;
  font-size: 0.98rem;
}

.landing-story-card__point span {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.58;
}

.landing-demo-switcher {
  width: 100%;
  max-width: 360px;
  justify-self: end;
  display: grid;
  gap: 14px;
  padding: 16px;
}

.landing-demo-switcher__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.landing-demo-switcher__frame {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px;
  margin: 0;
  border: 0;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 246, 252, 0.92) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  cursor: pointer;
}

.landing-demo-switcher__frame video {
  width: 100%;
  display: block;
  aspect-ratio: 2940 / 1912;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(34, 54, 92, 0.08);
  background: linear-gradient(180deg, #fcfbf8 0%, #eef3fa 100%);
}

.landing-demo-switcher__play {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(14, 22, 37, 0.86);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(10, 16, 27, 0.18);
}

.landing-demo-switcher__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-demo-switcher__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(34, 54, 92, 0.08);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink-soft);
  cursor: pointer;
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.landing-demo-switcher__tab:hover,
.landing-demo-switcher__tab:focus-visible {
  transform: translateY(-1px);
}

.landing-demo-switcher__tab.is-active {
  background: rgba(51, 91, 214, 0.1);
  border-color: rgba(51, 91, 214, 0.22);
  color: #1f3f9d;
}

.landing-demo-switcher__footer strong {
  display: block;
  color: #16233c;
  font-size: 1rem;
}

.landing-demo-switcher__footer p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.landing-summary {
  padding: 16px 0 34px;
}

.landing-summary__header {
  max-width: 700px;
  margin-bottom: 20px;
}

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

.landing-summary-card {
  display: grid;
  gap: 16px;
}

.landing-summary-card h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.2;
  color: #16233c;
}

.landing-summary-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.68;
}

.landing-summary-card__eyebrow {
  display: inline-flex;
  color: #5d6f95;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.landing-page .site-footer {
  padding-top: 20px;
}

body.landing-page .site-footer__inner {
  padding-top: 24px;
}

.site-footer {
  padding: 28px 0 52px;
}

.site-footer__inner {
  width: var(--content);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(39, 60, 98, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-copy {
  color: var(--ink-faint);
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--ink-soft);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(40, 63, 101, 0.08);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.kicker strong {
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 1080px) {
  .landing-hero__grid,
  .home-landing__grid,
  .hero__grid,
  .demo-grid,
  .showcase-grid,
  .story-grid,
  .page-columns,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .landing-hero__visual {
    max-width: 460px;
    justify-self: start;
  }

  .landing-proof__grid,
  .landing-positioning__grid,
  .landing-trust__grid,
  .landing-trust__cards {
    grid-template-columns: 1fr;
  }

  .landing-section-heading {
    flex-direction: column;
    align-items: start;
  }

  .home-landing__media {
    justify-content: flex-start;
  }

  .home-feature-card {
    width: min(100%, 390px);
  }

  .home-snapshot-row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .home-snapshot-card {
    flex-basis: 220px;
  }

  .home-snapshot-card--left,
  .home-snapshot-card--center,
  .home-snapshot-card--right {
    transform: none;
  }

  .panel-grid--three,
  .panel-grid--two,
  .support-grid,
  .compare-table {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .visual-card {
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    padding-top: 54px;
  }

  .visual-card--main,
  .visual-card--top,
  .visual-card--bottom {
    width: 100%;
  }
}

@media (max-width: 760px) {
  :root {
    --content: min(100vw - 28px, 1180px);
  }

  .site-header__inner {
    padding: 14px 0;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .landing-hero {
    padding-top: 34px;
  }

  .landing-hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.45rem);
  }

  .landing-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-button {
    width: 100%;
  }

  .landing-proof__grid,
  .landing-positioning__grid,
  .landing-trust__cards {
    grid-template-columns: 1fr;
  }

  .landing-hero__visual {
    max-width: 100%;
  }

  .landing-media-card,
  .landing-proof-card,
  .landing-product-card,
  .landing-trust-card,
  .landing-cta__panel,
  .landing-demo-switcher {
    border-radius: 24px;
  }

  .landing-media-card__play,
  .landing-demo-switcher__play {
    left: 22px;
    bottom: 22px;
  }

  .landing-cta__panel {
    padding: 26px;
  }

  .landing-demo-switcher__header {
    flex-direction: column;
    align-items: start;
  }

  .hero {
    padding-top: 38px;
  }

  .home-landing {
    padding-top: 12px;
  }

  .home-landing__copy h1 {
    font-size: clamp(2.2rem, 11vw, 3.1rem);
  }

  .home-status-row {
    flex-direction: column;
  }

  .home-feature-card {
    width: 100%;
  }

  .home-snapshot-row {
    gap: 10px;
  }

  .home-snapshot-card {
    flex: 1 1 calc(33.333% - 8px);
    padding: 8px;
  }

  .media-lightbox {
    padding: 12px;
  }

  .media-lightbox__panel {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    padding: 14px;
    border-radius: 22px;
  }

  .media-lightbox__meta {
    margin-right: 48px;
  }

  .hero-points,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .product-card,
  .surface-card,
  .quote-card,
  .legal-card,
  .support-card,
  .timeline-card,
  .privacy-card,
  .page-card,
  .showcase-card,
  .story-card,
  .legal-block {
    padding: 22px;
  }

  .cta-band {
    padding: 24px;
  }
}

@media (max-width: 1080px) {
  .landing-duo__grid,
  .landing-product-info__grid {
    grid-template-columns: 1fr;
  }

  .landing-video-card {
    width: 100%;
    max-width: 100%;
    justify-self: start;
  }

  .landing-marquee__panel,
  .landing-overview__grid,
  .landing-summary__grid {
    grid-template-columns: 1fr;
  }

  .landing-marquee__media,
  .landing-demo-switcher {
    justify-self: start;
  }

  .landing-demo-switcher {
    max-width: 420px;
  }
}

@media (max-width: 760px) {
  .landing-hero-minimal {
    padding-top: 24px;
  }

  .landing-hero-minimal__inner h1 {
    max-width: none;
    width: fit-content;
    font-size: 22px;
    white-space: nowrap;
  }

  .landing-hero-minimal__lead {
    font-size: 0.96rem;
  }

  .landing-explain-card,
  .landing-video-card,
  .landing-product-info__card {
    padding: 18px;
    border-radius: 24px;
  }

  .landing-explain-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .landing-explain-card__stack {
    height: auto;
    margin: 0 0 18px;
    display: grid;
    gap: 12px;
  }

  .landing-explain-card__stack-card {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .landing-explain-card__stack-card--first,
  .landing-explain-card__stack-card--second,
  .landing-explain-card__stack-card--third {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .landing-video-card {
    width: 100%;
    max-width: 100%;
  }

  .landing-video-card__frame video {
    aspect-ratio: 5 / 4;
  }

  .landing-video-card__play {
    left: 18px;
    bottom: 18px;
  }

  .landing-marquee {
    padding-top: 24px;
  }

  .landing-marquee__panel,
  .landing-story-card,
  .landing-summary-card,
  .landing-demo-switcher {
    padding: 18px;
    border-radius: 24px;
  }

  .landing-marquee__copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .landing-marquee__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-marquee__actions .landing-button {
    width: 100%;
  }

  .landing-thread-card {
    padding: 16px;
  }

  .landing-thread-card__header {
    flex-direction: column;
    align-items: start;
  }

  .landing-thread-card__grid,
  .landing-story-card__shots {
    grid-template-columns: 1fr;
  }

  .landing-demo-switcher {
    max-width: 100%;
  }

  .landing-demo-switcher__top {
    flex-direction: column;
    align-items: start;
  }

  .landing-demo-switcher__play {
    left: 18px;
    bottom: 18px;
  }
}
