:root {
  color-scheme: light;
  --ink: #14191f;
  --ink-mid: #525d66;
  --ink-muted: #72808a;
  --muted: var(--ink-muted);
  --paper: #f5fbfd;
  --paper-soft: #e8f6fb;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --surface-warm: #fff7ea;
  --teal: #137f78;
  --teal-dark: #0b615b;
  --gold: #c8912f;
  --blue: #4d7ec2;
  --plum: #735a8f;
  --coral: #db745a;
  --sky: #b9dff3;
  --line: rgba(20, 25, 31, 0.12);
  --line-strong: rgba(20, 25, 31, 0.2);
  --shadow: 0 18px 42px rgba(31, 60, 82, 0.1);
  --shadow-strong: 0 30px 80px rgba(18, 38, 54, 0.22);
  --radius: 8px;
  --radius-sm: 6px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #c8e7f7 0, #e9f7fc 420px, rgba(245, 251, 253, 0) 760px),
    linear-gradient(115deg, rgba(255, 247, 234, 0.7) 0, rgba(232, 246, 251, 0.86) 48%, rgba(245, 251, 253, 1) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.52;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 26%, rgba(255, 255, 255, 0.16) 72%, transparent);
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(19, 127, 120, 0.42);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

h1 {
  font-size: 76px;
  line-height: 1.01;
  max-width: 12ch;
}

h2 {
  font-size: 34px;
  line-height: 1.16;
  font-weight: 760;
}

h3 {
  font-size: 21px;
  line-height: 1.24;
}

p {
  color: var(--ink-mid);
  line-height: 1.65;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 30;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  padding: 12px 20px 0;
  background: transparent;
}

.nav-shell,
.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.nav-shell {
  width: min(100%, 920px);
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 7px 9px 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 45px rgba(34, 70, 96, 0.14);
  backdrop-filter: blur(24px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 850;
  color: var(--ink);
}

.brand-mark img {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(19, 127, 120, 0.17);
}

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

.nav-links a:not(.button),
.nav-dropdown-trigger {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  color: var(--ink);
  font-weight: 720;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger {
  background: rgba(19, 127, 120, 0.09);
  color: var(--ink);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.nav-dropdown-trigger {
  gap: 5px;
}

.nav-dropdown-trigger svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 25;
  width: min(78vw, 300px);
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(20, 25, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 50px rgba(31, 60, 82, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(20px);
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-panel a:not(.button) {
  min-height: 38px;
  justify-content: flex-start;
  padding: 9px 10px;
  border-radius: var(--radius);
  font-size: 14px;
}

.nav-dropdown-panel .nav-dropdown-overview {
  color: var(--teal-dark);
  background: rgba(19, 127, 120, 0.08);
}

.nav-mega-menu {
  width: min(92vw, 980px);
  grid-template-columns: 220px repeat(3, minmax(0, 1fr));
  gap: 12px 16px;
  padding: 16px;
  align-items: start;
}

.nav-mega-menu .nav-dropdown-overview {
  grid-row: span 2;
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 5px;
  padding: 13px;
}

.nav-mega-menu .nav-dropdown-overview strong,
.nav-mega-menu .nav-dropdown-overview span {
  display: block;
}

.nav-mega-menu .nav-dropdown-overview span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.nav-feature-group {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.nav-feature-group p {
  margin: 0;
  padding: 0 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-feature-list {
  display: grid;
  gap: 2px;
}

.nav-feature-list a:not(.button) {
  min-height: 32px;
  padding: 7px 8px;
  font-size: 13px;
  line-height: 1.18;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(20, 32, 29, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button,
button.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 19px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(20, 25, 31, 0.18);
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--line);
  box-shadow: 0 10px 22px rgba(20, 32, 29, 0.06);
}

.button:hover,
button.button:hover,
.button:focus-visible,
button.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(20, 25, 31, 0.2);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(19, 127, 120, 0.32);
  background: rgba(255, 255, 255, 0.96);
}

.button-small {
  min-height: 40px;
  padding: 9px 15px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.centered-copy .button-row {
  justify-content: center;
}

.messages {
  width: min(100% - 32px, var(--max));
  margin: 18px auto 0;
}

.message {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.message-success {
  border-color: rgba(19, 127, 120, 0.26);
  background: rgba(237, 250, 247, 0.96);
  color: var(--teal-dark);
}

.message-error {
  border-color: rgba(219, 116, 90, 0.3);
  background: rgba(255, 246, 242, 0.96);
  color: #8f3f2e;
}

.hero-section,
.page-hero,
.section,
.cta-band {
  padding: 88px 20px;
}

.hero-section {
  position: relative;
  min-height: auto;
  display: grid;
  align-content: center;
  padding-top: 104px;
  padding-bottom: 48px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(184, 221, 242, 0.68), rgba(236, 248, 253, 0.84) 62%, rgba(245, 251, 253, 0.2) 100%);
}

.page-hero.compact,
.compact-section {
  padding-top: 72px;
  padding-bottom: 62px;
}

.feature-detail-hero {
  padding-top: 56px;
  padding-bottom: 36px;
}

.feature-detail-hero .hero-grid {
  align-items: start;
}

.feature-detail-hero + .feature-detail-body-section {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding-top: 24px;
}

.feature-detail-hero .visual-stage {
  min-height: clamp(460px, 42vw, 640px);
  height: auto;
  overflow: visible;
  align-items: center;
  justify-items: center;
}

.feature-detail-hero .visual-stage::before {
  inset: 2% 10% 0;
}

.feature-detail-hero .phone-stage .screenshot-phone.primary {
  width: min(100%, clamp(230px, 20vw, 280px));
}

.feature-detail-hero .phone-stage .visual-floating-card {
  width: min(42vw, 158px);
  min-width: 0;
  padding: 12px 13px;
  border-radius: 18px;
}

.feature-detail-hero .phone-stage .visual-floating-card small {
  font-size: 12px;
  line-height: 1.2;
}

.feature-detail-hero .phone-stage .visual-floating-card strong {
  font-size: 18px;
  line-height: 1.18;
  text-wrap: balance;
}

.feature-detail-hero .phone-stage .top-card {
  top: 16%;
  right: calc(50% + 150px);
  left: auto;
}

.feature-detail-hero .phone-stage .bottom-card {
  right: auto;
  left: calc(50% + 150px);
}

.feature-detail-hero .dashboard-stage .screenshot-phone.primary {
  width: min(100%, clamp(220px, 18vw, 280px));
}

.feature-detail-hero .dashboard-stage .screenshot-phone.secondary {
  width: min(100%, clamp(160px, 13vw, 205px));
}

.feature-detail-hero .expense-breakdown-stage::before,
.feature-detail-hero .smart-fixes-stage::before,
.feature-detail-hero .sales-rhythm-stage::before {
  display: none;
}

.feature-detail-body-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.9fr);
  gap: 64px;
}

.feature-detail-copy-stack {
  display: grid;
  gap: 14px;
}

.hero-grid,
.split-section,
.cta-grid,
.showpiece-grid,
.faq-blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.9fr);
  gap: 64px;
  align-items: center;
}

.hero-stack {
  display: grid;
  gap: 28px;
  justify-items: center;
  text-align: center;
}

.hero-stack h1,
.hero-stack .hero-subtitle,
.hero-stack .hero-lede,
.hero-stack .metric-strip {
  margin-inline: auto;
}

.hero-stack h1 {
  max-width: 13ch;
}

.hero-stack .hero-visual-wrap {
  width: min(100%, 860px);
  min-height: 520px;
  margin-top: -6px;
}

.top-aligned {
  align-items: start;
}

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

.hero-subtitle {
  max-width: 730px;
  margin-top: 18px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.22;
  font-weight: 760;
}

.hero-lede,
.page-hero p,
.section-heading p {
  max-width: 700px;
  margin-top: 18px;
  font-size: 19px;
}

.eyebrow,
.launch-pill,
.source-note,
.feature-card small,
.article-card small,
.bento-card small,
.price-card small,
.pricing-teaser-card small,
.article-row small {
  color: var(--teal-dark);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  text-transform: uppercase;
}

.launch-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 11px;
  border: 1px solid rgba(19, 127, 120, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-mid);
  box-shadow: 0 10px 28px rgba(31, 60, 82, 0.08);
}

.launch-pill span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(19, 127, 120, 0.13);
}

.eyebrow {
  margin-bottom: 12px;
}

.centered,
.centered-copy {
  text-align: center;
  margin-inline: auto;
}

.centered h1,
.centered-copy h1 {
  margin-inline: auto;
}

.centered .eyebrow,
.centered-copy .eyebrow,
.centered-copy .launch-pill {
  margin-inline: auto;
}

.centered p,
.centered-copy p {
  margin-inline: auto;
}

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

.metric-strip div,
.panel,
.logo-pill,
details.panel,
.proof-row span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.metric-strip div {
  position: relative;
  min-height: 166px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: 15px;
  text-align: left;
}

.metric-strip strong {
  display: block;
  line-height: 1.08;
  font-size: 24px;
  color: var(--ink);
}

.metric-strip .metric-copy {
  display: block;
  margin-top: 7px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.35;
}

.metric-visual {
  width: 100%;
  height: 58px;
  display: grid;
  margin-bottom: 14px;
  border: 1px solid rgba(20, 25, 31, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.metric-visual i {
  display: block;
}

.metric-visual-listings {
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  padding: 8px;
}

.metric-visual-listings i:first-child {
  grid-row: 1 / -1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(19, 127, 120, 0.78), rgba(77, 126, 194, 0.72));
}

.metric-visual-listings i:not(:first-child) {
  align-self: center;
  height: 8px;
  border-radius: 999px;
  background: rgba(19, 127, 120, 0.24);
}

.metric-visual-listings i:last-child {
  width: 68%;
}

.metric-visual-pulse {
  align-items: end;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  padding: 10px 11px;
}

.metric-visual-pulse i {
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, rgba(200, 145, 47, 0.85), rgba(219, 116, 90, 0.64));
}

.metric-visual-pulse i:nth-child(1) {
  height: 42%;
}

.metric-visual-pulse i:nth-child(2) {
  height: 68%;
}

.metric-visual-pulse i:nth-child(3) {
  height: 54%;
}

.metric-visual-pulse i:nth-child(4) {
  height: 82%;
}

.metric-visual-photo {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  padding: 8px;
}

.metric-visual-photo i {
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 62% 36%, rgba(255, 255, 255, 0.82) 0 12%, transparent 13%),
    linear-gradient(135deg, rgba(115, 90, 143, 0.76), rgba(219, 116, 90, 0.64));
}

.metric-visual-photo i:nth-child(2) {
  background:
    radial-gradient(circle at 38% 42%, rgba(255, 255, 255, 0.78) 0 11%, transparent 12%),
    linear-gradient(135deg, rgba(77, 126, 194, 0.72), rgba(19, 127, 120, 0.58));
}

.metric-visual-photo i:nth-child(3) {
  background:
    radial-gradient(circle at 58% 34%, rgba(255, 255, 255, 0.82) 0 10%, transparent 11%),
    linear-gradient(135deg, rgba(200, 145, 47, 0.76), rgba(19, 127, 120, 0.56));
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.proof-row span {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  color: var(--ink-mid);
  font-weight: 780;
  text-align: center;
}

.section {
  position: relative;
}

.section.tinted,
.showpiece-section,
.pricing-preview-section,
.testimonial-section {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(229, 244, 250, 0.68));
}

.app-story-section {
  overflow: hidden;
  color: white;
  background:
    linear-gradient(155deg, rgba(12, 34, 45, 0.98), rgba(13, 53, 56, 0.94) 54%, rgba(20, 25, 31, 0.98));
}

.app-story-section .eyebrow,
.app-story-section h2 {
  color: white;
}

.app-story-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.app-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.app-story-card {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.app-story-card.featured {
  background:
    linear-gradient(180deg, rgba(28, 119, 108, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
}

.app-story-card figure {
  min-height: 0;
  overflow: hidden;
  border: 10px solid rgba(4, 10, 14, 0.92);
  border-radius: 34px;
  background: #071016;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.28);
}

.app-story-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 50% 12%;
}

.app-story-card:first-child img {
  object-position: 50% 50%;
}

.app-story-card > div {
  display: grid;
  gap: 8px;
  padding: 2px 4px 4px;
}

.app-story-card small {
  color: #21d1a2;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
  text-transform: uppercase;
}

.app-story-card h3 {
  color: white;
  font-size: 24px;
}

.app-story-card p {
  color: rgba(255, 255, 255, 0.68);
}

.section-heading {
  max-width: 790px;
  margin-inline: auto;
  margin-bottom: 38px;
  text-align: center;
}

.section-heading h2 {
  max-width: 820px;
  margin-inline: auto;
}

.section-heading p {
  margin-inline: auto;
}

.page-hero + .section {
  padding-top: 62px;
}

.page-hero.compact + .section {
  padding-top: 48px;
}

.narrow {
  max-width: 850px;
}

.panel {
  padding: 24px;
}

.card-grid,
.article-grid,
.process-grid,
.pricing-grid,
.bento-grid,
.blog-stack {
  display: grid;
  gap: 16px;
}

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

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

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

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

.bento-card {
  min-height: 300px;
  grid-column: span 3;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

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

.bento-card:nth-child(1),
.bento-card:nth-child(2) {
  grid-column: span 3;
  min-height: 360px;
}

.bento-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  z-index: 0;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(77, 126, 194, 0.16);
  border-radius: var(--radius);
  transform: rotate(8deg);
  background: rgba(77, 126, 194, 0.07);
  pointer-events: none;
}

.tone-2::after,
.tone-5::after {
  border-color: rgba(184, 134, 46, 0.2);
  background: rgba(184, 134, 46, 0.08);
}

.tone-3::after,
.tone-6::after {
  border-color: rgba(72, 111, 157, 0.18);
  background: rgba(72, 111, 157, 0.07);
}

.feature-card,
.article-card,
.bento-card {
  color: var(--ink);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.article-card:hover,
.bento-card:hover,
.article-row:hover,
.feature-card:focus,
.article-card:focus,
.bento-card:focus,
.article-row:focus {
  border-color: rgba(15, 128, 118, 0.36);
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(20, 32, 29, 0.15);
}

.icon-badge {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: rgba(15, 128, 118, 0.1);
  font-weight: 850;
}

.icon-badge svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eyebrow-with-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.eyebrow-with-icon .eyebrow {
  margin-bottom: 0;
}

.feature-snapshot {
  min-height: 142px;
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding: 14px;
  border: 1px solid rgba(20, 25, 31, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(232, 246, 251, 0.7)),
    linear-gradient(115deg, rgba(19, 127, 120, 0.08), rgba(200, 145, 47, 0.08));
  box-shadow: 0 18px 34px rgba(31, 60, 82, 0.09);
}

.bento-card:nth-child(1) .feature-snapshot,
.bento-card:nth-child(2) .feature-snapshot {
  min-height: 158px;
}

.snapshot-topline,
.snapshot-row,
.snapshot-toggle,
.snapshot-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.snapshot-topline span,
.snapshot-row span,
.snapshot-metrics span,
.snapshot-card em {
  color: var(--ink-muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
}

.snapshot-topline strong {
  min-width: 34px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--teal-dark);
  font-size: 14px;
}

.snapshot-expenses .snapshot-topline strong {
  width: auto;
  min-width: 74px;
  padding: 0 10px;
  color: white;
  background: var(--teal-dark);
}

.snapshot-expense-bar {
  display: grid;
  grid-template-columns: 1.9fr 0.72fr 0.48fr 1.1fr;
  height: 13px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(20, 25, 31, 0.08);
}

.snapshot-expense-bar span:nth-child(1) {
  background: #48c987;
}

.snapshot-expense-bar span:nth-child(2) {
  background: #9e8be8;
}

.snapshot-expense-bar span:nth-child(3) {
  background: #6faee5;
}

.snapshot-expense-bar span:nth-child(4) {
  background: #34c7bd;
}

.snapshot-row.muted {
  opacity: 0.78;
}

.snapshot-card,
.snapshot-row,
.snapshot-toggle {
  padding: 11px 12px;
  border: 1px solid rgba(20, 25, 31, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.snapshot-card strong,
.snapshot-row strong,
.snapshot-toggle strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}

.snapshot-card em {
  display: block;
  margin-top: 4px;
}

.snapshot-variant-row {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  padding: 10px 11px;
  border: 1px solid rgba(20, 25, 31, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.snapshot-variant-row b {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-size: 12px;
}

.snapshot-variant-row strong {
  min-width: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}

.snapshot-variant-row span {
  color: var(--ink-muted);
  font-size: 12px;
}

.snapshot-variant-row.active {
  border-color: rgba(19, 127, 120, 0.24);
  background: rgba(19, 127, 120, 0.08);
}

.snapshot-variant-row.active b {
  background: var(--teal-dark);
}

.snapshot-split-bar {
  display: grid;
  grid-template-columns: 1fr 1.28fr;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(20, 25, 31, 0.08);
}

.snapshot-split-bar span:first-child {
  background: rgba(20, 25, 31, 0.34);
}

.snapshot-split-bar span:last-child {
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.snapshot-progress {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(20, 25, 31, 0.08);
}

.snapshot-progress span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.snapshot-photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.78fr 0.78fr;
  gap: 8px;
}

.snapshot-photo-grid span {
  min-height: 68px;
  border: 1px solid rgba(20, 25, 31, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 247, 234, 0.9), rgba(185, 223, 243, 0.72)),
    radial-gradient(circle at 50% 42%, rgba(20, 25, 31, 0.08) 0 18%, transparent 19%);
}

.snapshot-photo-grid span:first-child {
  background:
    linear-gradient(145deg, rgba(20, 25, 31, 0.82), rgba(19, 127, 120, 0.78)),
    radial-gradient(circle at 52% 45%, rgba(255, 255, 255, 0.3) 0 20%, transparent 21%);
}

.snapshot-chart {
  height: 82px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-items: end;
}

.snapshot-chart span {
  border-radius: var(--radius) var(--radius) 3px 3px;
  background: linear-gradient(180deg, rgba(19, 127, 120, 0.8), rgba(19, 127, 120, 0.18));
}

.snapshot-chart span:nth-child(1) {
  height: 42%;
}

.snapshot-chart span:nth-child(2) {
  height: 62%;
  background: linear-gradient(180deg, rgba(77, 126, 194, 0.78), rgba(77, 126, 194, 0.16));
}

.snapshot-chart span:nth-child(3) {
  height: 82%;
}

.snapshot-chart span:nth-child(4) {
  height: 56%;
  background: linear-gradient(180deg, rgba(200, 145, 47, 0.78), rgba(200, 145, 47, 0.16));
}

.snapshot-orders {
  align-content: center;
}

.snapshot-row.muted {
  opacity: 0.72;
}

.snapshot-toggle {
  justify-content: start;
}

.snapshot-toggle span {
  width: 28px;
  height: 16px;
  border-radius: 999px;
  background: rgba(20, 25, 31, 0.16);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.72);
}

.snapshot-toggle.active span {
  background: var(--teal);
}

.snapshot-avatars {
  display: flex;
}

.snapshot-avatars span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-right: -7px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.snapshot-avatars span:nth-child(2) {
  background: var(--teal-dark);
}

.snapshot-avatars span:nth-child(3) {
  color: var(--ink);
  background: var(--surface-warm);
}

.snapshot-integrations {
  align-content: center;
}

.snapshot-template,
.snapshot-palette,
.snapshot-community {
  align-content: center;
}

.snapshot-template-grid,
.snapshot-swatch-row {
  display: grid;
  gap: 8px;
}

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

.snapshot-template-grid span {
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(20, 25, 31, 0.08);
  border-radius: var(--radius-sm);
  color: var(--ink-mid);
  background: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 850;
}

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

.snapshot-swatch-row span {
  min-height: 58px;
  border: 1px solid rgba(20, 25, 31, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--teal), var(--sky));
}

.snapshot-swatch-row span:nth-child(2) {
  background: linear-gradient(145deg, var(--gold), var(--coral));
}

.snapshot-swatch-row span:nth-child(3) {
  background: linear-gradient(145deg, var(--plum), var(--blue));
}

.snapshot-swatch-row span:nth-child(4) {
  background: linear-gradient(145deg, var(--ink), var(--teal-dark));
}

.snapshot-integration-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 11px;
  border: 1px solid rgba(20, 25, 31, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.snapshot-integration-row b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: white;
  background: var(--teal-dark);
  font-size: 12px;
}

.snapshot-integration-row strong {
  min-width: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}

.snapshot-integration-row span {
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.25;
}

.snapshot-integration-row.slack b {
  background: #5b4bb2;
}

.snapshot-integration-row.discord b {
  background: #5665e9;
}

.feature-control-card {
  display: grid;
  gap: 8px;
  color: white;
  background:
    linear-gradient(155deg, rgba(20, 25, 31, 0.96), rgba(19, 127, 120, 0.9));
  box-shadow: var(--shadow-strong);
}

.feature-control-card small {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 850;
  text-transform: uppercase;
}

.feature-control-card strong {
  font-size: 24px;
  line-height: 1.14;
}

.feature-control-card p {
  color: rgba(255, 255, 255, 0.74);
}

.ab-test-workflow-stack .feature-control-card {
  background:
    linear-gradient(155deg, rgba(20, 25, 31, 0.96), rgba(19, 127, 120, 0.9)),
    var(--ink);
}

.ab-test-term-card {
  display: grid;
  gap: 12px;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(226, 247, 244, 0.82));
}

.ab-test-term-card small {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.ab-test-term-card > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ab-test-term-card strong {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 12px;
  border: 1px solid rgba(19, 127, 120, 0.18);
  border-radius: var(--radius-sm);
  background: white;
  font-size: 18px;
  line-height: 1.1;
  text-align: center;
}

.ab-test-term-card p {
  color: var(--ink-muted);
}

.smart-fix-flow-panel {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 16px;
  align-self: start;
  padding: 18px;
  border: 1px solid rgba(20, 25, 31, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 251, 253, 0.82)),
    linear-gradient(135deg, rgba(19, 127, 120, 0.12), rgba(200, 145, 47, 0.12));
  box-shadow: var(--shadow-strong);
}

.smart-fix-flow-panel small,
.smart-fix-fact-grid span,
.smart-fix-review-plan span,
.smart-fix-benefits span {
  color: var(--teal-dark);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
  text-transform: uppercase;
}

.smart-fix-flow-header {
  display: grid;
  gap: 7px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(20, 25, 31, 0.1);
}

.smart-fix-flow-header strong {
  color: var(--ink);
  font-size: 30px;
  line-height: 1.08;
}

.smart-fix-flow-header span {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.4;
}

.smart-fix-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.smart-fix-fact-grid div {
  min-width: 0;
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 11px;
  border: 1px solid rgba(20, 25, 31, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.smart-fix-fact-grid span {
  color: var(--ink-muted);
  font-size: 10px;
  overflow-wrap: anywhere;
}

.smart-fix-fact-grid strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.05;
}

.smart-fix-review-plan {
  display: grid;
  gap: 12px;
}

.smart-fix-review-plan > div {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.smart-fix-review-plan span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--teal-dark);
}

.smart-fix-review-plan > div:nth-child(2) span {
  background: var(--gold);
}

.smart-fix-review-plan > div:nth-child(3) span {
  background: var(--blue);
}

.smart-fix-review-plan strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.smart-fix-review-plan p {
  margin-top: 4px;
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.45;
}

.smart-fix-preview {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(20, 25, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.smart-fix-preview-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 58% 38%, rgba(255, 255, 255, 0.9) 0 9%, transparent 10%),
    linear-gradient(135deg, rgba(115, 90, 143, 0.84), rgba(77, 126, 194, 0.78) 48%, rgba(19, 127, 120, 0.72));
}

.smart-fix-preview-image span {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 18%;
  height: 36%;
  border-radius: 999px 999px 14px 14px;
  background:
    linear-gradient(90deg, transparent 16%, rgba(255, 255, 255, 0.68) 17% 23%, transparent 24%),
    linear-gradient(180deg, #d9f3f0, #8dc6bd);
  box-shadow: inset 0 -8px 0 rgba(20, 25, 31, 0.1);
}

.smart-fix-preview-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.smart-fix-preview-copy strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.smart-fix-preview-copy p {
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.35;
}

.smart-fix-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.smart-fix-actions span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
}

.smart-fix-actions span + span {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.smart-fix-benefits {
  display: grid;
  gap: 9px;
  padding-top: 2px;
}

.smart-fix-benefits div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(20, 25, 31, 0.1);
}

.smart-fix-benefits strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.integrations-story-panel {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 16px;
  align-self: start;
  padding: 18px;
  border: 1px solid rgba(20, 25, 31, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 251, 253, 0.84)),
    linear-gradient(135deg, rgba(19, 127, 120, 0.12), rgba(77, 126, 194, 0.1));
  box-shadow: var(--shadow-strong);
}

.integration-story-header {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: var(--radius);
  color: white;
  background:
    linear-gradient(150deg, rgba(20, 25, 31, 0.98), rgba(15, 128, 118, 0.9) 54%, rgba(77, 126, 194, 0.82));
}

.integration-story-header small,
.integration-route-card span,
.integration-event-rail span {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
  text-transform: uppercase;
}

.integration-story-header small {
  color: rgba(255, 255, 255, 0.68);
}

.integration-story-header strong {
  color: white;
  font-size: 28px;
  line-height: 1.08;
}

.integration-story-header p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.45;
}

.integration-route-list {
  display: grid;
  gap: 10px;
}

.integration-route-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(20, 25, 31, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.integration-route-card span {
  min-height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: white;
  background: var(--teal-dark);
  text-align: center;
}

.integration-route-card.slack span {
  background: #5b4bb2;
}

.integration-route-card.discord span {
  background: #5665e9;
}

.integration-route-card strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
}

.integration-route-card p {
  margin-top: 5px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.45;
}

.integration-event-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.integration-event-rail span {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 8px 9px;
  border: 1px solid rgba(20, 25, 31, 0.08);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(15, 128, 118, 0.08);
  text-align: center;
}

.photo-tools-story-panel {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 16px;
  align-self: start;
}

.photo-story-header,
.photo-story-proof,
.photo-story-polish,
.photo-story-tip {
  border: 1px solid rgba(20, 25, 31, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-story-header {
  display: grid;
  gap: 8px;
  padding: 20px;
  color: white;
  background:
    linear-gradient(150deg, rgba(20, 25, 31, 0.98), rgba(16, 94, 96, 0.92) 58%, rgba(77, 126, 194, 0.84));
}

.photo-story-header small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
  text-transform: uppercase;
}

.photo-story-header strong {
  color: white;
  font-size: 27px;
  line-height: 1.1;
}

.photo-story-header p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.45;
}

.photo-story-proof {
  overflow: hidden;
  display: grid;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 253, 0.84));
}

