/* Homepage, SaaS product marketing layout */

.page-home.saas-home {
  --ink: #07070a;
  --ink-elevated: #121218;
  --paper: #f4f3f8;
  --paper-card: #ffffff;
  --muted: #64647a;
  --line: rgba(255, 255, 255, 0.1);
  --line-light: #e6e4ef;
  --accent: #f5a623;
  --accent-2: #8b5cf6;
  --accent-glow: rgba(245, 166, 35, 0.45);
  --violet-glow: rgba(139, 92, 246, 0.35);
  --radius: 16px;
  --radius-lg: 24px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --nav-h: 72px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  overflow-x: hidden;
}

.page-home.saas-home a:not(.btn-primary):not(.btn-secondary) {
  color: inherit;
}

.page-home .shell {
  /* width/padding from site-chrome.css + mobile.css */
}

.page-home.saas-home {
  padding-top: 0;
}

/* Ambient background */
.saas-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.saas-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 7, 10, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 7, 10, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 70%, transparent);
}

.saas-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orb-drift 18s ease-in-out infinite alternate;
}

.saas-bg__orb--1 {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -80px;
  background: var(--accent-glow);
}

.saas-bg__orb--2 {
  width: 400px;
  height: 400px;
  bottom: 20%;
  left: -100px;
  background: var(--violet-glow);
  animation-delay: -6s;
}

@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-30px, 24px) scale(1.08); }
}

/* Nav */
.saas-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, backdrop-filter 0.25s;
}

.saas-nav.is-scrolled {
  background: rgba(7, 7, 10, 0.82);
  backdrop-filter: blur(14px);
  border-color: var(--line);
}

.saas-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.saas-nav .brand {
  display: flex;
  line-height: 0;
  text-decoration: none;
}

.saas-nav .brand img {
  height: 34px;
  width: auto;
}

.saas-nav .nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.875rem;
  font-weight: 500;
}

.saas-nav .nav-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.15s;
}

