/* =====================================================================
   FLOW marketing site · Social Flow by Mind OS
   Order: fonts → tokens → base → layout → components → pages →
   responsive → motion → print.
   Type scale: body 16px · secondary 14–15px · microcopy 12–13px (min 12px).
   Only decorative mockups (role="img" / aria-hidden) may go below 12px.
   ===================================================================== */

/* ---------- Fonts: self-hosted variable fonts, SIL OFL 1.1 (see assets/fonts/OFL-*.txt) ---------- */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/sora-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Tokens ---------- */
:root {
  --blue: #0064ff;
  --blue-strong: #0052d6;
  --cyan: #00d9e9;
  --navy: #0b1f4d;
  --bg: #fbfcff;
  --surface: #fff;
  --soft: #f0f5fc;
  --tint: #eaf2ff;
  --text: #0b1f4d;
  --muted: #52627d;
  --line: #dce5f0;
  /* Blue used as text: AA on white, --soft and --tint. */
  --link: #0052d6;
  --focus: #0052d6;
  --ok-bg: #e2f5ec;
  --ok-text: #086947;
  --warn-bg: #fff0d1;
  --warn-text: #6b4a07;
  --warn-line: #efcd85;
  --shadow: 0 16px 55px rgba(20, 64, 122, 0.08);
  --font: "Manrope", Arial, sans-serif;
  --head: "Sora", "Manrope", Arial, sans-serif;
  --radius: 24px;
  --max: 1248px;
  color-scheme: light;
}
[data-theme="dark"] {
  --bg: #061326;
  --surface: #0e2038;
  --soft: #122940;
  --tint: #143352;
  --text: #edf5ff;
  --muted: #b3c4d8;
  --line: #294159;
  --link: #8ab8ff;
  --focus: #8ab8ff;
  --ok-bg: #0f3a2c;
  --ok-text: #86e3bd;
  --warn-bg: #3a2c0c;
  --warn-text: #ffd98f;
  --warn-line: #6d5418;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.2);
  color-scheme: dark;
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
button,
input,
textarea,
select {
  font: inherit;
  max-width: 100%;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
dd,
figure {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--head);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: -0.06em;
}
h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  letter-spacing: -0.045em;
}
h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
}
h4 {
  font-size: 18px;
}
p,
li {
  text-wrap: pretty;
}
[hidden] {
  display: none !important;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  background: var(--blue-strong);
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 800;
}
.skip-link:not(:focus) {
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  flex: none;
  vertical-align: middle;
}

/* ---------- Layout ---------- */
.container {
  width: min(var(--max), calc(100% - 72px));
  margin-inline: auto;
}
.section {
  padding: 104px 0;
}
.section-sm {
  padding: 64px 0;
}
.section.alt {
  background: var(--soft);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.center {
  text-align: center;
}
.center h1,
.center h2,
.center .lead {
  margin-inline: auto;
}
.center .eyebrow,
.center .actions {
  justify-content: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--link);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.eyebrow .line {
  width: 28px;
  height: 2px;
  flex: none;
  background: currentColor;
}
.lead {
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 600px;
  margin-top: 22px;
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 14px;
  line-height: 1.55;
}
.section-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 36px;
  margin-bottom: 44px;
}
.section-intro h2 {
  max-width: 700px;
}
.section-intro > p {
  max-width: 400px;
  color: var(--muted);
  font-size: 17px;
}
.gradient-text {
  background: linear-gradient(95deg, #0064ff, #0077c8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
[data-theme="dark"] .gradient-text {
  background-image: linear-gradient(95deg, #7fb0ff, #54e6ec);
}
.text-link,
:where(.prose, .article, .note, .legal-banner, .form-note, .status-legend) a:not(.btn, .card-link) {
  color: var(--link);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* ---------- Buttons ---------- */
.btn {
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 13px;
  line-height: 1.3;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s, border-color 0.18s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn[aria-disabled="true"],
.btn:disabled {
  opacity: 0.6;
  transform: none;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 22px #0064ff25;
}
.btn-primary:hover {
  background: var(--blue-strong);
}
.btn-secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}
.btn-secondary:hover {
  border-color: #8eb8f5;
}
.btn-light {
  background: #fff;
  color: #0b1f4d;
}
.btn-ghost {
  color: var(--text);
  background: transparent;
  border-color: var(--line);
}
.btn-sm {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 14px;
}
.btn-block {
  width: 100%;
}
.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  margin-top: 12px;
  font-size: 15px;
  color: var(--link);
  font-weight: 800;
}
.card-link .icon {
  width: 16px;
  height: 16px;
  transition: transform 0.18s;
}
.card-link:hover .icon {
  transform: translateX(3px);
}

/* ---------- Badges, statuses, notes ---------- */
.badge {
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  border-radius: 7px;
  padding: 5px 8px;
  background: var(--tint);
  color: var(--link);
  letter-spacing: 0.02em;
}
.badge.green {
  background: var(--ok-bg);
  color: var(--ok-text);
}
.badge.amber {
  background: var(--warn-bg);
  color: var(--warn-text);
}
.badge.gray {
  color: var(--muted);
  background: var(--soft);
}
/* Module status: one of three states, always with text (never colour alone). */
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 11px 5px 9px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  white-space: normal;
}
.status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: none;
  background: currentColor;
}
.status-demo {
  background: var(--ok-bg);
  color: var(--ok-text);
}
.status-dev {
  background: var(--tint);
  color: var(--link);
}
.status-soon {
  background: var(--surface);
  color: var(--muted);
  border-color: var(--line);
  border-style: dashed;
}
.status-soon::before {
  background: transparent;
  box-shadow: inset 0 0 0 2px currentColor;
}
/* Inside flex columns a status keeps its own width instead of stretching. */
.card .status,
.status-col .status,
.module-card .status,
.roadmap .status,
.try-list .status,
.demo-card .status {
  align-self: flex-start;
}
.status-legend {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 20px;
  padding: 22px 24px;
}
.status-legend-title {
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 14px;
}
.status-legend dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 26px;
}
.status-legend dt {
  margin-bottom: 8px;
}
.status-legend dd {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}
.note {
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  background: var(--surface);
  border-radius: 0 14px 14px 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}
.platform {
  font-size: 11px;
  font-weight: 800;
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 4px;
  border-radius: 6px;
  line-height: 1;
  color: #fff;
  background: #1768db;
}
.platform.ig {
  background: linear-gradient(135deg, #5b4bd6, #c62379, #ef9735);
}
.platform.tt {
  background: #102031;
}
.platform.fb {
  background: #0064ff;
}
.platform.li {
  background: #0a5eb0;
}
.platform.yt {
  background: #c4181f;
}
.platform-name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 15px;
}
.platform-name .platform {
  width: 34px;
  height: 34px;
  font-size: 13px;
  border-radius: 10px;
}