.photo-story-proof img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  object-position: 50% 45%;
  background: #10151a;
}

.photo-story-overlay img {
  height: 240px;
  object-position: 50% 52%;
}

.photo-story-proof figcaption {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 12px;
  padding: 16px;
}

.photo-story-proof figcaption span,
.photo-story-polish > span,
.photo-story-tip > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  grid-row: span 2;
  border-radius: 999px;
  color: white;
  background: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
}

.photo-story-overlay figcaption span {
  background: var(--gold);
}

.photo-story-proof strong,
.photo-story-polish strong,
.photo-story-tip strong {
  min-width: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.22;
}

.photo-story-proof p,
.photo-story-polish p,
.photo-story-tip p {
  grid-column: 2;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.45;
}

.photo-story-polish,
.photo-story-tip {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255, 247, 234, 0.86), rgba(255, 255, 255, 0.9));
}

.photo-story-polish > span {
  background: var(--blue);
}

.photo-story-tip > span {
  background: var(--plum);
}

.photo-story-polish div,
.photo-story-tip div {
  display: grid;
  gap: 5px;
}

.photo-story-polish p,
.photo-story-tip p {
  grid-column: auto;
}

.showpiece-points,
.benefit-stack {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.showpiece-points div,
.benefit-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
}

.showpiece-points strong,
.benefit-card span {
  display: block;
  color: var(--ink);
  font-weight: 850;
}

