:root {
  --ink: #ffffff;
  --ink-soft: #8e8e93;
  --paper: #050505;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.08);
  --navy: #050505;
  --teal: #00ffcc;
  --teal-bright: #33ffdd;
  --green: #10b981;
  --rose: #f43f5e;
  --sky: #0ea5e9;
  --gold: #f59e0b;
  --primary: #6366f1;
  --primary-glow: rgba(99, 102, 241, 0.18);
  --accent: #9333ea;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.65);
  --shadow-md: 0 18px 42px rgba(0, 0, 0, 0.45);
  --max-width: 1240px;
  --section-space: clamp(3.5rem, 7vw, 6.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: 
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
  line-height: 1.7;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::after {
  z-index: -1;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 90%);
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.page-shell {
  overflow: clip;
}

.container {
  width: min(calc(100% - 1.4rem), var(--max-width));
  margin: 0 auto;
}

.homepage main {
  display: grid;
  gap: 1.35rem;
  padding: 0 0 2.25rem;
}

.homepage .container {
  width: min(calc(100% - 1.8rem), 1360px);
}

.homepage .hero,
.homepage .section {
  padding: 0;
}

.homepage .section::before {
  display: none;
}

.homepage .social-strip {
  margin: 0;
}

.homepage .hero > .container,
.homepage .section > .container,
.homepage .social-strip > .container {
  position: relative;
  padding: clamp(1.45rem, 2.8vw, 2.45rem);
  border-radius: 38px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.homepage .hero > .container {
  padding: clamp(1.65rem, 3vw, 2.7rem);
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022));
}

.homepage .hero > .container::before,
.homepage .section > .container::before,
.homepage .social-strip > .container::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.14), transparent 24%),
    radial-gradient(circle at 88% 100%, rgba(255, 255, 255, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 30%);
  z-index: -2;
  opacity: 0.92;
}

.homepage .hero > .container::after,
.homepage .section > .container::after,
.homepage .social-strip > .container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.24;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 94%);
  z-index: -1;
  pointer-events: none;
}

.homepage .hero-grid,
.homepage .split,
.homepage .channel-showcase {
  gap: clamp(1.35rem, 2.6vw, 2.2rem);
}