/* ---------- Announcement bar + header ---------- */
.announce {
  background: var(--tint);
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
}
.announce-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 12px;
  padding: 0;
  text-align: center;
}
.announce-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--cyan) 25%, transparent);
}
.announce a {
  color: var(--link);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.announce-inner > span:not(.announce-dot) {
  padding: 10px 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  flex: none;
  min-height: 44px;
}
.logo-wrap img {
  width: 128px;
}
.logo-white {
  display: none !important;
}
[data-theme="dark"] .logo-default {
  display: none !important;
}
[data-theme="dark"] .logo-white {
  display: block !important;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a:not(.btn) {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
}
.nav-links a:not(.btn):hover,
.nav-links a[aria-current="page"] {
  color: var(--link);
}
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.nav-cta {
  display: none;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.language {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 1px solid var(--line);
  border-radius: 10px;
  min-width: 44px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  color: var(--text);
}
.language:hover,
.icon-btn:hover {
  border-color: #8eb8f5;
}
.icon-btn {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
}
.theme-toggle .icon-sun,
[data-theme="dark"] .theme-toggle .icon-moon,
.menu-toggle .icon-close,
.menu-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}
[data-theme="dark"] .theme-toggle .icon-sun,
.menu-toggle[aria-expanded="true"] .icon-close {
  display: inline-block;
}
.menu-toggle {
  display: none;
}
/* The theme switch needs JavaScript; without it the system theme is not applied either. */
html:not(.js) .theme-toggle {
  display: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 72px 0 40px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 850px;
  height: 680px;
  background: radial-gradient(ellipse, #bfeaff8a 0%, #e4f4ff3b 55%, transparent 72%);
  top: -140px;
  right: -210px;
}
[data-theme="dark"] .hero::before {
  background: radial-gradient(ellipse, #0064ff33 0%, #00d9e912 55%, transparent 72%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.12fr;
  gap: 40px;
  align-items: center;
}
.hero-copy .eyebrow {
  margin-bottom: 22px;
}
.hero-copy .lead {
  font-size: 19px;
  max-width: 480px;
}
.hero-copy .actions {
  margin-top: 30px;
}
.hero-subnote {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
  margin-top: 18px;
}
.hero-subnote .status {
  font-size: 12px;
  padding: 3px 9px 3px 7px;
}
.hero-networks {
  margin-top: 28px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}
.hero-networks .platform-name {
  font-size: 14px;
  color: var(--text);
  gap: 8px;
}
.hero-networks .platform-name .platform {
  width: 28px;
  height: 28px;
  font-size: 11px;
  border-radius: 8px;
}
.hero-visual {
  position: relative;
  padding: 88px 0 12px;
  min-width: 0;
}
.hero-posts {
  position: absolute;
  top: -20px;
  left: 85px;
  right: 15px;
  height: 230px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  pointer-events: none;
}
.hero-posts img {
  height: 217px;
  width: 164px;
  object-fit: cover;
  border-radius: 18px;
  border: 5px solid var(--surface);
  box-shadow: var(--shadow);
  transform: rotate(-11deg);
}
.hero-posts img:nth-child(2) {
  transform: translateY(-19px) rotate(6deg);
}
.hero-posts img:nth-child(3) {
  transform: translateY(6px) rotate(16deg);
}
.hero-visual .app-mock {
  position: relative;
  margin-top: 86px;
  transform: rotate(-2deg);
  box-shadow: 0 28px 75px #0752a822;
  z-index: 2;
}
.mock-caption {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
}
.mock-caption .icon {
  width: 16px;
  height: 16px;
  color: var(--link);
}
.floating-note {
  position: absolute;
  bottom: 44px;
  right: 18px;
  z-index: 4;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-size: 13px;
  transform: rotate(2deg);
}
.floating-note .icon {
  color: #078454;
}
.floating-note strong {
  display: block;
  font-size: 13px;
}
.floating-note small {
  color: var(--muted);
  font-size: 12px;
}
.trust-line {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 15px;
}
.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  list-style: none;
  padding: 0;
}
.trust-points li {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--text);
  font-weight: 700;
}
.trust-points .icon {
  width: 18px;
  height: 18px;
  color: var(--link);
}

/* ---------- Decorative product mock (role="img": inner text is not content) ---------- */
.app-mock {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 10px;
  min-width: 0;
}
.mock-bar {
  padding: 10px 14px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.window-dots {
  display: flex;
  gap: 4px;
}
.window-dots i {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #bacbdc;
}
.mock-url {
  font-size: 8px;
  color: var(--muted);
}
.mock-body {
  display: grid;
  grid-template-columns: 112px 1fr;
  min-height: 335px;
}
.mock-sidebar {
  border-right: 1px solid var(--line);
  padding: 20px 10px;
  background: var(--surface);
}
.mock-sidebar .mock-logo {
  width: 77px;
  margin: 0 0 25px 5px;
}
.mock-nav-item {
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 9px;
  padding: 8px;
  border-radius: 7px;
  color: var(--muted);
  margin-bottom: 4px;
}
.mock-nav-item .icon {
  width: 12px;
  height: 12px;
}
.mock-nav-item.active {
  background: var(--tint);
  color: var(--link);
  font-weight: 800;
}
.mock-content {
  padding: 17px;
  min-width: 0;
}
.mock-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 17px;
}
.mock-toolbar .mock-title {
  font-family: var(--head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.04em;
}
.mock-toolbar small {
  display: block;
  color: var(--muted);
  font-size: 8px;
  margin-top: 4px;
}
.mock-toolbar .mini-btn {
  background: var(--blue);
  color: #fff;
  font-size: 8px;
  padding: 6px 9px;
  border-radius: 7px;
}
.mock-accounts {
  display: flex;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 13px;
  margin-bottom: 13px;
}
.mock-accounts .badge {
  margin-left: auto;
  font-size: 7px;
  padding: 4px 6px;
}
.mock-accounts .platform {
  height: 19px;
  min-width: 19px;
  font-size: 8px;
}
.calendar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
}
.calendar-day {
  border-left: 1px solid var(--line);
  padding: 0 4px;
  min-height: 225px;
}
.calendar-day:first-child {
  border-left: 0;
}
.day-label {
  text-align: center;
  font-size: 8px;
  color: var(--muted);
  padding: 0 0 8px;
}
.day-label b {
  display: block;
  font-size: 12px;
  color: var(--text);
  margin-top: 3px;
}
.post-tile {
  background: var(--soft);
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 8px;
}
.post-tile img {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  border-radius: 5px;
}
.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  font-size: 6px;
  margin-top: 4px;
  color: var(--muted);
}
.post-meta .platform {
  height: 13px;
  min-width: 13px;
  font-size: 6px;
  padding: 1px 2px;
  border-radius: 4px;
}
.post-state {
  height: 3px;
  border-radius: 5px;
  background: #80bbd8;
  margin-top: 5px;
}
.post-state.review {
  background: #e5bd56;
}
.mini-brand {
  font-size: 8px;
  padding: 6px;
  border-radius: 5px;
  background: var(--soft);
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.mini-brand b {
  background: #e9ddc9;
  color: #4e6550;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: grid;
  place-items: center;
}

/* ---------- Cards and bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  min-width: 0;
}
.card h3 {
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 10px;
}
.card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.card .status {
  margin-bottom: 14px;
}
.icon-box {
  height: 48px;
  width: 48px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--tint), color-mix(in srgb, var(--cyan) 12%, var(--tint)));
  color: var(--link);
  border-radius: 14px;
  margin-bottom: 20px;
  border: 1px solid color-mix(in srgb, var(--blue) 12%, var(--line));
  box-shadow: inset 0 1px 0 #ffffff88;
}
[data-theme="dark"] .icon-box {
  box-shadow: inset 0 1px 0 #ffffff10;
  background: linear-gradient(145deg, var(--tint), #0a2a4a);
}
.icon-box .icon {
  width: 24px;
  height: 24px;
}
.bento .card {
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.bento .card:hover {
  transform: translateY(-4px);
  border-color: #8eb8f5;
  box-shadow: 0 18px 40px #0064ff12;
}
.bento .card .card-link {
  margin-top: auto;
  padding-top: 8px;
}
.card-visual {
  margin: 22px -8px 14px;
  border-radius: 13px;
  background: var(--soft);
  padding: 16px;
  min-height: 128px;
  overflow: hidden;
}
.media-strip {
  display: flex;
  gap: 7px;
  align-items: center;
}
.media-strip img {
  width: 31.5%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 7px;
}
.chip-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  font-size: 13px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
}
.mini-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 13px;
}
.mini-row img {
  width: 35px;
  height: 43px;
  object-fit: cover;
  border-radius: 6px;
}
.mini-row .row-name {
  flex: 1;
  font-weight: 700;
}
.mini-row small {
  font-size: 12px;
  color: var(--muted);
  display: block;
  font-weight: 500;
}
.mini-row .badge {
  font-size: 12px;
}
.chart {
  height: 150px;
  display: flex;
  gap: 10px;
  align-items: flex-end;
  padding: 16px 10px 0;
  border-bottom: 1px solid var(--line);
}
.chart i {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(0deg, #0064ff, #67d7ea);
}

/* ---------- Steps ---------- */
.steps {
  margin-top: 28px;
  display: grid;
  gap: 20px;
  list-style: none;
  padding: 0;
}
.step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
}
.step-number {
  height: 32px;
  width: 32px;
  border-radius: 10px;
  background: var(--tint);
  display: grid;
  place-items: center;
  color: var(--link);
  font-size: 13px;
  font-weight: 800;
}
.step-number .icon {
  width: 18px;
  height: 18px;
}
.step h3 {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-top: 4px;
}
.step p {
  font-size: 15px;
  margin-top: 4px;
  color: var(--muted);
}

/* ---------- Brand context visual ---------- */
.brand-visual {
  background: linear-gradient(150deg, #e7f5ff, #cce9fa);
  border-radius: 30px;
  padding: 40px 40px 104px;
  position: relative;
  min-height: 465px;
}
[data-theme="dark"] .brand-visual {
  background: linear-gradient(150deg, #10304f, #0c2440);
}
.brand-sheet {
  position: relative;
  background: #fff;
  color: #0b1f4d;
  border-radius: 20px;
  padding: 27px;
  box-shadow: 0 15px 36px #23334814;
  max-width: 355px;
  margin: auto;
  transform: rotate(-3deg);
}
.brand-sheet .sheet-sub {
  color: #52627d;
  font-size: 13px;
}
.brand-sheet .sheet-name {
  font-family: Georgia, serif;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}
.brand-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.brand-top .badge {
  background: #f0f5fc;
  color: #52627d;
}
.brand-palette {
  display: flex;
  margin: 20px 0 24px;
}
.brand-palette i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-right: -5px;
}
.brand-line {
  border-top: 1px solid #e2e7e9;
  padding-top: 12px;
  margin-top: 12px;
}
.brand-line b {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand-line span {
  display: block;
  font-size: 14px;
  margin-top: 6px;
  color: #52627d;
}
.brand-sticker {
  position: absolute;
  bottom: 28px;
  right: 13px;
  background: #0b1f4d;
  color: #fff;
  padding: 16px 22px;
  transform: rotate(4deg);
  border-radius: 15px;
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 700;
}
.brand-sticker .icon {
  color: #00d9e9;
  margin-right: 8px;
}
.brand-sticker small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #c3d0e0;
  margin: 4px 0 0 31px;
}

/* ---------- Feature tabs ---------- */
.feature-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.feature-tabs button {
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 10px 18px;
  background: var(--surface);
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  min-height: 46px;
  transition: background 0.15s, color 0.15s, transform 0.12s, box-shadow 0.15s;
}
.feature-tabs button:hover {
  color: var(--link);
  border-color: #8eb8f5;
}
.feature-tabs button[aria-pressed="true"] {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 6px 16px #0064ff28;
}
.feature-preview {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  min-height: 320px;
  align-items: center;
}
.feature-preview h3 {
  font-size: 28px;
  margin: 14px 0 12px;
}
.feature-preview p {
  font-size: 16px;
  color: var(--muted);
}
.preview-why {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.preview-why strong {
  color: var(--text);
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.preview-panel {
  background: var(--soft);
  padding: 24px;
  border-radius: 16px;
  min-height: 240px;
}
.preview-panel .note-inline {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Product status board (home) ---------- */
.status-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.status-col {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.status-col h3 {
  font-size: 22px;
  margin: 14px 0 6px;
}
.status-col > p {
  font-size: 15px;
  color: var(--muted);
}
.status-col ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 8px;
  display: grid;
  gap: 10px;
}
.status-col li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.status-col li .icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--link);
}
.status-col .card-link {
  margin-top: auto;
}
.network-line {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  font-size: 15px;
  color: var(--muted);
}

/* ---------- Dark studio section ---------- */
.dark-section {
  background: #071a31;
  color: #f5f8ff;
  position: relative;
  overflow: hidden;
}
.dark-section .eyebrow {
  color: #7ad8f8;
}
.dark-section .lead,
.dark-section .muted {
  color: #b9c9de;
}
.dark-section::after {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  right: -200px;
  top: -180px;
  background: radial-gradient(circle, #0064ff29, transparent 65%);
  pointer-events: none;
}
.dark-section :focus-visible,
.cta-band :focus-visible {
  outline-color: #fff;
}
.dark-section .status-soon {
  background: transparent;
  color: #c9d7e8;
  border-color: #3d5877;
}
.studio-section {
  padding: 80px;
  border-radius: 34px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.studio-art {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  transform: rotate(5deg);
}
.studio-art img {
  border-radius: 19px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid #93a7b42b;
}
.studio-art img:nth-child(2) {
  transform: translateY(35px);
}
.studio-mini-prompt {
  position: absolute;
  left: -22px;
  right: 9px;
  bottom: 5px;
  border: 1px solid #486383;
  background: #11283eeb;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: #fff;
  border-radius: 14px;
  padding: 18px;
  font-size: 13px;
  transform: rotate(-5deg);
  box-shadow: 0 12px 30px #0003;
}
.studio-mini-prompt span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5ee4e8;
  margin-top: 9px;
  font-size: 12px;
}
.studio-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
  list-style: none;
  padding: 0;
}
.studio-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  color: #d5e2f1;
}
.studio-list .icon {
  color: #4ee0e9;
  width: 20px;
}

/* ---------- Audiences ---------- */
.audiences {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.audience {
  border: 1px solid var(--line);
  border-radius: 21px;
  overflow: hidden;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.audience:hover {
  border-color: #8eb8f5;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px #0064ff10;
}
.audience-cover {
  height: 112px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--tint);
}
.audience-cover.warm {
  background: #fae5ca;
}
.audience-cover.cool {
  background: #d9f6f8;
}
[data-theme="dark"] .audience-cover.warm {
  background: #3a2c1a;
}
[data-theme="dark"] .audience-cover.cool {
  background: #0f3440;
}
.audience-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--surface);
  color: var(--link);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px #0064ff18;
  border: 1px solid var(--line);
}
.audience-icon .icon {
  width: 30px;
  height: 30px;
}
.audience-copy {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.audience-copy h3 {
  font-size: 21px;
  margin-bottom: 14px;
}
.audience-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 10px;
}
.audience-bullets li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}
.audience-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}
.audience-copy .card-link {
  margin-top: auto;
}

