@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Regular-subset.woff2") format("woff2"),
    url("assets/fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Bold-subset.woff2") format("woff2"),
    url("assets/fonts/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Black-subset.woff2") format("woff2"),
    url("assets/fonts/Inter-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #010206;
  --surface: #0b1018;
  --surface-2: #101826;
  --surface-3: #09111b;
  --surface-glass: rgba(16, 20, 28, 0.72);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --accent: #f5c84c;
  --accent-main: #35cdd9;
  --accent-blue: #18c1ff;
  --accent-soft: #4da3ff;
  --border: rgba(255, 255, 255, 0.16);
  --glow: rgba(0, 164, 237, 0.35);
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.55);
  --shadow-md: 0 14px 36px rgba(0, 0, 0, 0.36);
  --wf-parallax: 0px;
  --wf-hero-shift: 0px;
  --wf-hero-card-shift: 0px;
  --wf-hero-card-scale: 1;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.65;
  font-size-adjust: 0.46;
  background-image:
    radial-gradient(1200px 860px at 52% -10%, rgba(24, 132, 184, 0.3), transparent 70%),
    radial-gradient(920px 680px at 10% 20%, rgba(24, 111, 164, 0.14), transparent 72%),
    radial-gradient(920px 680px at 90% 26%, rgba(12, 93, 156, 0.12), transparent 72%),
    linear-gradient(180deg, #040b15 0%, #02070f 44%, #01050a 100%);
  overflow-x: hidden;
}

[data-site-header] {
  display: block;
  min-height: 77px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.15' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: soft-light;
}

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

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

[hidden] {
  display: none !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-glow {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(66% 46% at 50% 18%, rgba(0, 164, 237, 0.18), transparent 74%),
    radial-gradient(42% 34% at 18% 24%, rgba(44, 183, 196, 0.08), transparent 76%),
    radial-gradient(42% 34% at 82% 34%, rgba(77, 163, 255, 0.08), transparent 76%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.64;
  filter: saturate(1.02);
  transform: translate3d(0, calc(var(--wf-parallax) * -0.28), 0) scale(1.04);
  transform-origin: 50% 50%;
  transition: transform 180ms linear;
  animation: wf-glow-drift 18s ease-in-out infinite alternate;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 12;
  padding: 0;
  background: rgba(9, 13, 20, 0.76);
  backdrop-filter: blur(18px);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

.nav-shell {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(8, 12, 18, 0.84);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
}

.nav-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 20% 0, rgba(44, 183, 196, 0.1), transparent 45%),
    radial-gradient(circle at 80% 0, rgba(0, 164, 237, 0.1), transparent 45%);
  opacity: 1;
  pointer-events: none;
}

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-weight: 700;
  font-size: 18px;
}

.brand-logo {
  width: min(188px, 42vw);
  height: auto;
  max-width: 100%;
  aspect-ratio: 3709 / 553;
  display: block;
  object-fit: contain;
}

.brand-tagline {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav .brand-logo {
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
}

.nav-links a,
.nav-link {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after,
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(44, 183, 196, 0.85), rgba(0, 164, 237, 0));
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-link:hover {
  color: #ffffff;
}

.nav-links a.active,
.nav-link.active {
  color: #ffffff;
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-link:hover::after {
  opacity: 1;
  transform: translateY(0);
}

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

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(8, 12, 18, 0.88);
  color: #f3f8ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

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

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-mobile-panel {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  padding: 0;
  background: rgba(9, 13, 20, 0.76);
  backdrop-filter: blur(18px);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

.site-nav-shell {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(8, 12, 18, 0.84);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
}

.site-nav-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 20% 0, rgba(44, 183, 196, 0.1), transparent 45%),
    radial-gradient(circle at 80% 0, rgba(0, 164, 237, 0.1), transparent 45%);
  opacity: 1;
  pointer-events: none;
}

.site-nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
}

.site-brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
  font-weight: 700;
  font-size: 18px;
}

.site-brand-logo {
  width: min(188px, 42vw);
  height: auto;
  max-width: 100%;
  aspect-ratio: 3709 / 553;
  display: block;
  object-fit: contain;
  margin-top: 2px;
}

.site-nav-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
}

.site-nav-links a,
.site-nav-link {
  position: relative;
  transition: color 0.2s ease;
}

.site-nav-links a::after,
.site-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(44, 183, 196, 0.85), rgba(0, 164, 237, 0));
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav-links a:hover,
.site-nav-link:hover {
  color: #ffffff;
}

.site-nav-links a.active,
.site-nav-link.active {
  color: #ffffff;
}

.site-nav-links a:hover::after,
.site-nav-links a.active::after,
.site-nav-link:hover::after {
  opacity: 1;
  transform: translateY(0);
}

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

.site-nav-link {
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
}

.site-nav-actions .site-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 22px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-nav-actions .site-nav-link::after {
  content: none;
}

.site-nav-actions .site-nav-link:hover {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.site-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: linear-gradient(120deg, #45dce8 0%, #25b8ff 100%);
  color: #04222e;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.site-nav-cta:hover,
.site-nav-cta:focus-visible {
  background: linear-gradient(120deg, #6ee6ef 0%, #4cc7ff 100%);
  color: #04222e;
}

.site-nav-link:focus-visible,
.site-nav-links a:focus-visible,
.site-nav-cta:focus-visible,
.site-nav-toggle:focus-visible {
  outline: 2px solid rgba(69, 220, 232, 0.85);
  outline-offset: 3px;
}

.site-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(8, 12, 18, 0.88);
  color: #f3f8ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.site-nav-toggle-inner {
  display: grid;
  gap: 4px;
}

.site-nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-nav-mobile-panel {
  display: none;
}

.nav-link {
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 24px;
  border-radius: 10px;
  font-size: 15.5px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background 0.2s ease;
}

.button.primary {
  background: linear-gradient(120deg, #45dce8 0%, #25b8ff 100%);
  color: #04222e;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: linear-gradient(120deg, #6ee6ef 0%, #4cc7ff 100%);
  color: #04222e;
}

.button.secondary {
  border-color: rgba(52, 196, 237, 0.62);
  color: var(--text);
  background: rgba(0, 164, 237, 0.15);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.button:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 18px 36px rgba(0, 164, 237, 0.4);
}

main {
  position: relative;
  z-index: 1;
}

main::before {
  content: none;
}

main::after {
  content: none;
}

main > section {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 124px 0 84px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(44, 183, 196, 0.2), transparent 48%),
    radial-gradient(circle at 75% 52%, rgba(77, 163, 255, 0.2), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0));
  background-size: cover, cover, cover;
  background-position: center, center, center;
  opacity: 0.42;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 24%, rgba(44, 183, 196, 0.24), transparent 52%),
    radial-gradient(circle at 72% 16%, rgba(0, 164, 237, 0.26), transparent 54%),
    radial-gradient(circle at 86% 68%, rgba(44, 183, 196, 0.14), transparent 64%);
  opacity: 1;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -180px;
  width: min(1200px, 90vw);
  height: 340px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 164, 237, 0.17), rgba(0, 164, 237, 0) 70%);
  filter: blur(22px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  transform: translate3d(0, var(--wf-hero-shift), 0);
  transition: transform 180ms linear;
}

.pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(86, 193, 224, 0.45);
  background: rgba(10, 14, 20, 0.55);
  color: rgba(173, 231, 252, 0.95);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  position: relative;
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 0 0 1px rgba(0, 164, 237, 0.12),
    0 10px 24px rgba(0, 0, 0, 0.55);
}

.pill-tag {
  background: rgba(7, 12, 18, 0.6);
  padding: 4px 10px;
  border-radius: 999px;
  color: rgba(198, 238, 255, 0.95);
  border: 1px solid rgba(86, 193, 224, 0.45);
  font-weight: 600;
}

.pill::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(86, 193, 224, 0.18), rgba(255, 255, 255, 0));
  opacity: 0.35;
  pointer-events: none;
}

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

.pill-arrow {
  color: var(--text);
}

.hero-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 auto 14px;
  max-width: 980px;
  color: #f7fbff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.tm-split-text {
  text-rendering: optimizeLegibility;
}

.tm-split-text .tm-word {
  display: inline-block;
  white-space: nowrap;
}

.tm-split-text:not([data-split-mode="characters"]) .tm-word {
  opacity: 0;
  transform: translateY(22px);
  transition:
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.34s ease-out;
  color: #ffffff;
}

.tm-split-text:not([data-split-mode="characters"]).tm-split-animate .tm-word {
  opacity: 1;
  transform: translateY(0);
}

.tm-split-text[data-split-mode="characters"] {
  perspective: 560px;
}

.tm-split-text[data-split-mode="characters"] .tm-char {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.5) rotateZ(8deg) rotateX(-70deg);
  transform-origin: 50% 100%;
  will-change: transform, opacity;
  transition:
    transform 0.72s cubic-bezier(0.19, 1, 0.22, 1.16),
    opacity 0.36s ease;
  color: #ffffff;
}

.tm-split-text[data-split-mode="characters"].tm-split-animate .tm-char {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotateZ(0deg) rotateX(0deg);
}

.hero-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent-main);
  margin-bottom: 14px;
}

.hero-subheadline {
  color: var(--muted);
  font-size: clamp(19px, 1.82vw, 25px);
  margin: 0 auto 24px;
  max-width: 820px;
  font-weight: 500;
  line-height: 1.56;
  text-wrap: balance;
}

.hero-credibility {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: -2px auto 20px;
  max-width: 760px;
  text-align: center;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.hero-support {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  margin: 0 auto;
  max-width: 540px;
  text-align: center;
}

.hero-showcase {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-animate-item {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}

.hero-animate-headline {
  animation: hero-fade-slide-up 0.8s ease-out 0s both;
}

.hero-animate-subheadline {
  animation: hero-fade-slide-up 0.8s ease-out 0.3s both;
}

.hero-animate-cta {
  animation: hero-fade-slide-up 0.8s ease-out 0.6s both;
  margin-bottom: 28px;
}

.hero-animate-mockup {
  animation: hero-fade-slide-up 1.2s ease-out 1.1s both;
}

.hero-card-float {
  width: 100%;
  display: flex;
  justify-content: center;
  animation: hero-float 3s ease-in-out 2.3s infinite;
}

.hero-card {
  max-width: 960px;
  width: min(90vw, 960px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(86, 193, 224, 0.55);
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(10, 15, 22, 0.95), rgba(5, 10, 16, 0.88)),
    radial-gradient(circle at 100% 0, rgba(0, 164, 237, 0.42), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 0 1px rgba(86, 193, 224, 0.25),
    var(--shadow-lg);
  position: relative;
  transform: translate3d(0, var(--wf-hero-card-shift), 0) scale(var(--wf-hero-card-scale));
  transition: transform 220ms ease-out;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(120% 100% at 20% -10%, rgba(255, 255, 255, 0.2), transparent 40%),
    radial-gradient(120% 100% at 90% 100%, rgba(44, 183, 196, 0.16), transparent 42%);
  pointer-events: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -18px;
  height: 24px;
  border-radius: 999px;
  background: rgba(0, 164, 237, 0.38);
  filter: blur(18px);
  pointer-events: none;
}

.hero-card img,
.hero-card video {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: block;
  width: 100%;
  background: #080d15;
  filter: saturate(1.2) contrast(1.12) brightness(1.02);
}

.hero-card .hero-video-fallback {
  display: none;
  width: 100%;
}

.hero-video-container.is-fallback .hero-video {
  display: none;
}

.hero-video-container.is-fallback .hero-video-fallback {
  display: block;
}

.hero-video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 3;
}

.hero-video-play-button {
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(7, 12, 18, 0.24);
  color: #ffffff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  backdrop-filter: blur(3px);
}

@keyframes hero-fade-slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shared public-page title motion. The dedicated data attribute keeps this
   independent from homepage, application and administration reveal systems. */
.marketing-title-motion-ready [data-marketing-title-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: none;
}

.marketing-title-motion-ready [data-marketing-title-reveal].is-title-visible {
  animation: hero-fade-slide-up 0.8s ease-out both;
}

@keyframes marketing-copy-fade-slide-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.marketing-title-motion-ready [data-marketing-copy-reveal],
.marketing-title-motion-ready [data-marketing-action-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: none;
  will-change: opacity, transform;
}

.marketing-title-motion-ready [data-marketing-copy-reveal].is-marketing-visible {
  animation: marketing-copy-fade-slide-up 0.65s ease-out 0.18s both;
}

.marketing-title-motion-ready [data-marketing-action-reveal].is-marketing-visible {
  animation: marketing-copy-fade-slide-up 0.55s ease-out 0.33s both;
}

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


.section {
  padding: 116px 0;
  position: relative;
}

.section::before {
  content: none;
}

.why,
.how,
.tools,
.cta,
.footer {
  background: transparent;
}

.why {
  padding-top: 86px;
  padding-bottom: 34px;
  background:
    linear-gradient(180deg, rgba(7, 11, 18, 0), rgba(7, 11, 18, 0.32) 18%, rgba(7, 11, 18, 0.16) 78%, rgba(7, 11, 18, 0));
}

.why::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16) 18%, rgba(255, 255, 255, 0.16) 82%, transparent);
  pointer-events: none;
}

