/* =================  VARIABLES  ================= */
:root {
  --cream: #f5f1ea;
  --cream-soft: #ede8df;
  --bg: #ffffff;
  --ink: #0e0e10;
  --ink-soft: #1a1a1d;
  --muted: #5a5560;
  --dim: #8a8590;
  --border: #e5dfd3;
  --border-dark: rgba(245, 241, 234, 0.12);
  --accent: #e8533d;
  --accent-hover: #d63e28;
  --accent-soft: #ffe9e2;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --container: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* =================  NAV  ================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: rgba(245, 241, 234, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-left { display: flex; align-items: center; gap: 32px; }
.menu-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--ink); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--serif); font-weight: 500; font-size: 22px;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #b83a8a);
  position: relative;
}
.logo-mark::after {
  content: ''; position: absolute; inset: 6px;
  border-radius: 50%; background: var(--cream);
}
.nav-menu {
  display: flex; gap: 4px; align-items: center;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
  border-radius: 100px; padding: 4px;
}
.nav-menu a, .nav-menu .menu-item > a {
  padding: 8px 18px; font-size: 14px; font-weight: 500;
  color: var(--ink); border-radius: 100px;
  transition: background 0.2s;
  display: inline-block;
}
.nav-menu a:hover, .nav-menu .menu-item > a:hover { background: rgba(0,0,0,0.05); }
.nav-menu .menu-item-has-children > a::after { content: ' ↓'; opacity: 0.4; font-size: 10px; }
.nav-menu .current-menu-item > a { background: rgba(0,0,0,0.06); }
.nav-menu .has-arrow::after { content: ' ↓'; opacity: 0.4; font-size: 10px; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.search-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.6);
}
.cta-btn {
  background: var(--ink); color: var(--cream);
  padding: 11px 22px; border-radius: 100px;
  font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.cta-btn:hover { background: var(--accent); transform: translateY(-1px); }
.cta-btn .arrow {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--cream); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
}

.mobile-toggle { display: none; }

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-menu.is-open {
    display: flex;
    position: fixed; top: 70px; left: 16px; right: 16px;
    flex-direction: column; gap: 4px;
    background: var(--cream); padding: 16px;
    border-radius: 16px; border: 1px solid var(--border);
    z-index: 99;
  }
  .nav-menu.is-open a { width: 100%; text-align: left; }
  .search-btn { display: none; }
  .mobile-toggle { display: inline-flex; }
}

/* =================  HERO  ================= */
.hero { padding: 140px 0 60px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: end;
  padding-bottom: 60px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.hero h1 .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 300;
}
.hero-side { padding-bottom: 12px; }
.hero-side p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 360px;
}
.hero-simple {
  font-family: var(--serif); font-style: italic;
  color: var(--accent); font-size: 18px; line-height: 1.4;
  margin-bottom: 16px; max-width: 380px;
  font-weight: 300;
}
.discover-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--cream);
  padding: 14px 24px; border-radius: 100px;
  font-size: 14px; font-weight: 500;
  transition: all 0.2s;
}
.discover-btn:hover { background: var(--accent); }
.discover-btn .arrow {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--cream); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
}

/* Hero showcase */
.hero-showcase {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 16/7;
  margin-bottom: 80px;
}
.hero-showcase img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-showcase::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 100%);
}
.showcase-brand {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 14px;
  color: white; z-index: 2;
}
.showcase-brand-mark {
  width: 44px; height: 44px;
  background: white; border-radius: 50%;
  position: relative;
}
.showcase-brand-mark::after {
  content: ''; position: absolute; inset: 11px;
  background: var(--accent); border-radius: 50%;
}
.showcase-brand-text {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.showcase-arrow {
  position: absolute; bottom: 24px; width: 44px; height: 44px;
  background: white; color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; z-index: 2;
  transition: transform 0.2s;
}
.showcase-arrow:hover { transform: scale(1.05); }
.showcase-arrow.prev { left: 24px; }
.showcase-arrow.next { left: 78px; }
.watch-video {
  position: absolute; bottom: 24px; right: 24px;
  color: white; font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  z-index: 2;
}
.watch-video .play {
  width: 28px; height: 28px; border-radius: 50%;
  background: white; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
}

/* =================  POTENTIAL SECTION  ================= */
.potential {
  background: var(--bg);
  padding: 100px 0;
  position: relative;
  border-radius: 32px;
  margin: 0 24px;
  overflow: hidden;
}
.potential::before {
  content: '';
  position: absolute; left: -100px; top: 60px;
  width: 240px; height: 240px;
  background: var(--cream-soft);
  border-radius: 50%;
  z-index: 0;
}
.potential::after {
  content: '';
  position: absolute; left: 80px; top: 200px;
  width: 90px; height: 90px;
  background: var(--cream-soft);
  border-radius: 50%;
  z-index: 0;
}
.potential-inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 32px;
  position: relative; z-index: 1;
}
.potential h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-left: auto;
  text-align: left;
  padding-left: 30%;
}
.potential h2 .accent { color: var(--accent); font-style: italic; font-weight: 300; }
.trust-logos {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 56px; margin-top: 64px; flex-wrap: wrap;
  padding-left: 30%;
}
.trust-logo {
  color: var(--dim);
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.01em;
  font-family: var(--serif);
  font-style: italic;
  opacity: 0.7;
}
.trust-logo:nth-child(3) { font-family: var(--mono); font-style: normal; font-size: 14px; }
.trust-logo:nth-child(4) { font-family: var(--sans); font-style: normal; }