/* ---------- Pricing ---------- */
.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--warn-line);
  background: var(--warn-bg);
  color: var(--warn-text);
  font-size: 14px;
  font-weight: 800;
  margin-top: 24px;
}
.price-pill .icon {
  width: 17px;
  height: 17px;
}
.price-toolbar {
  display: flex;
  justify-content: center;
  gap: 4px;
  background: var(--soft);
  border: 1px solid var(--line);
  width: fit-content;
  max-width: 100%;
  padding: 5px;
  border-radius: 14px;
  margin: 32px auto 0;
}
.price-toolbar button {
  background: transparent;
  border: 0;
  color: var(--muted);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.price-toolbar button[aria-pressed="true"] {
  background: var(--surface);
  color: var(--link);
  box-shadow: 0 3px 12px #10205012;
}
.annual-tag {
  font-size: 12px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--ok-bg);
  color: var(--ok-text);
}
.pricing {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
  align-items: stretch;
}
.price-card {
  position: relative;
  border: 1px solid var(--line);
  padding: 30px 24px;
  border-radius: 22px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.price-card.featured {
  border: 2px solid var(--blue);
  box-shadow: 0 12px 36px #0064ff12;
}
.recommended {
  position: absolute;
  top: -14px;
  right: 16px;
  font-size: 12px;
  padding: 5px 12px;
  background: var(--blue-strong);
  color: #fff;
  border-radius: 99px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.recommended-alt {
  background: var(--tint);
  color: var(--link);
  border: 1px solid var(--link);
}
.plan-seat-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.price-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.plan-desc {
  font-size: 15px;
  color: var(--muted);
  min-height: 48px;
}
.price-amount {
  font-family: var(--head);
  font-size: 44px;
  letter-spacing: -0.06em;
  font-weight: 600;
  margin: 20px 0 4px;
  line-height: 1.15;
}
.price-amount sup {
  font-size: 20px;
  vertical-align: super;
  margin-right: 2px;
  letter-spacing: -0.03em;
}
.price-amount small {
  font-family: var(--font);
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--muted);
  margin-left: 6px;
}
.price-amount.custom {
  font-size: 28px;
  letter-spacing: -0.04em;
  min-height: 51px;
  display: flex;
  align-items: center;
}
.billing-note {
  font-size: 14px;
  min-height: 44px;
  color: var(--muted);
  line-height: 1.5;
}
.billing-note strong {
  color: var(--ok-text);
}
.price-card .btn {
  width: 100%;
  margin: 16px 0 22px;
}
.plan-list {
  list-style: none;
  padding: 20px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
}
.plan-list li {
  font-size: 15px;
  display: flex;
  gap: 9px;
  color: var(--text);
  line-height: 1.45;
}
.plan-list li.muted {
  color: var(--muted);
}
.plan-list .icon {
  width: 17px;
  height: 17px;
  color: var(--link);
  margin-top: 2px;
}
.plan-list .status {
  margin-top: 6px;
  font-size: 12px;
}
.price-footnote {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  margin: 28px auto 0;
  max-width: 820px;
}
.plan-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.plan-mini {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  padding: 24px;
}
.plan-mini.featured {
  border: 2px solid var(--blue);
}
.plan-mini h3 {
  font-size: 20px;
}
.plan-mini .price-amount {
  font-size: 36px;
  margin: 10px 0 6px;
  color: var(--text);
}
.plan-mini .price-amount.custom {
  font-size: 28px;
  min-height: 0;
  margin: 14px 0 10px;
}
.plan-mini p {
  font-size: 15px;
  color: var(--muted);
}
.module-status-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin-top: 28px;
}
.module-status-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 700;
}
.module-status-list li .status {
  max-width: 100%;
}
.table-wrap {
  /* Positioned so visually hidden cell text stays clipped inside the scroll box. */
  position: relative;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 15px;
}
caption {
  text-align: left;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--muted);
}
th,
td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
thead th {
  background: var(--soft);
  font-weight: 800;
}
tbody th {
  font-weight: 800;
}
td {
  color: var(--muted);
}
tr:last-child td,
tr:last-child th {
  border-bottom: 0;
}
table th:first-child {
  min-width: 200px;
}
.yes {
  color: var(--ok-text);
  font-weight: 800;
}
.row-highlight th,
.row-highlight td {
  background: var(--tint);
}
.row-highlight th {
  color: var(--link);
}

