:root {
  --blue: #0061ff;
  --blue-dark: #0050d4;
  --text: #111827;
  --text-muted: #64748b;
  --surface: #ffffff;
  --surface-muted: #f8fafc;
  --border: #e2e8f0;
  --green: #38a169;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.12);
  --radius: 14px;
  --radius-lg: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(900px 520px at 50% -8%, rgba(96, 165, 250, 0.16), transparent 66%),
    radial-gradient(780px 520px at 4% 92%, rgba(96, 165, 250, 0.14), transparent 68%),
    radial-gradient(900px 600px at 88% 12%, rgba(96, 165, 250, 0.16), transparent 66%),
    radial-gradient(800px 600px at 96% 55%, rgba(52, 168, 83, 0.12), transparent 66%),
    radial-gradient(760px 520px at 78% 92%, rgba(251, 188, 5, 0.12), transparent 66%),
    radial-gradient(620px 500px at 55% 95%, rgba(234, 67, 53, 0.09), transparent 68%),
    linear-gradient(180deg, #f4f7fb 0%, #eef2f7 100%);
}

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

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Landing page */

.landing {
  position: relative;
  overflow-x: hidden;
}

.landing::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.58;
  background:
    radial-gradient(1200px 720px at 50% 15%, rgba(255, 255, 255, 0.62), transparent 76%),
    radial-gradient(980px 680px at 18% 66%, rgba(255, 255, 255, 0.42), transparent 78%),
    radial-gradient(960px 680px at 82% 58%, rgba(255, 255, 255, 0.36), transparent 78%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.22));
}

.page {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 1.75rem 0 3rem;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 50;
  margin-bottom: 1rem;
  transform: none;
}

.nav-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.65rem 0.65rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  isolation: isolate;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav-bar {
    background: rgba(255, 255, 255, 0.985);
  }
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  color: var(--text);
  font-size: 1.05rem;
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo-mark {
  flex-shrink: 0;
}

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

.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--text);
  text-decoration: none;
}

.nav-toggle-input,
.nav-toggle {
  display: none;
}

.nav-toggle-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  opacity: 0;
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 100vh;
}

.hero-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -6.75rem;
  padding-top: 6.75rem;
}

.hero-copy {
  max-width: 34rem;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  margin: 0 0 2rem;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  line-height: 1.55;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  padding: 0.95rem 1.5rem;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(0, 97, 255, 0.28);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 97, 255, 0.32);
}

.btn-sm {
  min-height: 44px;
  padding: 0.6rem 1.1rem;
  font-size: 0.92rem;
}

.btn-outline {
  padding: 0.85rem 1.4rem;
  color: var(--blue);
  background: #fff;
  border: 1.5px solid #dbeafe;
}

.btn-outline:hover {
  border-color: var(--blue);
  transform: translateY(-1px);
}

.link-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--blue);
  text-decoration: none;
}

.link-secondary:hover {
  text-decoration: underline;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  /* Top padding clears the sticky nav and adds breathing room so the
     content centres below it; matched bottom padding keeps it balanced */
  padding: clamp(2.75rem, 5vw, 4.5rem) clamp(0.35rem, 1vw, 1rem) clamp(2rem, 4vw, 3.5rem);
  overflow: visible;
}

.mockup-stage {
  position: relative;
  z-index: 1;
  width: min(calc(100vw - 1rem), 1480px);
  padding: 0;
}

.card-shapes {
  position: absolute;
  inset: -220px -320px -160px -220px;
  z-index: 0;
  pointer-events: none;
}

.card-shapes::after {
  content: none;
}

.card-shape {
  --parallax-y: 0px;
  --shape-rotate: 45deg;
  position: absolute;
  border-radius: 36px;
  z-index: 0;
  box-shadow: none;
  transform: translate3d(0, var(--parallax-y), 0) rotate(var(--shape-rotate));
  animation: shape-morph 22s ease-in-out infinite;
  will-change: border-radius, transform;
}

.card-shape[data-morph="1"] { animation-duration: 24s; animation-delay: -2s; }
.card-shape[data-morph="2"] { animation-duration: 29s; animation-delay: -8s; }
.card-shape[data-morph="3"] { animation-duration: 32s; animation-delay: -4s; }
.card-shape[data-morph="4"] { animation-duration: 27s; animation-delay: -11s; }

@keyframes shape-morph {
  0%, 100% {
    border-radius: 36px;
  }
  25% {
    border-radius: 52px 34px 44px 32px;
  }
  50% {
    border-radius: 34px 56px 32px 50px;
  }
  75% {
    border-radius: 48px 32px 56px 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .card-shape {
    animation: none;
    transition: none;
  }
}

.card-shape-blue {
  top: -280px;
  right: -170px;
  width: 560px;
  height: 560px;
  -webkit-mask-image: radial-gradient(ellipse 105% 105% at 58% 62%, #000 24%, transparent 84%);
  mask-image: radial-gradient(ellipse 105% 105% at 58% 62%, #000 24%, transparent 84%);
  background: linear-gradient(
    132deg,
    rgba(96, 165, 250, 0.72) 0%,
    rgba(59, 130, 246, 0.4) 40%,
    rgba(59, 130, 246, 0.12) 62%,
    transparent 84%
  );
}

.card-shape-green {
  top: 18%;
  right: -140px;
  width: 390px;
  height: 390px;
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 45% 55%, #000 22%, transparent 82%);
  mask-image: radial-gradient(ellipse 100% 100% at 45% 55%, #000 22%, transparent 82%);
  background: linear-gradient(
    32deg,
    rgba(34, 197, 94, 0.48) 0%,
    rgba(34, 197, 94, 0.18) 36%,
    rgba(34, 197, 94, 0.04) 56%,
    transparent 76%
  );
}

.card-shape-yellow {
  bottom: -250px;
  right: -20px;
  width: 560px;
  height: 560px;
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 35%, #000 22%, transparent 82%);
  mask-image: radial-gradient(ellipse 100% 100% at 50% 35%, #000 22%, transparent 82%);
  background: linear-gradient(
    to bottom,
    rgba(251, 188, 5, 0.5) 0%,
    rgba(251, 188, 5, 0.2) 34%,
    rgba(251, 188, 5, 0.04) 54%,
    transparent 74%
  );
}

.card-shape-red {
  bottom: -220px;
  left: max(-180px, calc((100vw - 1320px) / -2 - 120px));
  width: 420px;
  height: 420px;
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 35%, #000 22%, transparent 82%);
  mask-image: radial-gradient(ellipse 100% 100% at 50% 35%, #000 22%, transparent 82%);
  background: linear-gradient(
    to bottom,
    rgba(239, 68, 68, 0.46) 0%,
    rgba(239, 68, 68, 0.16) 32%,
    rgba(239, 68, 68, 0.03) 52%,
    transparent 72%
  );
}

.mockup-card {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2.5rem;
  border: none;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(44px) saturate(1.7);
  -webkit-backdrop-filter: blur(44px) saturate(1.7);
  box-shadow:
    0 48px 110px rgba(15, 23, 42, 0.14),
    0 16px 40px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation: floating-card 8s ease-in-out infinite;
}

@keyframes floating-card {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

/* White gradient rim on mockup card */
.mockup-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.62) 22%,
    rgba(255, 255, 255, 0.18) 58%,
    rgba(255, 255, 255, 0.08) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

/* Inner top sheen */
.mockup-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(36px - 1px);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0.06) 38%,
    transparent 62%
  );
  pointer-events: none;
}

.mockup-card > * {
  position: relative;
  z-index: 1;
}

.integration-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: stretch;
  margin-bottom: 1.5rem;
}

.integration-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 108px;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 10px 28px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.integration-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 36px;
  margin-bottom: 0.55rem;
  font-size: 1rem;
  color: #0f172a;
}

.integration-brand-stripe {
  justify-content: flex-start;
}

.brand-stripe,
.brand-icon-drive {
  flex-shrink: 0;
}

.brand-stripe {
  display: block;
  width: 52px;
  height: auto;
  object-fit: contain;
}

.brand-stripe-demo {
  width: 72px;
}

.lucide {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.18);
}

.integration-connector {
  display: flex;
  align-items: center;
  width: 72px;
}

.connector-line {
  flex: 1;
  height: 0;
  border-top: 2px dashed;
}

.connector-line-left {
  border-color: rgba(0, 97, 255, 0.45);
}

.connector-line-right {
  border-color: rgba(52, 168, 83, 0.45);
}

.connector-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.exports-panel {
  padding: 1.25rem 1.35rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 8px 24px rgba(15, 23, 42, 0.04);
}

.exports-title {
  margin: 0 0 0.85rem;
  font-size: 1rem;
}

.export-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.export-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-top: 1px solid var(--border);
}

.export-row:first-child {
  border-top: none;
  padding-top: 0;
}

.export-main,
.export-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.export-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.export-icon-green {
  color: #059669;
  background: rgba(5, 150, 105, 0.12);
}

.export-icon-blue {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.12);
}

.export-icon-red {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.12);
}

.export-name {
  font-size: 0.95rem;
}

.export-tag {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
}

.export-tag-blue {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.12);
}

.export-tag-purple {
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.12);
}

.export-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--green);
  font-size: 0.82rem;
}

.export-chevron {
  color: #94a3b8;
}

.workestic-hero-card {
  position: relative;
  z-index: 2;
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: 0;
  color: #374151;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.workestic-hero-card::before {
  content: none;
}

.workestic-hero-card::after {
  content: none;
}

.mockup-stage::before,
.mockup-stage::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  transform: rotate(45deg);
}

.mockup-stage::before {
  top: 2%;
  left: -4%;
  width: 118px;
  height: 118px;
  background: rgba(255, 255, 255, 0.12);
}

.mockup-stage::after {
  right: -2%;
  top: 8%;
  width: 126px;
  height: 126px;
  background: rgba(255, 255, 255, 0.16);
}

.hero-export-title,
.hero-export-panels {
  position: relative;
}

.hero-export-title {
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.65rem, 1.45vw, 1.05rem);
  margin: 0 0 clamp(0.85rem, 1.55vw, 1.2rem);
  color: #334155;
  font-size: clamp(2.5rem, 4.55vw, 3.95rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-export-subtitle {
  max-width: 760px;
  margin: 0 auto clamp(0.95rem, 1.8vw, 1.35rem);
  text-align: center;
  color: rgba(51, 65, 85, 0.74);
}

.hero-install-action {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 clamp(1.45rem, 2.4vw, 2.2rem);
}

.hero-free-note {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: rgba(51, 65, 85, 0.72);
  font-size: 0.95rem;
  line-height: 1;
}

.hero-free-note b {
  color: #188038;
}

.hero-free-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(52, 168, 83, 0.14);
  color: #188038;
  font-size: 0.62rem;
}