.saas-nav .nav-links a:hover { color: #fff; }

.saas-nav .nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-ghost-nav {
  padding: 9px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 999px;
}

.btn-ghost-nav:hover { color: #fff; }

.btn-nav-cta {
  padding: 10px 18px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(135deg, #ffd080, var(--accent));
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 24px var(--accent-glow);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

/* Hero */
.saas-hero {
  position: relative;
  z-index: 1;
  padding: var(--nav-h) 0 32px;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

@media (min-width: 769px) {
  .page-home .saas-hero {
    padding-top: var(--nav-h);
    padding-bottom: 12px;
  }

  .page-home .trust-strip.shell {
    margin-top: 8px;
    padding-top: 16px;
    padding-bottom: 18px;
  }

  .page-home .hero-grid {
    gap: 28px;
    align-items: start;
  }

  .page-home .hero-pill {
    padding: 6px 12px 6px 8px;
    font-size: 0.6875rem;
  }

  .page-home .saas-hero h1 {
    margin-top: 10px;
    font-size: clamp(1.9rem, 2.8vw, 2.85rem);
    line-height: 1.08;
    max-width: 20ch;
  }

  .page-home .gradient-text {
    display: inline;
  }

  .page-home .hero-lead {
    margin-top: 10px;
    font-size: 0.9375rem;
    line-height: 1.55;
    max-width: 42ch;
  }

  .page-home .hero-actions {
    margin-top: 14px;
    gap: 8px;
  }

  .page-home .hero-actions .btn-primary,
  .page-home .hero-actions .btn-secondary {
    padding: 12px 20px;
    font-size: 0.875rem;
  }

  .page-home .hero-visual {
    min-height: 0;
    margin-top: 4px;
  }

  .page-home .browser-bar {
    padding: 8px 12px;
  }

  .page-home .browser-screen {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .page-home .float-card {
    padding: 8px 12px;
    font-size: 0.8125rem;
  }

  .page-home .float-card--a {
    top: 4%;
    left: -4%;
  }

  .page-home .float-card--b {
    bottom: 8%;
    right: -2%;
  }
}

.saas-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 0%, rgba(139, 92, 246, 0.2), transparent 55%),
    radial-gradient(ellipse 60% 45% at 0% 80%, rgba(245, 166, 35, 0.15), transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 960px) {
  .page-home .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .page-home .hero-visual {
    display: none;
  }

  .page-home .saas-hero h1 {
    max-width: none;
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.8);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.saas-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-top: 16px;
  max-width: 18ch;
}

.gradient-text {
  display: block;
  background: linear-gradient(120deg, #ffd080 0%, var(--accent) 40%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin-top: 14px;
  max-width: 44ch;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

a.btn-primary,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  color: var(--ink);
  background: linear-gradient(135deg, #ffe4a8, var(--accent));
  box-shadow: 0 8px 32px var(--accent-glow);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}

a.btn-primary:hover,
.btn-primary:hover {
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--accent-glow);
  filter: brightness(1.03);
}

a.btn-secondary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

a.btn-secondary:hover,
.btn-secondary:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.16);
}

/* Secondary on light sections (pricing teaser, etc.) */
.pricing-teaser-inner a.btn-secondary,
.saas-section--light a.btn-secondary {
  color: var(--ink);
  border-color: var(--line-light);
  background: var(--paper-card);
}

.pricing-teaser-inner a.btn-secondary:hover,
.saas-section--light a.btn-secondary:hover {
  color: var(--ink);
  border-color: #c8c4d8;
  background: #fff;
}

.hero-metrics {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.hero-metrics .metric strong {
  display: block;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-metrics .metric span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
  display: block;
}

/* Homepage hero, phone */
@media (max-width: 768px) {
  .page-home .saas-hero {
    padding: 12px 0 16px;
  }

  .page-home .hero-pill {
    font-size: 0.6875rem;
    padding: 6px 12px 6px 8px;
    line-height: 1.35;
    max-width: 100%;
  }

  .page-home .saas-hero h1 {
    margin-top: 14px;
    font-size: clamp(1.625rem, 6.5vw, 2.125rem);
    line-height: 1.18;
    max-width: none;
    text-wrap: balance;
  }

  .page-home .gradient-text {
    display: block;
    margin-top: 0.15em;
  }

  .page-home .hero-lead {
    margin-top: 12px;
    font-size: 0.9375rem;
    line-height: 1.55;
    max-width: none;
  }

  .page-home .hero-actions {
    margin-top: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .page-home .hero-actions a {
    width: 100%;
    justify-content: center;
  }

  .page-home .trust-strip {
    margin: 10px 12px 0;
    padding: 14px 12px;
    border-radius: 14px;
  }

  .page-home .trust-label {
    font-size: 0.6875rem;
  }

  .page-home .trust-tags {
    gap: 6px;
    margin-top: 12px;
  }

  .page-home .trust-tags span {
    font-size: 0.75rem;
    padding: 7px 11px;
  }
}

/* Hero mockup */
.hero-visual {
  position: relative;
  min-height: 0;
}

.mock-glow {
  position: absolute;
  inset: 10% 5%;
  background: linear-gradient(135deg, var(--accent-glow), var(--violet-glow));
  filter: blur(48px);
  border-radius: 40%;
  opacity: 0.7;
  animation: mock-pulse 4s ease-in-out infinite alternate;
}

@keyframes mock-pulse {
  from { opacity: 0.5; transform: scale(0.95); }
  to { opacity: 0.85; transform: scale(1.02); }
}

.browser-mock {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--ink-elevated);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 24px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-6deg) rotateX(4deg);
  transition: transform 0.5s ease;
}

.hero-visual:hover .browser-mock {
  transform: perspective(1200px) rotateY(-2deg) rotateX(2deg);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--line);
}

.browser-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.browser-bar .dot:nth-child(1) { background: #ff5f57; }
.browser-bar .dot:nth-child(2) { background: #febc2e; }
.browser-bar .dot:nth-child(3) { background: #28c840; }

.browser-url {
  margin-left: 8px;
  flex: 1;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.browser-screen {
  aspect-ratio: 16 / 9;
  min-height: 0;
  position: relative;
  overflow: hidden;
  background: #0a0a0f;
}

.browser-screen .mock-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.browser-screen .mock-slide.is-active { opacity: 1; }

.mock-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

.float-card {
  position: absolute;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(18, 18, 24, 0.92);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  animation: float-y 5s ease-in-out infinite;
}

.float-card strong {
  display: block;
  font-size: 0.875rem;
  margin-top: 2px;
}

.fc-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
}

.float-card--a {
  top: 8%;
  left: -8%;
  animation-delay: 0s;
}

.float-card--b {
  bottom: 12%;
  right: -6%;
  animation-delay: -2.5s;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 20px 28px;
  background: var(--paper-card);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(7, 7, 10, 0.08);
}

.hero-metrics--strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 16px;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--line-light);
  border-top: none;
}

.hero-metrics--strip .metric {
  text-align: center;
  padding: 10px 8px;
  border-radius: 10px;
  background: var(--paper);
  border: 1px solid var(--line-light);
}

.hero-metrics--strip .metric strong {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.hero-metrics--strip .metric span {
  display: block;
  margin-top: 2px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  line-height: 1.25;
}

@media (max-width: 768px) {
  .hero-metrics--strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .hero-metrics--strip .metric strong {
    font-size: 1.05rem;
  }
}

.trust-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-align: center;
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.trust-tags span {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-light);
}

/* Sections */
main {
  position: relative;
  z-index: 2;
}

.saas-section {
  padding: 88px 0;
}

.section-head.center {
  text-align: center;
  max-width: 56ch;
  margin-inline: auto;
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-top: 10px;
}

.section-sub {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .feature-grid { grid-template-columns: 1fr; }
}

.feature-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--paper-card);
  border: 1px solid var(--line-light);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 16px 48px rgba(7, 7, 10, 0.08);
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.15), rgba(139, 92, 246, 0.12));
  color: var(--accent-2);
  font-size: 1rem;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Bento */
.work-showcase {
  padding: 0 0 88px;
}

.work-showcase .head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 28px;
}