/* =================  FEATURES GRID  ================= */
.features { padding: 100px 0; }
.section-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 8px;
  text-transform: lowercase;
}
.section-eyebrow::before { content: '/ '; }
.features-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 48px;
  flex-wrap: wrap; gap: 24px;
}
.features-head h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 560px;
}
.explore-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--ink); color: var(--cream);
  border-radius: 100px;
  font-size: 14px; font-weight: 500;
  transition: all 0.2s;
}
.explore-btn:hover { background: var(--accent); transform: translateY(-1px); }
.explore-btn .arrow, .cta-btn .arrow, .discover-btn .arrow {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--cream); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 16px;
}
.feature-card {
  background: var(--bg);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 260px;
  transition: transform 0.3s ease;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-card.dark {
  background: var(--ink);
  color: var(--cream);
  grid-row: span 1;
  background-image:
    radial-gradient(circle at 70% 60%, rgba(232,83,61,0.25), transparent 60%),
    radial-gradient(circle at 30% 30%, rgba(139,111,217,0.15), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, #1a1419 100%);
}
.feature-card.has-image { padding: 0; min-height: 320px; }
.feature-card.has-image .feature-body {
  position: relative; z-index: 2;
  padding: 28px;
  margin-top: auto;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
  color: white;
}
.feature-card.has-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 1;
}
.feature-card.tall { grid-row: span 2; min-height: 540px; }
.feature-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.feature-card.dark .feature-label { color: var(--accent-warm, #ff8a6e); }
.feature-card.has-image .feature-label { color: #ffb89e; }
.feature-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 24px;
}
.feature-card.dark p { color: rgba(245,241,234,0.7); }
.feature-card.has-image p { color: rgba(255,255,255,0.85); }
.feature-arrow {
  margin-top: auto;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: all 0.2s;
}
.feature-card.dark .feature-arrow { background: var(--accent); color: var(--cream); }
.feature-card:hover .feature-arrow { transform: rotate(-45deg); }
.feature-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--cream); color: var(--ink);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  z-index: 3;
}
.feature-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
}

.integrations-row {
  display: flex; gap: 12px; margin-top: 16px;
  flex-wrap: wrap;
}
.integration-pill {
  width: 38px; height: 38px;
  background: var(--cream-soft);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  color: var(--ink);
}
.feature-card.dark .integration-pill {
  background: rgba(245,241,234,0.08);
  color: var(--cream);
}

@media (max-width: 1000px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card.tall { grid-row: span 1; min-height: 320px; }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* =================  MARQUEE  ================= */
.marquee {
  background: var(--accent);
  padding: 28px 0;
  transform: rotate(-2deg);
  margin: 60px -40px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.marquee-track {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: scroll-marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: white;
  font-style: italic;
  letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 60px;
}
.marquee-track span::after {
  content: '✦';
  color: rgba(255,255,255,0.6);
  font-size: 28px;
}
@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =================  ABOUT (Dark) ================= */
.about {
  background: var(--ink);
  color: var(--cream);
  border-radius: 32px;
  margin: 20px 24px;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.about-watermark {
  position: absolute;
  right: -40px; top: 60px;
  font-family: var(--serif);
  font-size: 220px;
  font-weight: 400;
  color: rgba(245,241,234,0.04);
  letter-spacing: -0.04em;
  line-height: 1;
  z-index: 0;
  font-style: italic;
}
.about-tag {
  position: absolute; top: 80px; right: 50px;
  font-family: var(--mono); font-size: 11px;
  color: var(--dim);
}
.about-tag::before { content: '/ '; color: var(--accent); }
.about-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 32px;
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-content .section-eyebrow {
  margin-bottom: 24px;
}
.about-content h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.about-content h2 .accent { color: var(--accent); font-style: italic; }
.about-content > p {
  color: rgba(245,241,234,0.7);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 480px;
}
.explore-btn-light {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--cream); color: var(--ink);
  border-radius: 100px;
  font-size: 14px; font-weight: 500;
  transition: all 0.2s;
}
.explore-btn-light:hover { background: var(--accent); color: var(--cream); }
.explore-btn-light .arrow {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ink); color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.about-image {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(232,83,61,0.2));
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-watermark { font-size: 120px; }
}

/* =================  USP  ================= */
.usp { padding: 100px 0; }
.usp-head { margin-bottom: 48px; }
.usp-head h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 720px;
  margin-top: 12px;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.usp-item h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.usp-item p { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
.usp-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--cream-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  border: 1px solid var(--border);
}
@media (max-width: 900px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =================  PRICING  ================= */
.pricing { padding: 60px 0 120px; }
.pricing-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.pricing-head h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 12px;
}
.tier {
  background: var(--bg);
  border-radius: 24px;
  padding: 28px 32px;
  margin-bottom: 16px;
  position: relative;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 40px;
  align-items: center;
}
.tier-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}
.tier-desc { color: var(--muted); font-size: 13px; margin-top: 4px; }
.tier-features { font-size: 13px; color: var(--muted); }
.tier-features li { display: flex; align-items: center; gap: 8px; padding: 3px 0; }
.tier-features li::before {
  content: ''; width: 5px; height: 5px;
  background: var(--accent); border-radius: 50%;
  flex-shrink: 0;
}
.tier-price {
  font-family: var(--serif);
  font-size: 36px; font-weight: 500;
  letter-spacing: -0.02em;
}
.tier-price span { font-size: 14px; color: var(--muted); font-family: var(--sans); font-weight: 400; }
.tier .get-started {
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  background: var(--ink); color: var(--cream);
  border-radius: 100px;
  font-size: 12px; font-weight: 500;
}
.tier.popular {
  background: var(--ink-soft);
  color: var(--cream);
  border-color: var(--ink);
}
.tier.popular .tier-desc { color: rgba(245,241,234,0.6); }
.tier.popular .tier-features { color: rgba(245,241,234,0.65); }
.tier.popular .tier-features li::before { background: var(--accent); }
.tier.popular .get-started { background: var(--accent); }
.popular-badge {
  position: absolute; top: -10px; left: 32px;
  background: var(--accent); color: white;
  font-size: 11px; padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 32px; }
  .tier { grid-template-columns: 1fr; gap: 16px; }
}