/* ---------- Integrations ---------- */
.network-table td .status {
  font-size: 12px;
}
.network-table td small {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}
.network-table .platform-name {
  white-space: nowrap;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 860px;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 16px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-size: 24px;
  color: var(--link);
  font-weight: 400;
  flex: none;
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  font-size: 16px;
  color: var(--muted);
  padding-bottom: 22px;
  max-width: 760px;
}

/* ---------- CTA band ---------- */
.cta-band {
  /* White text stays ≥ 4.5:1 across the whole gradient; cyan only as a corner glow. */
  background: radial-gradient(circle at 100% 0%, rgba(0, 217, 233, 0.32), transparent 32%), linear-gradient(120deg, #0052d6 0%, #0064ff 55%, #0569b8 100%);
  padding: 64px 72px;
  border-radius: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  font-size: 40px;
  max-width: 640px;
}
.cta-band p {
  color: #f2f8ff;
  font-size: 17px;
  max-width: 540px;
  margin-top: 16px;
}
.cta-band .actions {
  margin-top: 0;
  flex: none;
  flex-direction: column;
  align-items: stretch;
}
.cta-band .btn-ghost {
  color: #fff;
  border-color: #ffffff80;
}
.cta-band .btn-ghost:hover {
  border-color: #fff;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 56px 0 28px;
  border-top: 1px solid var(--line);
  margin-top: 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 0.9fr 0.9fr 1.5fr;
  gap: 40px 32px;
}
.footer-brand .logo-wrap img {
  width: 120px;
}
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 800;
  color: var(--link);
}
.footer-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--cyan) 25%, transparent);
}
.footer-news-text {
  font-size: 15px;
  color: var(--muted);
}
.footer-news-form {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.footer-news-form input {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 15px;
}
.footer-news-form input::placeholder {
  color: var(--muted);
}
.footer-news-form input:focus-visible {
  outline-offset: 1px;
}
.footer-news-form .btn {
  flex: none;
}
.footer-news-note {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.footer-base-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
}
.footer-base-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.footer-brand p {
  font-size: 15px;
  color: var(--muted);
  max-width: 300px;
  margin-top: 16px;
}
.footer-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.footer-links {
  list-style: none;
  padding: 0;
  display: grid;
  font-size: 15px;
  color: var(--muted);
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.footer-links a:hover {
  color: var(--link);
}
.footer-base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 30px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 40px;
  font-size: 14px;
  color: var(--muted);
}
.footer-base a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.social-note {
  font-size: 13px;
  color: var(--muted);
  max-width: 860px;
  margin-top: 14px;
}

/* ---------- Sub-pages ---------- */
.subhero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: 64px 0 48px;
  background:
    radial-gradient(60% 70% at 85% 0%, rgba(0, 217, 233, 0.1), transparent 70%),
    radial-gradient(50% 60% at 15% 100%, rgba(0, 100, 255, 0.08), transparent 70%);
}
.subhero > .container {
  position: relative;
  z-index: 1;
}
.subhero .m-dots {
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 0%, #000 10%, transparent 70%);
  mask-image: radial-gradient(ellipse 70% 80% at 50% 0%, #000 10%, transparent 70%);
}
.subhero h1 {
  max-width: 900px;
}
.subhero .lead {
  max-width: 720px;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}
.breadcrumbs li + li::before {
  content: "/";
  margin-right: 6px;
  color: var(--muted);
}
.breadcrumbs a {
  color: var(--link);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.feature-deep {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.module-card {
  display: flex;
  flex-direction: column;
}
.feature-title {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}
.feature-title .icon-box {
  margin: 0;
  width: 44px;
  height: 44px;
}
.feature-title h3 {
  margin: 0;
}
.module-card .status {
  align-self: flex-start;
  margin: 2px 0 12px;
}
.detail-list {
  margin: 14px 0 0;
  padding-left: 20px;
  font-size: 15px;
  color: var(--muted);
}
.detail-list li {
  margin: 7px 0;
}
.module-card .card-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
  border-top: 1px dashed var(--line);
  padding-top: 12px;
}
.try-strip {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 28px;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--ok-text) 30%, var(--line));
  background: color-mix(in srgb, var(--ok-bg) 45%, var(--surface));
  border-radius: 22px;
  padding: 26px 28px;
}
.try-strip h2 {
  font-size: 26px;
}
.try-strip p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 8px;
}
.try-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.try-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}
.try-list li .status {
  margin-top: 8px;
  font-size: 12px;
}
.roadmap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.roadmap .card {
  padding: 26px;
}
.phase {
  display: block;
  font: 800 13px var(--font);
  color: var(--link);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.roadmap h3 {
  font-size: 19px;
  line-height: 1.3;
}
.roadmap p {
  font-size: 15px;
  margin-top: 8px;
}
.roadmap .status {
  margin-top: 18px;
}

/* ---------- Forms ---------- */
.form-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  min-width: 0;
}
.form-card form {
  display: grid;
  gap: 20px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: grid;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
}
.field .optional {
  font-weight: 500;
  color: var(--muted);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid #b9c7d8;
  padding: 12px 14px;
  min-height: 48px;
  border-radius: 11px;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
}
[data-theme="dark"] .field input,
[data-theme="dark"] .field textarea,
[data-theme="dark"] .field select {
  border-color: #3b5673;
}
.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline-offset: 1px;
}
.field textarea {
  resize: vertical;
  min-height: 116px;
}
.field input:user-invalid,
.field textarea:user-invalid {
  border-color: #c2412d;
}
.hp-field {
  position: absolute !important;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-note {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.form-mode {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.form-mode .icon {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: var(--link);
}
.form-mode strong {
  color: var(--text);
}
.form-status {
  font-size: 15px;
  font-weight: 700;
  min-height: 1px;
}
.form-status:empty {
  display: none;
}
.form-status.is-error {
  padding: 14px 16px;
  border-radius: 12px;
  background: #fde8e4;
  color: #8d2413;
  border: 1px solid #f3b4a8;
}
[data-theme="dark"] .form-status.is-error {
  background: #3d1712;
  color: #ffb4a6;
  border-color: #7a2d20;
}
.form-status.is-sending {
  color: var(--muted);
}
.spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-right-color: transparent;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.form-result h2,
.form-result h3 {
  font-size: 26px;
}
.form-result > p {
  font-size: 16px;
  color: var(--muted);
  margin: 10px 0 16px;
}
.form-result .actions {
  margin-top: 18px;
}
.result-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--ok-bg);
  color: var(--ok-text);
  margin-bottom: 16px;
}
.result-icon .icon {
  width: 26px;
  height: 26px;
}
.result-box {
  padding: 18px;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: 13px;
  font-size: 15px;
  white-space: pre-line;
  color: var(--text);
  overflow-wrap: anywhere;
}
.check-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}
.check-field input {
  width: 24px;
  height: 24px;
  flex: none;
  margin: 0;
  accent-color: var(--blue);
}
.no-js {
  padding: 14px 18px;
  background: var(--warn-bg);
  color: var(--warn-text);
  border: 1px solid var(--warn-line);
  border-radius: 12px;
  font-size: 15px;
}
.no-js a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
}
.js .no-js-only {
  display: none;
}