.work-showcase .head h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-top: 8px;
}

.work-showcase .head p {
  max-width: 40ch;
  color: var(--muted);
  font-size: 0.9375rem;
  margin-top: 8px;
}

.link-arrow {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-2);
  text-decoration: none;
}

.link-arrow::after {
  content: " →";
}

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

.bento {
  --bento-h: clamp(440px, 42vw, 560px);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "hero side-a" "hero side-b";
  gap: 16px;
  height: var(--bento-h);
}

@media (max-width: 820px) {
  .bento {
    grid-template-columns: 1fr;
    grid-template-areas: "hero" "side-a" "side-b";
    height: auto;
  }
}

.bento .tile {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: var(--ink-elevated);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(7, 7, 10, 0.12);
  transition: transform 0.25s, box-shadow 0.25s;
}

.bento .tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 56px rgba(7, 7, 10, 0.18);
}

.bento .tile--hero { grid-area: hero; }
.bento .tile--side-a { grid-area: side-a; }
.bento .tile--side-b { grid-area: side-b; }

@media (max-width: 820px) {
  .bento .tile--hero { min-height: 300px; }
  .bento .tile--side-a,
  .bento .tile--side-b { min-height: 200px; }
}

.bento .tile-media {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.bento .tile-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bento .tile:hover .tile-media img { transform: scale(1.04); }

.bento .tile .meta {
  flex: 0 0 92px;
  padding: 14px 18px;
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.bento .tile .tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.bento .tile h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 6px;
  letter-spacing: -0.02em;
}

.bento .tile p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Pricing teaser (links to pricing.html) */
.pricing-teaser {
  padding-top: 24px;
  padding-bottom: 24px;
}

.pricing-teaser-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  background: var(--paper-card);
  border: 1px solid var(--line-light);
  box-shadow: 0 16px 48px rgba(7, 7, 10, 0.06);
}

.pricing-teaser-inner h2 {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-top: 8px;
}

.pricing-teaser-inner .section-sub {
  margin-top: 8px;
  max-width: 40ch;
}

/* Pricing (pricing.html) */
.pricing-section {
  padding-top: 40px;
}

.pricing-stage {
  position: relative;
  max-width: 440px;
  margin: 40px auto 0;
}

.pricing-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, var(--accent-glow), transparent 65%);
  filter: blur(40px);
  opacity: 0.6;
  animation: mock-pulse 5s ease-in-out infinite alternate;
}

.pricing-card {
  position: relative;
  padding: 36px 32px 32px;
  border-radius: var(--radius-lg);
  background: var(--paper-card);
  border: 1px solid var(--line-light);
  box-shadow: 0 24px 80px rgba(7, 7, 10, 0.1);
}

.pricing-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: linear-gradient(135deg, #ffe4a8, var(--accent));
}

.pricing-tier {
  margin-top: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.pricing-amount {
  font-family: var(--display);
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-top: 4px;
  line-height: 1;
}

.pricing-amount .currency {
  font-size: 1.75rem;
  vertical-align: super;
  margin-right: 2px;
}

.pricing-plus {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 4px;
}

.pricing-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.pricing-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 10px;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.plan-pay {
  margin-top: 24px;
}

.plan-pay stripe-buy-button { display: block; }

.pay-note {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--muted);
}

.pay-note a {
  color: var(--accent-2);
  font-weight: 700;
  text-decoration: none;
}

.pay-note a:hover { text-decoration: underline; }

.pay-note--price {
  color: var(--ink);
}