/* =================  TESTIMONIAL  ================= */
.testimonial {
  background: var(--ink);
  color: var(--cream);
  border-radius: 32px;
  margin: 0 24px;
  overflow: hidden;
  position: relative;
  min-height: 480px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
.testimonial-content {
  padding: 80px 60px;
  position: relative; z-index: 2;
}
.testimonial-mark {
  font-family: var(--serif);
  font-size: 60px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 24px;
}
.testimonial-tag {
  position: absolute; top: 40px; right: 60px;
  font-family: var(--mono); font-size: 11px;
  color: var(--dim);
}
.testimonial-tag::before { content: '/ '; color: var(--accent); }
.testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  max-width: 520px;
}
.testimonial-author {
  color: rgba(245,241,234,0.65);
  font-size: 13px;
}
.testimonial-image {
  position: relative;
  overflow: hidden;
}
.testimonial-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.testimonial-stats {
  position: absolute;
  bottom: 60px; right: 60px;
  z-index: 3; text-align: right;
}
.testimonial-stats .big {
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.testimonial-stats .label {
  font-size: 13px;
  color: rgba(245,241,234,0.7);
  margin-top: 6px;
}
.testimonial-dots {
  position: absolute; bottom: 40px; left: 60px;
  display: flex; gap: 8px;
}
.testimonial-dots .dot {
  width: 8px; height: 8px;
  background: rgba(245,241,234,0.25); border-radius: 50%;
}
.testimonial-dots .dot.active { background: var(--accent); width: 24px; border-radius: 100px; }

@media (max-width: 900px) {
  .testimonial { grid-template-columns: 1fr; }
  .testimonial-image { min-height: 280px; }
  .testimonial-stats { position: static; padding: 0 60px 40px; text-align: left; }
}

/* =================  FAQ  ================= */
.faq { padding: 120px 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.faq-head h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 12px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  display: flex; gap: 32px;
  align-items: flex-start;
  cursor: pointer;
  transition: padding 0.3s;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  min-width: 30px;
  padding-top: 4px;
}
.faq-q {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  flex: 1;
  line-height: 1.3;
}
.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 320px; }
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  background: var(--bg);
  transition: all 0.2s;
}
.faq-item.open .faq-toggle {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: rotate(45deg);
}
.faq-content { flex: 1; }
.faq-explore {
  margin-top: 40px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  border-radius: 100px;
  font-size: 14px; font-weight: 500;
  transition: all 0.2s;
}
.faq-explore:hover { background: var(--ink); color: var(--cream); }

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

/* =================  BLOG  ================= */
.blog { padding: 60px 0 120px; }
.blog-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; gap: 24px; flex-wrap: wrap;
}
.blog-head h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 680px;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.blog-card {
  background: var(--bg);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  transition: transform 0.3s;
  border: 1px solid var(--border);
}
.blog-card:hover { transform: translateY(-4px); }
.blog-image {
  overflow: hidden;
  aspect-ratio: 1;
}
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-body { padding: 28px; display: flex; flex-direction: column; }
.blog-date {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 12px;
}
.blog-date::before { content: '/ '; }
.blog-body h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.blog-body p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 20px;
}
.read-more {
  margin-top: auto;
  font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink);
  font-weight: 500;
}
.read-more::after { content: '↗'; }
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-image { aspect-ratio: 16/9; }
}

/* =================  CONTACT  ================= */
.contact {
  background: var(--ink);
  color: var(--cream);
  border-radius: 32px;
  margin: 0 24px;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,83,61,0.15), transparent 70%);
  border-radius: 50%;
}
.contact-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  position: relative; z-index: 1;
}
.contact-info h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  margin-top: 12px;
}
.contact-info > p {
  color: rgba(245,241,234,0.7);
  font-size: 14px;
  max-width: 360px;
  margin-bottom: 48px;
}
.contact-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.contact-block h4 {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-block p {
  font-size: 14px;
  color: var(--cream);
  line-height: 1.5;
}
.contact-email {
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
}
.contact-email a {
  font-family: var(--serif); font-size: 22px; font-style: italic;
  color: var(--accent);
}
.contact-socials { display: flex; gap: 12px; margin-top: 16px; }
.contact-socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: all 0.2s;
}
.contact-socials a:hover { background: var(--accent); border-color: var(--accent); }