.hero-install-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.74rem;
  min-width: min(100%, 330px);
  min-height: 64px;
  padding: 0 1.7rem 0 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    #635bff;
  box-shadow:
    0 22px 54px rgba(99, 91, 255, 0.28),
    0 10px 24px rgba(99, 91, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  line-height: 1;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.hero-install-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-install-logo img {
  display: block;
  width: 31px;
  height: 31px;
}

.hero-install-button:hover {
  filter: saturate(1.08);
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    #5148e8;
  box-shadow:
    0 28px 64px rgba(99, 91, 255, 0.34),
    0 12px 28px rgba(99, 91, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  text-decoration: none;
}

.hero-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  min-height: clamp(3.1rem, 4.8vw, 4.15rem);
  padding: 0.38rem 0.85rem;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: none;
}

.hero-brand-pill-stripe {
  color: #334155;
  background: rgba(225, 218, 255, 0.88);
}

.hero-brand-pill-drive {
  color: #334155;
  background: rgba(255, 255, 255, 0.92);
}

.hero-title-icon,
.hero-panel-icon {
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.hero-title-icon {
  width: clamp(2rem, 3.8vw, 3.25rem);
  height: clamp(2rem, 3.8vw, 3.25rem);
}

.hero-title-icon-drive {
  width: clamp(2.4rem, 4.2vw, 3.65rem);
  height: auto;
}

.hero-panel-icon {
  width: 28px;
  height: 28px;
}

.hero-panel-icon-drive {
  width: 32px;
  height: auto;
}

.hero-panel-icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
}

.hero-panel-icon-chip .hero-panel-icon-drive {
  width: 24px;
}

.hero-export-panels {
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1rem, 1.6vw, 1.25rem);
  width: min(100%, 1540px);
  margin: clamp(1rem, 2.4vw, 2.2rem) auto 0;
  padding: clamp(0.9rem, 1.5vw, 1.15rem);
  border-radius: 38px;
  background:
    linear-gradient(90deg, rgba(83, 58, 253, 0.28) 18%, rgba(89, 197, 208, 0.36) 100%),
    rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(34px) saturate(1.28);
  -webkit-backdrop-filter: blur(34px) saturate(1.28);
  box-shadow:
    0 34px 90px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  transform: none;
  transform-origin: center top;
  transition: transform 0.12s linear;
  will-change: transform;
}

.export-app-panel {
  position: relative;
  z-index: 2;
  min-width: 0;
  overflow: hidden;
  border-radius: 26px;
  padding: 0.72rem;
  box-shadow:
    0 20px 48px rgba(15, 23, 42, 0.13);
  animation: none;
}

.export-app-panel-stripe {
  background: linear-gradient(180deg, #7c5cff 0%, #8a6cff 100%);
}

.export-app-panel-drive {
  background: linear-gradient(180deg, #58a0f5 0%, #6aa9ff 100%);
}

.export-panel-bar {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 40px;
  padding: 0 0.35rem 0.55rem;
  color: #fff;
  font-size: 1.03rem;
  line-height: 1;
}

.export-panel-bar-stripe {
  background: transparent;
}

.export-panel-bar-drive {
  background: transparent;
}

.export-panel-body {
  min-height: 430px;
  padding: 1.05rem;
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 0 0 1px rgba(226, 232, 240, 0.72);
}

.stripe-preview-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.preview-label {
  display: block;
  color: #767f8f;
  font-size: 0.72rem;
  line-height: 1.25;
}

.stripe-preview-top strong {
  display: block;
  color: #444b59;
  font-size: 1.15rem;
  line-height: 1.3;
}

.stripe-preview-actions {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
}

.stripe-preview-actions span {
  padding: 0.36rem 0.48rem;
  border-radius: 4px;
  background: #eef2f7;
  color: #475569;
  font-size: 0.58rem;
  line-height: 1;
}

.stripe-preview-actions span:first-child {
  background: #0077ff;
  color: #fff;
}

.stripe-preview-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: #475569;
  font-size: 0.72rem;
  line-height: 1.25;
}

.stripe-preview-metrics small {
  display: block;
  color: #8b95a5;
  font-size: 0.62rem;
}

.stripe-preview-metrics b {
  color: #0077ff;
}

.stripe-preview-filters {
  display: grid;
  grid-template-columns: repeat(4, auto) 1fr;
  align-items: center;
  gap: 0.32rem;
  margin-bottom: 0.65rem;
}

.stripe-preview-filters span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 0.42rem;
  border: 1px solid #d9dee7;
  border-radius: 4px;
  color: #667085;
  font-size: 0.58rem;
}

.stripe-preview-filters span:last-child {
  justify-self: end;
  background: #eef2f7;
}

.stripe-table-preview {
  border-top: 1px solid #e5e7eb;
}

.stripe-table-preview div {
  display: grid;
  grid-template-columns: 1.2fr 0.58fr 1.32fr 0.72fr;
  align-items: center;
  gap: 0.4rem;
  min-height: 26px;
  border-bottom: 1px solid #e5e7eb;
  color: #596274;
  font-size: 0.58rem;
}

.stripe-table-preview div:nth-child(2),
.stripe-table-preview div:nth-child(5) {
  animation: export-row-pulse 3.8s ease-in-out infinite;
}

.stripe-table-preview div:nth-child(5) {
  animation-delay: 1.9s;
}

.stripe-table-preview b {
  justify-self: start;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  background: #b7ee8b;
  color: #226c1f;
  font-size: 0.5rem;
}

.stripe-table-preview strong {
  color: #3b4351;
  font-size: 0.56rem;
  text-align: right;
}

.stripe-preview-footer {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.75rem;
  color: #586274;
  font-size: 0.64rem;
  line-height: 1;
}

.stripe-preview-footer span:last-child {
  display: flex;
  gap: 0.35rem;
}

.stripe-preview-footer b {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 0.52rem;
  border-radius: 4px;
  background: #eef2f7;
  color: #667085;
}

.drive-preview-title {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  margin-bottom: 0.75rem;
  color: #1f2937;
  font-size: 1rem;
  line-height: 1.2;
}

.drive-preview-caret {
  width: 0;
  height: 0;
  border-right: 3.5px solid transparent;
  border-left: 3.5px solid transparent;
  border-top: 4.5px solid currentColor;
  opacity: 0.78;
  transform: translateY(1px);
}

.drive-file-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
  margin-bottom: 1rem;
}

.drive-file-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  min-height: 104px;
  overflow: hidden;
  padding: 0;
  border: 1px solid #dbe3ee;
  border-radius: 6px;
  color: #1f2937;
  font-size: 0.54rem;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(180deg, #f8fafc, #fff) border-box;
}

.drive-file-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(100deg, transparent 12%, rgba(88, 160, 245, 0.16) 50%, transparent 82%);
  opacity: 0;
  transform: translateX(-65%);
  animation: drive-file-receive 3.8s ease-in-out infinite;
  pointer-events: none;
}

.drive-file-card:nth-child(2)::after {
  animation-delay: 1.9s;
}

.drive-file-card-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.42rem;
  min-height: 28px;
  padding: 0.4rem 0.46rem;
  border-bottom: 1px solid #dce2eb;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.drive-file-card-header img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.drive-file-card-header span:nth-child(2) {
  overflow: hidden;
  color: #202938;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.drive-file-card-menu {
  color: #5f6774;
  font-size: 0.78rem;
  line-height: 1;
}

.sheet-thumbnail-image {
  display: block;
  width: 100%;
  height: 76px;
  object-fit: cover;
  object-position: center;
  background: #f8fafc;
}

.drive-folder-list {
  border-top: 1px solid #e5e7eb;
}

.drive-folder-list div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.7rem;
  min-height: 29px;
  border-bottom: 1px solid #e5e7eb;
  color: #586274;
  font-size: 0.58rem;
}

.drive-folder-list span::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 8px;
  margin-right: 0.42rem;
  border-radius: 1px;
  background: #66707d;
  vertical-align: -1px;
}

@keyframes export-panel-breathe {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes export-row-pulse {
  0%, 72%, 100% {
    background: transparent;
  }
  12%, 28% {
    background: rgba(124, 92, 255, 0.08);
  }
}

@keyframes drive-file-receive {
  0%, 46% {
    opacity: 0;
    transform: translateX(-65%);
  }
  58% {
    opacity: 1;
  }
  78% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: translateX(65%);
  }
}

.drive-folder-list small,
.drive-folder-list time {
  color: #4b5563;
  font-size: 0.55rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--blue);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem;
  opacity: 1;
  transform: none;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer p {
  margin: 0;
}

/* Scroll reveal & motion */

[data-reveal="load"],
[data-reveal="scroll"],
[data-reveal-stagger] [data-reveal-item] {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-delay, 0) * 1ms);
  will-change: opacity, transform;
}

[data-reveal="load"].is-revealed,
[data-reveal="scroll"].is-revealed,
[data-reveal-stagger].is-revealed [data-reveal-item] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-header[data-reveal="load"],
.site-header[data-reveal="load"].is-revealed {
  transform: none;
}

[data-parallax-content] {
  --content-parallax-y: 0px;
  transform: translate3d(0, var(--content-parallax-y), 0);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal="load"],
  [data-reveal="scroll"],
  [data-reveal-stagger] [data-reveal-item] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-parallax-content] {
    transform: none;
  }

  .landing::before {
    transform: none;
  }

  .export-app-panel,
  .stripe-table-preview div,
  .drive-file-card::after,
  .export-chip {
    animation: none;
  }

}

/* Section heads */

.section-head {
  margin: 6rem auto 3rem;
  max-width: 720px;
  position: relative;
  z-index: 3;
  text-align: center;
}

.section-title {
  margin: 0 0 0.85rem;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.section-subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

/* Export everything section */

.demo-section {
  margin-top: 1rem;
  overflow: visible;
}

.demo-stage {
  position: relative;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 0 4.4rem;
  overflow: visible;
}

.export-everything-section {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.export-everything-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8rem;
  left: 0;
  z-index: 0;
  height: 13rem;
  pointer-events: none;
  background:
    radial-gradient(260px 220px at 78% 10%, rgba(251, 188, 5, 0.18), transparent 72%),
    radial-gradient(260px 220px at 38% 0%, rgba(239, 68, 68, 0.13), transparent 72%),
    linear-gradient(180deg, rgba(239, 246, 255, 0.72), rgba(239, 246, 255, 0));
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 68%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 68%, transparent 100%);
}

.card-shapes-demo {
  inset: -200px -320px -80px -320px;
}