.homepage .hero-panel {
  padding: clamp(1.35rem, 2.3vw, 2rem);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.homepage .title {
  max-width: 16ch;
  text-wrap: balance;
}

.homepage .section-header {
  max-width: 820px;
  margin-bottom: 2.4rem;
}

.homepage .hero-note {
  width: fit-content;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.homepage .stat-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.homepage .hero-board {
  min-height: 520px;
}

.homepage .board-shell {
  padding: 1.3rem;
  border-radius: 38px;
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.homepage .strip-card,
.homepage .story-card,
.homepage .feature-card,
.homepage .problem-card,
.homepage .persona-card,
.homepage .compare-card,
.homepage .pricing-card,
.homepage .trust-card,
.homepage .privacy-point,
.homepage .channel-panel,
.homepage .pricing-stat,
.homepage .pricing-features,
.homepage .pricing-side-card {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.homepage .strip-card,
.homepage .story-card,
.homepage .feature-card,
.homepage .problem-card,
.homepage .persona-card,
.homepage .compare-card,
.homepage .pricing-card,
.homepage .trust-card,
.homepage .channel-panel {
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.homepage .strip-card:hover,
.homepage .story-card:hover,
.homepage .feature-card:hover,
.homepage .problem-card:hover,
.homepage .persona-card:hover,
.homepage .compare-card:hover,
.homepage .pricing-card:hover,
.homepage .trust-card:hover,
.homepage .channel-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.34),
    0 0 38px rgba(255, 255, 255, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.homepage .story-grid,
.homepage .feature-grid,
.homepage .persona-grid,
.homepage .trust-grid,
.homepage .pricing-showcase,
.homepage .faq-list {
  gap: 1.15rem;
}

.homepage .compare-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.028));
}

.homepage .faq-list {
  padding: 0.35rem 0.2rem 0;
}

.homepage .proof-rail,
.homepage .problem-layout,
.homepage .process-shell,
.homepage .feature-layout,
.homepage .channel-editorial,
.homepage .truth-layout {
  display: grid;
  gap: 1.35rem;
}

.homepage .proof-rail {
  align-items: end;
}

.homepage .proof-copy .section-title {
  max-width: 13ch;
}

.homepage .proof-stats {
  display: grid;
  gap: 0.8rem;
}

.homepage .proof-stat {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.homepage .proof-stat:first-child {
  border-top: 0;
  padding-top: 0;
}

.homepage .proof-stat strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1;
}

.homepage .problem-pulse,
.homepage .feature-spotlight,
.homepage .truth-compare {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.022));
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.homepage .problem-pulse {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
}

.homepage .pain-list {
  display: grid;
  gap: 0.4rem;
}

.homepage .pain-item,
.homepage .feature-line,
.homepage .privacy-line,
.homepage .audience-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.homepage .pain-item:first-child,
.homepage .feature-line:first-child,
.homepage .privacy-line:first-child,
.homepage .audience-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.homepage .pain-item .card-title,
.homepage .feature-line strong,
.homepage .channel-band strong,
.homepage .audience-copy .card-title {
  margin-top: 0.2rem;
}

.homepage .feature-line strong {
  display: block;
  margin-bottom: 0.28rem;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.homepage .feature-line span {
  color: var(--ink-soft);
}

.homepage .process-copy {
  max-width: 680px;
}

.homepage .process-steps {
  display: grid;
  gap: 0.9rem;
}

.homepage .process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.homepage .process-step .card-title {
  margin-top: 0.45rem;
}

.homepage .feature-spotlight {
  padding: 1.3rem;
  border-radius: 28px;
}

.homepage .feature-spotlight .section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.homepage .feature-points,
.homepage .truth-points {
  display: grid;
  gap: 0.8rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.homepage .feature-points li,
.homepage .truth-points li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.homepage .feature-points li::before,
.homepage .truth-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.32);
}

.homepage .feature-lines {
  display: grid;
  gap: 0;
}

.homepage .channel-band-stack {
  display: grid;
  gap: 0;
}

.homepage .channel-band {
  padding: 1.15rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.homepage .channel-band:first-child {
  border-top: 0;
  padding-top: 0;
}

.homepage .channel-band p,
.homepage .privacy-line p {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
}

.homepage .truth-copy {
  max-width: 720px;
}

.homepage .truth-compare {
  display: grid;
  border-radius: 28px;
  overflow: hidden;
}

.homepage .truth-column {
  padding: 1.3rem;
}

.homepage .truth-column + .truth-column {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.homepage .truth-column-bad {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
}

.homepage .truth-column-good {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03));
}

.homepage .privacy-lines {
  display: grid;
  gap: 0;
  margin-top: 1.4rem;
}

.homepage .privacy-line strong {
  display: block;
  font-family: "Sora", sans-serif;
}

.homepage .audience-list {
  display: grid;
  gap: 0;
}

.homepage .audience-row {
  display: grid;
  gap: 0.9rem;
  align-items: start;
}

.homepage .audience-role {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.homepage .audience-copy {
  min-width: 0;
}

.homepage .audience-copy .card-title {
  margin-bottom: 0.45rem;
}

.homepage .audience-signal {
  align-self: start;
  justify-self: start;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.section {
  padding: var(--section-space) 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.section:nth-of-type(odd)::before {
  background: radial-gradient(circle at 14% 26%, rgba(255, 255, 255, 0.035), transparent 22%);
}

.section:nth-of-type(even)::before {
  background: radial-gradient(circle at 84% 30%, rgba(255, 255, 255, 0.03), transparent 22%);
}

.section-header {
  max-width: 740px;
  margin-bottom: 2.2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}

.eyebrow-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--teal);
}

.title {
  margin: 1rem 0 1.2rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.section-title {
  margin: 0 0 1rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.lead,
.section-copy,
.muted {
  color: var(--ink-soft);
}

.lead {
  font-size: 1.08rem;
  max-width: 700px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 54px;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn .icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

.stat-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  margin-bottom: 0.55rem;
  background: rgba(255, 255, 255, 0.03);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  box-shadow: 0 16px 36px rgba(99, 102, 241, 0.55), 0 0 20px rgba(147, 51, 234, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(12px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  transition: padding 180ms ease, background 180ms ease, box-shadow 180ms ease, border 180ms ease;
  backdrop-filter: blur(20px);
  background: rgba(3, 3, 6, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header .container {
  width: min(calc(100% - 4rem), 1460px);
}

.site-header.is-scrolled {
  padding: 0.6rem 0;
  background: rgba(3, 3, 6, 0.78);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: #fff;
}

.navbar-logo {
  height: auto;
  width: 160px;
  max-height: 50px;
  object-fit: contain;
  object-position: left center;
  transform: scale(1.15);
  transform-origin: left center;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(130, 130, 130, 0.35));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: #050505;
}

.brand-mark span {
  font-size: 1.05rem;
}

.nav-links,
.nav-actions {
  display: none;
}

.nav-links {
  gap: 1.3rem;
  color: rgba(255, 255, 255, 0.84);
}

.nav-links a {
  font-weight: 700;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
  position: relative;
}

.menu-toggle-bars {
  width: 18px;
  display: grid;
  gap: 4px;
}

.menu-toggle-bars span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.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;
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 220ms ease;
  z-index: 58;
}

.mobile-backdrop[hidden],
.mobile-panel[hidden] {
  display: none;
}

.mobile-backdrop.is-open {
  opacity: 1;
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(88vw, 380px);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1.15rem;
  padding: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px 0 0 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(23, 23, 23, 0.98), rgba(5, 5, 5, 0.99));
  color: #fff;
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.45);
  overflow-y: auto;
  transform: translateX(105%);
  opacity: 0;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
  z-index: 59;
}

.mobile-panel.is-open {
  transform: translateX(0);
  opacity: 1;
}

.mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.mobile-close {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.mobile-close span[aria-hidden="true"] {
  font-size: 1.6rem;
  line-height: 1;
  transform: rotate(45deg);
}

.mobile-panel-links,
.mobile-panel-foot {
  display: grid;
  gap: 0.75rem;
}

.mobile-panel-links {
  align-content: start;
}

.mobile-panel-links a,
.mobile-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.mobile-panel-links a::after,
.mobile-social::after {
  content: "+";
  font-size: 1.1rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.72);
  transform: rotate(-45deg);
}

.mobile-panel-links a:hover,
.mobile-panel-links a:focus-visible,
.mobile-social:hover,
.mobile-social:focus-visible {
  transform: translateX(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-panel-foot {
  align-content: end;
}

.mobile-panel .btn {
  width: 100%;
}

.homepage .hero-cinematic {
  padding: clamp(1rem, 2.2vw, 2.5rem) 0 clamp(2.5rem, 5vw, 5rem);
  position: relative;
}

.homepage .hero-cinematic > .container {
  position: relative;
  padding: 0;
  border-radius: 0;
  overflow: visible;
  isolation: auto;
  border: none;
  background: transparent;
  box-shadow: none;
  width: min(calc(100% - 4rem), 1460px);
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

.hero-asymmetric-grid {
  display: grid;
  grid-template-columns: minmax(55%, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .hero-asymmetric-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.hero-left-col {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.premium-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00ffcc;
  box-shadow: 0 0 12px #00ffcc;
  animation: pulse-active 2s infinite;
}

@keyframes pulse-active {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.premium-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cinematic-headline {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.6rem, 5.8vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 800;
  margin: 0 0 2.2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.headline-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: slide-up-cinematic 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.headline-line.line-1 { animation-delay: 0.1s; }
.headline-line.line-2 { animation-delay: 0.22s; }
.headline-line.line-3 { 
  animation-delay: 0.34s;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(135deg, #fff 40%, rgba(255,255,255,0.3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes slide-up-cinematic {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-asymmetric-body {
  padding-left: clamp(1.2rem, 3vw, 2.2rem);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(20px);
  animation: fade-in-up-editorial 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.48s forwards;
}

@keyframes fade-in-up-editorial {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-editorial-lead {
  font-family: "Manrope", sans-serif;
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 580px;
  margin: 0 0 2.2rem;
}

.hero-editorial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.btn-premium-primary {
  background: #fff;
  color: #030306;
  border: 1px solid #fff;
  padding: 1.1rem 2.2rem;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-premium-primary:hover {
  background: #00ffcc;
  border-color: #00ffcc;
  color: #030306;
  transform: translateY(-3px);
  box-shadow: 0 25px 50px rgba(0, 255, 204, 0.18);
}

.arrow-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-premium-primary:hover .arrow-icon {
  transform: translateX(4px);
}

.btn-premium-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.1rem 2.2rem;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-premium-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: translateY(-2px);
}

.hero-micro-specs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.spec-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.35);
}

.spec-val {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.hero-right-col {
  display: flex;
  justify-content: center;
}

.canvas-viewport-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 580px;
  margin: 0 auto;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.005) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 12px;
  box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  backdrop-filter: blur(24px);
  opacity: 0;
  transform: scale(0.96) translateY(20px);
  animation: fade-in-up-editorial 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.canvas-border-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.06), transparent 45%);
  z-index: 2;
}

.canvas-interactive-area {
  flex: 1;
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

#conversationEngineCanvas {
  width: 100%;
  height: 100%;
  display: block;
  background: #030306;
}

.engine-dashboard-controls {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem 0.5rem 0.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 10;
}

.dashboard-title {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
}

.dashboard-selectors {
  display: flex;
  gap: 0.6rem;
}

.selector-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.7rem 0.5rem;
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.selector-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

.selector-btn.active {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.selector-btn .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.selector-btn.active .dot {
  background: #00ffcc;
  box-shadow: 0 0 8px #00ffcc;
}

.strip-card,
.story-card,
.feature-card,
.problem-card,
.persona-card,
.compare-card,
.pricing-card,
.contact-card,
.form-card,
.trust-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
}

.social-strip {
  margin-top: -2.5rem;
}

.strip-card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.logo-slot {
  display: grid;
  place-items: center;
  min-height: 64px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink-soft);
  font-weight: 800;
}

.story-grid,
.feature-grid,
.persona-grid,
.compare-grid,
.faq-list {
  display: grid;
  gap: 1rem;
}

.story-card,
.problem-card,
.feature-card,
.persona-card,
.contact-card,
.trust-card,
.form-card {
  padding: 1.4rem;
}

.story-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.problem-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 68%);
}

.card-kicker {
  display: inline-flex;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 255, 204, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.15);
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-title {
  margin: 1rem 0 0.65rem;
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
  line-height: 1.2;
}

.number-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff, #bdbdbd);
  color: #050505;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.feature-icon .icon {
  width: 1.3rem;
  height: 1.3rem;
}

.feature-icon.icon-inline {
  width: 44px;
  height: 44px;
  margin-bottom: 0;
  flex: 0 0 auto;
}

.feature-icon.icon-compact {
  width: 44px;
  height: 44px;
  margin-bottom: 0.85rem;
}

.feature-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.feature-card-header .feature-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.channel-showcase {
  display: grid;
  gap: 1rem;
}

.channel-stack {
  display: grid;
  gap: 1rem;
}

.channel-panel {
  padding: 1.1rem;
  border-radius: 22px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

.channel-panel.whatsapp {
  background: linear-gradient(135deg, #101010, #1e1e1e);
}

.channel-panel.instagram {
  background: linear-gradient(135deg, #171717, #2b2b2b);
}

.channel-panel.website {
  background: linear-gradient(135deg, #0d0d0d, #242424);
}

.channel-panel.email {
  background: linear-gradient(135deg, #050505, #1a1a1a);
}

.channel-panel strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: "Sora", sans-serif;
}

.channel-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.45rem;
}

.channel-head strong {
  margin-bottom: 0;
}

.compare-card {
  overflow: hidden;
}

.compare-head {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.95rem 1.2rem;
  border-bottom: 1px solid var(--line);
}

.compare-row:last-child {
  border-bottom: 0;
}

.compare-row span {
  min-width: 0;
}

.compare-row span:first-child,
.compare-head span:first-child {
  font-weight: 800;
}

.compare-jiffply {
  color: #ffffff;
  font-weight: 800;
}

.bullet-list,
.pricing-list,
.contact-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.bullet-list li,
.pricing-list li,
.contact-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.list-mark {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 0.12rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
  flex: 0 0 auto;
}

.trust-grid {
  display: grid;
  gap: 1rem;
}

.trust-card.bad {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
}

.trust-card.good {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.035));
}

.trust-label {
  display: inline-flex;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.trust-card.bad .trust-label {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.trust-card.good .trust-label {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.quote-box {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-band {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #060606 0%, #111111 48%, #1a1a1a 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.privacy-band::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 70%);
}

.privacy-grid {
  display: grid;
  gap: 1rem;
}

.privacy-point {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-showcase {
  display: grid;
  gap: 1rem;
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr);
}

.pricing-card {
  position: relative;
  overflow: hidden;
  max-width: none;
  margin: 0;
  padding: 2rem;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3);
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.14), transparent 20%),
    radial-gradient(circle at 14% 88%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(9, 9, 9, 0.95));
}

.pricing-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 68%);
  pointer-events: none;
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.4rem;
}

.pricing-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
}

.pricing-copy h3 {
  margin: 0.2rem 0 0.65rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.pricing-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.price-block {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.price-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
}

.price {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(3rem, 7vw, 4.6rem);
  line-height: 1;
}

.price-subline {
  color: var(--ink-soft);
  font-size: 1rem;
}

.pricing-stats {
  display: grid;
  gap: 0.8rem;
}

.pricing-stat {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-stat strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.pricing-features {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.pricing-footnote {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.pricing-side {
  display: grid;
  gap: 1rem;
}

.pricing-side-card {
  padding: 1.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.pricing-side-card h4 {
  margin: 0 0 0.55rem;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.pricing-side-card p {
  margin: 0;
  color: var(--ink-soft);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  text-align: left;
}

.faq-button span {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  font-size: 1rem;
}

.faq-panel {
  padding: 0 0 1rem;
  color: var(--ink-soft);
}

.faq-panel[hidden] {
  display: none;
}

.cta-band {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 36px;
  background: linear-gradient(135deg, #050505 0%, #141414 58%, #292929 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-shell {
  display: grid;
  gap: 1.2rem;
  padding: 2rem;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(16px);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.2rem;
}

.footer-meta {
  color: var(--ink-soft);
}

.page-hero {
  position: relative;
  padding: 5rem 0 3.5rem;
  color: #fff;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #050505, #1a1a1a);
  z-index: -1;
}

.mini-grid,
.feature-grid-compact {
  display: grid;
  gap: 1rem;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.split {
  display: grid;
  gap: 2rem;
}

.mini-card {
  padding: 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.form-card {
  padding: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--teal);
  font-weight: 700;
}

.note {
  display: inline-flex;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 1.15rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .logo-row,
  .mini-grid,
  .feature-grid-compact,
  .privacy-grid,
  .trust-grid,
  .contact-grid,
  .compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats,
  .story-grid,
  .persona-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero-layout {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .homepage .proof-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .homepage .proof-stat {
    padding: 0 0 0 1rem;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

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

/* ── Subpage tablet adjustments (720px-959px) ── */
@media (min-width: 720px) and (max-width: 959px) {
  .page-hero {
    padding: 4.5rem 0 3rem;
  }

  .page-hero .title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    line-height: 1.15;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .pricing-card {
    max-width: 640px;
    margin-inline: auto;
  }
}

@media (min-width: 960px) {
  .nav-links,
  .nav-actions {
    display: flex;
    align-items: center;
  }

  .mobile-backdrop,
  .menu-toggle,
  .mobile-panel {
    display: none;
  }

  .hero-grid,
  .split {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  }

  .homepage .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(520px, 0.92fr);
    align-items: stretch;
  }

  .homepage .split {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .homepage .channel-showcase {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    align-items: stretch;
  }

  .homepage .problem-layout,
  .homepage .feature-layout,
  .homepage .channel-editorial,
  .homepage .truth-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .homepage .proof-rail {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
  }

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

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

  .homepage .truth-column + .truth-column {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .homepage .audience-row {
    display: grid;
    grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1.3fr) auto;
    gap: 1rem;
  }

  .channel-showcase {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .pricing-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: start;
  }
}

@media (max-width: 959px) {
  .nav-wrap {
    border-radius: 28px;
  }

  .hero-board {
    min-height: auto;
  }

  .floating-tag,
  .orb-card {
    position: static;
    width: auto;
    margin-top: 0.85rem;
  }

  .board-shell {
    margin-top: 1rem;
  }
}

@media (max-width: 719px) {
  .container {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .homepage main {
    gap: 1rem;
    padding-bottom: 1.4rem;
  }

  .homepage .container {
    width: min(calc(100% - 1rem), 1360px);
  }

  .homepage .hero > .container,
  .homepage .section > .container,
  .homepage .social-strip > .container {
    padding: 1.05rem;
    border-radius: 28px;
  }

  .homepage .hero-panel {
    padding: 1rem;
    border-radius: 24px;
  }

  .homepage .board-shell {
    padding: 0.9rem;
    border-radius: 28px;
  }

  .homepage .hero-note {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .homepage .pain-item,
  .homepage .feature-line,
  .homepage .privacy-line {
    gap: 0.9rem;
  }

  .homepage .pain-item .feature-icon.icon-inline {
    margin-left: 0.15rem;
  }

  .homepage .process-step,
  .homepage .truth-column,
  .homepage .feature-spotlight {
    padding: 1rem;
  }

  .homepage .audience-signal {
    margin-top: 0.35rem;
  }

  .section {
    padding: 2.75rem 0;
  }

  .site-header {
    padding: 0.75rem 0;
  }

  .site-header .container {
    width: min(calc(100% - 1.2rem), 1460px);
  }

  .nav-wrap {
    padding: 0.7rem 0.8rem;
    border-radius: 24px;
  }

  .brand {
    gap: 0.65rem;
    font-size: 0.98rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .mobile-panel {
    width: min(92vw, 360px);
    padding: 0.9rem;
    border-radius: 24px 0 0 24px;
  }

  .hero {
    padding-top: 1.25rem;
  }

  .note,
  .eyebrow {
    margin-bottom: 1.15rem;
  }

  .title {
    font-size: clamp(2.45rem, 11vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    padding-left: 0.05em;
    max-width: none !important;
  }

  .section-title {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
    letter-spacing: -0.02em;
    padding-left: 0.05em;
    max-width: none !important;
  }

  .homepage .proof-copy .section-title,
  .homepage .truth-copy .section-title {
    max-width: none !important;
  }

  .section-header {
    margin-bottom: 1.5rem;
    margin-inline: 0;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-panel {
    gap: 1.2rem;
  }

  .hero-note {
    font-size: 0.9rem;
  }

  .hero-board {
    margin-top: 0.4rem;
  }

  .board-shell {
    padding: 0.8rem;
    border-radius: 28px;
  }

  .message,
  .response-meter,
  .story-card,
  .problem-card,
  .feature-card,
  .trust-card,
  .contact-card,
  .form-card {
    padding: 1.1rem;
  }

  .orb-card,
  .floating-tag {
    font-size: 0.92rem;
  }

  .pricing-card {
    padding: 1.4rem;
  }

  .pricing-grid {
    gap: 1rem;
  }

  .pricing-copy h3 {
    font-size: 1.55rem;
  }

  .pricing-features {
    padding: 0.9rem;
  }

  .pricing-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-actions .btn,
  .pricing-actions .note {
    width: 100%;
    justify-content: center;
  }

  .privacy-band,
  .footer-shell {
    padding: 1.4rem;
    border-radius: 28px;
  }

  .cta-band {
    padding: 2.5rem 1.4rem;
    border-radius: 28px;
  }

  .footer-shell {
    text-align: center;
    justify-items: center;
  }

  .footer-links {
    justify-content: center;
    gap: 1rem 1.5rem;
  }

  .social-strip {
    margin-top: -1.1rem;
  }

  .faq-list {
    gap: 0;
  }

  .faq-button {
    align-items: flex-start;
    padding: 1rem 0;
    font-size: 1.02rem;
    line-height: 1.45;
  }

  .faq-button span {
    width: 24px;
    height: 24px;
    margin-top: 0.1rem;
    font-size: 1.1rem;
  }

  .faq-panel {
    padding: 0 1.5rem 1rem 0;
    font-size: 0.97rem;
    line-height: 1.65;
  }

  .btn-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .compare-card {
    border-radius: 24px;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .compare-head {
    display: none;
  }

  .compare-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem 0.85rem;
    margin-bottom: 0.9rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-md);
  }

  .compare-row span:first-child {
    grid-column: 1 / -1;
    padding-bottom: 0.15rem;
    font-size: 1rem;
  }

  .compare-row span:not(:first-child) {
    display: grid;
    gap: 0.25rem;
    align-content: start;
    font-size: 0.92rem;
    color: var(--ink-soft);
  }

  .compare-row span:not(:first-child)::before {
    content: attr(data-label);
    color: var(--ink);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .compare-row .compare-jiffply {
    color: #ffffff;
  }

  .compare-row .compare-jiffply::before {
    color: #ffffff;
  }

  .compare-row:last-child {
    margin-bottom: 0;
  }

  .price {
    font-size: 2.8rem;
  }

  /* ── Subpage hero adjustments (Contact, Features, Pricing) ── */
  .page-hero {
    padding: 3.5rem 0 2.2rem;
  }

  .page-hero .title {
    font-size: clamp(1.85rem, 7.5vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0.75rem 0 1rem;
  }

  .page-hero .lead {
    font-size: 0.95rem;
  }

  .page-hero .eyebrow {
    font-size: 0.72rem;
    padding: 0.45rem 0.7rem;
  }

  /* ── Mini grid cards inside hero ── */
  .page-hero .mini-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1.2rem;
  }

  .mini-card {
    padding: 1rem;
    border-radius: 18px;
  }

  .mini-card strong {
    font-size: 0.95rem;
  }

  .mini-card p {
    font-size: 0.88rem;
    margin: 0.25rem 0 0;
    color: rgba(255, 255, 255, 0.6);
  }

  /* ── Contact page: form + sidebar cards ── */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .form-card {
    padding: 1.15rem;
    border-radius: 20px;
  }

  .contact-form .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-card {
    padding: 1.1rem;
    border-radius: 18px;
  }

  /* ── Features page: card grid ── */
  .feature-grid {
    grid-template-columns: 1fr !important;
    gap: 0.85rem;
  }

  .feature-card {
    padding: 1.1rem;
    border-radius: 20px;
  }

  .feature-card .card-title {
    font-size: 1.1rem;
    margin: 0.75rem 0 0.5rem;
  }

  .feature-card .muted {
    font-size: 0.9rem;
  }

  /* ── Features page: split section ── */
  .split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    line-height: 1.15;
  }

  .split .lead {
    font-size: 0.95rem;
  }

  /* ── Features/Pricing: compact feature grid (3-col → 1-col on mobile) ── */
  .feature-grid-compact {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .story-card {
    padding: 1.1rem;
    border-radius: 18px;
  }

  .story-card .card-title {
    font-size: 1.08rem;
    margin: 0.7rem 0 0.45rem;
  }

  /* ── Pricing page: pricing card ── */
  .pricing-card {
    padding: 1.4rem;
    border-radius: 24px;
    text-align: center;
  }

  .pricing-card .note {
    margin-bottom: 0.85rem;
  }

  .pricing-card .price {
    font-size: 2.6rem;
    text-align: center;
    line-height: 1.15;
    margin: 0.4rem 0;
  }

  .pricing-card .price .muted {
    font-size: 0.88rem !important;
    display: block;
    margin-top: 0.25rem;
  }

  .pricing-list {
    text-align: left;
    gap: 0.75rem;
    margin: 1rem 0;
  }

  .pricing-list li {
    font-size: 0.92rem;
    gap: 0.6rem;
  }

  .pricing-card .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-card .btn {
    width: 100%;
    justify-content: center;
  }

  .pricing-card > .muted {
    font-size: 0.85rem;
    margin-top: 0.6rem;
  }

  /* ── Footer refinements ── */
  .footer-shell {
    text-align: center;
    justify-items: center;
    padding: 1.4rem;
    border-radius: 24px;
  }

  .footer-links {
    justify-content: center;
    gap: 0.75rem 1.2rem;
  }

  .footer-meta {
    font-size: 0.85rem;
  }

  .footer-meta p {
    margin: 0;
  }

  /* ── Section spacing on subpages ── */
  .section {
    padding: 2.5rem 0;
  }
}

/* ============================================================================
   JIFFPLY CORE v2.0 - COMING SOON WAITLIST & BRAND FLOATING ICONS OVERLAY
   ============================================================================ */

.hero-waitlist-form {
  margin: 2.2rem 0 3.2rem;
  max-width: 520px;
  position: relative;
  z-index: 5;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-in-up-editorial 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.52s forwards;
}

.waitlist-input-wrapper {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 12px 36px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.waitlist-input-wrapper:focus-within {
  border-color: rgba(0, 255, 204, 0.4);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 16px 44px rgba(0, 255, 204, 0.08);
}

.waitlist-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
}

.waitlist-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.btn-waitlist-submit {
  background: #fff;
  color: #030306;
  border: none;
  padding: 0.85rem 1.65rem;
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.05);
}

.btn-waitlist-submit:hover {
  background: #00ffcc;
  color: #030306;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 255, 204, 0.2);
}

.waitlist-feedback {
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.75rem;
  padding-left: 1rem;
  min-height: 20px;
  transition: all 0.3s ease;
}

.waitlist-feedback.success {
  color: #00ffcc;
  text-shadow: 0 0 10px rgba(0, 255, 204, 0.2);
}

.waitlist-feedback.error {
  color: #ff3b30;
}

/* Floating SVG Nodes Overlay */
.node-icon-element {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  z-index: 10;
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.node-icon-element .icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 4, 8, 0.94);
  display: grid;
  place-items: center;
  box-shadow: 
    0 12px 28px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.node-icon-element .icon-circle .icon {
  width: 18px;
  height: 18px;
  stroke: none;
  fill: currentColor;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Special Outline Stroke logic for Envelope SVG icon */
.node-icon-element.node-email .icon-circle .icon {
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.node-icon-element .node-label {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  transition: all 0.3s ease;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

/* Interactive Brand wiggles and halo glows */
.node-icon-element:hover {
  transform: translate(-50%, -55%) scale(1.08);
}

.node-icon-element:hover .icon-circle {
  color: var(--brand-color);
  border-color: var(--brand-color);
  box-shadow: 
    0 16px 36px rgba(0, 0, 0, 0.7),
    0 0 20px var(--brand-color),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.node-icon-element:hover .icon-circle .icon {
  transform: scale(1.1);
}

.node-icon-element:hover .node-label {
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

/* ============================================================================
   JIFFPLY CORE - PREMIUM HERO MOBILE RESPONSIVENESS LAYER
   ============================================================================ */

/* Medium Screens (Tablets / Portables - max-width: 1024px) */
@media (max-width: 1024px) {
  .homepage .hero-cinematic > .container {
    width: min(calc(100% - 3rem), 1460px);
  }
  
  .cinematic-headline {
    text-align: center;
    align-items: center;
  }
  
  .hero-asymmetric-body {
    border-left: none;
    padding-left: 0;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  
  .hero-editorial-lead {
    margin: 0 auto 2.2rem;
  }
  
  .hero-waitlist-form {
    margin: 2.2rem auto 3.2rem;
    width: 100%;
  }
  
  .hero-micro-specs {
    justify-content: center;
    gap: 2rem;
  }
}

/* Small Screens (Large Mobiles - max-width: 768px) */
@media (max-width: 768px) {
  .homepage .hero-cinematic {
    padding: clamp(1rem, 1.5vw, 1.8rem) 0 clamp(2rem, 4vw, 4rem);
  }

  .homepage .hero-cinematic > .container {
    width: min(calc(100% - 2rem), 1460px);
  }

  .cinematic-headline {
    font-size: clamp(2rem, 8vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    padding-left: 0.05em;
    margin-bottom: 1.8rem;
    max-width: none !important;
  }

  .hero-editorial-lead {
    font-size: 1rem;
    line-height: 1.6;
  }

  .canvas-viewport-wrapper {
    border-radius: 24px;
  }
}

/* Extra Small Screens (Smartphones / Large Mobiles - max-width: 560px) */
@media (max-width: 560px) {
  .homepage .hero-cinematic > .container {
    width: min(calc(100% - 1.5rem), 1460px);
  }

  /* Hide the clunky eyebrow badge entirely on small viewports to yield a clean editorial title reveal */
  .hero-eyebrow-container {
    display: none !important;
  }

  .cinematic-headline {
    font-size: clamp(1.8rem, 9.5vw, 2.4rem);
    letter-spacing: -0.01em;
    padding-left: 0.05em;
    margin-top: 0.5rem;
  }

  /* Compact Brand Overlay Nodes to fit small viewports perfectly */
  .node-icon-element .icon-circle {
    width: 38px;
    height: 38px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  }

  .node-icon-element .icon-circle .icon {
    width: 14px;
    height: 14px;
  }

  .node-icon-element .node-label {
    font-size: 7px;
    letter-spacing: 0.12em;
  }

  /* Keep inline row layout on mobile to match the gorgeous desktop capsule styling */
  .waitlist-input-wrapper {
    flex-direction: row;
    border-radius: 999px;
    padding: 4px 4px 4px 14px;
    gap: 0;
  }

  .waitlist-input {
    width: auto;
    text-align: left;
    padding: 0;
    font-size: 0.82rem;
  }

  .waitlist-input::placeholder {
    font-size: 0.82rem;
  }

  .btn-waitlist-submit {
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
  }

  .btn-waitlist-submit .btn-text {
    display: none !important;
  }

  .btn-waitlist-submit .arrow-icon,
  .btn-waitlist-submit .check-icon {
    display: block !important;
    width: 14px !important;
    height: 14px !important;
    margin: 0 !important;
  }

  /* Eliminate empty spacer gaps, bringing elements close together */
  .hero-waitlist-form {
    margin: 1.5rem auto 1.2rem !important;
    width: 100% !important;
  }

  /* Custom editorial grid stack for specs: Latency & Accuracy side-by-side, long Coverage centered */
  .hero-micro-specs {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
    padding-top: 1.2rem !important;
    border-top: 1px dashed rgba(255, 255, 255, 0.08) !important;
  }

  .spec-item {
    align-items: center !important;
    text-align: center !important;
  }

  .spec-item:nth-child(3) {
    grid-column: span 2 !important;
    border-top: 1px dashed rgba(255, 255, 255, 0.05) !important;
    padding-top: 0.6rem !important;
  }

  .waitlist-feedback {
    text-align: center;
    padding-left: 0;
  }

  /* Ultra-Premium Glass Brand Node circles (hiding uppercase labels for a clean visual canvas) */
  .node-icon-element .node-label {
    display: none !important;
  }

  .node-icon-element .icon-circle {
    width: 42px !important;
    height: 42px !important;
    background: rgba(4, 4, 8, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 
      0 8px 24px rgba(0, 0, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
  }

  .node-icon-element .icon-circle .icon {
    width: 15px !important;
    height: 15px !important;
  }

  /* Premium Dashboard Bezel Container Styling */
  .canvas-viewport-wrapper {
    background: rgba(2, 2, 4, 0.92) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 
      0 24px 60px rgba(0, 0, 0, 0.7),
      inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    aspect-ratio: auto !important;
    height: auto !important;
  }

  .canvas-interactive-area {
    height: 180px !important;
  }

  .engine-dashboard-controls {
    background: rgba(4, 4, 8, 0.95) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding: 1rem 0.85rem 0.85rem !important;
  }

  .dashboard-title {
    font-family: "Sora", sans-serif !important;
    font-weight: 800 !important;
    font-size: 8px !important;
    letter-spacing: 0.18em !important;
    color: rgba(255, 255, 255, 0.25) !important;
    margin-bottom: 0.6rem !important;
    display: block !important;
    text-align: center !important;
  }

  /* Segmented control stacked vertically on small viewports for ease of tap interaction */
  .dashboard-selectors {
    display: flex !important;
    flex-direction: column !important;
    background: rgba(0, 0, 0, 0.45) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
    padding: 6px !important;
    gap: 6px !important;
    width: 100% !important;
  }

  .selector-btn {
    flex: none !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    padding: 0.65rem 1rem !important;
    font-size: 0.72rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
    font-weight: 700 !important;
    gap: 0.5rem !important;
    justify-content: flex-start !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: none !important;
  }

  .selector-btn.active {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 
      0 2px 6px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  }

  .selector-btn .dot {
    width: 5px !important;
    height: 5px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
  }

  .selector-btn.active .dot {
    background: #00ffcc !important;
    box-shadow: 0 0 8px #00ffcc !important;
  }
}

/* ============================================================================
   JIFFPLY – CONTACT PAGE PREMIUM REDESIGN
   ============================================================================ */

/* ── Hero ── */
.contact-hero {
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(99, 102, 241, 0.14), transparent),
    radial-gradient(ellipse 50% 60% at 80% 100%, rgba(147, 51, 234, 0.08), transparent),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  z-index: -2;
}

.contact-hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(147, 51, 234, 0.06) 40%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  animation: contact-glow-pulse 6s ease-in-out infinite alternate;
}

@keyframes contact-glow-pulse {
  0% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  100% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}

.contact-hero-inner {
  max-width: 920px;
  margin: 0 auto;
}

.contact-hero .eyebrow {
  margin-bottom: 1.4rem;
}

.contact-hero-title {
  margin: 0 0 1.25rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.contact-hero-lead {
  margin: 0 auto 1.85rem;
  max-width: 560px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}

/* ── Trust strip in hero ── */
.contact-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.contact-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
}

.contact-trust-item .icon {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--teal);
}

/* ── Contact section ── */
.contact-section {
  padding-top: 0;
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 1rem;
  position: relative;
  z-index: 2;
}

.contact-cta-section {
  padding-top: clamp(1.5rem, 3vw, 2.5rem) !important;
  padding-bottom: clamp(2rem, 4vw, 3.5rem) !important;
}

/* ── Contact layout grid ── */
.contact-layout {
  display: grid;
  gap: 1.25rem;
}

/* ── Form card ── */
.contact-form-card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 0% 0%, rgba(99, 102, 241, 0.06), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(16px);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.contact-form-head {
  padding: 2rem 2rem 0;
  margin-bottom: 0.5rem;
}

.contact-form-head .feature-icon {
  margin-bottom: 1rem;
}

.contact-form-title {
  margin: 0 0 0.45rem;
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.contact-form-subtitle {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-form-card .contact-form {
  padding: 1.5rem 2rem 2rem;
  display: grid;
  gap: 0.8rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.contact-form-card .field label {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
}

.contact-form-card .field input,
.contact-form-card .field textarea,
.contact-form-card .field select {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.contact-form-card .field input:focus,
.contact-form-card .field textarea:focus,
.contact-form-card .field select:focus {
  outline: none;
  border-color: rgba(99, 102, 241, 0.5);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.contact-form-card .field input::placeholder,
.contact-form-card .field textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.contact-form-card .field textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-submit-btn {
  width: 100%;
  min-height: 56px;
  font-size: 1rem;
  gap: 0.7rem;
}

.contact-submit-btn .icon {
  width: 1rem;
  height: 1rem;
}

/* ── Info column ── */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-info-stack {
  display: grid;
  gap: 1rem;
}

/* ── Info cards with numbered steps ── */
.contact-info-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.35rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(255, 255, 255, 0.03);
}

.contact-info-number {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--teal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-info-body {
  min-width: 0;
}

.contact-info-body .card-kicker {
  font-size: 0.72rem;
}

.contact-info-body .card-title {
  margin: 0.6rem 0 0.4rem;
  font-size: 1.1rem;
}

.contact-info-body .muted {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── Direct contact card ── */
.contact-direct-card {
  padding: 1.2rem 1.4rem;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
}

.contact-direct-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
}

.contact-direct-card .muted {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
}

.contact-email-link {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}

.contact-email-link:hover {
  color: var(--teal-bright);
}

/* ── CTA band ── */
.contact-cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.08), transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #171717 58%, #222222 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 36px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-align: center;
  color: #fff;
}

.contact-cta-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent 60%);
  pointer-events: none;
}

.contact-cta-band .section-title {
  max-width: 520px;
  margin-inline: auto;
  text-wrap: balance;
}

.contact-cta-band .lead {
  margin-inline: auto;
}

/* ============================================================================
   CONTACT PAGE – RESPONSIVE
   ============================================================================ */

@media (min-width: 720px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1.25rem;
    align-items: start;
  }
}

@media (min-width: 960px) {
  .contact-layout {
    gap: 1.5rem;
  }

  .contact-form-head {
    padding: 2.2rem 2.2rem 0;
  }

  .contact-form-card .contact-form {
    padding: 1.5rem 2.2rem 2.2rem;
  }
}

/* Tablet (720-959px) */
@media (min-width: 720px) and (max-width: 959px) {
  .contact-hero-title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* Mobile (max 719px) */
@media (max-width: 719px) {
  .contact-hero {
    padding: 3.5rem 0 2.5rem;
  }

  .contact-hero-title {
    font-size: clamp(1.75rem, 7.5vw, 2.4rem);
    line-height: 1.12;
  }

  .contact-hero-lead {
    font-size: 0.95rem;
    margin-bottom: 1.6rem;
  }

  .contact-trust-strip {
    gap: 0.5rem;
  }

  .contact-trust-item {
    font-size: 0.75rem;
    padding: 0.45rem 0.7rem;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .contact-form-head {
    padding: 1.3rem 1.3rem 0;
  }

  .contact-form-card .contact-form {
    padding: 1.2rem 1.3rem 1.3rem;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-title {
    font-size: 1.25rem;
  }

  .contact-info-card {
    padding: 1.15rem;
    border-radius: 18px;
  }

  .contact-info-number {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 0.88rem;
  }

  .contact-info-body .card-title {
    font-size: 1.02rem;
  }

  .contact-direct-card {
    padding: 1rem 1.15rem;
  }

  .contact-cta-band {
    padding: 2rem 1.3rem;
    border-radius: 24px;
  }

  .contact-cta-band .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .contact-cta-band .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-cta-band .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================================
   JIFFPLY – FOOTER PREMIUM REDESIGN
   ============================================================================ */

.site-footer {
  padding: 5rem 0 2.5rem;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 10;
}

.footer-container {
  width: min(calc(100% - 2.5rem), 1460px) !important;
  max-width: 1460px !important;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem 2rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 360px;
}

.footer-logo {
  height: auto;
  width: 240px;
  max-height: 70px;
  object-fit: contain;
  object-position: left center;
  transform: scale(1.1);
  transform-origin: left center;
}

.footer-tagline {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink-soft);
  display: inline-grid;
  place-items: center;
  transition: all 0.2s ease;
}

.social-icon-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col-title {
  margin: 0 0 1.25rem;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link-list a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.18s ease;
}

.footer-link-list a:hover {
  color: #fff;
}

.footer-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trust-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: var(--ink-soft);
  width: fit-content;
}

.trust-badge-pill .icon {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--teal);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding-top: 2rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.footer-copyright {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--ink-soft);
  transition: color 0.18s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* Responsive Footer */
@media (max-width: 959px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }
}

@media (max-width: 599px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* Legal Pages Styling */
.legal-header {
  text-align: center;
  padding: 6rem 1.5rem 4rem;
}

.legal-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-meta {
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 500;
}

.legal-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 3rem 4rem;
  max-width: 800px;
  margin: 0 auto 6rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-size: 1.05rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.legal-box h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  color: #fff;
  margin: 2.5rem 0 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.legal-box h3:first-child {
  margin-top: 0;
}

.legal-box p {
  margin-bottom: 1.5rem;
}

.legal-box a {
  color: #00ffcc;
  text-decoration: none;
  transition: opacity 0.2s;
}

.legal-box a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .legal-box {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
}

/* Redesigned Pricing Page Styles */

.page-hero {
  position: relative;
  padding: clamp(6.5rem, 11vw, 9.5rem) 0 clamp(4.5rem, 7vw, 7rem);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 10% 40%, rgba(147, 51, 234, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 255, 204, 0.05) 0%, transparent 40%),
    linear-gradient(180deg, #07070a 0%, #030306 100%);
  z-index: -1;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 90%);
  opacity: 0.45;
  z-index: -1;
  pointer-events: none;
}

.page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
}

.page-hero .title {
  max-width: 24ch;
  margin: 1.25rem auto 1.5rem;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.15;
  background: linear-gradient(135deg, #ffffff 40%, rgba(255, 255, 255, 0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Redesigned Mini Card UI & Grid */
.mini-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-top: 2.5rem;
  width: 100%;
  max-width: 820px;
}

@media (min-width: 768px) {
  .mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mini-card {
  padding: 1.5rem 1.75rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
}

.mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 22px 45px rgba(0, 0, 0, 0.35),
    0 0 25px rgba(99, 102, 241, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mini-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mini-card-header .feature-icon {
  margin-bottom: 0;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-color: rgba(255, 255, 255, 0.1);
}

.mini-card-header strong {
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.mini-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

/* Pricing Grid Compact override */
.feature-grid-compact {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .feature-grid-compact {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Redesigned Premium Pricing Card layout */
.pricing-section {
  padding-top: 1rem;
  padding-bottom: 5rem;
  position: relative;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.pricing-card {
  max-width: 1040px;
  margin: 0 auto;
  border-radius: 32px;
  background: 
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.045) 0%, transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(99, 102, 241, 0.05) 0%, transparent 40%),
    linear-gradient(180deg, rgba(15, 15, 18, 0.98) 0%, rgba(8, 8, 10, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 2.25rem 2rem;
  box-shadow: 
    0 35px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
}

@media (min-width: 992px) {
  .pricing-card {
    grid-template-columns: 1fr 1.15fr;
    padding: 4rem 3.5rem;
    gap: 4rem;
  }
}

.pricing-card-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(0, 255, 204, 0.06);
  border: 1px solid rgba(0, 255, 204, 0.2);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.plan-badge .icon {
  width: 0.9rem;
  height: 0.9rem;
  stroke-width: 2.5;
}

.plan-name {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 1rem;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.plan-desc {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 2rem;
}

.price-container {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 2rem;
}

.price-container .currency {
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

.price-container .amount {
  font-family: "Sora", sans-serif;
  font-size: clamp(3.2rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.price-container .period {
  font-size: 1.1rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.btn-wrap {
  width: 100%;
  margin-bottom: 1rem;
}

.btn-large {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
  border-radius: 999px;
  font-family: "Sora", sans-serif;
}

.card-hint {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0 auto 0 0;
  font-weight: 600;
}

.pricing-card-right {
  display: flex;
  flex-direction: column;
}

.features-title {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
  color: #ffffff;
}

.premium-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin: 0 0 2.25rem;
  padding: 0;
  list-style: none;
}

.premium-features-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.premium-features-list .check-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 255, 204, 0.1);
  border: 1px solid rgba(0, 255, 204, 0.25);
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.premium-features-list .check-icon .icon {
  width: 0.75rem;
  height: 0.75rem;
  stroke-width: 3.5;
}

.premium-features-list .feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.premium-features-list .feature-text strong {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
}

.premium-features-list .feature-text span {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.startup-discount {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  padding: 1.25rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  margin-top: auto;
}

.startup-discount .icon {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.startup-discount p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.startup-discount a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.startup-discount a:hover {
  color: var(--teal-bright);
}