.why::after,
.how::after,
.tools::after {
  content: none;
}

.section .container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin: 0 auto 44px;
  max-width: 720px;
}

.section-header h2 {
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

.section-header p {
  color: var(--muted);
  font-size: 19px;
  font-weight: 500;
}

.why-intro-panel {
  text-align: left;
  max-width: 100%;
  margin-bottom: 48px;
  border-left: 0;
  padding: 42px 0 24px;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.why-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.why-intro-layout--story {
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
}

.why-intro-layout--studio {
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 0.38fr);
}

.why-intro-copy {
  min-width: 0;
  max-width: 560px;
}

.why-intro-copy--story {
  max-width: 520px;
}

.why-intro-copy--story .why-intro-line {
  line-height: 1.44;
}

.why-intro-copy--story .why-intro-payoff {
  margin-top: 0.9rem;
}

.why-intro-panel-secondary .why-intro-copy {
  order: 2;
}

.why-intro-panel-secondary {
  padding: 70px 0 54px;
}

.why-intro-panel-secondary .why-intro-video-wrap {
  order: 1;
}

.why-intro-panel-secondary .why-intro-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.why-intro-panel-secondary .why-intro-layout--studio {
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 0.32fr);
  align-items: start;
}

.why-intro-panel-secondary .why-intro-layout--studio .why-intro-image {
  aspect-ratio: auto;
  width: 100%;
  height: auto;
}

.why-intro-panel-secondary .why-intro-copy-break {
  margin-top: 0.45rem;
}

.why-intro-video-wrap {
  border-radius: 22px;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.why-intro-video {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #05080f;
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.03);
}

.why-intro-image {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: transparent;
}