.card-shapes-demo .card-shape-blue {
  top: auto;
  bottom: -165px;
  left: -260px;
  right: auto;
  width: 430px;
  height: 430px;
  background: linear-gradient(
    18deg,
    rgba(37, 99, 235, 0.44) 0%,
    rgba(37, 99, 235, 0.16) 38%,
    rgba(37, 99, 235, 0.03) 58%,
    transparent 76%
  );
}

.card-shapes-demo .card-shape-green {
  top: -210px;
  right: -280px;
  left: auto;
  width: 450px;
  height: 450px;
  background: linear-gradient(
    244deg,
    rgba(34, 197, 94, 0.4) 0%,
    rgba(34, 197, 94, 0.14) 36%,
    rgba(34, 197, 94, 0.03) 56%,
    transparent 74%
  );
}

.card-shapes-demo .card-shape-yellow {
  right: -135px;
  bottom: -245px;
  width: 520px;
  height: 520px;
}

.card-shapes-demo .card-shape-red {
  bottom: -260px;
  left: 28%;
  width: 390px;
  height: 390px;
}

.export-chip-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.export-everything-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.export-everything-title {
  margin: 0 0 3.35rem;
  color: #334155;
  font-size: clamp(2.65rem, 5.1vw, 4.25rem);
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}

.export-chip-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.86rem 1.55rem;
  padding: 0 1.5rem;
}

.export-chip {
  --chip-color: #3b82f6;
  --chip-bg: rgba(59, 130, 246, 0.1);
  --chip-float-delay: 0s;
  --chip-x: 0rem;
  --chip-reveal-y: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 3.55rem;
  padding: 0.48rem 1.45rem 0.48rem 1.25rem;
  border: 1px solid color-mix(in srgb, var(--chip-color) 22%, white);
  border-radius: 999px;
  color: #334155;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74)),
    var(--chip-bg);
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  font-size: clamp(0.92rem, 1.45vw, 1.05rem);
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  order: var(--chip-order, 0);
  transform: translate3d(var(--chip-x), var(--chip-reveal-y), 0) scale(0.82);
  filter: blur(8px) saturate(0.92);
  transition:
    opacity 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.86s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.72s ease;
  transition-delay: calc(var(--reveal-delay, 0) * 1ms);
  will-change: transform, opacity, filter;
}

.export-chip-cloud .export-chip[data-reveal-item] {
  opacity: 0;
  transform: translate3d(var(--chip-x), var(--chip-reveal-y), 0) scale(0.82);
}

.export-chip-cloud.is-revealed .export-chip {
  --chip-reveal-y: 0rem;
  opacity: 1;
  transform: translate3d(var(--chip-x), 0, 0) scale(1);
  filter: blur(0) saturate(1);
  animation: export-chip-float 6.8s ease-in-out infinite;
  animation-delay: calc(var(--chip-float-delay) + (var(--reveal-delay, 0) * 1ms));
}

.export-chip-cloud.is-revealed .export-chip-icon {
  animation: export-chip-icon-pulse 3.8s ease-in-out infinite;
  animation-delay: calc(var(--chip-float-delay) * -0.35);
}

.export-chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 50%;
  color: var(--chip-color);
  background: color-mix(in srgb, var(--chip-color) 12%, white);
}