.contact-form {
  background: var(--cream);
  color: var(--ink);
  padding: 40px;
  border-radius: 24px;
}
.contact-form .form-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.contact-form h3 {
  font-family: var(--serif);
  font-size: 28px; font-weight: 500;
  margin-bottom: 8px;
}
.contact-form > p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 28px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--muted);
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border 0.2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--accent);
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  background: var(--ink); color: var(--cream);
  border-radius: 10px;
  font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--accent); }

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-blocks { grid-template-columns: 1fr; }
}

/* =================  FOOTER  ================= */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 40px;
  margin-top: 20px;
  border-radius: 32px 32px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-brand h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.footer-brand h3 .accent { color: var(--accent); font-style: italic; }
.footer-brand p {
  color: rgba(245,241,234,0.6);
  font-size: 13px;
  margin-top: 20px;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(245,241,234,0.75);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(245,241,234,0.5);
}
.footer-bottom a {
  font-size: 12px;
  color: rgba(245,241,234,0.5);
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* =================  INNER PAGES  ================= */
.page-hero {
  padding: 160px 0 60px;
  position: relative;
}
.page-hero-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: end;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400; line-height: 1.04; letter-spacing: -0.025em;
}
.page-hero h1 .accent { color: var(--accent); font-style: italic; font-weight: 300; }
.page-hero .hero-simple {
  font-family: var(--serif); font-style: italic;
  color: var(--accent); font-size: 22px; line-height: 1.4;
  margin-top: 18px; max-width: 480px; font-weight: 300;
}
.page-hero .hero-detailed {
  color: var(--muted); font-size: 16px; line-height: 1.6;
  margin-top: 8px; max-width: 480px;
}
.breadcrumb {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb-sep { padding: 0 8px; color: var(--dim); }
@media (max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* Solution detail */
.solution-banner {
  margin: 0 24px 60px;
  border-radius: 32px; overflow: hidden;
  aspect-ratio: 21/7;
  position: relative;
}
.solution-banner img { width: 100%; height: 100%; object-fit: cover; }
.solution-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4));
}
.solution-body {
  padding: 0 0 100px;
}
.solution-grid {
  max-width: var(--container); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 280px 1fr; gap: 60px;
}
.solution-sidebar {
  position: sticky; top: 110px; align-self: start;
}
.solution-sidebar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 20px;
}
.solution-sidebar-card h4 {
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--accent); margin-bottom: 14px;
}
.solution-sidebar-card ul li {
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.solution-sidebar-card ul li:last-child { border-bottom: 0; }
.solution-sidebar-card ul li a {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px;
}
.solution-sidebar-card ul li.current a { color: var(--accent); font-weight: 600; }
.solution-sidebar-card ul li a::after { content: '↗'; opacity: 0.4; font-size: 12px; }
.solution-sidebar .brochure-card {
  background: var(--ink); color: var(--cream);
  border: 0;
}
.solution-sidebar .brochure-card h4 { color: var(--accent); }
.solution-sidebar .brochure-card p { color: rgba(245,241,234,0.7); font-size: 13px; line-height: 1.5; margin: 8px 0 14px; }
.solution-sidebar .brochure-card a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--cream); padding: 10px 16px;
  background: var(--accent); border-radius: 100px;
}

.solution-overview { font-size: 16px; line-height: 1.7; color: var(--ink); margin-bottom: 40px; }
.solution-overview p { margin-bottom: 18px; max-width: 720px; }
.solution-meta-section {
  margin-bottom: 56px;
}
.solution-meta-section h2 {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 36px); font-weight: 400;
  letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 8px;
}
.solution-meta-section .eyebrow {
  font-family: var(--mono); font-size: 11px; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px;
  display: inline-block;
}
.solution-meta-list {
  display: grid; gap: 14px; margin-top: 24px;
}
.solution-meta-list li {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 22px;
  font-size: 15px; color: var(--ink);
  display: flex; gap: 14px; align-items: flex-start;
}
.solution-meta-list li::before {
  content: ''; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  flex-shrink: 0; margin-top: 8px;
}
.solution-meta-list.numbered { counter-reset: step; }
.solution-meta-list.numbered li::before {
  content: counter(step); counter-increment: step;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ink); color: var(--cream);
  font-family: var(--mono); font-size: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0;
}
.solution-cta-card {
  background: var(--ink); color: var(--cream);
  padding: 40px; border-radius: 24px;
  display: grid; grid-template-columns: 1.4fr auto; gap: 24px; align-items: center;
}
.solution-cta-card h3 {
  font-family: var(--serif); font-size: 28px; font-weight: 400; letter-spacing: -0.01em;
  line-height: 1.15;
}
.solution-cta-card .btn-cta {
  background: var(--accent); color: var(--cream);
  padding: 14px 24px; border-radius: 100px;
  font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .solution-grid { grid-template-columns: 1fr; }
  .solution-sidebar { position: static; }
  .solution-cta-card { grid-template-columns: 1fr; }
}