/* ---------- Demo ---------- */
.demo-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.demo-brand-select {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
}
.demo-brand-select select {
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 11px;
  border: 1px solid #b9c7d8;
  background: var(--surface);
  color: var(--text);
  font-size: 16px;
}
[data-theme="dark"] .demo-brand-select select {
  border-color: #3b5673;
}
.demo-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  align-items: center;
  list-style: none;
  padding: 0;
}
.demo-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}
.demo-step .step-n {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--link);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}
.demo-step.is-active {
  border-color: var(--link);
  color: var(--link);
  background: var(--tint);
}
.demo-step.is-done {
  border-color: color-mix(in srgb, var(--ok-text) 40%, var(--line));
  color: var(--ok-text);
}
.demo-step.is-done .step-n {
  background: var(--ok-bg);
  color: var(--ok-text);
}
.demo-progress-hint {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 20px;
}
.demo-workspace {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}
.demo-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px 12px;
}
.demo-head h2 {
  font-size: 26px;
}
.demo-head p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}
.demo-calendar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.demo-card {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.demo-card img {
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 9px;
  width: 100%;
}
.demo-card .demo-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.demo-card small {
  font-size: 13px;
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
}
.demo-card p {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin: 6px 0 10px;
}
.demo-card .badge {
  align-self: flex-start;
  margin-bottom: 12px;
}
.demo-card .btn {
  margin-top: auto;
  width: 100%;
}
.demo-head .badge {
  white-space: nowrap;
}
.h2-sm {
  font-size: clamp(26px, 2.6vw, 32px);
}
.demo-caption textarea {
  min-height: 132px;
}
.demo-next {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 30px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.demo-next.is-highlighted {
  border-color: var(--blue);
  box-shadow: 0 16px 40px #0064ff1f;
}
.demo-next h2 {
  font-size: 28px;
}
.demo-next p {
  font-size: 16px;
  color: var(--muted);
  margin-top: 8px;
}
.demo-next .actions {
  margin-top: 0;
}
.divider {
  height: 1px;
  background: var(--line);
  margin: 26px 0;
}

/* ---------- Resources and long-form ---------- */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.resource-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface);
  display: flex;
  flex-direction: column;
}
.resource-cover {
  height: 140px;
  background: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--link);
}
.resource-cover .icon {
  width: 54px;
  height: 54px;
}
.resource-content {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.resource-content h2 {
  font-size: 21px;
  margin: 10px 0;
  letter-spacing: -0.03em;
}
.resource-content p {
  font-size: 15px;
  color: var(--muted);
}
.resource-content .card-link {
  margin-top: auto;
  padding-top: 10px;
}
.article {
  max-width: 820px;
  margin: 0 auto;
}
.article h2 {
  font-size: 28px;
  margin: 44px 0 14px;
  scroll-margin-top: 110px;
}
.article h2:first-child {
  margin-top: 0;
}
.article h3 {
  font-size: 20px;
  margin: 28px 0 10px;
}
.article p,
.article li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}
.article p {
  margin: 12px 0;
}
.article ul,
.article ol {
  padding-left: 22px;
  margin: 12px 0;
}
.article li {
  margin: 6px 0;
}
.article strong {
  color: var(--text);
}
.article .note {
  margin: 26px 0;
}
.article table {
  font-size: 15px;
}
.article .table-wrap {
  margin: 18px 0;
}
.legal-banner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--warn-line);
  background: var(--warn-bg);
  color: var(--warn-text);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 28px;
}
.legal-banner .icon {
  width: 22px;
  height: 22px;
  margin-top: 1px;
}
.legal-banner strong {
  display: block;
  font-size: 16px;
}
.legal-banner a {
  color: inherit;
}
mark.pending {
  background: var(--warn-bg);
  color: var(--warn-text);
  border: 1px dashed var(--warn-line);
  padding: 0 5px;
  border-radius: 5px;
  font-weight: 700;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.legal-toc {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 18px 22px;
  margin: 0 0 32px;
}
.legal-toc p {
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
  margin: 0 0 6px;
}
.legal-toc ol {
  margin: 0;
  padding-left: 20px;
  columns: 2;
  column-gap: 32px;
}
.legal-toc li {
  font-size: 15px;
  margin: 4px 0;
  break-inside: avoid;
}
.legal-toc a {
  font-weight: 600;
}
.updated {
  font-size: 14px;
  color: var(--muted);
  margin-top: 14px;
}

/* ---------- Toast + sticky mobile CTA ---------- */
.toast {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: var(--text);
  color: var(--bg);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: calc(100% - 30px);
  text-align: center;
}
.body-has-mobile-cta .toast {
  bottom: 90px;
}
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px #0b1f4d12;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.mobile-cta-bar .btn {
  flex: 1;
  min-height: 46px;
  max-width: 220px;
  font-size: 15px;
  padding: 10px 12px;
}
.mobile-cta-dismiss {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--muted);
  display: grid;
  place-items: center;
  padding: 0;
}
.mobile-cta-dismiss:hover {
  color: var(--text);
  border-color: var(--blue);
}