.showpiece-points span {
  display: block;
  margin-top: 5px;
  color: var(--ink-muted);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.logo-pill {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: white;
  background: var(--ink);
  font-weight: 850;
}

.logo-pill span:not(.logo-mark) {
  color: var(--ink-muted);
}

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

.process-card {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.process-card > span,
.deal-badge {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(15, 128, 118, 0.1);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.process-card .product-visual {
  margin-top: auto;
}

.process-card .product-visual .visual-stage {
  min-height: 270px;
  max-height: 290px;
  align-items: start;
  overflow: hidden;
  padding-top: 12px;
  border-radius: var(--radius);
}

.process-card .product-visual .visual-stage::before {
  inset: 0;
  transform: none;
}

.process-card .product-visual .screenshot-phone.primary {
  width: min(74%, 230px);
  border-width: 7px;
  border-radius: 28px;
}

.process-card .product-visual .visual-floating-card {
  display: none;
}

.plan-preview {
  display: grid;
  gap: 10px;
}

.plan-preview div {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.plan-preview .featured {
  background: var(--ink);
  color: white;
}

.plan-preview span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.pricing-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.pricing-teaser-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pricing-teaser-card h3 {
  font-size: 44px;
  line-height: 1;
}

.pricing-teaser-card ul {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding-left: 20px;
  color: var(--ink-mid);
  line-height: 1.5;
}

.pricing-teaser-card .button {
  margin-top: auto;
}

.pricing-teaser-card.featured {
  color: white;
  background:
    linear-gradient(155deg, rgba(20, 25, 31, 0.97), rgba(19, 127, 120, 0.9));
  border-color: rgba(20, 25, 31, 0.16);
  box-shadow: var(--shadow-strong);
}

.pricing-teaser-card.featured p,
.pricing-teaser-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-teaser-card.featured small {
  color: rgba(255, 255, 255, 0.68);
}

.pricing-teaser-card.featured .deal-badge {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
}

.pricing-teaser-card.featured .button {
  color: var(--ink);
  background: white;
  border-color: white;
}

.pricing-assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.pricing-assurance-grid div,
.pricing-footnote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.pricing-assurance-grid div {
  min-height: 124px;
  padding: 18px;
}

.pricing-assurance-grid strong,
.pricing-footnote strong {
  display: block;
  color: var(--ink);
  font-weight: 850;
}

.pricing-assurance-grid span,
.pricing-footnote span {
  display: block;
  margin-top: 7px;
  color: var(--ink-muted);
  line-height: 1.45;
}

.pricing-footnote {
  display: grid;
  grid-template-columns: 0.36fr minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 16px;
}

.quote-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-card p {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.5;
}

.quote-card footer {
  margin-top: 22px;
  font-weight: 850;
}

.quote-card span {
  display: block;
  margin-top: 4px;
  color: var(--ink-muted);
  font-weight: 650;
}

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

.results-strip div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.results-strip strong {
  font-size: 38px;
  line-height: 1;
}

.results-strip span {
  color: var(--ink-muted);
  line-height: 1.35;
}

.faq-blog-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details.panel {
  padding: 0;
  overflow: hidden;
}

details summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 850;
  list-style-position: outside;
}

details div {
  padding: 0 22px 20px;
}

.blog-stack {
  gap: 12px;
}

.article-row {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  color: var(--ink);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.article-row strong,
.article-row em {
  display: block;
}

.article-row strong {
  margin-top: 5px;
  font-size: 18px;
  font-style: normal;
}

.article-row em {
  margin-top: 5px;
  color: var(--ink-muted);
  font-style: normal;
  line-height: 1.4;
}

.article-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  color: var(--ink);
}

.article-card .product-visual {
  margin: -10px -10px 6px;
}

.editorial-card {
  min-height: 410px;
}

.article-card-visual {
  min-height: 142px;
  display: grid;
  gap: 10px;
  align-content: center;
  margin: -8px -8px 4px;
  padding: 18px;
  border: 1px solid rgba(20, 25, 31, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(20, 25, 31, 0.92), rgba(19, 127, 120, 0.84)),
    linear-gradient(90deg, rgba(255, 247, 234, 0.18), rgba(255, 255, 255, 0));
  box-shadow: 0 18px 36px rgba(31, 60, 82, 0.12);
}

.article-screen-line,
.article-screen-row {
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.article-screen-line {
  width: 74%;
  height: 14px;
}

.article-screen-line.short {
  width: 46%;
  opacity: 0.58;
}

.article-screen-row {
  height: 52px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0 28%, rgba(255, 255, 255, 0.46) 29% 100%);
}

.article-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.article-meta-row em,
.article-meta-row strong {
  font-style: normal;
  font-weight: 850;
}

.article-meta-row em {
  color: var(--ink-muted);
}

.article-meta-row strong {
  color: var(--teal-dark);
}

.text-link {
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 850;
}

.price-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card.featured {
  color: white;
  background:
    linear-gradient(160deg, rgba(15, 128, 118, 0.94), rgba(20, 32, 29, 0.96));
  border-color: rgba(15, 128, 118, 0.42);
  box-shadow: var(--shadow-strong);
}

.price-card.featured p,
.price-card.featured li,
.price-card.featured .limit-list span {
  color: rgba(255, 255, 255, 0.78);
}

.price-card.featured .button {
  color: var(--ink);
  background: white;
  border-color: white;
}

.price-card ul,
.rich-copy ul,
.rich-copy ol {
  padding-left: 20px;
  margin: 0;
  color: var(--ink-mid);
  line-height: 1.65;
}

.price-card li + li {
  margin-top: 8px;
}

.limit-list {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.limit-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(20, 32, 29, 0.12);
}

.price-card.featured .limit-list div {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.limit-list span {
  color: var(--ink-muted);
}

.rich-copy {
  font-size: 18px;
}

.rich-copy > * + * {
  margin-top: 18px;
}

.editorial-panel {
  background: rgba(255, 255, 255, 0.76);
}

.feature-detail-copy-stack .editorial-panel {
  padding: clamp(22px, 3vw, 32px);
}

.feature-detail-copy-stack .rich-copy {
  font-size: 17px;
}

.feature-copy-intro,
.feature-copy-section {
  display: grid;
  gap: 10px;
}

.feature-copy-intro {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(20, 25, 31, 0.1);
}

.feature-copy-intro > p:first-child {
  max-width: 27ch;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.feature-copy-intro > p:first-child strong {
  font-weight: 800;
}

.feature-copy-intro > p:not(:first-child),
.feature-copy-section p {
  max-width: 64ch;
}

.feature-copy-section {
  padding-top: 4px;
}

.feature-copy-section + .feature-copy-section {
  margin-top: 4px;
  padding-top: 22px;
  border-top: 1px solid rgba(20, 25, 31, 0.1);
}

.editorial-panel .feature-copy-section h2 {
  margin-top: 0;
  max-width: 24ch;
  font-size: 24px;
}

.editorial-panel h2,
.editorial-panel h3 {
  margin-top: 28px;
  margin-inline: 0;
  text-align: left;
}

.editorial-panel h2 {
  max-width: 22ch;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.18;
  font-weight: 760;
}

.editorial-panel h3 {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.26;
  font-weight: 760;
}

.editorial-panel h2:first-child,
.editorial-panel h3:first-child {
  margin-top: 0;
}

.editorial-panel > p:first-child:has(> strong:first-child) {
  margin-inline: auto;
  text-align: center;
}

.benefit-stack {
  margin-top: 0;
}

.benefit-card {
  box-shadow: var(--shadow);
}

.benefit-card h2 {
  margin-top: 8px;
  font-size: 22px;
}

.article-layout,
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
}

.article-aside,
.about-principles,
.support-contact-stack,
.support-article-main {
  display: grid;
  gap: 14px;
  align-content: start;
}

.article-aside-card {
  display: grid;
  gap: 8px;
}

.article-aside-card small,
.guide-checklist small,
.about-principle-card small {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.article-aside-card strong,
.about-principle-card strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
}

.article-aside-card p,
.about-principle-card p {
  color: var(--ink-muted);
}

.link-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.link-card:hover,
.link-card:focus {
  border-color: rgba(15, 128, 118, 0.36);
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(20, 32, 29, 0.15);
}

.guide-checklist {
  display: grid;
  gap: 12px;
}

.guide-checklist div,
.contact-route-list div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.guide-checklist strong,
.guide-checklist span,
.contact-route-list strong,
.contact-route-list span {
  display: block;
}

.guide-checklist span,
.contact-route-list span {
  margin-top: 4px;
  color: var(--ink-muted);
  line-height: 1.4;
}

.contact-route-list {
  display: grid;
  gap: 10px;
}

.about-principle-card {
  display: grid;
  gap: 8px;
}

.support-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.support-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 13px;
}

.support-topic-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.support-topic-row span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-mid);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 780;
}

.support-sidebar-list {
  display: grid;
  gap: 8px;
}

.support-sidebar-list span {
  display: block;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-muted);
  background: rgba(255, 255, 255, 0.62);
  line-height: 1.4;
}