/* Related */
.related-solutions {
  background: var(--cream-soft);
  padding: 80px 0;
  margin: 60px 24px 0;
  border-radius: 32px;
}
.related-solutions h2 {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); font-weight: 400;
  letter-spacing: -0.02em; margin-bottom: 40px;
}
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) {
  .related-grid { grid-template-columns: 1fr; }
}

/* Solution cards (used on services, taxonomy, related) */
.solution-card {
  background: var(--bg); border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: transform 0.3s; height: 100%;
}
.solution-card:hover { transform: translateY(-4px); }
.solution-card .image {
  aspect-ratio: 16/9; overflow: hidden; background: var(--cream-soft);
}
.solution-card .image img { width: 100%; height: 100%; object-fit: cover; }
.solution-card .body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.solution-card .cat {
  font-family: var(--mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent);
}
.solution-card h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 500;
  line-height: 1.2; letter-spacing: -0.01em;
}
.solution-card .simple {
  font-family: var(--serif); font-style: italic; color: var(--accent);
  font-size: 14px; font-weight: 300; line-height: 1.4;
}
.solution-card .more {
  margin-top: auto; padding-top: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500;
}
.solution-card .more::after { content: '↗'; }

/* Services page */
.services-intro {
  max-width: var(--container); margin: 0 auto;
  padding: 40px 32px 60px;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: end;
}
.services-intro h2 {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 48px); font-weight: 400;
  letter-spacing: -0.02em; line-height: 1.1;
}
.services-intro p { color: var(--muted); font-size: 16px; line-height: 1.65; }
.category-section { padding: 60px 0; }
.category-section .category-head {
  max-width: var(--container); margin: 0 auto;
  padding: 0 32px 28px;
  display: flex; justify-content: space-between; align-items: end;
  gap: 24px; flex-wrap: wrap;
}
.category-section .category-head h3 {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); font-weight: 400;
  letter-spacing: -0.02em;
}
.category-section .category-head .simple {
  font-family: var(--serif); font-style: italic; color: var(--accent);
  font-size: 18px; max-width: 500px; font-weight: 300;
}
.category-section .category-head a {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; color: var(--accent);
}
.category-grid {
  max-width: var(--container); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) {
  .services-intro { grid-template-columns: 1fr; gap: 24px; }
  .category-grid { grid-template-columns: 1fr; }
}

/* Category filter chips */
.category-chips {
  max-width: var(--container); margin: 0 auto;
  padding: 0 32px 40px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.chip {
  padding: 8px 18px; background: var(--bg);
  border: 1px solid var(--border); border-radius: 100px;
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: all 0.2s;
}
.chip:hover { border-color: var(--accent); }
.chip.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* Single blog */
.post-content { max-width: 720px; margin: 0 auto; padding: 0 32px 60px; }
.post-content h2, .post-content h3 {
  font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em;
  margin: 40px 0 16px;
}
.post-content h2 { font-size: 32px; }
.post-content h3 { font-size: 24px; }
.post-content p { font-size: 16px; line-height: 1.75; color: var(--ink); margin-bottom: 18px; }
.post-content ul, .post-content ol { margin: 0 0 18px 24px; }
.post-content ul li, .post-content ol li {
  list-style: disc outside; padding-left: 4px; color: var(--ink);
  font-size: 16px; line-height: 1.75; margin-bottom: 8px;
}
.post-content ol li { list-style: decimal outside; }
.post-content blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 20px; margin: 24px 0;
  font-family: var(--serif); font-size: 20px; font-style: italic;
}
.post-content a { color: var(--accent); text-decoration: underline; }
.post-content img { border-radius: 16px; margin: 24px 0; }