/* ---------- Reveal: motion only, content never hidden ---------- */
.js-motion .reveal {
  transform: translateY(14px);
  transition: transform 0.55s ease;
}
.js-motion .reveal.in-view {
  transform: none;
}
.hero-posts {
  animation: enter-posts 0.7s ease-out both;
}
.hero-visual .app-mock {
  animation: enter-mock 0.7s 0.1s ease-out both;
}
@keyframes enter-posts {
  from {
    opacity: 0;
    translate: 0 12px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes enter-mock {
  from {
    opacity: 0;
    translate: 0 20px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (min-width: 1600px) {
  :root {
    --max: 1340px;
  }
  .hero-copy h1 {
    font-size: 76px;
  }
}
@media (max-width: 1180px) {
  .container {
    width: calc(100% - 52px);
  }
  .nav-links {
    gap: 20px;
  }
  .hero-grid {
    grid-template-columns: 1fr 1.03fr;
    gap: 28px;
  }
  .hero-copy h1 {
    font-size: 56px;
  }
  .hero-posts img {
    width: 134px;
    height: 177px;
  }
  .hero-posts {
    left: 45px;
    top: 0;
  }
  .mock-body {
    grid-template-columns: 85px 1fr;
  }
  .mock-sidebar {
    padding: 15px 6px;
  }
  .mock-nav-item {
    font-size: 7px;
    padding: 7px 5px;
    gap: 5px;
  }
  .mock-sidebar .mock-logo {
    width: 65px;
  }
  .mock-content {
    padding: 13px;
  }
  .mock-toolbar .mock-title {
    font-size: 12px;
  }
  .hero-visual .app-mock {
    margin-top: 51px;
  }
  .calendar-day {
    min-height: 205px;
  }
  .post-meta {
    font-size: 5px;
  }
  .split {
    gap: 44px;
  }
  .studio-section {
    padding: 56px;
    gap: 36px;
  }
  .price-card {
    padding: 26px 18px;
  }
  .price-amount {
    font-size: 38px;
  }
  .brand-visual {
    padding: 30px;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px 24px;
  }
  .footer-news {
    grid-column: 1 / -1;
    max-width: 520px;
  }
  .status-legend dl {
    gap: 16px 20px;
  }
}
/* Navigation collapses before the hero does: the nav has five items plus actions. */
@media (max-width: 1100px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 12px 24px 24px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px #0b1f4d14;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a:not(.btn) {
    min-height: 52px;
    padding: 0 6px;
    font-size: 17px;
    color: var(--text);
    border-bottom: 1px solid var(--line);
  }
  .nav-links a[aria-current="page"]::after {
    left: 6px;
    right: auto;
    width: 28px;
    bottom: 8px;
  }
  .nav-cta {
    display: grid;
    gap: 10px;
    padding-top: 18px;
  }
  .menu-toggle {
    display: inline-grid;
  }
  /* Without JavaScript the menu cannot open: show the links as a second row instead. */
  html:not(.js) .menu-toggle {
    display: none;
  }
  html:not(.js) .nav {
    flex-wrap: wrap;
    padding: 10px 0;
  }
  html:not(.js) .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    order: 3;
    width: 100%;
    padding: 0 0 6px;
    background: none;
    border: 0;
    box-shadow: none;
    gap: 0 20px;
    max-height: none;
  }
  html:not(.js) .nav-links a:not(.btn) {
    min-height: 44px;
    font-size: 15px;
    border: 0;
    padding: 0;
  }
  html:not(.js) .nav-cta {
    display: none;
  }
}
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    text-align: center;
    max-width: 720px;
    margin: auto;
  }
  .hero-copy .eyebrow,
  .hero-copy .actions,
  .hero-networks,
  .hero-subnote {
    justify-content: center;
  }
  .hero-copy h1 {
    font-size: clamp(46px, 7.5vw, 66px);
  }
  .hero-copy .lead {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-visual {
    max-width: 630px;
    width: 100%;
    margin: 10px auto 0;
    padding-top: 115px;
  }
  .hero-visual .app-mock {
    transform: rotate(-1.5deg);
  }
  .hero-posts {
    top: 20px;
  }
  .hero-posts img {
    width: 165px;
    height: 219px;
  }
  .mock-body {
    grid-template-columns: 120px 1fr;
  }
  .mock-sidebar {
    padding: 20px 10px;
  }
  .mock-nav-item {
    font-size: 9px;
    padding: 8px;
  }
  .mock-sidebar .mock-logo {
    width: 84px;
  }
  .mock-content {
    padding: 20px;
  }
  .mock-toolbar .mock-title {
    font-size: 16px;
  }
  .post-meta {
    font-size: 7px;
  }
  .mock-caption {
    justify-content: center;
  }
  .trust-line {
    flex-direction: column;
    margin-top: 40px;
    gap: 14px;
    text-align: center;
  }
  .trust-points {
    justify-content: center;
  }
  .bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split > div {
    max-width: 680px;
    width: 100%;
    margin: auto;
  }
  .studio-section {
    grid-template-columns: 1fr 1fr;
    padding: 44px;
    gap: 34px;
  }
  .studio-section h2 {
    font-size: 34px;
  }
  .studio-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .studio-mini-prompt {
    left: -13px;
    right: -14px;
    padding: 13px;
  }
  .pricing,
  .plan-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
  }
  .price-card {
    padding: 30px;
  }
  .plan-desc {
    min-height: 0;
  }
  .price-amount {
    font-size: 44px;
  }
  .roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .section-intro > p {
    max-width: 680px;
  }
  .status-board {
    grid-template-columns: 1fr;
  }
  .status-legend dl {
    grid-template-columns: 1fr;
  }
  .try-strip {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer-brand,
  .footer-news {
    grid-column: 1 / -1;
  }
  .cta-band {
    padding: 46px;
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-band h2 {
    font-size: 34px;
  }
  .cta-band .actions {
    flex-direction: row;
  }
  .demo-workspace {
    grid-template-columns: 1fr;
  }
  .mobile-cta-bar:not([hidden]) {
    display: flex;
  }
  .body-has-mobile-cta {
    padding-bottom: 76px;
  }
  .module-status-list {
    grid-template-columns: 1fr;
  }
  .audiences {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-inline: auto;
  }
}
@media (max-width: 640px) {
  .container {
    width: calc(100% - 32px);
  }
  .announce {
    font-size: 13px;
  }
  .announce-dot,
  .hero-copy .eyebrow .line {
    display: none;
  }
  /* Decorative card art is skipped on phones: the text carries the message. */
  .bento .card-visual,
  .bento .icon-box,
  .audience-cover {
    display: none;
  }
  .bento .card .card-link {
    padding-top: 4px;
  }
  .nav {
    min-height: 68px;
    gap: 10px;
  }
  .logo-wrap img {
    width: 112px;
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-actions > .nav-primary {
    display: none;
  }
  .section {
    padding: 68px 0;
  }
  .section-sm {
    padding: 44px 0;
  }
  h2 {
    font-size: 32px;
  }
  .lead {
    font-size: 17px;
  }
  .hero {
    padding-top: 44px;
    padding-bottom: 36px;
  }
  .hero-copy h1 {
    font-size: 44px;
    line-height: 1.06;
  }
  .hero-copy .lead {
    font-size: 17px;
  }
  .hero-copy .actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-visual {
    padding: 90px 0 8px;
    margin-top: 12px;
  }
  .hero-posts {
    top: 11px;
    left: 25px;
    right: 18px;
    height: 151px;
    gap: 7px;
  }
  .hero-posts img {
    height: 138px;
    width: 103px;
    border: 3px solid var(--surface);
    border-radius: 13px;
  }
  .hero-visual .app-mock {
    margin-top: 23px;
    transform: none;
    border-radius: 12px;
  }
  .mock-body {
    grid-template-columns: 65px 1fr;
    min-height: 256px;
  }
  .mock-sidebar {
    padding: 13px 4px;
  }
  .mock-sidebar .mock-logo {
    width: 51px;
    margin: 0 0 20px 3px;
  }
  .mock-nav-item {
    font-size: 6px;
    gap: 4px;
    padding: 6px 3px;
    border-radius: 4px;
  }
  .mock-nav-item .icon {
    width: 9px;
    height: 9px;
  }
  .mock-content {
    padding: 11px 9px;
  }
  .mock-toolbar {
    margin-bottom: 12px;
  }
  .mock-toolbar .mock-title {
    font-size: 10px;
  }
  .mock-toolbar small,
  .mock-toolbar .mini-btn {
    font-size: 6px;
  }
  .mock-accounts {
    gap: 5px;
    padding-bottom: 8px;
    margin-bottom: 9px;
  }
  .mock-accounts .platform {
    height: 14px;
    min-width: 14px;
    font-size: 6px;
  }
  .mock-accounts .badge {
    font-size: 5px;
    padding: 3px;
  }
  .calendar {
    gap: 2px;
  }
  .calendar-day {
    padding: 0 2px;
    min-height: 170px;
  }
  .day-label {
    font-size: 6px;
    padding-bottom: 4px;
  }
  .day-label b {
    font-size: 9px;
  }
  .post-tile {
    padding: 2px;
    border-radius: 5px;
    margin-top: 6px;
  }
  .post-meta {
    font-size: 5px;
    flex-wrap: wrap;
  }
  .post-meta .platform {
    height: 10px;
    min-width: 10px;
    font-size: 5px;
    border-radius: 2px;
  }
  .mini-brand {
    font-size: 5px;
    margin-top: 24px;
    padding: 4px;
  }
  .mini-brand b {
    width: 13px;
    height: 13px;
    font-size: 7px;
  }
  .mock-bar {
    padding: 7px 10px;
  }
  .mock-url {
    font-size: 6px;
  }
  .floating-note {
    display: none;
  }
  .trust-line {
    margin-top: 30px;
    font-size: 15px;
  }
  .trust-points {
    gap: 10px 18px;
  }
  .section-intro {
    margin-bottom: 28px;
  }
  .section-intro > p {
    font-size: 16px;
  }
  .bento {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .card {
    padding: 24px;
    border-radius: 20px;
  }
  .card h3 {
    font-size: 20px;
  }
  .card p {
    font-size: 15px;
  }
  .brand-visual {
    padding: 28px 20px 70px;
    min-height: 0;
    border-radius: 23px;
  }
  .brand-sheet {
    padding: 22px;
    max-width: 310px;
  }
  .brand-sheet .sheet-name {
    font-size: 34px;
  }
  .brand-sticker {
    right: 11px;
    bottom: 18px;
    font-size: 13px;
    padding: 12px 16px;
  }
  .feature-tabs {
    gap: 6px;
  }
  .feature-tabs button {
    flex: 1 1 auto;
    font-size: 15px;
    padding: 10px 12px;
  }
  .feature-preview {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px;
  }
  .feature-preview h3 {
    font-size: 24px;
  }
  .preview-panel {
    padding: 16px;
    min-height: 0;
  }
  .studio-section {
    grid-template-columns: 1fr;
    padding: 34px 24px;
    gap: 30px;
    border-radius: 25px;
  }
  .studio-section h2 {
    font-size: 32px;
  }
  .studio-list {
    grid-template-columns: 1fr;
  }
  .studio-art {
    max-width: 320px;
    margin: 0 auto 20px;
    gap: 12px;
  }
  .studio-mini-prompt {
    bottom: 0;
    left: -4px;
    right: -3px;
  }
  .pricing,
  .plan-strip {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .price-card {
    padding: 28px 22px;
  }
  .price-toolbar button {
    padding: 10px 14px;
  }
  .price-footnote {
    font-size: 14px;
  }
  .faq summary {
    font-size: 17px;
  }
  .cta-band {
    padding: 36px 24px;
    gap: 24px;
    border-radius: 24px;
  }
  .cta-band h2 {
    font-size: 30px;
  }
  .cta-band p {
    font-size: 16px;
  }
  .cta-band .actions {
    flex-direction: column;
    width: 100%;
  }
  .site-footer {
    padding-top: 44px;
    margin-top: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
  }
  .footer-news-form {
    flex-direction: column;
  }
  .footer-base {
    flex-direction: column;
    gap: 8px;
  }
  .footer-links a {
    min-height: 44px;
  }
  .subhero {
    padding: 44px 0 32px;
  }
  .subhero h1 {
    font-size: 40px;
  }
  .subhero .lead {
    font-size: 17px;
  }
  .feature-deep,
  .roadmap,
  .resource-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .try-strip {
    padding: 22px 20px;
  }
  .try-list {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 22px;
    border-radius: 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .article h2 {
    font-size: 25px;
  }
  .article p,
  .article li {
    font-size: 16px;
  }
  .legal-toc ol {
    columns: 1;
  }
  .note {
    padding: 16px 18px;
  }
  .demo-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .demo-brand-select {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .demo-brand-select select {
    width: 100%;
  }
  .demo-calendar {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .demo-card {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 14px;
    align-items: start;
  }
  .demo-card small {
    margin-top: 0;
  }
  .demo-next {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }
  .demo-next .actions {
    flex-direction: column;
    align-items: stretch;
  }
  /* Tables become stacked cards: each cell shows its column name. */
  .table-stack thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  .table-stack,
  .table-stack tbody,
  .table-stack tr,
  .table-stack th,
  .table-stack td {
    display: block;
    width: 100%;
  }
  .table-stack tr {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }
  .table-stack tr:last-child {
    border-bottom: 0;
  }
  .table-stack th,
  .table-stack td {
    border: 0;
    padding: 6px 0;
  }
  .table-stack td::before {
    content: attr(data-label);
    display: block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 4px;
  }
  table th:first-child {
    min-width: 0;
  }
  .scroll-table table {
    min-width: 560px;
  }
}
@media (max-width: 390px) {
  .container {
    width: calc(100% - 28px);
  }
  .hero-copy h1 {
    font-size: 40px;
  }
  .hero-visual {
    padding: 72px 0 8px;
    overflow: hidden;
  }
  .hero-posts {
    left: 8px;
    right: 8px;
    height: 120px;
  }
  .hero-posts img {
    width: 88px;
    height: 118px;
  }
  .hero-visual .app-mock {
    margin-top: 12px;
  }
  .mock-body {
    min-height: 220px;
  }
  .cta-band h2 {
    font-size: 28px;
  }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .js-motion .reveal {
    transform: none;
  }
  .bento .card:hover,
  .btn:hover,
  .audience:hover {
    transform: none !important;
  }
}

/* ---------- Print ---------- */
@media print {
  .site-header,
  .announce,
  .site-footer,
  .mobile-cta-bar,
  .toast,
  .skip-link {
    display: none !important;
  }
  body {
    background: #fff;
    color: #0b1f4d;
  }
  .container {
    width: 95%;
  }
  .section {
    padding: 30px 0;
  }
  .card,
  .price-card {
    break-inside: avoid;
  }
}

/* =====================================================================
   Site 2.0 (wave 5): real product screenshots, scroll storytelling,
   parallax and micro-interactions. Motion is transform/opacity only and
   is switched off by prefers-reduced-motion (JS never adds .js-motion then).
   ===================================================================== */
:root {
  --shot-radius: 14px;
  --shot-shadow: 0 30px 80px -28px rgba(11, 31, 77, 0.35), 0 12px 28px -18px rgba(11, 31, 77, 0.25);
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-theme="dark"] {
  --shot-shadow: 0 30px 80px -24px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(138, 184, 255, 0.12);
}

/* ---------- Screenshot frames ---------- */
.shot {
  margin: 0;
  min-width: 0;
}
.shot-frame {
  position: relative;
  border-radius: var(--shot-radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shot-shadow);
  overflow: hidden;
}
.shot-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}
.shot-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
}
.shot-bar span {
  margin-left: 10px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shot-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1440 / 900;
  background: var(--soft);
}
.shot figcaption,
.shot-caption {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.shot figcaption::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  translate: 0 -1px;
}
.theme-img-dark {
  display: none !important;
}
[data-theme="dark"] .theme-img-dark {
  display: block !important;
}
[data-theme="dark"] .theme-img-light {
  display: none !important;
}

.phone {
  position: relative;
  width: 100%;
  max-width: 250px;
  padding: 9px;
  border-radius: 38px;
  background: #0b1f4d;
  box-shadow: var(--shot-shadow), inset 0 0 0 2px #22386b;
}
.phone img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 390 / 844;
  border-radius: 30px;
  background: #f2efe8;
}

/* ---------- Hero 2.0 ---------- */
.hero-v2 {
  padding: 64px 0 24px;
}
.hero-v2 .hero-grid {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}
.hero-stage {
  position: relative;
  perspective: 1600px;
  padding: 18px 0 40px;
  min-width: 0;
}
.hero-tilt {
  transform: rotateY(-11deg) rotateX(5deg) rotateZ(0.6deg);
  transform-origin: 20% 50%;
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}
.hero-stage:hover .hero-tilt {
  transform: rotateY(-6deg) rotateX(3deg);
}
.hero-tilt .shot-frame {
  width: 118%;
  max-width: none;
}
.hero-phone {
  position: absolute;
  right: -2%;
  bottom: -6px;
  width: 30%;
  min-width: 132px;
  max-width: 210px;
}
.hero-phone .phone {
  max-width: none;
  padding: 6px;
  border-radius: 28px;
}
.hero-phone .phone img {
  border-radius: 22px;
}
.hero-chip {
  position: absolute;
  left: -4%;
  bottom: 18%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  max-width: 260px;
}
.hero-chip .spark {
  flex: none;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
}
.hero-chip small {
  display: block;
  font-weight: 600;
  color: var(--muted);
  font-size: 12px;
}
.hero-v2 .shot-caption {
  margin-top: 26px;
}
.hero-glow {
  position: absolute;
  inset: 10% 0 auto 10%;
  height: 70%;
  z-index: -1;
  background: radial-gradient(closest-side, rgba(0, 217, 233, 0.28), transparent);
  filter: blur(10px);
}

/* ---------- Honest proof strip ---------- */
.proof-strip {
  padding: 28px 0 8px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.proof-grid li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
}
.proof-grid strong {
  display: block;
  color: var(--text);
  font-family: var(--head);
  font-size: 15px;
  margin-bottom: 2px;
}
.proof-grid .icon {
  flex: none;
  color: var(--link);
  margin-top: 2px;
}

/* ---------- "Todo en un lugar" flow ---------- */
.flow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  margin: 44px 0 0;
  padding: 0;
  counter-reset: flow;
}
.flow-track::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 27px;
  height: 2px;
  background: var(--line);
}
.flow-track::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 27px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform-origin: left;
  transform: scaleX(var(--flow-progress, 1));
}
.flow-step {
  position: relative;
  counter-increment: flow;
  text-align: center;
  padding: 0 4px;
}
.flow-dot {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--link);
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease-out), background 0.25s, color 0.25s;
}
.flow-step:hover .flow-dot {
  transform: translateY(-4px) scale(1.04);
  background: var(--blue);
  color: #fff;
}
.flow-step h3 {
  font-size: 17px;
  margin: 0 0 6px;
}
.flow-step h3::before {
  content: counter(flow, decimal-leading-zero) " ";
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.flow-step p {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.flow-step .status {
  font-size: 12px;
}

/* ---------- Feature stories ---------- */
.feature-stories {
  display: grid;
  gap: 120px;
  margin-top: 64px;
}
.story {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: center;
}
.story.flip {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}
.story.flip .story-copy {
  order: 2;
}
.story-copy h3 {
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.story-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 20px;
}
.story-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--link);
}
.story-kicker .status {
  letter-spacing: 0;
  text-transform: none;
}
.benefits {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.benefits li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.benefits li::before {
  content: "";
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 7px;
  background: var(--tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230052d6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.how {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.how-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.how ol {
  list-style: none;
  counter-reset: how;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.how li {
  counter-increment: how;
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.how li::before {
  content: counter(how);
  flex: none;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  color: var(--text);
}
.story-visual {
  position: relative;
  min-width: 0;
}
.story-visual .phone {
  margin-inline: auto;
}
.story-visual .shot-stack {
  position: relative;
}
.shot-stack .shot + .shot {
  position: absolute;
  width: 62%;
  right: -4%;
  bottom: -14%;
}
.story-visual.has-stack {
  padding-bottom: 12%;
}
.story-visual .shot-frame {
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}
.story-visual:hover .shot-frame {
  transform: translateY(-4px);
}

/* ---------- Comparison ---------- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 640px;
}
.compare-table th,
.compare-table td {
  text-align: left;
  vertical-align: top;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  line-height: 1.5;
}
.compare-table thead th {
  font-family: var(--head);
  font-size: 15px;
  background: var(--soft);
}
.compare-table thead th:last-child {
  color: var(--link);
}
.compare-table tbody th {
  font-weight: 800;
  width: 22%;
}
.compare-table td:last-child {
  background: color-mix(in srgb, var(--tint) 55%, transparent);
}
.compare-wrap {
  margin-top: 36px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow-x: auto;
  background: var(--surface);
}
.compare-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Mind Miami Agency ---------- */
.agency {
  position: relative;
  overflow: hidden;
  background: #071733;
  color: #edf5ff;
}
.agency::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto 40%;
  height: 120%;
  background: radial-gradient(closest-side, rgba(0, 100, 255, 0.35), transparent 70%);
  pointer-events: none;
}
.agency .container {
  position: relative;
}
.agency h2,
.agency h3 {
  color: #fff;
}
.agency .eyebrow {
  color: #7fe9f3;
}
.agency .lead,
.agency p {
  color: #c4d3e6;
}
.agency-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}
.agency-card {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(138, 184, 255, 0.2);
  transition: transform 0.25s var(--ease-out), background 0.25s, border-color 0.25s;
}
.agency-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 217, 233, 0.5);
}
.agency-card .icon-wrap {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #0064ff, #00b8d9);
  color: #fff;
}
.agency-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
}
.agency-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}
.agency-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(138, 184, 255, 0.2);
}
.agency-foot p {
  margin: 0;
  max-width: 620px;
  font-size: 15px;
}
.agency .btn-light {
  background: #fff;
  color: #0b1f4d;
}
.agency :focus-visible {
  outline-color: #8ab8ff;
}