.support-sidebar-list strong {
  display: block;
  color: var(--ink);
}

.support-guide-card {
  position: relative;
  min-height: 268px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--ink);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.support-guide-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(77, 126, 194, 0.16);
  border-radius: var(--radius);
  transform: rotate(7deg);
  background:
    linear-gradient(135deg, rgba(185, 223, 243, 0.42), rgba(255, 247, 234, 0.32));
  pointer-events: none;
}

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

.support-guide-card:hover,
.support-guide-card:focus {
  border-color: rgba(15, 128, 118, 0.36);
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(20, 32, 29, 0.15);
}

.guide-index {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(15, 128, 118, 0.1);
  font-size: 12px;
  font-weight: 850;
}

.support-guide-card h2 {
  max-width: 12ch;
  font-size: 32px;
  line-height: 1.05;
}

.guide-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.guide-footer em {
  color: var(--teal-dark);
  font-style: normal;
  font-weight: 850;
}

.guide-footer strong {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--ink);
}

.search-form,
.signup-form {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.hero-search {
  max-width: 640px;
  margin-inline: auto;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #7d8992;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(15, 128, 118, 0.54);
  box-shadow: 0 0 0 4px rgba(15, 128, 118, 0.1);
}

textarea {
  resize: vertical;
}

.form-panel {
  display: grid;
  gap: 14px;
}

.form-grid.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-heading {
  display: grid;
  gap: 8px;
}

.form-heading h2 {
  font-size: 28px;
}

.form-panel label > span {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 800;
}

.field-help {
  display: block;
  margin-top: 6px;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.35;
}

.required-mark {
  color: var(--teal-dark);
}

.form-panel button {
  justify-self: start;
}

.contact-panel {
  align-self: start;
  display: grid;
  gap: 14px;
}

.contact-panel > a,
.contact-panel p a {
  color: var(--teal-dark);
  font-weight: 850;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(135deg, rgba(15, 128, 118, 0.94), rgba(20, 32, 29, 1) 52%, rgba(115, 85, 127, 0.72));
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  pointer-events: none;
}

.cta-band p,
.cta-band .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.cta-band h2 {
  color: white;
}

.cta-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
}