/* Blog archive single column */
.archive-list { max-width: 920px; margin: 0 auto; padding: 0 32px 60px; }
.archive-card {
  display: grid; grid-template-columns: 220px 1fr; gap: 28px;
  padding: 28px 0; border-bottom: 1px solid var(--border);
}
.archive-card .img { aspect-ratio: 4/3; overflow: hidden; border-radius: 16px; }
.archive-card .img img { width: 100%; height: 100%; object-fit: cover; }
.archive-card h3 {
  font-family: var(--serif); font-size: 24px; font-weight: 500;
  line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 10px;
}
.archive-card .meta {
  font-family: var(--mono); font-size: 11px; color: var(--accent);
  margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em;
}
.archive-card p { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
@media (max-width: 700px) {
  .archive-card { grid-template-columns: 1fr; }
  .archive-card .img { aspect-ratio: 16/9; }
}

/* About page extras */
.values-grid {
  max-width: var(--container); margin: 0 auto; padding: 60px 32px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.value-card {
  background: var(--bg); border: 1px solid var(--border);
  padding: 28px; border-radius: 20px;
}
.value-card h4 {
  font-family: var(--serif); font-size: 20px; font-weight: 500;
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.value-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }
@media (max-width: 900px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* Pagination */
.pagination {
  max-width: 920px; margin: 0 auto; padding: 40px 32px 80px;
  display: flex; justify-content: center; gap: 8px;
}
.pagination a, .pagination span {
  padding: 8px 14px; border: 1px solid var(--border);
  border-radius: 8px; font-size: 14px;
  background: var(--bg);
}
.pagination .current { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* 404 */
.error-404 {
  min-height: 60vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 120px 32px;
}
.error-404 h1 {
  font-family: var(--serif); font-size: clamp(80px, 14vw, 200px); font-weight: 300;
  color: var(--accent); font-style: italic;
}
.error-404 h2 {
  font-family: var(--serif); font-size: clamp(28px, 4vw, 40px); font-weight: 400;
  margin: 16px 0 14px;
}
.error-404 p { color: var(--muted); margin-bottom: 32px; max-width: 480px; }

/* =================  ANIMATIONS  ================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* selection */
::selection { background: var(--accent); color: white; }

/* WordPress block editor + admin bar overrides */
body.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .nav { top: 46px; }
}
.alignleft  { float: left;  margin: 0.5em 1.5em 0.5em 0; }
.alignright { float: right; margin: 0.5em 0 0.5em 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide  { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull  { width: 100%; max-width: none; }
.wp-block-image figcaption { font-size: 13px; color: var(--muted); text-align: center; margin-top: 8px; }
.wp-caption-text { font-size: 13px; color: var(--muted); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px);
  height: 1px; width: 1px; overflow: hidden;
  position: absolute !important; word-wrap: normal !important;
}
.comment-list { list-style: none; padding: 0; }
.comment-list .comment { padding: 16px 0; border-bottom: 1px solid var(--border); }
.comment-meta { font-size: 13px; color: var(--muted); }

/* Mobile fixes */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .potential h2, .trust-logos { padding-left: 0; text-align: left; justify-content: flex-start; }
  .features-head { flex-direction: column; align-items: flex-start; }
}

/* =====================================================================
   v2 — CINEMATIC HERO, REBALANCED TRUST, BENTO PRO FEATURES
   ===================================================================== */

/* Body class for front page (added via body_class filter). */
body.is-front {
  background: var(--cream);
}

/* When the front page is at the top, nav floats transparent over dark hero. */
body.is-front .nav {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.is-front .nav .logo { color: #fff; }
body.is-front .nav .logo-mark::after { background: #0e0e10; }
body.is-front .nav-menu {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
body.is-front .nav-menu a, body.is-front .nav-menu .menu-item > a { color: rgba(255,255,255,0.9); }
body.is-front .nav-menu a:hover, body.is-front .nav-menu .menu-item > a:hover { background: rgba(255,255,255,0.1); }
body.is-front .search-btn { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: #fff; }
body.is-front .menu-icon { background: rgba(255,255,255,0.1); color: #fff; }
body.is-front .cta-btn { background: #fff; color: var(--ink); }
body.is-front .cta-btn:hover { background: var(--accent); color: #fff; }
body.is-front .cta-btn .arrow { background: var(--ink); color: #fff; }

/* When scrolled past the hero, nav returns to standard cream treatment. */
body.is-front.nav-scrolled .nav {
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
body.is-front.nav-scrolled .nav .logo { color: var(--ink); }
body.is-front.nav-scrolled .nav .logo-mark::after { background: var(--cream); }
body.is-front.nav-scrolled .nav-menu {
  background: rgba(255,255,255,0.6);
  border-color: var(--border);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.is-front.nav-scrolled .nav-menu a,
body.is-front.nav-scrolled .nav-menu .menu-item > a { color: var(--ink); }
body.is-front.nav-scrolled .nav-menu a:hover { background: rgba(0,0,0,0.05); }
body.is-front.nav-scrolled .search-btn { background: rgba(255,255,255,0.6); border-color: var(--border); color: var(--ink); }
body.is-front.nav-scrolled .menu-icon { background: var(--ink); color: var(--cream); }
body.is-front.nav-scrolled .cta-btn { background: var(--ink); color: var(--cream); }
body.is-front.nav-scrolled .cta-btn .arrow { background: var(--cream); color: var(--ink); }

/* CINEMATIC HERO */
.hero--cinematic {
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #0a0a0a;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.hero--cinematic .hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero--cinematic .hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  animation: heroDrift 30s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.06) translate(-1%, -1%); }
}
.hero--cinematic .hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.85) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 30%, rgba(0,0,0,0.45) 75%, rgba(0,0,0,0.8) 100%);
}
.hero--cinematic .hero-scroll-tag {
  position: absolute; top: 50%; left: 0;
  transform: translateY(-50%);
  z-index: 3;
  padding: 18px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-left: 0;
  border-radius: 0 14px 14px 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero--cinematic .hero-scroll-tag span {
  display: inline-block;
  font-family: var(--mono); font-size: 11px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase; letter-spacing: 0.18em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero--cinematic .hero-inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 180px 32px 80px;
  display: flex; flex-direction: column;
  gap: 48px;
  flex: 1;
  width: 100%;
}
.hero--cinematic .hero-eyebrow-row { display: flex; }
.hero--cinematic .hero-brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: #fff;
}
.hero--cinematic .hero-brand-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #fff 0%, #fff 60%, var(--accent) 100%);
  border-radius: 50%;
  position: relative;
}
.hero--cinematic .hero-brand-mark::after {
  content: ''; position: absolute; inset: 9px;
  background: #0a0a0a;
  border-radius: 50%;
}
.hero--cinematic .hero-brand-name {
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.hero--cinematic .hero-brand-tm {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--accent);
  vertical-align: super;
}
.hero--cinematic .hero-title {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 1100px;
  text-shadow: 0 2px 60px rgba(0,0,0,0.25);
}
.hero--cinematic .hero-title-italic {
  font-style: italic;
  font-weight: 300;
  color: #ffd8c8;
}
.hero--cinematic .hero-footer-row {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 40px;
  align-items: end;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 28px;
}
.hero--cinematic .hero-simple-line {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  color: #ffd8c8;
  margin-bottom: 8px;
  max-width: 560px;
  line-height: 1.4;
}
.hero--cinematic .hero-detail-line {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  max-width: 520px;
}
.hero--cinematic .hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 30px;
  background: #fff;
  color: var(--ink);
  border-radius: 100px;
  font-size: 15px; font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}
.hero--cinematic .hero-cta:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.hero--cinematic .hero-cta-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.hero--cinematic .hero-cta:hover .hero-cta-arrow { background: #fff; color: var(--accent); }

@media (max-width: 900px) {
  .hero--cinematic .hero-inner { padding: 140px 24px 60px; gap: 32px; }
  .hero--cinematic .hero-footer-row { grid-template-columns: 1fr; gap: 24px; }
  .hero--cinematic .hero-scroll-tag { display: none; }
}

/* REBALANCED TRUST / POTENTIAL SECTION */
.potential--v2 {
  background: var(--bg);
  margin: 0 24px;
  padding: 120px 0 100px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}
.potential--v2::before,
.potential--v2::after { display: none; }
.potential--v2 .potential-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}
.potential--v2 .potential-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--cream-soft), var(--cream));
}
.potential--v2 .potential-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.potential--v2 .potential-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(232,83,61,0.22));
  pointer-events: none;
}
.potential--v2 .potential-visual-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.92);
  padding: 12px 18px;
  border-radius: 14px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px;
  color: var(--ink); text-transform: uppercase; letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}
.potential--v2 .potential-visual-badge::before {
  content: ''; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  animation: pulseDot 1.6s infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}
.potential--v2 .potential-content { padding-left: 0; }
.potential--v2 h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 16px 0 0;
  padding: 0;
  max-width: none;
  text-align: left;
}
.potential--v2 h2 .accent { color: var(--accent); font-style: italic; font-weight: 300; }
.potential--v2 .potential-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.potential--v2 .potential-meta::before { content: '/ '; }
.potential--v2 .potential-stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.potential--v2 .stat .num {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.potential--v2 .stat .num .accent { color: var(--accent); font-style: italic; }
.potential--v2 .stat .label {
  font-size: 12px; color: var(--muted);
  margin-top: 6px; line-height: 1.4;
}
.potential--v2 .trust-logos {
  margin-top: 36px;
  padding: 0;
  display: flex; gap: 32px; flex-wrap: wrap;
  justify-content: flex-start;
}
.potential--v2 .trust-logos .trust-logo { font-size: 16px; }
@media (max-width: 900px) {
  .potential--v2 .potential-inner { grid-template-columns: 1fr; gap: 32px; }
  .potential--v2 .potential-visual { aspect-ratio: 16/10; }
  .potential--v2 .potential-stats { grid-template-columns: 1fr; gap: 16px; }
}

/* BENTO PRO FEATURES */
.features--pro {
  background: var(--cream);
  padding: 120px 0;
  position: relative;
}
.features--pro .container { position: relative; }
.features--pro .features-head { margin-bottom: 56px; }
.features--pro .features-head h2 { max-width: 720px; }
.features--pro .features-head .simple-line {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--accent);
  margin-top: 12px; max-width: 600px;
}
.features--pro .features-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 20px;
}