.why-intro-heading,
.publish-anywhere-title {
  font-weight: 700;
  letter-spacing: -0.015em;
  font-size: clamp(38px, 4.95vw, 62px);
  line-height: 1.04;
  margin: 0;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

.why-intro-heading[data-reveal],
.publish-anywhere-title[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: none;
  will-change: opacity, transform;
}

.why-intro-heading[data-reveal].is-visible,
.publish-anywhere-title[data-reveal].is-visible {
  animation: hero-fade-slide-up 0.8s ease-out both;
}

.why-intro-lines {
  margin-top: 22px;
  display: grid;
  gap: 6px;
  max-width: 34rem;
}

.why-intro-lines .why-intro-line {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(19px, 1.82vw, 25px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: normal;
  text-wrap: balance;
  text-shadow: none;
  margin-top: 0;
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}

.why-intro-panel.is-visible .why-intro-line,
.why-intro-line[data-reveal].is-visible,
.why-feature-panel.is-visible .why-feature-match-lines .why-intro-line,
.why-feature-match-lines .why-intro-line[data-reveal].is-visible {
  animation: hero-fade-slide-up 0.8s ease-out both;
}

.why-intro-line[data-reveal].is-visible:nth-child(1),
.why-intro-panel.is-visible .why-intro-line:nth-child(1) {
  animation-delay: 0.3s;
}

.why-intro-line[data-reveal].is-visible:nth-child(2),
.why-intro-panel.is-visible .why-intro-line:nth-child(2) {
  animation-delay: 0.44s;
}

.why-intro-line[data-reveal].is-visible:nth-child(3),
.why-intro-panel.is-visible .why-intro-line:nth-child(3) {
  animation-delay: 0.58s;
}

.why-intro-line[data-reveal].is-visible:nth-child(4),
.why-intro-panel.is-visible .why-intro-line:nth-child(4) {
  animation-delay: 0.72s;
}

.why-intro-panel p {
  margin-top: 0;
}

.why-feature-stack {
  display: grid;
  gap: 20px;
}

.why-feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: center;
  padding: 42px 0;
  border-top: 0;
  background: none;
  box-shadow: none;
  transition: transform 0.2s ease;
}

.why-feature-panel:hover {
  transform: translateY(-3px);
}

.why::after {
  content: none;
}

@keyframes wf-glow-drift {
  0% {
    transform: translate3d(0, calc(var(--wf-parallax) * -0.28), 0) scale(1.035);
  }
  100% {
    transform: translate3d(0, calc(var(--wf-parallax) * -0.28 - 8px), 0) scale(1.05);
  }
}

.why-feature-panel.is-reverse .why-feature-copy {
  order: 2;
}

.why-feature-panel.is-reverse .why-feature-media {
  order: 1;
}

.why-feature-copy > h3:not(.why-feature-match-title) {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.14;
  margin-top: 12px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.why-feature-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.74;
  font-weight: 500;
  max-width: 54ch;
}

.why-feature-copy .why-feature-match-title {
  font-weight: 700;
  letter-spacing: -0.015em;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.06;
  margin: 0 0 12px;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

.why-feature-match-lines {
  margin-top: 12px;
}

.why-feature-match-lines .why-intro-line[data-reveal].is-visible:nth-child(1),
.why-feature-panel.is-visible .why-feature-match-lines .why-intro-line:nth-child(1) {
  animation-delay: 0.3s;
}

.why-feature-match-lines .why-intro-line[data-reveal].is-visible:nth-child(2),
.why-feature-panel.is-visible .why-feature-match-lines .why-intro-line:nth-child(2) {
  animation-delay: 0.44s;
}

.why-feature-match-lines .why-intro-line[data-reveal].is-visible:nth-child(3),
.why-feature-panel.is-visible .why-feature-match-lines .why-intro-line:nth-child(3) {
  animation-delay: 0.58s;
}

.why-feature-media {
  border-radius: 0;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.publish-anywhere {
  text-align: center;
  padding: 46px 0 8px;
  display: grid;
  gap: 24px;
}

.publish-anywhere-copy {
  margin: 0 auto;
  max-width: 900px;
  display: grid;
  gap: 16px;
}

.publish-anywhere-lines {
  margin-top: 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.publish-anywhere-line {
  line-height: 1.46;
}

.publish-anywhere-showcase {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.publish-preview-stage {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(20px, 2.5vw, 28px);
  background:
    radial-gradient(circle at 12% 12%, rgba(44, 183, 196, 0.2), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(77, 163, 255, 0.18), transparent 30%),
    linear-gradient(155deg, rgba(18, 31, 47, 0.76), rgba(9, 16, 27, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}

.publish-preview-stage::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  opacity: 0.62;
  pointer-events: none;
}

.publish-preview-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.publish-preview-frame {
  position: relative;
  width: min(1080px, 100%);
  margin: 0 auto;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 1.4vw, 16px);
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(5, 10, 18, 0.92), rgba(8, 14, 24, 0.84)),
    radial-gradient(circle at 50% 12%, rgba(44, 183, 196, 0.12), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 26px 54px rgba(0, 0, 0, 0.44);
}

.publish-preview-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.1;
  pointer-events: none;
}

.publish-preview-glow {
  position: absolute;
  inset: auto 50% 10% auto;
  width: min(700px, 74vw);
  height: min(340px, 38vw);
  transform: translateX(50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 183, 196, 0.28), transparent 66%);
  filter: blur(16px);
  opacity: 0.9;
  pointer-events: none;
}

.publish-preview-image {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: min(100%, 1040px);
  max-height: min(72vh, 780px);
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.44));
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.publish-preview-image.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.publish-anywhere[data-active-format="social"] .publish-preview-frame {
  min-height: 640px;
}

.publish-anywhere[data-active-format="social"] .publish-preview-image {
  max-width: min(100%, 480px);
  max-height: 640px;
}

.publish-anywhere[data-active-format="social"] .publish-preview-glow {
  width: min(420px, 48vw);
  height: min(520px, 58vw);
  inset: auto 50% 8% auto;
  background: radial-gradient(circle, rgba(44, 183, 196, 0.3), transparent 70%);
}

.publish-anywhere[data-active-format="web"] .publish-preview-image {
  max-width: min(100%, 1120px);
}

.publish-anywhere[data-active-format="slides"] .publish-preview-image {
  max-width: min(100%, 1100px);
  max-height: min(70vh, 746px);
}

.publish-anywhere[data-active-format="slides"] .publish-preview-frame {
  min-height: 814px;
  padding-block: 34px;
}

.discover-workflows {
  display: grid;
  gap: 28px;
  margin-top: 52px;
  padding: 32px;
  border-radius: 32px;
  border: 1px solid rgba(86, 193, 224, 0.18);
  background:
    linear-gradient(160deg, rgba(8, 14, 22, 0.92), rgba(5, 9, 16, 0.82)),
    radial-gradient(circle at top right, rgba(0, 164, 237, 0.14), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 60px rgba(0, 0, 0, 0.22);
}

.discover-workflows-copy {
  display: grid;
  gap: 12px;
  max-width: 720px;
}

.discover-workflows-summary {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.65;
}

.discover-workflows-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.discover-workflow-card {
  display: grid;
  gap: 12px;
  min-height: 180px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(86, 193, 224, 0.18);
  background:
    linear-gradient(180deg, rgba(10, 18, 28, 0.94), rgba(5, 10, 16, 0.88)),
    radial-gradient(circle at top right, rgba(244, 198, 67, 0.12), transparent 38%);
  color: #ffffff;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 42px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.discover-workflow-card:hover {
  transform: translateY(-4px);
  border-color: rgba(86, 193, 224, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 52px rgba(0, 0, 0, 0.24);
}

.discover-workflow-card strong {
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.discover-workflow-eyebrow {
  color: #f4c643;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.publish-output-tabs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 4px;
  border-radius: 999px;
  background: rgba(11, 19, 31, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.publish-tab {
  appearance: none;
  border: 1px solid transparent;
  padding: 10px 16px;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.publish-tab:hover {
  color: rgba(255, 255, 255, 0.94);
  transform: translateY(-1px);
  border-color: rgba(86, 193, 224, 0.28);
  background: rgba(255, 255, 255, 0.03);
}

.publish-tab:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 1px rgba(44, 183, 196, 0.7), 0 0 0 4px rgba(44, 183, 196, 0.22);
}

.publish-tab.is-active {
  color: #f3f8ff;
  border-color: rgba(86, 193, 224, 0.32);
  background: rgba(0, 164, 237, 0.14);
  box-shadow: inset 0 0 0 1px rgba(86, 193, 224, 0.2);
}

.publish-tab-label {
  display: inline-block;
  color: #f3f8ff;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marketing-chart-card {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 16% 10%, rgba(0, 164, 237, 0.2), transparent 54%),
    radial-gradient(circle at 82% 26%, rgba(239, 124, 70, 0.14), transparent 52%),
    linear-gradient(160deg, rgba(7, 13, 21, 0.98), rgba(3, 8, 14, 0.98));
  padding: 14px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.38);
}

.marketing-chart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.marketing-chart-title-wrap {
  min-width: 0;
}

.marketing-chart-title {
  margin: 0;
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #f2f7ff;
}

.marketing-chart-subtitle {
  margin: 2px 0 0;
  font-size: 12px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.01em;
}

.marketing-chart-period {
  color: #f3f8ff;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.04);
}

.marketing-chart-svg {
  display: block;
  width: 100%;
  flex: 1;
  min-height: 220px;
  border-radius: 12px;
  background: rgba(2, 6, 11, 0.7);
}

.marketing-chart-grid line {
  stroke: rgba(255, 255, 255, 0.13);
  stroke-width: 1;
  stroke-dasharray: 4 4;
}

.marketing-chart-grid line.is-strong {
  stroke: rgba(255, 255, 255, 0.22);
}

.marketing-chart-axis text {
  fill: rgba(223, 236, 255, 0.84);
  font-size: 11px;
  font-weight: 500;
}

.marketing-chart-axis text.is-y {
  fill: rgba(185, 200, 220, 0.82);
}

.marketing-chart-line {
  fill: none;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.marketing-chart-line.is-series-a {
  stroke: #00a4ed;
  filter: drop-shadow(0 0 8px rgba(0, 164, 237, 0.45));
}

.marketing-chart-line.is-series-b {
  stroke: #ef7c46;
  filter: drop-shadow(0 0 8px rgba(239, 124, 70, 0.42));
}

.marketing-chart-crosshair {
  stroke: rgba(255, 255, 255, 0.22);
  stroke-dasharray: 4 4;
  stroke-width: 1;
}

.marketing-chart-point {
  stroke: rgba(4, 8, 14, 0.96);
  stroke-width: 2;
  cursor: pointer;
  transition: r 0.15s ease;
}

.marketing-chart-point.is-series-a {
  fill: #00a4ed;
}

.marketing-chart-point.is-series-b {
  fill: #ef7c46;
}

.marketing-chart-point.is-active {
  r: 6.5;
}

.marketing-chart-end-label {
  fill: #f3f8ff;
  font-size: 11px;
  font-weight: 600;
  paint-order: stroke;
  stroke: rgba(2, 6, 11, 0.9);
  stroke-width: 3px;
  stroke-linejoin: round;
}

.marketing-chart-legend {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.marketing-chart-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.marketing-chart-legend-item strong {
  color: #f7fbff;
  font-weight: 700;
  margin-left: 3px;
  letter-spacing: 0.01em;
}

.marketing-chart-swatch {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

.marketing-chart-swatch.is-series-a {
  background: #00a4ed;
  box-shadow: 0 0 0 3px rgba(0, 164, 237, 0.2);
}

.marketing-chart-swatch.is-series-b {
  background: #ef7c46;
  box-shadow: 0 0 0 3px rgba(239, 124, 70, 0.22);
}

.marketing-chart-source {
  margin: 8px 0 0;
  font-size: 10px;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 600;
}

.why-feature-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  filter: saturate(1.15) contrast(1.08) brightness(1.04);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background:
    linear-gradient(155deg, rgba(24, 38, 56, 0.34), rgba(15, 27, 42, 0.28)),
    radial-gradient(circle at 12% 0, rgba(44, 183, 196, 0.1), transparent 46%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px 24px;
  border-radius: var(--radius-md);
  min-height: 236px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  opacity: 0.5;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(86, 193, 224, 0.42);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.card-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
  background: rgba(44, 183, 196, 0.14);
  color: #86deed;
  border: 1px solid rgba(44, 183, 196, 0.46);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.card-highlight {
  border-color: rgba(44, 183, 196, 0.4);
}

.card-visual {
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 140px;
  background: radial-gradient(circle at 20% 40%, rgba(44, 183, 196, 0.5), transparent 60%),
    radial-gradient(circle at 60% 80%, rgba(77, 163, 255, 0.35), transparent 65%);
  opacity: 0.7;
}

.card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
  font-weight: 500;
}

.card h3 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step {
  background:
    linear-gradient(160deg, rgba(24, 38, 56, 0.34), rgba(16, 27, 41, 0.28)),
    radial-gradient(circle at 0 0, rgba(77, 163, 255, 0.14), transparent 50%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px 24px;
  border-radius: var(--radius-md);
  position: relative;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 46px;
  right: -22px;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(86, 193, 224, 0.9), rgba(86, 193, 224, 0));
  opacity: 0.45;
  pointer-events: none;
}

.step h3 {
  font-size: 25px;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.step p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
  font-weight: 500;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 12px;
  background: rgba(0, 164, 237, 0.15);
  position: relative;
}

.step-icon::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 8px;
  border: 2px solid rgba(44, 183, 196, 0.6);
}

.step-icon-upload {
  background: rgba(77, 163, 255, 0.18);
}

.step-icon-generate {
  background: rgba(245, 200, 76, 0.18);
}

.step-icon-build {
  background: rgba(44, 183, 196, 0.18);
}

.tools {
  padding-top: 88px;
}

.tools-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: stretch;
}

.tools-copy {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 28px 24px;
  background:
    linear-gradient(150deg, rgba(22, 37, 54, 0.3), rgba(14, 25, 38, 0.24)),
    radial-gradient(circle at 0 0, rgba(44, 183, 196, 0.1), transparent 48%);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.tools-copy h2 {
  font-weight: 700;
  font-size: clamp(34px, 4.1vw, 50px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.tools-copy p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
}

.tools-copy ul {
  margin: 16px 0 24px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
  font-weight: 500;
}

.tools-copy li + li {
  margin-top: 8px;
}

.tools-media {
  border-radius: 24px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(20, 35, 52, 0.3), rgba(12, 23, 36, 0.24)),
    radial-gradient(circle at 100% 0, rgba(0, 164, 237, 0.13), transparent 56%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.tools-media img {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
  min-height: 100%;
  object-fit: cover;
  filter: saturate(1.16) contrast(1.08) brightness(1.04);
}

.mini-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mini-card {
  background:
    linear-gradient(155deg, rgba(11, 17, 26, 0.95), rgba(8, 12, 19, 0.95)),
    radial-gradient(circle at 20% 0, rgba(44, 183, 196, 0.18), transparent 42%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 20px;
  display: grid;
  gap: 14px;
  align-items: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.mini-card:hover {
  transform: translateY(-3px);
  border-color: rgba(86, 193, 224, 0.58);
}

.mini-card img {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mini-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.mini-card p {
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.62;
  font-weight: 500;
}

.mini-card a {
  color: var(--accent-main);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.cta {
  padding: 56px 0 42px;
  position: relative;
  background: transparent;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16) 18%, rgba(255, 255, 255, 0.16) 82%, transparent);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  text-align: center;
  max-width: 1120px;
  margin: 0 auto;
  background:
    linear-gradient(130deg, rgba(0, 164, 237, 0.08), rgba(242, 153, 74, 0.07)),
    linear-gradient(160deg, rgba(22, 34, 48, 0.28), rgba(14, 24, 36, 0.22));
  border: 1px solid rgba(86, 193, 224, 0.18);
  border-radius: 28px;
  padding: 38px 32px 36px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.cta-inner h2,
.cta-inner p,
.cta-actions {
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-weight: 700;
  font-size: clamp(34px, 4.8vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cta p {
  color: var(--muted);
  max-width: 760px;
  margin: 12px auto 24px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.58;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-signature-shell {
  width: min(980px, 100%);
  margin: 24px auto 0;
}

.contact-signature {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 0;
  text-align: center;
}

.contact-signature-line {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.55;
}

.contact-signature-item {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-signature-link {
  color: #ffffff;
}

.contact-signature-item:hover {
  text-decoration: underline;
}

.contact-signature-sep {
  color: rgba(86, 193, 224, 0.56);
  font-size: 14px;
  line-height: 1;
}

.contact-signature-founder {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-decoration: none;
}

.cta-kicker {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: var(--accent-main);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.early-access-shell {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  margin: 0 auto;
}

.launch-offers-grid {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.launch-offer-card {
  display: grid;
  gap: 10px;
  text-align: left;
  padding: 20px 20px 22px;
  border-radius: 20px;
  border: 1px solid rgba(86, 193, 224, 0.18);
  background:
    linear-gradient(145deg, rgba(10, 18, 26, 0.88), rgba(5, 10, 17, 0.82)),
    radial-gradient(circle at 100% 0, rgba(0, 164, 237, 0.14), transparent 46%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 38px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.launch-offer-card:hover,
.launch-offer-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(44, 183, 196, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 42px rgba(0, 0, 0, 0.26);
}

.launch-offer-label {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.launch-offer-card strong {
  color: #f7fbff;
  font-size: 28px;
  line-height: 1.05;
}

.launch-offer-card span:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.early-access-form {
  display: grid;
  gap: 18px;
}

.early-access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.early-access-field {
  display: grid;
  gap: 8px;
  text-align: left;
}

.early-access-field span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.early-access-field input,
.early-access-field textarea {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(86, 193, 224, 0.18);
  background: rgba(6, 11, 18, 0.72);
  color: #ffffff;
  padding: 14px 16px;
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 28px rgba(0, 0, 0, 0.18);
}

.early-access-field textarea {
  min-height: 120px;
  resize: vertical;
}

.early-access-field input::placeholder,
.early-access-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.early-access-field input:focus,
.early-access-field textarea:focus {
  outline: none;
  border-color: rgba(44, 183, 196, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(44, 183, 196, 0.2),
    0 14px 36px rgba(0, 0, 0, 0.22);
}

.early-access-note {
  min-height: 20px;
  margin: 0;
  color: #f7c96a;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
}

.early-access-note.is-success {
  color: #7bd9a1;
}

.early-access-note.is-error {
  color: #f5b35e;
}

.early-access-success {
  display: grid;
  gap: 12px;
  text-align: left;
  border-radius: 20px;
  border: 1px solid rgba(86, 193, 224, 0.2);
  background:
    linear-gradient(145deg, rgba(10, 18, 26, 0.92), rgba(5, 10, 17, 0.86)),
    radial-gradient(circle at 100% 0, rgba(0, 164, 237, 0.16), transparent 46%);
  padding: 22px 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 38px rgba(0, 0, 0, 0.24);
}

.early-access-success h3 {
  font-size: 24px;
  line-height: 1.1;
}

.early-access-success p {
  margin: 0;
}

.early-access-success .cta-actions {
  justify-content: flex-start;
}

.early-access-form[hidden],
.early-access-success[hidden] {
  display: none !important;
}

.cta {
  margin-bottom: 26px;
}

.footer {
  position: relative;
  border-top: 0;
  padding: 44px 0 36px;
  background: linear-gradient(180deg, rgba(6, 10, 16, 0), rgba(6, 10, 16, 0.58) 18%, rgba(4, 8, 13, 0.84));
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16) 18%, rgba(255, 255, 255, 0.16) 82%, transparent);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto;
  column-gap: 42px;
  row-gap: 18px;
  align-items: start;
}

.footer-brand {
  max-width: 420px;
  align-items: start;
}

.footer-brand img {
  width: min(146px, 100%);
  height: auto;
  max-width: 100%;
  aspect-ratio: 3709 / 553;
  object-fit: contain;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 320px;
  opacity: 0.7;
  margin: 0;
}

.footer-nav-zone {
  justify-self: end;
  width: fit-content;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  row-gap: 0;
  align-items: start;
  margin-top: 4px;
}

.footer-columns h3,
.footer-columns h4 {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  opacity: 1;
  margin-top: 0;
  margin-bottom: 6px;
  letter-spacing: 0.09em;
  line-height: 1.25;
}

.footer-columns .footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-columns a {
  color: var(--muted);
  display: block;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-columns a:hover {
  opacity: 1;
  color: #ffffff;
}

.footer-columns a.no-wrap {
  white-space: nowrap;
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  opacity: 0.8;
  line-height: 1.4;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.footer-bottom a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-logo {
  width: 154px;
  height: auto;
  max-width: 100%;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.white-preview {
  --muted: rgba(255, 255, 255, 0.9);
}

.white-preview .hero-subheadline,
.white-preview .section-header p,
.white-preview .card p,
.white-preview .step p,
.white-preview .tools-copy ul,
.white-preview .mini-card p,
.white-preview .footer-columns a,
.white-preview .nav-links a,
.white-preview .nav-link,
.white-preview .brand-tagline,
.white-preview .footer-bottom {
  color: rgba(255, 255, 255, 0.9);
}

.white-preview .button.primary {
  background: #ffffff;
  color: #0b0f14;
  box-shadow: 0 16px 32px rgba(255, 255, 255, 0.08);
}

.white-preview .button.secondary,
.white-preview .button.ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
  background: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .marketing-title-motion-ready [data-marketing-title-reveal],
  .marketing-title-motion-ready [data-marketing-copy-reveal],
  .marketing-title-motion-ready [data-marketing-action-reveal] {
    opacity: 1;
    transform: none;
    animation: none !important;
    transition: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-animate-item {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .hero-card-float {
    animation: none !important;
  }

  .why-intro-lines .why-intro-line {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

@media (max-width: 1120px) {
  .why-intro-panel-secondary .why-intro-copy,
  .why-intro-panel-secondary .why-intro-video-wrap {
    order: initial;
  }

  .hero-title {
    font-size: clamp(38px, 5.2vw, 64px);
  }

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

  .step:not(:last-child)::after {
    display: none;
  }

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

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

  .why-feature-panel,
  .why-feature-panel.is-reverse {
    grid-template-columns: 1fr;
  }

  .why-feature-panel.is-reverse .why-feature-copy,
  .why-feature-panel.is-reverse .why-feature-media {
    order: initial;
  }

  .why-intro-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .why {
    padding-top: 74px;
    padding-bottom: 28px;
  }

  .why-intro-panel {
    margin-bottom: 40px;
    padding: 30px 0 18px;
  }

  .why-intro-panel-secondary {
    padding: 54px 0 40px;
  }

  .publish-preview-frame {
    min-height: 500px;
  }

  .publish-anywhere[data-active-format="social"] .publish-preview-frame {
    min-height: 620px;
  }

  .cta {
    padding: 48px 0 34px;
  }
}

@media (max-width: 900px) {
  .nav-inner {
    position: relative;
    align-items: center;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-mobile-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 40;
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(6, 10, 16, 0.96);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
  }

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

  .nav-mobile-links,
  .nav-mobile-actions {
    display: grid;
    gap: 10px;
  }

  .nav-mobile-links a,
  .nav-mobile-actions a {
    display: block;
    width: 100%;
  }

  .nav-mobile-links a {
    color: #f3f8ff;
    font-size: 16px;
    line-height: 1.4;
    padding: 6px 0;
  }

  .nav-mobile-actions .button,
  .nav-mobile-actions .nav-link {
    justify-content: center;
  }

  .site-nav-inner {
    position: relative;
    align-items: center;
  }

  .site-nav-links {
    display: none;
  }

  .site-nav-actions {
    display: none;
  }

  .site-nav-toggle {
    display: inline-flex;
  }

  .site-nav-mobile-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 40;
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(6, 10, 16, 0.96);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
  }

  .site-nav-mobile-panel[hidden] {
    display: none;
  }

  .site-nav-mobile-links,
  .site-nav-mobile-actions {
    display: grid;
    gap: 10px;
  }

  .site-nav-mobile-links a,
  .site-nav-mobile-actions a {
    display: block;
    width: 100%;
  }

  .site-nav-mobile-links a {
    color: #f3f8ff;
    font-size: 16px;
    line-height: 1.4;
    padding: 6px 0;
  }

  .site-nav-mobile-actions .site-nav-cta,
  .site-nav-mobile-actions .site-nav-link {
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 72px;
  }

  .hero-actions .button {
    width: 100%;
    max-width: 280px;
  }

  .hero-card {
    width: min(92vw, 720px);
  }

  .early-access-grid {
    grid-template-columns: 1fr;
  }

  .launch-offers-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-top: 40px;
  }

}

@media (max-width: 800px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-columns {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .footer-bottom {
    margin-top: 36px;
  }
}

@media (max-width: 600px) {
  .nav-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 14px 12px 12px;
  }

  .brand {
    width: auto;
    align-items: flex-start;
  }

  .hero-title {
    font-size: clamp(34px, 11vw, 48px);
  }

  .hero-subheadline {
    font-size: 16px;
  }

  .hero-card {
    padding: 6px;
  }

  .early-access-success {
    text-align: center;
  }

  .early-access-success .cta-actions {
    justify-content: center;
  }

  .section {
    padding: 88px 0;
  }

  .section-header h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .why-intro-panel {
    padding: 0;
    margin-bottom: 30px;
  }

  .why-intro-panel-secondary {
    padding: 34px 0 24px;
  }

  .why-intro-video-wrap {
    border-radius: 18px;
    padding: 6px;
  }

  .why-intro-video {
    border-radius: 12px;
  }

  .why-intro-lines {
    margin-top: 12px;
    gap: 6px;
  }

  .why-intro-lines .why-intro-line {
    font-size: 17px;
    line-height: 1.32;
  }

  .why-feature-panel {
    padding: 22px 0;
    gap: 14px;
  }

  .why-feature-copy > h3:not(.why-feature-match-title) {
    font-size: clamp(22px, 7.4vw, 30px);
  }

  .why-feature-match-title {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.08;
  }

  .marketing-chart-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .marketing-chart-period {
    font-size: 11px;
    padding: 5px 8px;
  }

  .marketing-chart-card {
    aspect-ratio: auto;
    min-height: 340px;
  }

  .marketing-chart-legend {
    gap: 6px;
  }

  .marketing-chart-legend-item {
    font-size: 11px;
  }

  .why-feature-copy p {
    font-size: 15px;
    line-height: 1.66;
  }

  .publish-anywhere {
    gap: 22px;
    padding: 30px 0 0;
  }

  .publish-anywhere-copy {
    gap: 12px;
  }

  .publish-anywhere-line {
    font-size: 15px;
    line-height: 1.5;
  }

  .publish-preview-stage {
    padding: 18px;
    border-radius: 22px;
  }

  .publish-preview-frame {
    min-height: 380px;
    padding: 18px 14px;
    border-radius: 18px;
  }

  .publish-anywhere[data-active-format="social"] .publish-preview-frame {
    min-height: 520px;
  }

  .publish-anywhere[data-active-format="social"] .publish-preview-image {
    max-width: min(100%, 320px);
    max-height: 520px;
  }

  .publish-tab {
    padding: 10px 12px;
  }

  .card,
  .step,
  .tools-copy,
  .mini-card {
    padding: 18px;
  }

  .cta {
    padding: 30px 0 28px;
  }

  .cta-inner {
    padding: 24px 18px;
  }

  .contact-signature-shell {
    margin-top: 16px;
  }

  .contact-signature {
    padding: 14px 0 0;
  }

  .contact-signature-line {
    display: grid;
    gap: 4px;
    justify-items: center;
  }

  .contact-signature-sep {
    display: none;
  }

  .contact-signature-founder {
    margin-top: 6px;
  }

  .footer {
    padding: 34px 0 30px;
  }
}


/* ===== hero-v2: bold left copy + film right (claude-redesign) ===== */
.hero.hero-v2 { display: flex; align-items: center; min-height: min(88vh, 980px); padding: 48px 0 56px; position: relative; }
.hero-v2-copy { text-align: left; }
.hero-v2-grid {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 3vw, 40px);
  text-align: left;
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.hero-v2-title { margin: 0; font-family: "Inter", "Segoe UI", sans-serif; font-weight: 900; font-size: clamp(40px, 5vw, 62px); line-height: 1.06; letter-spacing: -0.02em; color: #ffffff; }
.hero-v2-sub { margin: 22px 0 0; font-size: clamp(19px, 1.7vw, 23px); line-height: 1.55; color: rgba(255, 255, 255, 0.86); max-width: 520px; }
.hero-v2-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-v2-sub[data-marketing-copy-reveal][data-reveal].is-visible {
  animation: marketing-copy-fade-slide-up 0.65s ease-out 0.95s both;
  transition: none;
}
.hero-v2-actions[data-marketing-action-reveal][data-reveal].is-visible {
  animation: marketing-copy-fade-slide-up 0.55s ease-out 1.15s both;
  transition: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero-v2-sub[data-marketing-copy-reveal][data-reveal].is-visible,
  .hero-v2-actions[data-marketing-action-reveal][data-reveal].is-visible {
    animation: none !important;
  }
}
.hero-v2-btn { display: inline-flex; align-items: center; justify-content: center; height: 46px; padding: 0 24px; border-radius: 10px; font-size: 15.5px; font-weight: 600; text-decoration: none; transition: background 120ms cubic-bezier(0.2, 0, 0.2, 1), border-color 120ms cubic-bezier(0.2, 0, 0.2, 1); }
.hero-v2-btn-primary { background: linear-gradient(120deg, #45dce8 0%, #25b8ff 100%); color: #04222e; }
.hero-v2-btn-primary:hover { background: linear-gradient(120deg, #6ee6ef 0%, #4cc7ff 100%); color: #04222e; }
.hero-v2-btn-ghost { border: 1px solid rgba(255, 255, 255, 0.35); color: #ffffff; }
.hero-v2-btn-ghost:hover { background: rgba(255, 255, 255, 0.06); color: #ffffff; }
.hero-v2-media { border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; overflow: hidden; background: #000; box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5); }
.hero-v2-demo-frame { position: relative; width: 100%; aspect-ratio: 4 / 3; overflow: hidden; background: #000; }
.hero-v2-demo-poster,
.hero-v2-demo-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.hero-v2-demo-poster { object-fit: cover; transition: opacity 240ms ease; }
.hero-v2-demo-iframe { opacity: 0; background: #000; transition: opacity 240ms ease; }
.hero-v2-demo-frame.is-demo-loading .hero-v2-demo-poster { opacity: 0; }
.hero-v2-demo-frame.is-demo-ready .hero-v2-demo-poster { opacity: 0; }
.hero-v2-demo-frame.is-demo-ready .hero-v2-demo-iframe { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-v2-demo-poster,
  .hero-v2-demo-iframe { transition: none; }
}
@media (max-width: 960px) { .hero-v2-grid { grid-template-columns: 1fr; gap: 32px; } .hero.hero-v2 { min-height: auto; padding: 56px 0 48px; } }
@media (max-width: 600px) {
  .hero-v2-grid { gap: 26px; }
  .hero-v2-sub { margin-top: 18px; line-height: 1.4; }
  .hero-v2-actions { margin-top: 24px; }
}


/* ===== footer tidy (claude-redesign) ===== */
.cta { padding-bottom: 56px; }
.footer { padding-top: 56px; padding-bottom: 40px; }
.footer .footer-top { align-items: flex-start; }
@media (max-width: 800px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}


/* ===== Before/after flip cards (claude-redesign) ===== */
.ba-copy { max-width: 720px; margin-left: auto; margin-right: auto; }
.ba-copy .why-intro-heading { margin-bottom: 10px; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 50px; }
@media (max-width: 860px) { .ba-grid { grid-template-columns: 1fr; gap: 28px; } }
.ba-card { position: relative; aspect-ratio: 1 / 1; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 12px; overflow: hidden; background: #000; cursor: pointer; }
.ba-card:focus-visible { outline: 2px solid rgba(50, 197, 253, 0.45); outline-offset: 2px; }
.ba-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 260ms cubic-bezier(0.2, 0, 0.2, 1); }
.ba-card:not(.show-after) .ba-before { opacity: 1; }
.ba-toggle { display: flex; justify-content: center; margin: 14px auto 0; width: max-content; border-radius: 999px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.35); }
.ba-toggle span { padding: 8px 18px; font-size: 13px; font-weight: 700; background: rgba(0, 0, 0, 0.55); color: rgba(255, 255, 255, 0.75); transition: background 120ms cubic-bezier(0.2, 0, 0.2, 1); }
.ba-card:not(.show-after) + .ba-toggle .ba-t-before, .ba-card.show-after + .ba-toggle .ba-t-after { background: #32c5fd; color: #04222e; }
.ba-toggle { cursor: pointer; }
.ba-cap { margin: 10px 0 0; font-size: 13px; color: rgba(255, 255, 255, 0.55); text-align: center; }
@media (prefers-reduced-motion: reduce) { .ba-after { transition: none; } }


/* ===== Section 3: A good chart used to cost half a day (claude-redesign) ===== */
.steps4 { display: block; text-align: left; }
.steps4-head { max-width: 860px; margin-left: auto; margin-right: auto; }
.steps4-head .why-intro-heading { margin-bottom: 14px; text-align: center; }
.steps4 p.steps4-sub { max-width: 640px; text-align: left; margin: 0 0 14px; }
.steps4-sub:last-child { margin-bottom: 0; }
.steps4-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 64px; }
@media (max-width: 1100px) and (min-width: 741px) { .steps4-grid { gap: 18px; } }
@media (max-width: 740px) { .steps4-grid { grid-template-columns: 1fr; gap: 36px; } }
.steps4-media { border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; overflow: hidden; background: #000; box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5); }
.steps4-media img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; display: block; color: transparent; }
.steps4-h { margin: 0 0 8px; font-size: 20px; font-weight: 700; letter-spacing: -0.01em; color: #fff; text-align: left; }
.steps4-p, .section-header p.steps4-p { margin: 0 0 16px; font-size: 19px; line-height: 1.6; color: rgba(255, 255, 255, 0.86); text-align: left; }
.steps4 p.steps4-proof { display: block; margin: 44px 0 0; font-size: 13.5px; color: rgba(255, 255, 255, 0.55); text-align: left; }
.steps4 p.steps4-cta-row { margin: 20px 0 0; text-align: left; }
.steps4-cta-row .hero-v2-btn-primary { display: inline-flex; }


/* ===== section boundaries: hairline rules between same-background blocks ===== */
.why > .container > .why-intro-panel-secondary,
.why > .container > .why-feature-stack {
  position: relative;
}

.why > .container > .why-intro-panel-secondary::before,
.why > .container > .why-feature-stack::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16) 18%, rgba(255, 255, 255, 0.16) 82%, transparent);
  pointer-events: none;
}

.why > .container > .why-intro-panel-secondary {
  padding-top: 112px;
}

.why > .container > .why-feature-stack {
  margin-top: 30px;
  padding-top: 88px;
}

@media (max-width: 900px) {
  .why > .container > .why-intro-panel-secondary { padding-top: 88px; }
  .why > .container > .why-feature-stack { margin-top: 22px; padding-top: 72px; }
}

@media (max-width: 620px) {
  .why > .container > .why-intro-panel { margin-bottom: 48px; }
  .why > .container > .why-intro-panel-secondary { padding-top: 80px; }
  .why > .container > .why-feature-stack { margin-top: 16px; padding-top: 64px; }
  .ba-grid { margin-top: 48px; }
  .steps4-grid { margin-top: 48px; }
}


/* ===== Build once. Publish everywhere. (replaces publish-anywhere carousel) ===== */
.pubprop { padding: 46px 0 8px; }
.pubprop .why-intro-heading { font-size: clamp(36px, 4.6vw, 56px); }
.pubprop-head { text-align: center; margin-bottom: 64px; }
.pubprop-scene canvas { display: block; width: 100%; aspect-ratio: 2400 / 1330; }
.pubprop-caps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 48px; }
@media (max-width: 740px) { .pubprop-caps { grid-template-columns: 1fr; gap: 22px; } }
.pubprop-h { margin: 0 0 8px; font-size: 20px; font-weight: 700; letter-spacing: -0.01em; color: #fff; text-align: left; }
.pubprop-p { margin: 0 0 16px; font-size: 19px; line-height: 1.6; color: rgba(255, 255, 255, 0.86); text-align: left; }

@media (max-width: 900px) {
  .pubprop-head { margin-bottom: 56px; }
}

@media (max-width: 620px) {
  .pubprop-head { margin-bottom: 48px; }
}