/* ---------- Page screenshot band (secondary pages) ---------- */
.page-shot {
  padding: 8px 0 48px;
}
.page-shot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 40px;
  align-items: end;
}
.page-shot-grid.single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1040px;
  margin-inline: auto;
}
.page-shot-grid.duo {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}

/* ---------- Micro-interactions ---------- */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease-out);
  pointer-events: none;
}
.btn-primary:hover::after {
  transform: translateX(120%);
}
.btn .icon {
  transition: transform 0.2s var(--ease-out);
}
.btn:hover .icon {
  transform: translateX(3px);
}
.theme-toggle .icon,
.menu-toggle .icon {
  transition: none;
}
.price-card,
.plan-mini,
.status-col {
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
}
.price-card:hover,
.plan-mini:hover,
.status-col:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* ---------- Scroll motion (only with .js-motion) ---------- */
.js-motion .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.js-motion .reveal.in-view {
  opacity: 1;
  transform: none;
}
.js-motion .reveal-scale {
  transform: translateY(26px) scale(0.97);
}
.js-motion [data-parallax] {
  will-change: transform;
}
.hero-v2 .hero-copy > * {
  animation: hero-rise 0.8s var(--ease-out) both;
}
.hero-v2 .hero-copy > :nth-child(2) { animation-delay: 0.06s; }
.hero-v2 .hero-copy > :nth-child(3) { animation-delay: 0.12s; }
.hero-v2 .hero-copy > :nth-child(4) { animation-delay: 0.18s; }
.hero-v2 .hero-copy > :nth-child(5) { animation-delay: 0.24s; }
.hero-v2 .hero-stage {
  animation: hero-stage 1s 0.1s var(--ease-out) both;
}
@keyframes hero-rise {
  from { opacity: 0; translate: 0 16px; }
  to { opacity: 1; translate: 0 0; }
}
@keyframes hero-stage {
  from { opacity: 0; translate: 0 36px; }
  to { opacity: 1; translate: 0 0; }
}