.pay-note--price strong { font-weight: 700; }

/* Process */
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

@media (max-width: 900px) {
  .process-track { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .process-track { grid-template-columns: 1fr; }
}

.process-step {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--paper-card);
  border: 1px solid var(--line-light);
  position: relative;
}

.step-num {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--line-light);
  line-height: 1;
}

.process-step h3 {
  margin-top: 12px;
  font-size: 0.9375rem;
  font-weight: 700;
}

.process-step p {
  margin-top: 8px;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Sales landing sections */
.sales-problem .problem-list {
  list-style: none;
  max-width: 640px;
  margin: 36px auto 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.sales-problem .problem-list li {
  position: relative;
  padding: 16px 20px 16px 44px;
  border-radius: var(--radius);
  background: var(--paper-card);
  border: 1px solid var(--line-light);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}

.sales-problem .problem-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.why-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .why-pillars { grid-template-columns: 1fr; }
}

.pillar-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--paper-card);
  border: 1px solid var(--line-light);
  box-shadow: 0 12px 40px rgba(7, 7, 10, 0.04);
}

.pillar-num {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.pillar-card h3 {
  margin-top: 12px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pillar-card p {
  margin-top: 10px;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
}

.section-cta-row {
  margin-top: 36px;
  text-align: center;
}

.section-cta-row .btn-primary {
  min-width: 200px;
}

.compare-wrap {
  margin-top: 36px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-light);
  background: var(--paper-card);
}

.compare-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line-light);
  vertical-align: top;
}

.compare-table thead th {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: var(--paper);
}

.compare-table thead th:last-child {
  color: var(--ink);
  background: linear-gradient(180deg, rgba(245, 166, 35, 0.1), transparent);
}

.compare-table tbody th[scope="row"] {
  font-weight: 600;
  color: var(--ink);
  width: 28%;
}

.compare-table tbody td:last-child {
  font-weight: 500;
  color: var(--ink);
}

.compare-table tr:last-child th,
.compare-table tr:last-child td {
  border-bottom: none;
}

.included-list {
  list-style: none;
  max-width: 720px;
  margin: 36px auto 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.included-list li {
  padding: 14px 18px 14px 42px;
  position: relative;
  border-radius: var(--radius);
  background: var(--paper-card);
  border: 1px solid var(--line-light);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.included-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  font-weight: 800;
  color: var(--accent-2);
}

.sales-included .section-sub a {
  color: var(--accent-2);
  font-weight: 600;
  text-decoration: none;
}

.sales-included .section-sub a:hover {
  text-decoration: underline;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 720px) {
  .faq-grid { grid-template-columns: 1fr; }
}

.faq-grid article {
  padding: 22px 20px;
  border-radius: var(--radius);
  background: var(--paper-card);
  border: 1px solid var(--line-light);
}

.faq-grid h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.faq-grid p {
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.faq-grid a {
  color: var(--accent-2);
  font-weight: 600;
  text-decoration: none;
}

.faq-grid a:hover {
  text-decoration: underline;
}

.pricing-teaser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.pricing-teaser-inner .pricing-teaser-actions .btn-secondary {
  color: var(--ink);
  border-color: var(--line-light);
  background: var(--paper);
}

.pricing-teaser-inner .pricing-teaser-actions .btn-secondary:hover {
  background: #fff;
  border-color: #c8c4d8;
}

/* Quote */
.quote-band {
  padding-bottom: 48px;
}

.quote-band blockquote {
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(245, 166, 35, 0.08));
  border: 1px solid var(--line-light);
  text-align: center;
}

.quote-band p {
  font-family: var(--display);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.02em;
  max-width: 52ch;
  margin-inline: auto;
}

.quote-band footer {
  margin-top: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* CTA */
.home-cta {
  margin-bottom: 72px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  position: relative;
}

.home-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 100% 0%, rgba(245, 166, 35, 0.2), transparent),
    radial-gradient(ellipse 60% 60% at 0% 100%, rgba(139, 92, 246, 0.15), transparent);
}

.cta-inner {
  position: relative;
  padding: 64px 48px;
  text-align: center;
}

.cta-inner h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.cta-inner p {
  margin: 14px auto 0;
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}

.cta-inner .actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Footer */
.home-footer {
  padding: 40px 0 56px;
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--muted);
}

.home-footer nav {
  display: flex;
  gap: 24px;
}

.home-footer nav a {
  color: var(--muted);
  text-decoration: none;
}

.home-footer nav a:hover { color: var(--ink); }

/* Mobile: see assets/mobile.css */