.export-chip-icon svg {
  width: 1.02rem;
  height: 1.02rem;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tone-blue { --chip-color: #3b82f6; --chip-bg: rgba(59, 130, 246, 0.08); }
.tone-sky { --chip-color: #0ea5e9; --chip-bg: rgba(14, 165, 233, 0.08); }
.tone-amber { --chip-color: #f59e0b; --chip-bg: rgba(245, 158, 11, 0.09); }
.tone-green { --chip-color: #10b981; --chip-bg: rgba(16, 185, 129, 0.09); }
.tone-indigo { --chip-color: #6366f1; --chip-bg: rgba(99, 102, 241, 0.08); }
.tone-violet { --chip-color: #8b5cf6; --chip-bg: rgba(139, 92, 246, 0.08); }
.tone-pink { --chip-color: #ec4899; --chip-bg: rgba(236, 72, 153, 0.08); }
.tone-purple { --chip-color: #8b5cf6; --chip-bg: rgba(139, 92, 246, 0.08); }
.tone-orange { --chip-color: #f97316; --chip-bg: rgba(249, 115, 22, 0.08); }
.tone-teal { --chip-color: #14b8a6; --chip-bg: rgba(20, 184, 166, 0.08); }
.tone-red { --chip-color: #ef4444; --chip-bg: rgba(239, 68, 68, 0.08); }

.export-chip:nth-child(1) { --chip-order: 1; }
.export-chip:nth-child(2) { --chip-order: 2; }
.export-chip:nth-child(3) { --chip-order: 3; }
.export-chip:nth-child(4) { --chip-order: 4; }
.export-chip:nth-child(5) { --chip-order: 5; }
.export-chip:nth-child(6) { --chip-order: 6; }
.export-chip:nth-child(7) { --chip-order: 7; }
.export-chip:nth-child(8) { --chip-order: 8; }
.export-chip:nth-child(9) { --chip-order: 9; }
.export-chip:nth-child(10) { --chip-order: 10; }
.export-chip:nth-child(11) { --chip-order: 11; }
.export-chip:nth-child(12) { --chip-order: 12; }
.export-chip:nth-child(13) { --chip-order: 13; }
.export-chip:nth-child(14) { --chip-order: 14; }
.export-chip:nth-child(15) { --chip-order: 15; }
.export-chip:nth-child(16) { --chip-order: 16; }
.export-chip:nth-child(17) { --chip-order: 17; }
.export-chip:nth-child(18) { --chip-order: 18; }
.export-chip:nth-child(19) { --chip-order: 20; }
.export-chip:nth-child(20) { --chip-order: 21; }
.export-chip:nth-child(21) { --chip-order: 22; }
.export-chip:nth-child(22) { --chip-order: 23; }
.export-chip:nth-child(23) { --chip-order: 24; }
.export-chip:nth-child(24) { --chip-order: 19; }

.wide-a { margin-left: 5.5rem; }
.wide-b { margin-right: 1.2rem; }
.wide-c { margin-left: 0.3rem; margin-right: 6rem; }
.wide-d { margin-left: 2.8rem; }
.wide-e { margin-left: 0.5rem; }
.wide-f { margin-right: 4.5rem; }
.wide-h { margin-right: 1.5rem; }
.wide-i { margin-left: 1.8rem; }
.wide-k { margin-right: 2.6rem; }
.wide-l { margin-left: 5rem; }
.wide-m { margin-left: 1.4rem; }
.wide-n { margin-right: 4rem; }
.wide-o { margin-left: 7rem; }
.wide-p { margin-right: 3rem; }

.export-chip:nth-child(2n) { --chip-float-delay: -1.6s; }
.export-chip:nth-child(3n) { --chip-float-delay: -3.1s; }
.export-chip:nth-child(4n) { --chip-float-delay: -4.5s; }

.export-chip-financial {
  margin-right: 2.2rem;
  --chip-x: 1.2rem;
}

.export-chip-events {
  --chip-x: -2.1rem;
}

.export-chip-customers {
  margin-right: 0;
  --chip-x: -1.8rem;
}

.export-chip-health {
  margin-left: 0;
  margin-right: 1.7rem;
  --chip-x: 0.6rem;
}

.export-chip-tax {
  margin-left: 0;
  --chip-x: 1.6rem;
}

.export-chip-payment-links {
  margin-left: 0;
  --chip-x: -5.5rem;
}

.export-chip-bottom-issuing {
  margin-right: 0.8rem;
  --chip-x: 0rem;
}

/* Perf: translate/transform only; animating border-radius or box-shadow
   repaints all 24 chips continuously */
@keyframes export-chip-float {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -9px;
  }
}

@keyframes export-chip-icon-pulse {
  0%, 100% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.08) rotate(-4deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .export-chip-cloud .export-chip[data-reveal-item],
  .export-chip-cloud.is-revealed .export-chip {
    opacity: 1;
    transform: translate3d(var(--chip-x), 0, 0);
    filter: none;
    animation: none;
  }

  .export-chip-cloud.is-revealed .export-chip-icon {
    animation: none;
  }
}

/* Pricing */

.pricing-section {
  margin-top: 1rem;
  overflow: visible;
  padding-bottom: 0;
}

.pricing-note {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 1.75rem auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Homepage FAQ (GEO) */

.faq-section {
  margin-top: 4rem;
  padding-bottom: 1rem;
}

.faq-list-home {
  width: min(100%, 760px);
  margin: 0 auto;
}

.faq-list-home .faq-item {
  background: rgba(255, 255, 255, 0.86);
}

.faq-list-home .faq-answer a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* How it works */

.how-section,
.features-section,
.blog-preview-section {
  margin-top: 4.5rem;
}

.section-cta {
  margin-top: 1.75rem;
  text-align: center;
  font-size: 0.95rem;
}

.section-cta a {
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}

.step-card {
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: rgba(0, 97, 255, 0.1);
  color: var(--blue);
  font-size: 0.95rem;
}

.step-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.step-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

/* Features grid */

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

.feature-card {
  padding: 1.25rem 1.3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.feature-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  line-height: 1.35;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Blog preview */

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.blog-preview-card {
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-preview-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.blog-preview-tag {
  margin: 0 0 0.5rem;
  color: var(--blue);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-preview-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  line-height: 1.35;
}

.blog-preview-card h3 a {
  color: var(--text);
  text-decoration: none;
}

.blog-preview-card h3 a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.blog-preview-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-credit {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* Blog pages */

body.blog-index .page,
body.blog-article .page {
  width: min(860px, calc(100% - 2rem));
}

.blog-index main,
.blog-article main {
  margin-top: 1.5rem;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-list-item {
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.blog-list-item h2 {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.35rem;
}

.blog-list-item h2 a {
  color: var(--text);
  text-decoration: none;
}

.blog-list-item h2 a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.blog-list-item p {
  margin: 0;
  color: var(--text-muted);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.article-tag {
  color: var(--blue);
}

.blog-article main {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.blog-article main h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.15;
}

.blog-article main h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
}

.blog-article main h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.05rem;
}

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

.blog-article main ul,
.blog-article main ol {
  padding-left: 1.35rem;
}

.blog-article .article-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
}

.blog-plugin-invite {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin: 1.35rem 0;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(0, 97, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(520px 170px at 100% 0%, rgba(99, 91, 255, 0.12), transparent 70%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--shadow-sm);
}

.blog-plugin-invite p {
  margin: 0;
}

.blog-plugin-invite strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
  font-size: 1.02rem;
}

.blog-plugin-invite span {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.blog-hero-visual {
  position: relative;
  margin: 1.5rem 0 1.75rem;
  padding: clamp(1rem, 3vw, 1.4rem);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(420px 220px at 16% 12%, rgba(99, 91, 255, 0.14), transparent 66%),
    radial-gradient(440px 220px at 92% 20%, rgba(56, 189, 248, 0.15), transparent 68%),
    linear-gradient(135deg, #ffffff 0%, #f5f8fc 100%);
  box-shadow: var(--shadow-md);
}

.blog-hero-visual::after {
  content: "";
  position: absolute;
  right: -78px;
  bottom: -92px;
  width: 230px;
  height: 230px;
  border: 26px solid rgba(99, 91, 255, 0.1);
  border-radius: 50%;
}

.provider-row,
.visual-flow,
.visual-mini-grid {
  position: relative;
  z-index: 1;
}

.provider-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 1rem;
}

.provider-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 36px;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #1f2a44;
  font-size: 0.84rem;
}

.provider-logo {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  font-size: 0;
}

.provider-logo.stripe {
  background: #635bff;
}

.provider-logo.stripe::before {
  content: "";
  width: 13px;
  height: 9px;
  background: #fff;
  transform: skewY(-11deg);
}

.provider-logo.workestic {
  background: linear-gradient(135deg, #4f46e5, #22c55e);
}

.provider-logo.workestic::before {
  content: "W";
  color: #fff;
  font-size: 0.78rem;
}

.provider-logo.drive {
  background: conic-gradient(from 40deg, #188038 0 33%, #fbbc04 0 66%, #1a73e8 0);
  border-radius: 7px;
}

.provider-logo.drive::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #fff;
}

.provider-logo.sheets {
  border-radius: 6px;
  background: #188038;
}

.provider-logo.sheets::before {
  content: "";
  width: 12px;
  height: 15px;
  border-radius: 2px;
  background:
    linear-gradient(#188038, #188038) 4px 0 / 1px 100%,
    linear-gradient(#188038, #188038) 8px 0 / 1px 100%,
    linear-gradient(#188038, #188038) 0 5px / 100% 1px,
    linear-gradient(#188038, #188038) 0 10px / 100% 1px,
    #fff;
  background-repeat: no-repeat;
}

.visual-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
}

.visual-card {
  min-height: 138px;
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.visual-card h3 {
  margin: 0 0 0.75rem;
  color: #0f172a;
  font-size: 0.98rem;
}

.visual-line,
.visual-bar,
.visual-pill,
.visual-row {
  display: block;
  border-radius: 999px;
  background: #dbe4f0;
}

.visual-line {
  height: 9px;
  margin: 0.55rem 0;
}

.visual-line.short {
  width: 56%;
}

.visual-line.medium {
  width: 74%;
}

.visual-bar {
  height: 12px;
  margin-top: 0.7rem;
  background: linear-gradient(90deg, #635bff, #14b8a6);
}

.visual-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0f172a;
  color: #fff;
}

.visual-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.visual-pill {
  min-height: 38px;
  padding: 0.55rem 0.7rem;
  background: rgba(15, 23, 42, 0.06);
  color: #334155;
  font-size: 0.82rem;
}

.visual-risk .visual-bar {
  background: linear-gradient(90deg, #ef4444, #f59e0b, #22c55e);
}

.visual-growth .visual-bar,
.visual-chart .visual-bar {
  height: 88px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(20, 184, 166, 0.18), rgba(20, 184, 166, 0.04)),
    repeating-linear-gradient(90deg, transparent 0 36px, rgba(15, 23, 42, 0.08) 37px 38px),
    linear-gradient(135deg, transparent 0 34%, #14b8a6 35% 42%, transparent 43% 100%);
}

.visual-docs .visual-card:last-child,
.visual-links .visual-card:last-child {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.9)),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(99, 91, 255, 0.12) 19px 20px);
}

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

.visual-promo .visual-pill {
  background: #fff1f2;
  color: #be123c;
}

.answer-block {
  margin: 1.25rem 0;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(0, 97, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: #334155;
}

.answer-block-home {
  width: min(100%, 900px);
  margin: 6rem auto 0;
  padding: 1.65rem 0 0;
  border: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.answer-kicker {
  margin: 0 0 0.4rem;
  color: var(--blue);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.answer-block h3 {
  max-width: 34rem;
  margin: 0 0 1.05rem;
  color: var(--text);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.answer-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.5rem;
}

.answer-copy-grid p {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.58;
}

.comparison-table {
  width: 100%;
  margin: 1.25rem 0;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.comparison-table th,
.comparison-table td {
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  text-align: left;
}

.comparison-table th {
  background: #f8fafc;
}

.article-cta {
  margin-top: 2rem;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(0, 97, 255, 0.06);
  border: 1px solid rgba(0, 97, 255, 0.12);
}

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
}

.pricing-stage {
  position: relative;
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 2.5rem 0 1rem;
  overflow: visible;
}

.card-shapes-pricing {
  inset: -180px -300px -64px -300px;
}

.card-shapes-pricing .card-shape-blue {
  top: -8%;
  left: -300px;
  right: auto;
  width: 460px;
  height: 460px;
  background: linear-gradient(
    64deg,
    rgba(37, 99, 235, 0.46) 0%,
    rgba(37, 99, 235, 0.16) 40%,
    rgba(37, 99, 235, 0.03) 60%,
    transparent 78%
  );
}

.card-shapes-pricing .card-shape-green {
  top: -16%;
  right: -310px;
  left: auto;
  width: 470px;
  height: 470px;
  background: linear-gradient(
    to right,
    rgba(34, 197, 94, 0.44) 0%,
    rgba(34, 197, 94, 0.14) 38%,
    rgba(34, 197, 94, 0.03) 58%,
    transparent 76%
  );
}

.card-shapes-pricing .card-shape-yellow {
  bottom: -96px;
  right: -220px;
  left: auto;
  width: 500px;
  height: 500px;
  background: linear-gradient(
    to bottom,
    rgba(251, 191, 36, 0.42) 0%,
    rgba(251, 191, 36, 0.14) 36%,
    rgba(251, 191, 36, 0.03) 56%,
    transparent 74%
  );
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.price-card-free {
  background: rgba(255, 255, 255, 0.9);
  border-color: #cbd5e1;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.price-card-free .price-head h3 {
  color: var(--text);
}

.price-card-free .price-amount {
  color: var(--text);
}

.price-card-free .price-features li:not(.price-feature-muted) {
  color: var(--text);
}

.price-card-featured {
  z-index: 2;
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid #34d399;
  box-shadow:
    0 28px 70px rgba(5, 150, 105, 0.18),
    0 0 0 1px rgba(52, 211, 153, 0.12);
  transform: scale(1.04) translateY(-10px);
}

.price-card-pro {
  background: rgba(255, 255, 255, 0.92);
  border-color: #fde68a;
  box-shadow: 0 18px 48px rgba(217, 119, 6, 0.1);
}

.price-tier-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid #e2e8f0;
}

.price-tier-label-pro {
  background: #fef3c7;
  color: #b45309;
}

.price-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue);
  font-size: 0.78rem;
  border: 1px solid #dbeafe;
}

.price-badge-green {
  background: #ecfdf5;
  color: #047857;
  border-color: #a7f3d0;
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.15);
}

.price-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.price-head h3 {
  margin: 0;
  font-size: 1.25rem;
}

.price-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #fff;
}

.price-icon-blue { background: linear-gradient(135deg, #60a5fa, #2563eb); color: #fff; }
.price-icon-gray { background: linear-gradient(135deg, #94a3b8, #64748b); color: #fff; }
.price-icon-green { background: linear-gradient(135deg, #34d399, #059669); color: #fff; }
.price-icon-yellow { background: linear-gradient(135deg, #fde68a, #d97706); color: #fff; }

.price-amount {
  margin: 0 0 0.5rem;
  font-size: 3rem;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}

.price-amount-free {
  font-size: 2.75rem;
}

.price-tagline {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.price-card-free .price-tagline {
  color: #64748b;
}

.price-tagline-highlight {
  color: #047857;
}

.price-currency {
  font-size: 1.4rem;
  vertical-align: top;
  margin-right: 0.15rem;
}

.price-period {
  font-size: 1rem;
  color: var(--text-muted);
}

.price-features {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.45;
}

.price-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  margin-top: 0.18rem;
  border-radius: 50%;
  color: #fff;
  font-size: 0;
  line-height: 0;
}

.price-check::before {
  content: "";
  display: block;
  width: 4px;
  height: 7px;
  border: solid currentColor;
  border-width: 0 1.7px 1.7px 0;
  transform: rotate(45deg) translate(-0.5px, -0.5px);
  transform-origin: center;
}

.price-check-blue { background: #2563eb; }
.price-check-gray { background: #94a3b8; }
.price-check-green { background: #059669; }
.price-check-yellow { background: #d97706; }

.price-feature-muted {
  color: #94a3b8 !important;
}

.price-x {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  margin-top: 0.18rem;
  border-radius: 50%;
  background: #e2e8f0;
  color: #94a3b8;
  font-size: 0;
  line-height: 0;
}

.price-x::before,
.price-x::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 1.4px;
  border-radius: 999px;
  background: currentColor;
}

.price-x::before {
  transform: rotate(45deg);
}

.price-x::after {
  transform: rotate(-45deg);
}

.btn-muted {
  padding: 0.85rem 1.4rem;
  color: var(--text);
  background: #fff;
  border: 1.5px solid #cbd5e1;
}

.btn-muted:hover {
  border-color: #94a3b8;
  background: #f8fafc;
  transform: translateY(-1px);
}

.btn-green {
  background: #059669;
  box-shadow: 0 12px 28px rgba(5, 150, 105, 0.28);
}

.btn-green:hover {
  background: #047857;
  box-shadow: 0 16px 32px rgba(5, 150, 105, 0.32);
}

.btn-outline-pro {
  color: #b45309;
  border-color: #fcd34d;
  background: #fffbeb;
}

.btn-outline-pro:hover {
  border-color: #d97706;
  background: #fef3c7;
}

.price-cta {
  width: 100%;
}

/* Legal pages */

body.legal {
  background:
    radial-gradient(circle at 15% 10%, rgba(0, 97, 255, 0.06), transparent 42%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.legal .site-header {
  top: 0;
  margin-bottom: 2rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 1rem calc(50vw - 50%);
  background: rgba(248, 250, 252, 0.82);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.blog-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.blog-nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.blog-nav-links a {
  color: var(--text-muted);
  font-size: 0.94rem;
  text-decoration: none;
  transition: color 0.15s ease;
}

.blog-nav-links a:hover,
.blog-nav-links a[aria-current="page"] {
  color: var(--text);
  text-decoration: none;
}

.legal .page {
  width: min(720px, calc(100% - 2rem));
  padding-top: 0;
}

.legal main {
  margin-top: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.legal h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.15;
}

.legal h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
}

.legal h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.05rem;
  color: var(--text);
}

.legal-toc {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}

.legal-toc li {
  margin-bottom: 0.35rem;
}

.legal-summary {
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-muted);
}

.legal-summary ul {
  margin-bottom: 0;
}

.legal p,
.legal li {
  color: var(--text-muted);
}

.legal p {
  margin: 0 0 1rem;
}

.legal ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal strong {
  color: var(--text);
}

.legal code {
  font-size: 0.9em;
}

/* Support page */

.support .page {
  width: min(760px, calc(100% - 2rem));
}

.support-lead {
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.support-section {
  margin-top: 2.5rem;
}

.support-section:first-of-type {
  margin-top: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(0, 97, 255, 0.08);
  color: var(--blue);
  font-size: 1.1rem;
  line-height: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
  background: rgba(0, 97, 255, 0.14);
}

.faq-item summary:hover::after {
  background: rgba(0, 97, 255, 0.14);
}

.faq-answer {
  padding: 0 1.15rem 1.1rem;
}

.faq-answer p {
  margin: 0;
}

.faq-answer p + p {
  margin-top: 0.85rem;
}

.support-contact .contact-card {
  margin: 1.25rem 0 1.5rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.contact-row {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.75rem 1rem;
  padding: 0.55rem 0;
}

.contact-row + .contact-row {
  border-top: 1px solid rgba(226, 232, 240, 0.85);
}

.contact-label {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.contact-value {
  color: var(--text);
  text-decoration: none;
}

a.contact-value:hover {
  color: var(--blue);
  text-decoration: underline;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .contact-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .blog-nav {
    position: relative;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .blog-nav-links {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    left: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
    padding: 0.75rem;
    border: 1px solid rgba(226, 232, 240, 0.86);
    border-radius: 20px;
    background: #fff;
    box-shadow:
      0 18px 46px rgba(15, 23, 42, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .blog-nav-links a {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 0 0.75rem;
    border: 0;
    border-radius: 13px;
    background: #f8fafc;
    font-size: 0.88rem;
    line-height: 1.1;
  }

  .blog-nav .nav-toggle-input:checked ~ .blog-nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: auto;
    padding: 1.2rem 1rem 2rem;
    overflow: visible;
  }

  .mockup-stage {
    width: min(100%, 760px);
    padding: 1rem 0;
  }

  .workestic-hero-card {
    width: 100%;
  }

  .hero-export-title {
    margin-bottom: 1.4rem;
    font-size: clamp(2.05rem, 7.8vw, 3.2rem);
  }

  .hero-install-action {
    margin-bottom: 1.25rem;
  }

  .hero-install-button {
    min-width: min(100%, 280px);
    min-height: 56px;
    border-radius: 16px;
  }

  .export-app-panel-stripe,
  .export-app-panel-drive {
    border-width: 7px;
  }

  .export-panel-body {
    min-height: 250px;
    padding: 0.82rem;
  }
}

@media (max-width: 640px) {
  .page {
    width: min(100%, calc(100% - 1.5rem));
    padding-top: 1.25rem;
  }

  .site-header {
    margin-bottom: 2rem;
  }

  .nav-bar {
    align-items: center;
    gap: 0.55rem 0.75rem;
    padding: 0.65rem;
    border-radius: 999px;
  }

  .logo {
    min-height: 40px;
    font-size: 1rem;
  }

  .logo-mark {
    width: 30px;
    height: auto;
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #0f172a;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .nav-toggle-input:checked + .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle-input:checked + .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle-input:checked + .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-bar .btn-sm {
    display: none;
    min-height: 40px;
    padding: 0.55rem 0.9rem;
    font-size: 0.86rem;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
    padding: 0.75rem;
    border: 1px solid rgba(226, 232, 240, 0.86);
    border-radius: 22px;
    background: #fff;
    box-shadow:
      0 18px 46px rgba(15, 23, 42, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 0.8rem;
    border-radius: 14px;
    background: #f8fafc;
    color: #334155;
    font-size: 0.9rem;
    line-height: 1.1;
  }

  .nav-links a:hover {
    background: #eef4ff;
    color: var(--blue);
  }

  .nav-toggle-input:checked ~ .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    gap: 1.25rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 10vw, 3rem);
  }

  .hero-subtitle {
    margin-bottom: 1.25rem;
  }

  .hero-actions {
    gap: 0.85rem;
  }

  .hero-actions .btn-primary {
    padding: 0.9rem 1.3rem;
  }

  .hero-visual,
  .demo-stage,
  .pricing-section {
    overflow: hidden;
  }

  .demo-section {
    overflow: visible;
  }

  .hero-visual {
    min-height: 0;
    padding: 0 0 1.5rem;
    overflow: visible;
  }

  .mockup-stage {
    width: min(100vw, 520px);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 1rem 0.75rem 1.75rem;
  }

  .workestic-hero-card {
    animation: none;
  }

  .hero-export-title {
    justify-content: center;
    gap: 0.42rem;
    margin-bottom: 0.9rem;
    font-size: 1.9rem;
  }

  .hero-brand-pill {
    gap: 0.38rem;
    min-height: 36px;
    padding: 0.22rem 0.48rem;
    border-radius: 9px;
  }

  .hero-title-icon {
    width: 25px;
    height: 25px;
  }

  .hero-title-icon-drive {
    width: 30px;
  }

  .hero-export-panels {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 0.72rem;
    border-radius: 26px;
    transform: none;
  }

  .export-app-panel {
    width: min(94%, 420px);
    border-radius: 20px;
    padding: 0.78rem;
  }

  .export-app-panel-stripe {
    margin: 0 auto 0 0;
    transform: translate3d(0.1rem, 0, 0) rotate(-0.4deg);
  }

  .export-app-panel-drive {
    z-index: 4;
    margin: -10.25rem 0 0 auto;
    transform: translate3d(-0.1rem, 0, 0) rotate(0.35deg);
  }

  .export-app-panel-stripe,
  .export-app-panel-drive {
    border-width: 6px;
  }

  .export-panel-bar {
    min-height: 38px;
    padding: 0 0.44rem 0.5rem;
    gap: 0.48rem;
    font-size: 0.92rem;
  }

  .hero-panel-icon {
    width: 22px;
    height: 22px;
  }

  .hero-panel-icon-drive {
    width: 25px;
  }

  .hero-panel-icon-chip {
    width: 28px;
    height: 28px;
  }

  .hero-panel-icon-chip .hero-panel-icon-drive {
    width: 21px;
  }

  .export-panel-body {
    min-height: 0;
    padding: 0.72rem;
    border-radius: 14px;
  }

  .stripe-preview-top {
    margin-bottom: 0.58rem;
  }

  .stripe-preview-top strong {
    font-size: 1rem;
  }

  .stripe-preview-metrics {
    margin-bottom: 0.72rem;
  }

  .stripe-preview-filters {
    grid-template-columns: repeat(4, auto);
  }

  .stripe-preview-filters span:last-child {
    display: none;
  }

  .stripe-table-preview div {
    grid-template-columns: 1.1fr 0.52fr 1fr 0.58fr;
    gap: 0.28rem;
    min-height: 24px;
  }

  .drive-file-cards {
    gap: 0.55rem;
    margin-bottom: 0.72rem;
  }

  .drive-folder-list div {
    grid-template-columns: 1fr auto;
    min-height: 27px;
  }

  .drive-folder-list small {
    display: none;
  }

  .hero .card-shapes {
    inset: 0;
    overflow: visible;
  }

  .mockup-card {
    padding: 1rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.28);
    box-shadow:
      0 32px 80px rgba(15, 23, 42, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.45);
  }

  .integration-row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.7rem;
    margin-bottom: 0.9rem;
    padding-bottom: 1.9rem;
  }

  .integration-connector {
    position: absolute;
    inset: auto 18% 0;
    width: auto;
    justify-content: center;
  }

  .integration-card {
    min-height: 94px;
    padding: 0.9rem;
    border-radius: 18px;
  }

  .integration-brand {
    gap: 0.45rem;
    margin-bottom: 0.45rem;
    font-size: 0.88rem;
    line-height: 1.15;
  }

  .integration-brand-drive {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-icon-drive {
    width: 30px;
    height: auto;
  }

  .brand-stripe {
    width: 48px;
  }

  .status-pill {
    font-size: 0.74rem;
  }

  .connector-line {
    border-top-width: 2px;
  }

  .connector-arrow {
    width: 30px;
    height: 30px;
  }

  .card-shape-blue {
    top: -34px;
    right: -28px;
    width: 128px;
    height: 128px;
    opacity: 0.78;
  }

  .card-shape-green {
    top: 118px;
    right: -42px;
    width: 100px;
    height: 100px;
    opacity: 0.72;
  }

  .card-shape-yellow {
    right: -18px;
    bottom: -34px;
    width: 150px;
    height: 150px;
    opacity: 0.72;
  }

  .card-shape-red {
    left: -26px;
    bottom: -22px;
    width: 104px;
    height: 104px;
    opacity: 0.66;
  }

  .exports-panel {
    padding: 0.95rem 0.95rem 0.2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
  }

  .export-row {
    gap: 0.55rem;
    padding: 0.85rem 0;
  }

  .export-main {
    min-width: 0;
    gap: 0.5rem;
  }

  .export-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .export-name,
  .export-status,
  .export-tag {
    white-space: nowrap;
  }

  .export-name {
    font-size: 0.9rem;
  }

  .export-tag {
    padding: 0.18rem 0.45rem;
    font-size: 0.68rem;
  }

  .export-status {
    gap: 0.25rem;
    font-size: 0.78rem;
  }

  .export-meta {
    flex-shrink: 0;
    gap: 0.35rem;
  }

  .demo-section {
    margin-top: 0.5rem;
  }

  .demo-stage {
    padding: 1rem 0 0.5rem;
    overflow: visible;
  }

  .card-shapes-demo {
    inset: -64px -26px -42px -26px;
  }

  .card-shapes-demo .card-shape-blue {
    top: auto;
    bottom: 4px;
    left: -36px;
    width: 118px;
    height: 118px;
    opacity: 0.58;
  }

  .card-shapes-demo .card-shape-green {
    top: -42px;
    right: -36px;
    width: 124px;
    height: 124px;
    opacity: 0.56;
  }

  .legal main {
    padding: 1.5rem;
  }

  .export-everything-title {
    margin-bottom: 1.55rem;
    font-size: 2rem;
  }

  .export-chip-cloud {
    justify-content: center;
    gap: 0.56rem 0.48rem;
    padding: 0 0.55rem;
  }

  .export-chip {
    gap: 0.52rem;
    min-height: 2.42rem;
    padding: 0.26rem 0.72rem 0.26rem 0.48rem;
    font-size: 0.76rem;
  }

  .export-chip-icon {
    width: 1.36rem;
    height: 1.36rem;
  }

  .export-chip-icon svg {
    width: 0.72rem;
    height: 0.72rem;
  }

  .wide-a,
  .wide-b,
  .wide-c,
  .wide-d,
  .wide-e,
  .wide-f,
  .wide-g,
  .wide-h,
  .wide-i,
  .wide-j,
  .wide-k,
  .wide-l,
  .wide-m,
  .wide-n,
  .wide-o,
  .wide-p {
    margin-right: 0;
    margin-left: 0;
  }

  .export-chip-financial,
  .export-chip-events,
  .export-chip-customers,
  .export-chip-health,
  .export-chip-tax,
  .export-chip-payment-links,
  .export-chip-bottom-issuing {
    --chip-x: 0rem;
  }

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

  .price-card-featured {
    transform: none;
  }

  .price-card-free {
    transform: none;
    opacity: 1;
  }

  .section-head {
    margin-top: 4rem;
  }

  .steps-grid,
  .features-grid,
  .blog-preview-grid {
    grid-template-columns: 1fr;
  }

  .answer-block {
    padding: 1.35rem 1.15rem;
  }

  .blog-plugin-invite,
  .visual-flow {
    grid-template-columns: 1fr;
  }

  .blog-plugin-invite .btn {
    width: 100%;
  }

  .visual-arrow {
    width: 100%;
    height: 34px;
    border-radius: 999px;
  }

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

  .answer-copy-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 880px) and (min-width: 641px) {
  .export-chip-cloud {
    gap: 0.9rem;
  }

  .export-chip {
    min-height: 3.25rem;
    font-size: 0.96rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ============================================================
   Premium pass: depth, kickers, scroll narrative, micro-motion
   ============================================================ */

/* --- Depth system: layered shadows + etched hairlines --- */

.step-card,
.feature-card,
.blog-preview-card,
.faq-item {
  border-color: rgba(226, 232, 240, 0.92);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 10px 28px rgba(15, 23, 42, 0.05),
    0 30px 60px -18px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.step-card,
.feature-card {
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.step-card:hover,
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.05),
    0 16px 38px rgba(15, 23, 42, 0.08),
    0 42px 80px -20px rgba(15, 23, 42, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* Post-reveal: drop stagger delays so hovers stay crisp */
[data-reveal-stagger].reveal-settled [data-reveal-item] {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  transition-delay: 0ms;
}

.price-card {
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 14px 40px rgba(15, 23, 42, 0.08),
    0 40px 80px -24px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

/* Glass nav: deepen on scroll */
.nav-bar {
  transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.site-header.is-scrolled .nav-bar {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.05),
    0 16px 44px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

/* --- Blur-to-sharp heading reveals --- */

.section-head[data-reveal="scroll"] {
  filter: blur(7px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-delay, 0) * 1ms);
}

.section-head[data-reveal="scroll"].is-revealed {
  filter: blur(0);
}

/* --- CTA micro-interactions: sheen sweep + arrow nudge --- */

.hero-install-button,
.btn-primary {
  position: relative;
  overflow: hidden;
}

.hero-install-button::before,
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    115deg,
    transparent 32%,
    rgba(255, 255, 255, 0.32) 50%,
    transparent 68%
  );
  transform: translateX(-130%);
  pointer-events: none;
}

.hero-install-button > *,
.btn-primary > * {
  position: relative;
  z-index: 1;
}

.hero-install-button::before {
  animation: cta-sheen 5.4s ease-in-out infinite;
  animation-delay: 2.2s;
}

.btn-primary:hover::before {
  animation: cta-sheen-once 0.7s ease;
}

@keyframes cta-sheen {
  0% { transform: translateX(-130%); }
  16%, 100% { transform: translateX(130%); }
}

@keyframes cta-sheen-once {
  from { transform: translateX(-130%); }
  to { transform: translateX(130%); }
}

.btn svg,
.hero-install-button svg,
.blog-preview-arrow {
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn:hover svg,
.hero-install-button:hover svg {
  transform: translateX(3px);
}

/* --- Hero: export-flow dots + receiving pop --- */

.export-flow {
  position: absolute;
  inset: 0;
  z-index: 6;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.export-flow-dot {
  position: absolute;
  top: 46%;
  left: 30%;
  width: 11px;
  height: 11px;
  opacity: 0;
  animation: export-flow-x 3.8s ease-in-out infinite;
}

.export-flow-dot i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: export-flow-y 3.8s ease-in-out infinite;
  animation-delay: inherit;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.28);
}

.export-flow-dot-blue i { background: #4285f4; }
.export-flow-dot-green i { background: #34a853; }
.export-flow-dot-yellow i { background: #fbbc04; }

.export-flow-dot-green { animation-delay: 0.16s; top: 49%; }
.export-flow-dot-green i { animation-delay: 0.16s; }
.export-flow-dot-yellow { animation-delay: 1.9s; top: 47%; }
.export-flow-dot-yellow i { animation-delay: 1.9s; }

@keyframes export-flow-x {
  0%, 24% { left: 30%; opacity: 0; }
  30% { opacity: 1; }
  52% { left: 64%; opacity: 1; }
  57%, 100% { left: 65.5%; opacity: 0; }
}

@keyframes export-flow-y {
  0%, 24% { transform: translateY(0) scale(0.7); }
  38% { transform: translateY(-46px) scale(1.05); }
  52% { transform: translateY(-14px) scale(0.92); }
  57%, 100% { transform: translateY(-8px) scale(0.7); }
}

.drive-file-card {
  animation: drive-card-pop 3.8s ease-in-out infinite;
}

.drive-file-card:nth-child(2) {
  animation-delay: 1.9s;
}

@keyframes drive-card-pop {
  0%, 50%, 74%, 100% { transform: scale(1); }
  60% { transform: scale(1.03); }
}

/* Count-up numbers stay steady while ticking */
[data-count-to],
.stat-value {
  font-variant-numeric: tabular-nums;
}

/* --- How it works: pipeline track + colored steps + mini-scenes --- */

.steps-pipeline {
  position: relative;
}

.steps-pipeline .steps-grid {
  position: relative;
  z-index: 1;
}

.steps-pipeline .step-card {
  background: #fff;
  overflow: hidden;
}

/* Runs behind the cards at step-number height; visible only in the gaps */
.steps-track {
  position: absolute;
  top: 13.5rem;
  right: 3rem;
  left: 3rem;
  z-index: 0;
  height: 2px;
  border-radius: 999px;
  background-image: linear-gradient(90deg, rgba(100, 116, 139, 0.38) 0 52%, transparent 52%);
  background-size: 10px 2px;
}

.steps-track-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4285f4 0%, #34a853 52%, #fbbc04 100%);
  transform: scaleX(var(--steps-progress, 0));
  transform-origin: left;
}

.step-number-blue { background: rgba(66, 133, 244, 0.12); color: #1a73e8; }
.step-number-green { background: rgba(52, 168, 83, 0.14); color: #188038; }
.step-number-yellow { background: rgba(251, 188, 5, 0.2); color: #b06000; }

/* Full-bleed "cover image" strip at the top of each step card */
.step-scene {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  margin: -1.35rem -1.4rem 1.15rem;
  padding: 0.9rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.step-scene-access {
  flex-direction: column;
  gap: 0.55rem;
  background:
    radial-gradient(240px 140px at 80% 16%, rgba(52, 168, 83, 0.15), transparent 72%),
    linear-gradient(180deg, #f2f7f3, #fbfdfb);
}

.step-scene-oauth {
  background:
    radial-gradient(240px 140px at 18% 14%, rgba(66, 133, 244, 0.15), transparent 72%),
    linear-gradient(180deg, #f1f5fc, #fafcff);
}

.step-scene-sheet {
  background:
    radial-gradient(240px 140px at 82% 16%, rgba(251, 188, 5, 0.18), transparent 72%),
    linear-gradient(180deg, #f8f6ee, #fdfcf7);
}

.step-access-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.9rem;
  border: 1px solid rgba(52, 168, 83, 0.28);
  border-radius: 999px;
  background: rgba(52, 168, 83, 0.1);
  color: #188038;
  font-size: 0.82rem;
  line-height: 1;
  opacity: 0;
  transform: translateY(8px) scale(0.92);
}

.steps-grid.is-revealed .step-access-pill {
  animation: scene-pop-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.55s both;
}

.step-access-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #34a853;
  color: #fff;
  font-size: 0.62rem;
}

.step-access-mail {
  color: #94a3b8;
  font-size: 0.72rem;
  opacity: 0;
}

.steps-grid.is-revealed .step-access-mail {
  animation: scene-fade-in 0.5s ease 0.85s both;
}

.step-oauth-dialog {
  width: min(100%, 240px);
  padding: 0.7rem 0.8rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
  opacity: 0;
  transform: translateY(10px) scale(0.94);
}

.steps-grid.is-revealed .step-oauth-dialog {
  animation: scene-pop-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.75s both;
}

.step-oauth-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #334155;
  font-size: 0.76rem;
  line-height: 1.2;
}

.step-oauth-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  background:
    conic-gradient(from -45deg, #ea4335 0 25%, #fbbc04 0 50%, #34a853 0 75%, #4285f4 0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 0.7rem;
}

.step-oauth-copy {
  margin: 0.5rem 0 0.6rem;
  color: #64748b;
  font-size: 0.68rem;
  line-height: 1.4;
}

.step-oauth-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.4rem;
  font-size: 0.68rem;
}

.step-oauth-actions span {
  padding: 0.28rem 0.6rem;
  border-radius: 6px;
  color: #64748b;
}

.step-oauth-allow {
  background: #1a73e8;
  color: #fff !important;
  animation: oauth-allow-pulse 3.4s ease-in-out infinite;
}

@keyframes oauth-allow-pulse {
  0%, 78%, 100% { box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.3); }
  88% { box-shadow: 0 0 0 5px rgba(26, 115, 232, 0); }
}

.step-sheet {
  width: min(100%, 230px);
  overflow: hidden;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.step-sheet-tab {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.55rem;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #334155;
  font-size: 0.68rem;
  line-height: 1;
}

.step-sheet-tab img {
  display: block;
}

.step-sheet-rows {
  display: grid;
  gap: 5px;
  padding: 0.55rem;
}

.step-sheet-row {
  height: 9px;
  border-radius: 3px;
  background:
    linear-gradient(90deg, rgba(52, 168, 83, 0.28) 0 26%, transparent 26% 30%,
      rgba(148, 163, 184, 0.3) 30% 62%, transparent 62% 66%,
      rgba(148, 163, 184, 0.22) 66% 100%);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.steps-grid.is-revealed .step-sheet-row {
  animation: sheet-row-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.steps-grid.is-revealed .step-sheet-row:nth-child(1) { animation-delay: 0.95s; }
.steps-grid.is-revealed .step-sheet-row:nth-child(2) { animation-delay: 1.1s; }
.steps-grid.is-revealed .step-sheet-row:nth-child(3) { animation-delay: 1.25s; }
.steps-grid.is-revealed .step-sheet-row:nth-child(4) { animation-delay: 1.4s; }

@keyframes sheet-row-in {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes scene-pop-in {
  from { opacity: 0; transform: translateY(10px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes scene-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --- Answer block: stat strip + trust flow --- */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 1.05rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 32px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.stat {
  padding-left: 1.1rem;
  border-left: 1px solid rgba(148, 163, 184, 0.28);
}

.stat:first-child {
  padding-left: 0;
  border-left: 0;
}

.stat-value {
  display: block;
  color: var(--text);
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.stat-label {
  display: block;
  margin-top: 0.1rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.trust-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.5rem;
}

.trust-node {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 40px;
  padding: 0.4rem 0.95rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: 0.86rem;
  line-height: 1;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 20px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.trust-node img {
  display: block;
}

.trust-node-memory {
  border-style: dashed;
  border-color: rgba(148, 163, 184, 0.6);
  background: rgba(248, 250, 252, 0.9);
  color: #64748b;
}

.trust-memory-badge {
  display: inline-flex;
  color: #94a3b8;
}

.trust-link {
  position: relative;
  flex: 1 1 42px;
  min-width: 34px;
  height: 2px;
  border-radius: 999px;
  background-image: linear-gradient(90deg, rgba(100, 116, 139, 0.4) 0 55%, transparent 55%);
  background-size: 9px 2px;
}

.trust-link i {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: var(--blue);
  animation: trust-dot-travel 2.6s ease-in-out infinite;
}

.trust-link-right i {
  background: #188038;
  animation-delay: 1.3s;
}

@keyframes trust-dot-travel {
  0% { left: 0; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: calc(100% - 6px); opacity: 0; }
}

/* --- Features bento: animated illustration cards --- */

.features-bento {
  grid-auto-flow: dense;
}

.features-bento .feature-card {
  display: flex;
  flex-direction: column;
  padding: 1.45rem 1.5rem;
  overflow: hidden;
}

.features-bento .feature-card > p {
  flex: 1 0 auto;
}

.features-bento .feature-card-wide {
  grid-column: span 2;
}

.features-bento .feature-card-full {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}

.feature-card-full h3 {
  margin-bottom: 0.3rem;
}

.feature-free-copy {
  flex: 1 1 auto;
  min-width: 220px;
}

/* Full-bleed "cover image" strip at the top of each feature card */
.feature-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  margin: -1.45rem -1.5rem 1.15rem;
  padding: 1.05rem 1.3rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
}

/* Exports: data chips slide into a sheet, rows land */
.feature-art-exports {
  justify-content: flex-start;
  gap: 0.9rem;
  overflow: hidden;
  background:
    radial-gradient(360px 160px at 88% 12%, rgba(52, 168, 83, 0.14), transparent 72%),
    linear-gradient(180deg, #f2f7f3, #fbfdfb);
}

.art-chip-lane {
  position: relative;
  flex: 1 1 auto;
  align-self: stretch;
}

.art-chip {
  position: absolute;
  left: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.72rem;
  border-radius: 999px;
  font-size: 0.72rem;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  animation: art-chip-travel 7.2s ease-in-out infinite;
}

.art-chip-blue { top: 12%; background: rgba(66, 133, 244, 0.12); color: #1a73e8; }
.art-chip-violet { top: 42%; background: rgba(124, 92, 255, 0.12); color: #6d5ce6; animation-delay: 2.4s; }
.art-chip-amber { top: 72%; background: rgba(251, 188, 5, 0.18); color: #b06000; animation-delay: 4.8s; }

@keyframes art-chip-travel {
  0%, 4% { opacity: 0; left: -8px; }
  10% { opacity: 1; }
  27% { opacity: 1; }
  33%, 100% { opacity: 0; left: calc(100% - 12px); }
}

.art-sheet {
  flex: 0 0 168px;
  overflow: hidden;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.art-sheet-tab {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.38rem 0.5rem;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #334155;
  font-size: 0.64rem;
  line-height: 1;
}

.art-sheet-rows {
  display: grid;
  gap: 5px;
  padding: 0.5rem;
}

.art-sheet-rows i {
  height: 8px;
  border-radius: 3px;
  background:
    linear-gradient(90deg, rgba(52, 168, 83, 0.3) 0 26%, transparent 26% 30%,
      rgba(148, 163, 184, 0.3) 30% 64%, transparent 64% 68%,
      rgba(148, 163, 184, 0.22) 68% 100%);
  opacity: 0.25;
  animation: art-sheet-row-land 7.2s ease-in-out infinite;
}

.art-sheet-rows i:nth-child(1) { animation-delay: 1.9s; }
.art-sheet-rows i:nth-child(2) { animation-delay: 4.3s; }
.art-sheet-rows i:nth-child(3) { animation-delay: 6.7s; }
.art-sheet-rows i:nth-child(4) { animation-delay: 3.1s; }

@keyframes art-sheet-row-land {
  0%, 2% { opacity: 0.25; transform: scaleX(0.85); transform-origin: left; }
  6% { opacity: 1; transform: scaleX(1); }
  60% { opacity: 1; }
  70%, 100% { opacity: 0.25; transform: scaleX(0.85); }
}

/* Onboarding: app tile confirms inside a mini dashboard */
.feature-art-onboard {
  background:
    radial-gradient(280px 150px at 84% 88%, rgba(99, 91, 255, 0.13), transparent 72%),
    linear-gradient(180deg, #f4f3fc, #fbfbfe);
}

.art-dash {
  width: min(100%, 216px);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.07);
}

.art-dash-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.42rem 0.55rem;
  background: linear-gradient(90deg, #635bff, #7c5cff);
}

.art-dash-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.art-dash-body {
  display: grid;
  gap: 7px;
  padding: 0.7rem 0.75rem;
}

.art-dash-line {
  height: 8px;
  border-radius: 3px;
  background: rgba(148, 163, 184, 0.26);
}

.art-dash-line-short {
  width: 58%;
}

.art-dash-app {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 2px;
  padding: 0.42rem 0.55rem;
  border: 1px solid rgba(99, 91, 255, 0.24);
  border-radius: 8px;
  background: rgba(99, 91, 255, 0.06);
  color: #334155;
  font-size: 0.72rem;
  line-height: 1;
}

.art-dash-app img {
  display: block;
}

.art-dash-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  margin-left: auto;
  border-radius: 50%;
  background: #34a853;
  color: #fff;
  font-size: 0.58rem;
  animation: art-check-pop 5.4s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

@keyframes art-check-pop {
  0%, 8% { transform: scale(0); }
  16%, 88% { transform: scale(1); }
  96%, 100% { transform: scale(0); }
}

/* Folder: sheets drop into the export folder */
.feature-art-folder {
  align-items: flex-end;
  padding-bottom: 1.05rem;
  background:
    radial-gradient(280px 150px at 16% 14%, rgba(251, 188, 5, 0.18), transparent 72%),
    linear-gradient(180deg, #f8f6ee, #fdfcf7);
}

.art-folder {
  position: relative;
  width: 128px;
  height: 74px;
  align-self: flex-end;
}

.art-folder-back,
.art-folder-front {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 8px;
}

.art-folder-back {
  height: 62px;
  background: #f6c445;
}

.art-folder-back::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 46px;
  height: 16px;
  border-radius: 6px 8px 0 0;
  background: #f6c445;
}

.art-folder-front {
  height: 52px;
  border-radius: 6px 8px 8px 8px;
  background: linear-gradient(180deg, #fbd25c, #f7c64b);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  z-index: 2;
}

.art-folder-label {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  color: #7c5a12;
  font-size: 0.68rem;
  line-height: 1;
  white-space: nowrap;
}

.art-file {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 30px;
  margin-left: -13px;
  border: 1px solid #dbe3ee;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
  opacity: 0;
  animation: art-file-drop 4.6s ease-in infinite;
}

.art-file-2 {
  animation-delay: 2.3s;
  margin-left: -2px;
}

@keyframes art-file-drop {
  0%, 6% { opacity: 0; transform: translateY(-14px) rotate(-5deg); }
  14% { opacity: 1; }
  38% { opacity: 1; transform: translateY(34px) rotate(3deg); }
  46%, 100% { opacity: 0; transform: translateY(44px) rotate(3deg); }
}

/* Schedule: the week ticks by, an export pops */
.feature-art-schedule {
  display: grid;
  gap: 0.65rem;
  align-content: center;
  justify-items: center;
  justify-content: center;
  background:
    radial-gradient(280px 150px at 82% 88%, rgba(66, 133, 244, 0.13), transparent 72%),
    linear-gradient(180deg, #f1f5fc, #fafcff);
}

.art-week {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 26px);
  gap: 4px;
}

.art-week span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  background: #fff;
  color: #94a3b8;
  font-size: 0.62rem;
  line-height: 1;
}

.art-week-cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  border: 1.5px solid #4285f4;
  border-radius: 7px;
  background: rgba(66, 133, 244, 0.1);
  animation: art-week-step 5.6s steps(7, jump-none) infinite;
}

@keyframes art-week-step {
  from { transform: translateX(0); }
  to { transform: translateX(180px); }
}

.art-week-pop {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.65rem;
  border: 1px solid rgba(52, 168, 83, 0.26);
  border-radius: 999px;
  background: rgba(52, 168, 83, 0.08);
  color: #188038;
  font-size: 0.72rem;
  line-height: 1;
  animation: art-week-pop-in 5.6s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

@keyframes art-week-pop-in {
  0%, 74% { opacity: 0; transform: translateY(5px) scale(0.9); }
  82%, 96% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(0) scale(0.96); }
}

/* Privacy: rows pass straight through, the database is crossed out */
.feature-art-privacy {
  display: grid;
  gap: 0.6rem;
  align-content: center;
  background:
    radial-gradient(280px 150px at 50% 0%, rgba(234, 67, 53, 0.08), transparent 72%),
    linear-gradient(180deg, #f7f5f4, #fdfcfc);
}

.feature-art-privacy .art-pipe-row {
  width: 100%;
}

.feature-art-privacy .art-db {
  justify-self: center;
}

.art-pipe-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.art-pipe-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.07);
}

.art-pipe {
  position: relative;
  flex: 1;
  height: 2px;
  border-radius: 999px;
  background-image: linear-gradient(90deg, rgba(100, 116, 139, 0.38) 0 55%, transparent 55%);
  background-size: 9px 2px;
}

.art-pipe-dot {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: #635bff;
  animation: art-pipe-travel 2.8s ease-in-out infinite;
}

.art-pipe-dot-2 {
  background: #34a853;
  animation-delay: 1.4s;
}

@keyframes art-pipe-travel {
  0% { left: 0; opacity: 0; }
  14% { opacity: 1; }
  86% { opacity: 1; }
  100% { left: calc(100% - 6px); opacity: 0; }
}

.art-db {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  justify-self: start;
  color: #94a3b8;
  font-size: 0.74rem;
  line-height: 1;
}

.art-db svg,
.trust-memory-badge svg {
  color: #188038;
}

/* Free plan: the monthly rows build up (inline, not full-bleed) */
.feature-art-free {
  flex: 1 1 240px;
  display: grid;
  gap: 0.55rem;
  max-width: 330px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border-bottom: 0;
}

.art-free-count {
  color: #475569;
  font-size: 0.86rem;
}

.art-free-count b {
  color: var(--text);
  font-size: 1.25rem;
}

.art-free-rows {
  display: grid;
  gap: 5px;
}

.art-free-rows i {
  height: 8px;
  border-radius: 3px;
  background:
    linear-gradient(90deg, rgba(52, 168, 83, 0.32) 0 22%, transparent 22% 26%,
      rgba(148, 163, 184, 0.3) 26% 100%);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.features-bento.is-revealed .art-free-rows i {
  animation: sheet-row-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.features-bento.is-revealed .art-free-rows i:nth-child(1) { animation-delay: 0.55s; }
.features-bento.is-revealed .art-free-rows i:nth-child(2) { animation-delay: 0.68s; }
.features-bento.is-revealed .art-free-rows i:nth-child(3) { animation-delay: 0.81s; }
.features-bento.is-revealed .art-free-rows i:nth-child(4) { animation-delay: 0.94s; }
.features-bento.is-revealed .art-free-rows i:nth-child(5) { animation-delay: 1.07s; }

/* --- Pricing: free-only state while billing is not live --- */

.pricing-grid-single {
  grid-template-columns: minmax(0, 430px);
  justify-content: center;
}

.pricing-grid-single .price-card-current {
  border-color: #a7f3d0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 22px 60px rgba(5, 150, 105, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.price-tier-label-current {
  background: #ecfdf5;
  color: #047857;
  border-color: #a7f3d0;
}

/* --- Guides: editorial rows --- */

.guide-list {
  width: min(100%, 860px);
  margin: 0 auto;
  border-top: 1px solid rgba(148, 163, 184, 0.28);
}

.guide-row {
  position: relative;
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.35rem 0.85rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
  transition: background 0.22s ease;
}

.guide-row:hover {
  background: rgba(255, 255, 255, 0.72);
}

.guide-tag {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.3;
}

.guide-tag-blue { color: #1a73e8; }
.guide-tag-green { color: #188038; }
.guide-tag-yellow { color: #b06000; }

.guide-row-body h3 {
  margin: 0 0 0.3rem;
  font-size: 1.12rem;
  line-height: 1.3;
}

.guide-row-body h3 a {
  color: var(--text);
  text-decoration: none;
}

.guide-row-body h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.guide-row:hover .guide-row-body h3 a {
  color: var(--blue);
}

.guide-row-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.guide-row-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 50%;
  background: #fff;
  color: #64748b;
  transition:
    transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
    color 0.2s ease,
    border-color 0.2s ease;
}

.guide-row:hover .guide-row-arrow {
  transform: translateX(4px);
  border-color: rgba(0, 97, 255, 0.4);
  color: var(--blue);
}

/* --- FAQ: hairline editorial list on the homepage --- */

.faq-item summary::after {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
}

.faq-list-home {
  gap: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.28);
}

.faq-list-home .faq-item {
  border: 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-list-home .faq-item summary {
  padding: 1.2rem 0.35rem;
  font-size: 1.04rem;
  transition: color 0.18s ease;
}

.faq-list-home .faq-item summary:hover {
  color: var(--blue);
}

.faq-list-home .faq-answer {
  padding: 0 3rem 1.25rem 0.35rem;
}

.faq-list-home .faq-answer p {
  color: #475569;
}

/* --- Export chip cloud: scroll-scrub + cursor proximity --- */

.export-chip-cloud.is-scrubbed .export-chip {
  transition: none;
  animation: none;
  filter: none;
  /* Perf: per-chip backdrop blur re-samples on every scrubbed frame */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74)),
    var(--chip-bg);
  will-change: transform, opacity;
}

.export-chip-cloud.is-scrubbed .export-chip.chip-settled {
  opacity: 1;
  /* Perf: translate-only float; border-radius morphing repaints all chips */
  animation: export-chip-float-lite 6.8s ease-in-out infinite;
  animation-delay: var(--chip-float-delay);
}

@keyframes export-chip-float-lite {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -9px;
  }
}

.export-chip-cloud.is-scrubbed .export-chip.chip-settled .export-chip-icon {
  /* Perf: transform-only pulse, no animated box-shadow */
  animation: export-chip-icon-pulse-lite 3.8s ease-in-out infinite;
  animation-delay: calc(var(--chip-float-delay) * -0.35);
}

@keyframes export-chip-icon-pulse-lite {
  0%, 100% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.08) rotate(-4deg);
  }
}

.export-chip-cloud.is-scrubbed .export-chip {
  box-shadow:
    0 12px 28px rgba(15, 23, 42, calc(0.04 + var(--prox, 0) * 0.07)),
    0 0 calc(var(--prox, 0) * 24px) color-mix(in srgb, var(--chip-color) 28%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

/* --- Responsive --- */

@media (max-width: 960px) {
  .steps-track {
    display: none;
  }
}

@media (max-width: 640px) {
  .export-flow {
    display: none;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem 0.75rem;
  }

  .stat:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

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

  .features-bento .feature-card {
    grid-column: 1 / -1;
  }

  .features-bento .feature-card-folder,
  .features-bento .feature-card-schedule {
    grid-column: span 1;
    padding: 1.2rem 1.05rem;
  }

  .features-bento .feature-card-folder h3,
  .features-bento .feature-card-schedule h3 {
    font-size: 0.95rem;
  }

  .features-bento .feature-card-folder p,
  .features-bento .feature-card-schedule p {
    font-size: 0.84rem;
  }

  .feature-card-folder .feature-art,
  .feature-card-schedule .feature-art {
    min-height: 112px;
    margin: -1.2rem -1.05rem 1rem;
    padding: 0.85rem 0.7rem;
  }

  .art-folder {
    width: 104px;
    height: 64px;
  }

  .art-folder-back {
    height: 54px;
  }

  .art-folder-front {
    height: 44px;
  }

  .art-folder-label {
    bottom: 15px;
    font-size: 0.62rem;
  }

  .art-week {
    grid-template-columns: repeat(7, 16px);
    gap: 3px;
  }

  .art-week span {
    height: 18px;
    border-radius: 5px;
    font-size: 0.5rem;
  }

  .art-week-cursor {
    width: 16px;
    height: 18px;
    border-radius: 5px;
    animation-name: art-week-step-sm;
  }

  @keyframes art-week-step-sm {
    from { transform: translateX(0); }
    to { transform: translateX(114px); }
  }

  .art-week-pop {
    padding: 0.26rem 0.5rem;
    font-size: 0.62rem;
  }

  .features-bento .feature-card-full {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
  }

  .feature-art-free {
    max-width: none;
  }

  .trust-flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 0.42rem;
    max-width: 17rem;
    margin: 0 auto 1.45rem;
  }

  .trust-node {
    min-height: 36px;
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
  }

  .trust-node-stripe,
  .trust-node-memory {
    justify-self: center;
  }

  .trust-link {
    flex: none;
    width: 2px;
    min-width: 0;
    height: 22px;
    background-image: linear-gradient(180deg, rgba(100, 116, 139, 0.42) 0 55%, transparent 55%);
    background-size: 2px 9px;
  }

  .trust-link i {
    top: 0;
    left: 50%;
    margin-top: 0;
    margin-left: -3px;
    animation-name: trust-dot-drop;
  }

  @keyframes trust-dot-drop {
    0% { top: 0; opacity: 0; }
    12% { opacity: 1; }
    88% { opacity: 1; }
    100% { top: calc(100% - 6px); opacity: 0; }
  }

  .guide-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.5rem 1rem;
    padding: 1.15rem 0.35rem;
  }

  .guide-tag {
    grid-column: 1 / -1;
    font-size: 0.76rem;
  }

  .guide-row-arrow {
    width: 34px;
    height: 34px;
  }
}

/* --- Reduced motion: everything lands in its final state --- */

@media (prefers-reduced-motion: reduce) {
  .section-head[data-reveal="scroll"] {
    filter: none;
    transition: none;
  }

  .hero-install-button::before,
  .btn-primary:hover::before,
  .drive-file-card,
  .trust-link i,
  .step-oauth-allow {
    animation: none;
  }

  .export-flow {
    display: none;
  }

  .step-access-pill,
  .step-oauth-dialog {
    opacity: 1;
    transform: none;
  }

  .steps-grid.is-revealed .step-access-pill,
  .steps-grid.is-revealed .step-access-mail,
  .steps-grid.is-revealed .step-oauth-dialog,
  .steps-grid.is-revealed .step-sheet-row {
    animation: none;
  }

  .step-access-mail {
    opacity: 1;
  }

  .step-sheet-row {
    opacity: 1;
    transform: none;
  }

  .steps-track-fill {
    transform: scaleX(1) !important;
  }

  .art-chip,
  .art-sheet-rows i,
  .art-dash-check,
  .art-file,
  .art-week-cursor,
  .art-week-pop,
  .art-pipe-dot,
  .features-bento.is-revealed .art-free-rows i {
    animation: none;
  }

  .art-chip,
  .art-sheet-rows i,
  .art-week-pop,
  .art-free-rows i {
    opacity: 1;
    transform: none;
  }

  .art-dash-check {
    transform: scale(1);
  }

  .step-card:hover,
  .feature-card:hover {
    transform: none;
  }
}