/* ---------- Responsive (site 2.0) ---------- */
@media (max-width: 1100px) {
  .flow-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 36px;
  }
  .flow-track::before,
  .flow-track::after {
    display: none;
  }
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .story,
  .story.flip {
    gap: 40px;
  }
}
@media (max-width: 960px) {
  .hero-v2 .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-tilt {
    transform: rotateX(4deg);
  }
  .hero-tilt .shot-frame {
    width: 100%;
  }
  .hero-phone {
    right: 2%;
    width: 26%;
  }
  .hero-chip {
    left: 2%;
    bottom: 8%;
  }
  .story,
  .story.flip {
    grid-template-columns: 1fr;
  }
  .story.flip .story-copy {
    order: 0;
  }
  .shot-stack .shot + .shot {
    right: 0;
  }
  .feature-stories {
    gap: 80px;
  }
  .agency-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-shot-grid,
  .page-shot-grid.duo {
    grid-template-columns: 1fr;
  }
  .page-shot-grid .phone {
    display: none;
  }
}
@media (max-width: 640px) {
  .hero-v2 {
    padding-top: 36px;
  }
  .hero-stage {
    padding-bottom: 28px;
  }
  .hero-chip {
    display: none;
  }
  .hero-phone {
    min-width: 96px;
    width: 30%;
    bottom: -10px;
    right: -2%;
  }
  .flow-track,
  .proof-grid,
  .agency-grid {
    grid-template-columns: 1fr;
  }
  .flow-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0 16px;
    text-align: left;
  }
  .flow-dot {
    margin: 0;
    grid-row: span 3;
  }
  .flow-step .status {
    justify-self: start;
  }
  .shot-bar span {
    display: none;
  }
  .shot-stack .shot + .shot {
    position: relative;
    width: 100%;
    right: auto;
    bottom: auto;
    margin-top: 20px;
  }
  .story-visual.has-stack {
    padding-bottom: 0;
  }
  .story-copy > p {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-tilt,
  .hero-stage:hover .hero-tilt {
    transform: none;
  }
  .js-motion .reveal {
    opacity: 1;
  }
  .btn-primary::after {
    display: none;
  }
}
.js-motion .flow-track {
  --flow-progress: 0;
}

/* ---------- Ola 6 · inline form errors, cookie consent, Turnstile ---------- */
.field-wrap {
  display: grid;
  gap: 6px;
  align-content: start;
}
.field-error {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: #a32d17;
}
[data-theme="dark"] .field-error {
  color: #ffb4a6;
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #c2412d;
  box-shadow: 0 0 0 1px #c2412d;
}
.turnstile-slot {
  display: grid;
  gap: 10px;
  justify-items: start;
  min-height: 1px;
}
.turnstile-slot .form-note {
  margin: 0;
}
.consent-banner {
  position: fixed;
  z-index: 80;
  left: 16px;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px #0b1f4d29;
}
.consent-banner .consent-text {
  flex: 1 1 320px;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.consent-banner .consent-text strong {
  color: var(--text);
}
.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.consent-actions .btn {
  min-height: 44px;
}
body.has-consent-banner .mobile-cta-bar {
  display: none !important;
}
.consent-dialog {
  width: min(520px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  overflow: auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 24px 70px #0b1f4d40;
}
.consent-dialog::backdrop {
  background: #06122480;
}
.consent-dialog h2 {
  font-size: 22px;
  margin: 0 0 6px;
}
.consent-dialog form {
  display: grid;
  gap: 14px;
}
.consent-dialog .consent-text {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.consent-option {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}
.consent-option input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--primary, #0064ff);
}
.consent-option > span {
  display: grid;
  gap: 2px;
  font-size: 14px;
  color: var(--muted);
}
.consent-option strong {
  color: var(--text);
  font-size: 15px;
}
.consent-option.is-locked {
  cursor: default;
  opacity: 0.85;
}
@media (max-width: 560px) {
  .consent-actions {
    width: 100%;
  }
  .consent-actions .btn {
    flex: 1 1 auto;
  }
}
.route-search {
  margin-top: 32px;
  max-width: 520px;
}
.route-empty:empty {
  display: none;
}
.route-empty {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.route-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}
.route-list a {
  display: grid;
  gap: 2px;
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
}
.route-list a:hover,
.route-list a:focus-visible {
  border-color: var(--link);
}
.route-list strong {
  font-size: 15px;
}
.route-list span {
  font-size: 14px;
  color: var(--muted);
}
.legal-cta {
  margin-top: 40px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
}
.legal-cta p {
  margin: 0 0 14px;
  font-weight: 700;
  color: var(--text);
}
.consent-banner a,
.consent-dialog .consent-text a {
  color: var(--link);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