/* Each bento card variants */
.bento-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  display: flex; flex-direction: column;
  padding: 32px;
  color: var(--ink);
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.4s;
  background: var(--bg);
  border: 1px solid var(--border);
  text-decoration: none;
  min-height: 260px;
}
.bento-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(14,14,16,0.12); }
.bento-card-eyebrow {
  font-family: var(--mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); margin-bottom: 14px;
  display: inline-block;
}
.bento-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
  font-size: clamp(22px, 2.2vw, 30px);
  margin-bottom: 12px;
}
.bento-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.bento-card .bento-cta {
  margin-top: auto;
  padding-top: 18px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  color: var(--ink);
}
.bento-card .bento-cta-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cream-soft); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: all 0.3s;
}
.bento-card:hover .bento-cta-arrow { background: var(--accent); color: #fff; transform: rotate(-45deg); }

/* Variants */
.bento-card--abstract {
  color: #fff;
  border: 0;
  min-height: 320px;
  isolation: isolate;
}
.bento-card--abstract .bento-bg {
  position: absolute; inset: 0; z-index: -1;
}
.bento-card--abstract .bento-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.bento-card--abstract .bento-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.8) 100%);
}
.bento-card--abstract h3 { color: #fff; }
.bento-card--abstract p { color: rgba(255,255,255,0.82); }
.bento-card--abstract .bento-card-eyebrow { color: #ffd8c8; }
.bento-card--abstract .bento-cta { color: #fff; }
.bento-card--abstract .bento-cta-arrow { background: rgba(255,255,255,0.18); color: #fff; }

.bento-card--photo {
  color: #fff;
  border: 0;
  min-height: 320px;
  isolation: isolate;
}
.bento-card--photo .bento-bg { position: absolute; inset: 0; z-index: -1; }
.bento-card--photo .bento-bg img { width: 100%; height: 100%; object-fit: cover; }
.bento-card--photo .bento-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 95%);
}
.bento-card--photo h3 { color: #fff; }
.bento-card--photo p { color: rgba(255,255,255,0.85); }
.bento-card--photo .bento-card-eyebrow { color: #ffb89e; }
.bento-card--photo .bento-cta { color: #fff; }
.bento-card--photo .bento-cta-arrow { background: rgba(255,255,255,0.18); color: #fff; }

.bento-card--dark {
  background: var(--ink);
  color: var(--cream);
  border: 0;
  background-image:
    radial-gradient(circle at 75% 25%, rgba(232,83,61,0.35), transparent 55%),
    radial-gradient(circle at 25% 75%, rgba(139,111,217,0.20), transparent 55%);
}
.bento-card--dark h3 { color: var(--cream); }
.bento-card--dark p { color: rgba(245,241,234,0.7); }
.bento-card--dark .bento-card-eyebrow { color: #ff8a6e; }
.bento-card--dark .bento-cta { color: var(--cream); }
.bento-card--dark .bento-cta-arrow { background: var(--accent); color: var(--cream); }

.bento-card--coral {
  background: var(--accent);
  color: #fff;
  border: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0,0,0,0.18), transparent 50%);
}
.bento-card--coral h3, .bento-card--coral .bento-cta { color: #fff; }
.bento-card--coral p { color: rgba(255,255,255,0.92); }
.bento-card--coral .bento-card-eyebrow { color: #ffe9e2; }
.bento-card--coral .bento-cta-arrow { background: #fff; color: var(--accent); }

/* Grid placements */
.bento-card--w3 { grid-column: span 3; }
.bento-card--w2 { grid-column: span 2; }
.bento-card--w4 { grid-column: span 4; }
.bento-card--w6 { grid-column: span 6; }
.bento-card--h2 { grid-row: span 2; min-height: 540px; }

/* Soft cream variant with subtle gradient + accent ring */
.bento-card--soft {
  background:
    radial-gradient(circle at 100% 0%, rgba(232,83,61,0.08) 0%, transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(139,111,217,0.05) 0%, transparent 45%),
    linear-gradient(180deg, #fbf7ee 0%, #f5f1ea 100%);
  border: 1px solid rgba(232,83,61,0.12);
}
.bento-card--soft .bento-accent-ring {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(232,83,61,0.18);
  top: -80px; right: -80px;
  pointer-events: none;
}
.bento-card--soft .bento-accent-ring::after {
  content: ''; position: absolute; inset: 24px;
  border-radius: 50%;
  border: 1px solid rgba(232,83,61,0.12);
}
.bento-card--soft .bento-card-eyebrow { color: var(--accent); }

/* Chart variant — dark with thin coral lines suggesting analytics */
.bento-card--chart {
  background: var(--ink);
  color: var(--cream);
  border: 0;
  position: relative;
  overflow: hidden;
}
.bento-card--chart::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 70%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(232,83,61,0.18) 100%);
  pointer-events: none;
}
.bento-card--chart .bento-chart-svg {
  position: absolute;
  right: 24px; bottom: 24px;
  width: 60%; height: 50%;
  opacity: 0.95;
  pointer-events: none;
}
.bento-card--chart h3 { color: var(--cream); position: relative; z-index: 1; }
.bento-card--chart p { color: rgba(245,241,234,0.7); position: relative; z-index: 1; }
.bento-card--chart .bento-card-eyebrow { color: #ff8a6e; }
.bento-card--chart .bento-cta { color: var(--cream); position: relative; z-index: 1; }
.bento-card--chart .bento-cta-arrow { background: var(--accent); color: var(--cream); }

/* Minimal cream card with decorative photo strip in corner */
.bento-card--corner {
  background: var(--bg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.bento-card--corner .bento-corner-img {
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid var(--cream);
}
.bento-card--corner .bento-corner-img img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Special — stat card */
.bento-stat {
  display: flex; flex-direction: column; justify-content: space-between;
}
.bento-stat .bento-stat-big {
  font-family: var(--serif);
  font-size: clamp(64px, 8vw, 110px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: #fff;
}
.bento-stat .bento-stat-big .accent { color: var(--accent); font-style: italic; font-weight: 300; }

/* Integration pills inside dark card */
.bento-card .integrations-row {
  display: flex; gap: 10px; margin-top: 14px;
}
.bento-card .integration-pill {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-weight: 700; font-size: 13px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.14);
}

@media (max-width: 1100px) {
  .features--pro .features-bento { grid-template-columns: repeat(4, 1fr); }
  .bento-card--w3 { grid-column: span 2; }
  .bento-card--w2 { grid-column: span 2; }
  .bento-card--w4 { grid-column: span 4; }
  .bento-card--w6 { grid-column: span 4; }
  .bento-card--h2 { grid-row: auto; min-height: 320px; }
}
@media (max-width: 700px) {
  .features--pro .features-bento { grid-template-columns: 1fr; }
  .bento-card--w3, .bento-card--w2, .bento-card--w4, .bento-card--w6 { grid-column: span 1; }
}