.site-footer {
  padding: 54px 20px;
  color: rgba(255, 255, 255, 0.86);
  background: #0f1715;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, minmax(120px, 1fr));
  gap: 28px;
}

.footer-brand p {
  max-width: 420px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-legal {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal .disclaimer {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.5;
}

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

.footer-column h2 {
  font-size: 15px;
  color: white;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer .brand-mark {
  color: white;
}

.empty-state {
  min-height: 220px;
  display: grid;
  align-content: center;
  gap: 10px;
  border-style: dashed;
  text-align: center;
}

.product-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  isolation: isolate;
}

.hero-product-stage {
  position: relative;
  width: min(100%, 860px);
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-mini-card {
  position: absolute;
  z-index: 3;
  width: 230px;
  padding: 16px;
  border: 1px solid rgba(20, 25, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  text-align: left;
}

.hero-mini-card small {
  display: block;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-mini-card strong {
  display: block;
  margin-top: 5px;
  line-height: 1.25;
}

.hero-mini-card-right {
  right: 0;
  bottom: 19%;
}

.visual-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.visual-stage::before {
  content: "";
  position: absolute;
  inset: 10% 7% 8%;
  z-index: -1;
  border: 1px solid rgba(77, 126, 194, 0.13);
  border-radius: var(--radius);
  transform: rotate(-3deg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(185, 223, 243, 0.2)),
    linear-gradient(90deg, rgba(255, 247, 234, 0.62), rgba(255, 255, 255, 0));
  box-shadow: 0 28px 80px rgba(77, 126, 194, 0.12);
}

.screenshot-phone {
  overflow: hidden;
  border: 12px solid #10151a;
  border-radius: 42px;
  background: #10151a;
  box-shadow: var(--shadow-strong);
}

.screenshot-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-stage .screenshot-phone.primary {
  width: min(100%, 410px);
  aspect-ratio: 1206 / 2622;
}

.dashboard-stage {
  min-height: 620px;
  grid-template-columns: 1fr 0.72fr;
  gap: 18px;
  align-items: center;
}

.dashboard-stage .screenshot-phone.primary {
  width: min(100%, 330px);
  aspect-ratio: 1206 / 2622;
  justify-self: end;
}

.dashboard-stage .screenshot-phone.secondary {
  width: min(100%, 245px);
  aspect-ratio: 1206 / 2622;
  justify-self: start;
  transform: translateY(34px);
  opacity: 0.96;
}

.product-stage {
  min-height: 500px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.75), rgba(255, 248, 234, 0.88));
  box-shadow: var(--shadow-strong);
}

.product-photo {
  width: min(100%, 500px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(20, 32, 29, 0.13);
}

.product-visual.card .visual-stage,
.product-visual.thumb .visual-stage {
  min-height: auto;
}

.product-visual.card .visual-stage::before,
.product-visual.thumb .visual-stage::before {
  display: none;
}

.product-visual.card .screenshot-phone,
.product-visual.thumb .screenshot-phone {
  width: 100%;
  border-width: 7px;
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
}

.product-visual.card .screenshot-phone img {
  object-position: 50% 30%;
}

.product-visual.thumb .screenshot-phone {
  aspect-ratio: 1 / 1;
}

.product-visual.thumb .screenshot-phone img {
  object-position: 50% 18%;
}

.product-visual.card .visual-floating-card,
.product-visual.thumb .visual-floating-card,
.product-visual.product .bottom-card {
  display: none;
}

.photo-tools-stage {
  align-items: center;
}

.feature-detail-hero .photo-tools-stage {
  min-height: 420px;
  height: 420px;
}

.photo-tools-stage::before {
  inset: 4% 2% 0;
  transform: rotate(2deg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(185, 223, 243, 0.3)),
    linear-gradient(120deg, rgba(19, 127, 120, 0.13), rgba(200, 145, 47, 0.14));
}

.photo-tools-visual-stack {
  position: relative;
  width: min(100%, 460px);
  min-height: 410px;
}

.photo-tools-shot {
  position: absolute;
  overflow: hidden;
  border: 10px solid #10151a;
  background: #10151a;
  box-shadow: var(--shadow-strong);
}

.photo-tools-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-tools-shot span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: white;
  background: rgba(12, 18, 23, 0.72);
  font-size: 12px;
  line-height: 1.15;
  font-weight: 850;
  text-align: center;
  backdrop-filter: blur(12px);
}

.photo-tools-safe-shot {
  left: 0;
  top: 0;
  width: 54%;
  aspect-ratio: 1131 / 2278;
  border-radius: 34px;
}

.photo-tools-overlay-shot {
  right: 0;
  bottom: 8px;
  width: 63%;
  aspect-ratio: 852 / 1053;
  border-radius: 30px;
}

.photo-tools-overlay-shot img {
  object-position: 50% 50%;
}

.photo-tools-floating-card {
  position: absolute;
  right: 8px;
  top: 18px;
  z-index: 3;
  width: min(58%, 240px);
  padding: 15px;
  border: 1px solid rgba(20, 25, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.photo-tools-floating-card small {
  display: block;
  color: var(--teal-dark);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 850;
  text-transform: uppercase;
}

.photo-tools-floating-card strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.12;
}


.ab-testing-stage {
  align-items: center;
}

.ab-testing-stage::before {
  inset: 5% 6% 1%;
  transform: rotate(2deg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(185, 223, 243, 0.28)),
    linear-gradient(120deg, rgba(19, 127, 120, 0.1), rgba(200, 145, 47, 0.12));
}

.ab-test-visual-shell {
  position: relative;
  width: min(100%, 382px);
  display: grid;
  gap: 13px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(21, 30, 36, 0.98), rgba(14, 52, 54, 0.96)),
    #11191f;
  box-shadow: var(--shadow-strong);
}

.ab-test-header,
.ab-test-variant,
.ab-test-scoreboard span {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.ab-test-header {
  display: grid;
  gap: 5px;
  padding: 15px;
}

.ab-test-header small,
.ab-test-scoreboard small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.ab-test-header strong {
  color: white;
  font-size: 22px;
  line-height: 1.15;
}

.ab-test-header span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.ab-test-variant-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.ab-test-variant {
  min-width: 0;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 4px 9px;
  padding: 12px;
}

.ab-test-variant b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  grid-row: span 2;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  font-size: 12px;
}

.ab-test-variant strong {
  min-width: 0;
  color: white;
  font-size: 13px;
  line-height: 1.2;
}

.ab-test-variant em {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-style: normal;
}

.ab-test-variant.active {
  border-color: rgba(55, 199, 189, 0.38);
  background: rgba(19, 127, 120, 0.22);
}

.ab-test-variant.active b {
  color: white;
  background: var(--teal);
}

.ab-test-photo {
  grid-column: 1 / -1;
  min-height: 86px;
  margin-top: 7px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
}

.current-photo {
  background:
    radial-gradient(circle at 54% 44%, rgba(255, 255, 255, 0.42) 0 15%, transparent 16%),
    linear-gradient(135deg, rgba(115, 90, 143, 0.72), rgba(77, 126, 194, 0.58));
}

.variant-photo {
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.74) 0 13%, transparent 14%),
    linear-gradient(135deg, rgba(255, 247, 234, 0.9), rgba(19, 127, 120, 0.58));
}

.ab-test-scoreboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ab-test-scoreboard span {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding: 11px;
}

.ab-test-scoreboard strong {
  color: white;
  font-size: 16px;
  line-height: 1.15;
}

.hero-visual-wrap {
  min-height: 640px;
  display: grid;
  align-items: center;
}

.visual-orbit {
  position: absolute;
  inset: 9% 2% 8%;
  z-index: -1;
  border: 1px solid rgba(15, 128, 118, 0.14);
  border-radius: var(--radius);
  transform: rotate(-4deg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(15, 128, 118, 0.08));
}

.device-shell {
  width: min(100%, 390px);
  aspect-ratio: 9 / 18;
  margin: 0 auto;
  padding: 14px;
  border-radius: 38px;
  background: linear-gradient(145deg, #111b18, #28312d);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-strong);
}

.device-screen {
  height: 100%;
  overflow: hidden;
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(15, 128, 118, 0.18), rgba(255, 255, 255, 0) 40%),
    #edf4ef;
}

.device-status {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.device-status span {
  width: 42px;
  height: 8px;
  border-radius: 999px;
  background: rgba(20, 32, 29, 0.13);
}

.screen-hero-card,
.screen-metric-grid div,
.screen-list div {
  border: 1px solid rgba(20, 32, 29, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.screen-hero-card {
  padding: 16px;
}

.screen-hero-card small,
.screen-list small {
  display: block;
  color: var(--teal-dark);
  font-weight: 760;
}

.screen-hero-card strong {
  display: block;
  margin-top: 7px;
  font-size: 20px;
}

.screen-progress {
  height: 8px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(20, 32, 29, 0.08);
}

.screen-progress span {
  display: block;
  width: 68%;
  height: 100%;
  background: var(--teal);
}

.screen-metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.screen-metric-grid div {
  padding: 13px;
}

.screen-metric-grid strong {
  display: block;
  font-size: 24px;
}

.screen-metric-grid span,
.screen-list small {
  color: var(--ink-muted);
}

.screen-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.screen-list div {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 13px;
}

.screen-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.screen-dot.teal {
  background: var(--teal);
}

.screen-dot.gold {
  background: var(--gold);
}

.screen-dot.blue {
  background: var(--blue);
}

.visual-floating-card {
  position: absolute;
  z-index: 2;
  min-width: 172px;
  padding: 15px;
  border: 1px solid rgba(20, 25, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.visual-floating-card small {
  display: block;
  color: var(--ink-muted);
}

.visual-floating-card strong {
  display: block;
  margin-top: 4px;
}

.visual-floating-card.dark-card {
  color: white;
  background: rgba(20, 25, 31, 0.94);
  border-color: rgba(255, 255, 255, 0.14);
}

.visual-floating-card.dark-card small {
  color: rgba(255, 255, 255, 0.68);
}

.top-card {
  top: 18%;
  left: 8%;
}

.bottom-card {
  right: 8%;
  bottom: 13%;
}

.product-visual.dashboard .device-shell {
  width: min(100%, 520px);
  aspect-ratio: 16 / 11;
  border-radius: 28px;
}

.product-visual.dashboard .device-screen {
  border-radius: 18px;
}

.product-visual.dashboard .visual-floating-card {
  display: none;
}

.product-visual.card .device-shell,
.product-visual.thumb .device-shell {
  width: 100%;
  padding: 9px;
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
}

.product-visual.card .device-screen,
.product-visual.thumb .device-screen {
  padding: 12px;
  border-radius: var(--radius);
}

.product-visual.card .visual-floating-card,
.product-visual.card .visual-orbit,
.product-visual.thumb .visual-floating-card,
.product-visual.thumb .visual-orbit {
  display: none;
}

.product-visual.thumb .device-shell {
  aspect-ratio: 1 / 1;
}

.product-visual.thumb .screen-metric-grid,
.product-visual.thumb .screen-list,
.product-visual.thumb .screen-progress {
  display: none;
}

.product-visual.thumb .screen-hero-card {
  min-height: 100%;
}

.hero-section .hero-visual-wrap,
.hero-section .hero-product-stage,
.hero-section .visual-stage {
  min-height: clamp(430px, 44vw, 560px);
}

.hero-section .phone-stage .screenshot-phone.primary {
  width: min(100%, clamp(260px, 22vw, 310px));
}

@media (max-width: 1080px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-grid,
  .split-section,
  .cta-grid,
  .showpiece-grid,
  .faq-blog-grid,
  .support-layout,
  .article-layout,
  .feature-detail-body-grid,
  .about-layout,
  .pricing-footnote {
    grid-template-columns: 1fr;
  }

  .support-sidebar {
    position: static;
  }

  .smart-fix-flow-panel,
  .integrations-story-panel,
  .photo-tools-story-panel {
    position: static;
  }

  .card-grid.three,
  .app-story-grid,
  .pricing-grid,
  .pricing-assurance-grid,
  .pricing-teaser-grid,
  .process-grid,
  .logo-strip,
  .proof-row,
  .results-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bento-card,
  .bento-card:nth-child(1),
  .bento-card:nth-child(2) {
    grid-column: span 3;
  }

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

@media (max-width: 760px) {
  .site-header {
    padding-inline: 12px;
    top: 8px;
  }

  .nav-shell {
    min-height: 58px;
    border-radius: 32px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
  }

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

  .nav-dropdown {
    display: grid;
    gap: 4px;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-panel {
    position: static;
    width: 100%;
    padding: 4px 0 0 10px;
    border: 0;
    border-left: 1px solid rgba(19, 127, 120, 0.16);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
    backdrop-filter: none;
  }

  .nav-mega-menu {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    max-height: min(68vh, 560px);
    overflow-y: auto;
  }

  .nav-mega-menu .nav-dropdown-overview {
    grid-row: auto;
    min-height: 0;
    padding: 10px;
  }

  .nav-feature-group {
    gap: 5px;
  }

  .nav-feature-group p {
    padding-inline: 10px;
  }

  .nav-feature-list a:not(.button) {
    min-height: 34px;
    padding-inline: 10px;
  }

  .nav-dropdown:hover .nav-dropdown-panel,
  .nav-dropdown:focus-within .nav-dropdown-panel {
    transform: none;
  }

  h1 {
    font-size: 36px;
    max-width: 100%;
  }

  h2 {
    font-size: 25px;
  }

  .hero-section,
  .page-hero,
  .section,
  .cta-band {
    padding: 58px 16px;
  }

  .hero-section {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-subtitle {
    font-size: 21px;
  }

  .hero-lede,
  .page-hero p,
  .section-heading p {
    font-size: 17px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-stack .metric-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    margin-top: 10px;
    gap: 8px;
  }

  .metric-strip,
  .app-story-grid,
  .smart-fix-actions,
  .card-grid.three,
  .card-grid.two,
  .article-grid,
  .article-grid.compact-grid,
  .feature-detail-body-grid,
  .pricing-grid,
  .pricing-assurance-grid,
  .pricing-teaser-grid,
  .process-grid,
  .logo-strip,
  .proof-row,
  .results-strip,
  .footer-grid,
  .screen-metric-grid {
    grid-template-columns: 1fr;
  }

  .metric-strip div {
    min-height: 132px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding: 10px;
  }

  .metric-visual {
    height: 38px;
    margin-bottom: 0;
  }

  .metric-strip strong,
  .metric-strip .metric-copy {
    grid-column: auto;
  }

  .metric-strip strong {
    align-self: auto;
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .metric-strip .metric-copy {
    align-self: auto;
    margin-top: 2px;
    font-size: 11px;
    line-height: 1.28;
  }

  .form-grid.two-column {
    grid-template-columns: 1fr;
  }

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

  .integration-route-card {
    grid-template-columns: 1fr;
  }

  .integration-route-card span {
    width: fit-content;
    min-width: 76px;
    padding-inline: 12px;
  }

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

  .smart-fix-flow-header strong {
    font-size: 26px;
  }

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

  .bento-card,
  .bento-card:nth-child(1),
  .bento-card:nth-child(2) {
    grid-column: auto;
    min-height: 280px;
  }

  .support-guide-card h2 {
    max-width: none;
    font-size: 27px;
  }

  .search-form,
  .signup-form {
    flex-direction: column;
  }

  .hero-visual-wrap {
    min-height: 520px;
  }

  .hero-stack {
    gap: 18px;
  }

  .hero-stack .hero-visual-wrap {
    min-height: auto;
    margin-top: -4px;
  }

  .hero-product-stage {
    min-height: auto;
    gap: 12px;
  }

  .hero-section .hero-visual-wrap,
  .hero-section .hero-product-stage,
  .hero-section .visual-stage {
    min-height: auto;
  }

  .hero-section .phone-stage .screenshot-phone.primary {
    width: min(100%, 248px);
  }

  .hero-section .visual-floating-card,
  .hero-section .hero-mini-card {
    display: none;
  }

  .hero-mini-card {
    position: static;
    width: min(100%, 330px);
    margin: 0 auto;
  }

  .visual-stage,
  .dashboard-stage,
  .product-stage {
    min-height: auto;
  }

  .dashboard-stage {
    grid-template-columns: 1fr;
  }

  .dashboard-stage .screenshot-phone.primary,
  .dashboard-stage .screenshot-phone.secondary,
  .phone-stage .screenshot-phone.primary {
    width: min(100%, 300px);
    justify-self: center;
  }

  .dashboard-stage .screenshot-phone.secondary {
    display: none;
  }

  .device-shell {
    width: min(100%, 330px);
  }

  .visual-floating-card {
    position: static;
    width: min(100%, 330px);
    margin: 12px auto 0;
  }

  .feature-detail-hero .phone-stage .visual-floating-card {
    width: min(100%, 330px);
  }

  .ab-test-visual-shell {
    width: min(100%, 330px);
    padding: 14px;
    border-radius: 28px;
  }

  .ab-test-variant-grid,
  .ab-test-scoreboard {
    grid-template-columns: 1fr;
  }

  .feature-detail-hero .photo-tools-stage {
    min-height: 360px;
    height: auto;
  }

  .photo-tools-visual-stack {
    width: min(100%, 330px);
    min-height: 340px;
  }

  .photo-tools-shot {
    border-width: 8px;
  }

  .photo-tools-shot span {
    left: 8px;
    right: 8px;
    bottom: 8px;
    min-height: 30px;
    padding: 6px 8px;
    font-size: 11px;
  }

  .photo-tools-floating-card {
    right: 0;
    top: 8px;
    width: 190px;
    padding: 12px;
  }

  .photo-tools-floating-card strong {
    font-size: 18px;
  }

  .photo-story-proof img {
    height: 240px;
  }

  .photo-story-overlay img {
    height: 220px;
  }

  .photo-story-proof figcaption,
  .photo-story-polish,
  .photo-story-tip {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 14px;
  }

  .photo-story-proof figcaption span,
  .photo-story-polish > span,
  .photo-story-tip > span {
    width: 34px;
    height: 34px;
  }

  .visual-orbit {
    display: none;
  }

  .article-row {
    grid-template-columns: 92px minmax(0, 1fr);
    padding: 14px;
  }

  .app-story-card img {
    min-height: 460px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .feature-card,
  .article-card,
  .bento-card,
  .article-row,
  .button,
  button.button {
    transition: none;
  }
}
