:root {
  --brand-blue: #1a72d8;
  --brand-blue-dk: #1459ad;
  --brand-teal: #00c4d4;
  --brand-teal-dk: #00a5b3;
  --brand-navy: #0b1628;
  --brand-navy-2: #122038;
  --green: #03c75a;
  --ink: #0f172a;
  --ink-2: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #f0f9ff;
  --bg-warm: #f8fafc;
  --paper: #ffffff;
  --white: #fff;
  --r: 14px;
  --r-lg: 22px;
  --pill: 999px;
  --max: 1120px;
  --section-y: clamp(88px, 12vw, 140px);
  --shadow-lg: 0 28px 64px rgba(15, 23, 42, 0.1);
  --shadow-teal: 0 12px 40px rgba(0, 196, 212, 0.22);
  /* legacy aliases */
  --orange: var(--brand-teal);
  --orange-dk: var(--brand-teal-dk);
  --brand: var(--brand-blue);
  --dark: var(--brand-navy);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, sans-serif;
  font-feature-settings: 'ss01' on;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.container { width: min(100% - 40px, var(--max)); margin: 0 auto; }
.container-wide { width: min(100% - 40px, 1200px); margin: 0 auto; }

.brand-orange { color: var(--brand-blue); }
.brand-blue { color: var(--brand-teal); }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.logo { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; }
.logo--img {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo--img img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-links {
  display: none;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-2);
}
.nav-links a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-links a:hover {
  border-bottom-color: var(--brand-teal);
  color: var(--brand-blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s, background 0.15s;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--brand-blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26, 114, 216, 0.2);
}
.btn-primary:hover {
  background: var(--brand-blue-dk);
  box-shadow: 0 6px 20px rgba(26, 114, 216, 0.24);
}
.btn-orange {
  background: var(--brand-blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26, 114, 216, 0.2);
}
.btn-orange:hover { background: var(--brand-blue-dk); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--brand-teal);
  color: var(--brand-blue);
  background: var(--white);
}
.btn-pill { border-radius: var(--pill); }
.btn-xl { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }

/* Hero */
.hero--immersive {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 108px 0 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #f8fafc;
}
.hero-bg::after { display: none; }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    text-align: left;
  }
}
.hero-content { text-align: center; }
@media (min-width: 960px) {
  .hero-content { text-align: left; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  margin-bottom: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-2);
}
.hero-badge img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
}
.hero-badge strong { color: var(--brand-blue); }
.hero-kicker {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: var(--brand-navy);
}
.hero h1 .accent {
  color: var(--brand-blue);
}
.hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--ink-2);
  max-width: 36em;
  margin: 0 auto 28px;
  line-height: 1.75;
}
@media (min-width: 960px) {
  .hero-lead { margin-left: 0; margin-right: 0; }
}
.hero-lead strong { font-weight: 700; color: var(--ink); }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}
@media (min-width: 960px) {
  .hero-cta { justify-content: flex-start; }
}
.hero-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
@media (min-width: 960px) {
  .hero-meta { justify-content: flex-start; }
}
.hero-meta li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-2);
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: var(--pill);
}
.hero-meta li:not(:last-child)::after { content: none; }

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-logo-float {
  width: min(200px, 42vw);
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(26, 114, 216, 0.18));
  animation: hero-float 5s ease-in-out infinite;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo-float { animation: none; }
}
.hero-showcase {
  width: 100%;
  margin-top: 0;
  padding-bottom: 0;
}

/* Marquee */
.marquee {
  background: linear-gradient(90deg, var(--brand-navy) 0%, var(--brand-navy-2) 100%);
  color: var(--white);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.marquee-inner { overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}
.marquee-track span {
  flex-shrink: 0;
  padding: 0 32px;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}
.marquee-track span::after {
  content: '◆';
  margin-left: 32px;
  font-size: 0.45em;
  color: var(--brand-teal);
  vertical-align: middle;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
}

/* Portal mock */
.portal-frame {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.portal-frame--large {
  max-width: 100%;
  margin: 0;
  transform: none;
}
.portal-frame--large:hover { transform: none; }
.portal-ui {
  display: grid;
  grid-template-columns: 148px 1fr;
  min-height: 300px;
  font-size: 0.8rem;
}
.portal-ui { min-height: 320px; }
@media (min-width: 768px) {
  .portal-ui { min-height: 360px; font-size: 0.85rem; }
  .portal-kpis b { font-size: 1.6rem; }
}
.portal-frame-cap {
  padding: 10px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-blue);
  border-bottom: 1px solid var(--line);
  background: #f1f5f9;
}
.portal-side {
  background: #f8fafc;
  border-right: 1px solid var(--line);
  padding: 16px 12px;
}
.portal-side .brand-mini {
  margin-bottom: 16px;
  line-height: 0;
}
.portal-side .brand-mini img {
  height: 36px;
  width: auto;
}
.portal-nav div {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 500;
}
.portal-nav div.on {
  background: var(--white);
  color: var(--brand-blue);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(26, 114, 216, 0.1);
  border: 1px solid rgba(26, 114, 216, 0.12);
}
.portal-main { padding: 16px 18px; }
.portal-main h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--brand-navy);
}
.upload-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.upload-thumb {
  aspect-ratio: 1;
  background: #e2e8f0;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.upload-thumb:nth-child(2) { background: #dbeafe; }
.upload-thumb:nth-child(3) { background: #ccfbf1; }
.portal-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.portal-kpis div {
  text-align: center;
  padding: 10px 4px;
  background: var(--bg-warm);
  border-radius: 8px;
  border: 1px solid var(--line);
}
.portal-kpis b {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-teal-dk);
}
.portal-kpis small { color: var(--muted); font-size: 0.7rem; }
.portal-note {
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Hero flow demo */
.hero-demo {
  width: 100%;
  --demo-cycle: 18s;
  --demo-ease: cubic-bezier(0.45, 0, 0.2, 1);
}

.hero-demo-track {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 12px;
  padding: 0;
}

.hero-demo-pip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  background: #eef2f6;
  border-radius: 8px;
  text-align: center;
  line-height: 1.25;
}

.hero-demo-pip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 800;
  background: #cbd5e1;
  color: var(--white);
  flex-shrink: 0;
}

.hero-demo-frame { overflow: hidden; }

.hero-demo-cap {
  position: relative;
  min-height: 38px;
  padding: 10px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-blue);
  border-bottom: 1px solid var(--line);
  background: #f1f5f9;
}

.hero-demo-cap-text {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--demo-ease), transform 0.35s var(--demo-ease);
}

.hero-demo-ui { min-height: 300px; }

.hero-demo-stage {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.hero-demo-slide {
  position: absolute;
  inset: 0;
  padding: 16px 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  will-change: opacity, transform;
}

.hero-demo-slide h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--brand-navy);
}

.demo-upload-row { margin-bottom: 12px; }

.demo-photo {
  opacity: 0;
  transform: scale(0.92);
}

.demo-status {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  opacity: 0;
}

.demo-status-ok { color: var(--brand-blue); }

.demo-draft {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fafc;
  margin-bottom: 12px;
}

.demo-draft-photo {
  aspect-ratio: 1;
  border-radius: 8px;
  background: #dbeafe;
  border: 1px solid var(--line);
}

.demo-draft-body { display: flex; flex-direction: column; gap: 7px; padding-top: 4px; }

.demo-line {
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
}

.demo-line.w90 { width: 90%; }
.demo-line.w75 { width: 75%; }
.demo-line.w60 { width: 60%; }

.demo-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.95);
}

.demo-badge-check {
  background: #e8f4fc;
  color: var(--brand-blue);
  border: 1px solid #bfdbfe;
}

.demo-channels {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.demo-channel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-2);
  opacity: 0;
  transform: translateY(6px);
}

.demo-ch-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.demo-ch-naver .demo-ch-icon { background: #03c75a; }
.demo-ch-insta .demo-ch-icon { background: linear-gradient(135deg, #f58529, #dd2a7b); font-size: 0.58rem; }

.demo-ch-done {
  margin-left: auto;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-blue);
  opacity: 0;
}

.demo-kpis .demo-num { color: var(--brand-blue); }

.hero-demo-ui .portal-nav .nav-a {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 500;
  background: transparent;
  box-shadow: none;
  border: 1px solid transparent;
}

/* 4-step cycle: crossfade between steps */
@keyframes demoSlide1 {
  0%, 20% { opacity: 1; visibility: visible; transform: translateY(0); }
  28%, 92% { opacity: 0; visibility: hidden; transform: translateY(6px); }
  100% { opacity: 1; visibility: visible; transform: translateY(0); }
}
@keyframes demoSlide2 {
  0%, 20% { opacity: 0; visibility: hidden; transform: translateY(10px); }
  28%, 46% { opacity: 1; visibility: visible; transform: translateY(0); }
  54%, 100% { opacity: 0; visibility: hidden; transform: translateY(-4px); }
}
@keyframes demoSlide3 {
  0%, 46% { opacity: 0; visibility: hidden; transform: translateY(10px); }
  54%, 72% { opacity: 1; visibility: visible; transform: translateY(0); }
  80%, 100% { opacity: 0; visibility: hidden; transform: translateY(-4px); }
}
@keyframes demoSlide4 {
  0%, 72% { opacity: 0; visibility: hidden; transform: translateY(10px); }
  80%, 92% { opacity: 1; visibility: visible; transform: translateY(0); }
  100% { opacity: 0; visibility: hidden; transform: translateY(-4px); }
}

.slide-1 { animation: demoSlide1 var(--demo-cycle) var(--demo-ease) infinite; }
.slide-2 { animation: demoSlide2 var(--demo-cycle) var(--demo-ease) infinite; }
.slide-3 { animation: demoSlide3 var(--demo-cycle) var(--demo-ease) infinite; }
.slide-4 { animation: demoSlide4 var(--demo-cycle) var(--demo-ease) infinite; }

@keyframes cap1 {
  0%, 20% { opacity: 1; visibility: visible; transform: translateY(-50%); }
  28%, 92% { opacity: 0; visibility: hidden; transform: translateY(calc(-50% + 4px)); }
  100% { opacity: 1; visibility: visible; transform: translateY(-50%); }
}
@keyframes cap2 {
  0%, 20% { opacity: 0; visibility: hidden; transform: translateY(calc(-50% + 4px)); }
  28%, 46% { opacity: 1; visibility: visible; transform: translateY(-50%); }
  54%, 100% { opacity: 0; visibility: hidden; transform: translateY(calc(-50% - 4px)); }
}
@keyframes cap3 {
  0%, 46% { opacity: 0; visibility: hidden; transform: translateY(calc(-50% + 4px)); }
  54%, 72% { opacity: 1; visibility: visible; transform: translateY(-50%); }
  80%, 100% { opacity: 0; visibility: hidden; transform: translateY(calc(-50% - 4px)); }
}
@keyframes cap4 {
  0%, 72% { opacity: 0; visibility: hidden; transform: translateY(calc(-50% + 4px)); }
  80%, 92% { opacity: 1; visibility: visible; transform: translateY(-50%); }
  100% { opacity: 0; visibility: hidden; transform: translateY(calc(-50% - 4px)); }
}

.cap-1 { animation: cap1 var(--demo-cycle) var(--demo-ease) infinite; }
.cap-2 { animation: cap2 var(--demo-cycle) var(--demo-ease) infinite; }
.cap-3 { animation: cap3 var(--demo-cycle) var(--demo-ease) infinite; }
.cap-4 { animation: cap4 var(--demo-cycle) var(--demo-ease) infinite; }

@keyframes pipOn1 {
  0%, 20% { background: var(--brand-blue); color: var(--white); }
  28%, 92% { background: #eef2f6; color: var(--muted); }
  100% { background: var(--brand-blue); color: var(--white); }
}
@keyframes pipOn2 {
  0%, 20% { background: #eef2f6; color: var(--muted); }
  28%, 46% { background: var(--brand-blue); color: var(--white); }
  54%, 100% { background: #eef2f6; color: var(--muted); }
}
@keyframes pipOn3 {
  0%, 46% { background: #eef2f6; color: var(--muted); }
  54%, 72% { background: var(--brand-blue); color: var(--white); }
  80%, 100% { background: #eef2f6; color: var(--muted); }
}
@keyframes pipOn4 {
  0%, 72% { background: #eef2f6; color: var(--muted); }
  80%, 92% { background: var(--brand-blue); color: var(--white); }
  100% { background: #eef2f6; color: var(--muted); }
}

.is-1 { animation: pipOn1 var(--demo-cycle) var(--demo-ease) infinite; }
.is-2 { animation: pipOn2 var(--demo-cycle) var(--demo-ease) infinite; }
.is-3 { animation: pipOn3 var(--demo-cycle) var(--demo-ease) infinite; }
.is-4 { animation: pipOn4 var(--demo-cycle) var(--demo-ease) infinite; }

@keyframes pipDot1 {
  0%, 20% { background: var(--white); color: var(--brand-blue); }
  28%, 92% { background: #cbd5e1; color: var(--white); }
  100% { background: var(--white); color: var(--brand-blue); }
}
@keyframes pipDot2 {
  0%, 20% { background: #cbd5e1; color: var(--white); }
  28%, 46% { background: var(--white); color: var(--brand-blue); }
  54%, 100% { background: #cbd5e1; color: var(--white); }
}
@keyframes pipDot3 {
  0%, 46% { background: #cbd5e1; color: var(--white); }
  54%, 72% { background: var(--white); color: var(--brand-blue); }
  80%, 100% { background: #cbd5e1; color: var(--white); }
}
@keyframes pipDot4 {
  0%, 72% { background: #cbd5e1; color: var(--white); }
  80%, 92% { background: var(--white); color: var(--brand-blue); }
  100% { background: #cbd5e1; color: var(--white); }
}

.is-1 span { animation: pipDot1 var(--demo-cycle) var(--demo-ease) infinite; }
.is-2 span { animation: pipDot2 var(--demo-cycle) var(--demo-ease) infinite; }
.is-3 span { animation: pipDot3 var(--demo-cycle) var(--demo-ease) infinite; }
.is-4 span { animation: pipDot4 var(--demo-cycle) var(--demo-ease) infinite; }

@keyframes navUpload {
  0%, 46% {
    background: rgba(255, 255, 255, 0.95);
    color: var(--brand-blue);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(26, 114, 216, 0.1);
    border-color: rgba(26, 114, 216, 0.12);
  }
  54%, 100% {
    background: transparent;
    color: var(--muted);
    font-weight: 500;
    box-shadow: none;
    border-color: transparent;
  }
}
@keyframes navRequest {
  0%, 46% {
    background: transparent;
    color: var(--muted);
    font-weight: 500;
    box-shadow: none;
    border-color: transparent;
  }
  54%, 72% {
    background: rgba(255, 255, 255, 0.95);
    color: var(--brand-blue);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(26, 114, 216, 0.1);
    border-color: rgba(26, 114, 216, 0.12);
  }
  80%, 100% {
    background: transparent;
    color: var(--muted);
    font-weight: 500;
    box-shadow: none;
    border-color: transparent;
  }
}
@keyframes navReport {
  0%, 72% {
    background: transparent;
    color: var(--muted);
    font-weight: 500;
    box-shadow: none;
    border-color: transparent;
  }
  80%, 92% {
    background: rgba(255, 255, 255, 0.95);
    color: var(--brand-blue);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(26, 114, 216, 0.1);
    border-color: rgba(26, 114, 216, 0.12);
  }
  100% {
    background: transparent;
    color: var(--muted);
    font-weight: 500;
    box-shadow: none;
    border-color: transparent;
  }
}

.nav-upload { animation: navUpload var(--demo-cycle) var(--demo-ease) infinite; }
.nav-request { animation: navRequest var(--demo-cycle) var(--demo-ease) infinite; }
.nav-report { animation: navReport var(--demo-cycle) var(--demo-ease) infinite; }

@keyframes photoA {
  0%, 3% { opacity: 0; transform: scale(0.94); }
  10%, 24% { opacity: 1; transform: scale(1); }
  30%, 100% { opacity: 0; transform: scale(0.96); }
}
@keyframes photoB {
  0%, 7% { opacity: 0; transform: scale(0.94); }
  14%, 24% { opacity: 1; transform: scale(1); }
  30%, 100% { opacity: 0; transform: scale(0.96); }
}
@keyframes photoC {
  0%, 11% { opacity: 0; transform: scale(0.94); }
  18%, 24% { opacity: 1; transform: scale(1); }
  30%, 100% { opacity: 0; transform: scale(0.96); }
}

.demo-photo-a { animation: photoA var(--demo-cycle) var(--demo-ease) infinite; }
.demo-photo-b { animation: photoB var(--demo-cycle) var(--demo-ease) infinite; }
.demo-photo-c { animation: photoC var(--demo-cycle) var(--demo-ease) infinite; }

@keyframes statusOk {
  0%, 14% { opacity: 0; transform: translateY(4px); }
  20%, 26% { opacity: 1; transform: translateY(0); }
  32%, 100% { opacity: 0; transform: translateY(4px); }
}
.demo-status-ok { animation: statusOk var(--demo-cycle) var(--demo-ease) infinite; }

@keyframes badgeIn {
  0%, 36% { opacity: 0; transform: scale(0.96) translateY(4px); }
  42%, 48% { opacity: 1; transform: scale(1) translateY(0); }
  54%, 100% { opacity: 0; transform: scale(0.96) translateY(4px); }
}
.demo-badge-check { animation: badgeIn var(--demo-cycle) var(--demo-ease) infinite; }

@keyframes ch1 {
  0%, 50% { opacity: 0; transform: translateY(8px); }
  56%, 72% { opacity: 1; transform: translateY(0); }
  78%, 100% { opacity: 0; transform: translateY(-4px); }
}
@keyframes ch2 {
  0%, 56% { opacity: 0; transform: translateY(8px); }
  62%, 72% { opacity: 1; transform: translateY(0); }
  78%, 100% { opacity: 0; transform: translateY(-4px); }
}
@keyframes chDone {
  0%, 62% { opacity: 0; }
  68%, 72% { opacity: 1; }
  78%, 100% { opacity: 0; }
}

.demo-ch-naver { animation: ch1 var(--demo-cycle) var(--demo-ease) infinite; }
.demo-ch-insta { animation: ch2 var(--demo-cycle) var(--demo-ease) infinite; }
.demo-ch-done { animation: chDone var(--demo-cycle) var(--demo-ease) infinite; }

@media (max-width: 520px) {
  .hero-demo-pip { font-size: 0; gap: 0; padding: 8px 2px; }
  .hero-demo-pip span { font-size: 0.65rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-demo-slide,
  .hero-demo-cap-text,
  .hero-demo-pip,
  .hero-demo-pip span,
  .nav-upload, .nav-request, .nav-report,
  .demo-photo-a, .demo-photo-b, .demo-photo-c,
  .demo-status-ok, .demo-badge-check,
  .demo-ch-naver, .demo-ch-insta, .demo-ch-done {
    animation: none !important;
  }
  .slide-1, .cap-1, .is-1, .is-1 span { opacity: 1; visibility: visible; transform: none; background: var(--brand-blue); color: var(--white); }
  .is-1 span { background: var(--white); color: var(--brand-blue); }
  .nav-upload { background: var(--white); color: var(--brand-blue); font-weight: 700; }
  .demo-photo-a, .demo-photo-b, .demo-photo-c { opacity: 1; transform: none; }
  .demo-status-ok { opacity: 1; }
  .slide-2, .slide-3, .slide-4,
  .cap-2, .cap-3, .cap-4 { display: none; }
}

/* Sections */
section { padding: var(--section-y) 0; }
section.band {
  background: #f8fafc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-dark {
  background: var(--brand-navy);
  color: #cbd5e1;
  padding: var(--section-y) 0;
}
.section-dark::before { display: none; }
.section-dark .section-head h2 { color: var(--white); }
.section-dark .section-head p { color: #94a3b8; }

.section-compare {
  padding: var(--section-y) 0;
  background: var(--white);
}

.section-head { margin-bottom: clamp(36px, 5vw, 56px); max-width: 720px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: var(--brand-navy);
}
.section-dark .section-head h2 { color: var(--white); }
.section-head p { font-size: clamp(1rem, 2vw, 1.1rem); color: var(--muted); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.pain-list--dark {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pain-list--dark li {
  display: block;
  padding: clamp(24px, 4vw, 36px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.pain-list--dark h3 {
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.pain-list--dark p {
  color: #94a3b8;
  font-size: 0.98rem;
  line-height: 1.7;
}

.split-compare {
  display: grid;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
@media (min-width: 768px) {
  .split-compare { grid-template-columns: 1fr 1fr; }
}
.split-col { padding: clamp(28px, 5vw, 48px); }
.split-col.before { background: #f1f5f9; }
.split-col.after {
  background: var(--brand-navy);
  color: #e2e8f0;
}
.split-col.after .split-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}
.split-col h3 {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.split-col.before h3 { color: var(--muted); }
.split-col.after h3 { color: var(--white); }
.split-col ul { list-style: none; }
.split-col li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: clamp(0.92rem, 1.8vw, 1rem);
  padding-left: 0;
  position: static;
}
.split-col.after li {
  color: #cbd5e1;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.split-col li::before { display: none; }

.feature-list { max-width: 920px; margin: 0 auto; }
.feature-item {
  display: grid;
  gap: 14px;
  padding: clamp(32px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) {
  .feature-item { grid-template-columns: 200px 1fr; gap: 48px; align-items: start; }
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(0, 196, 212, 0.15), rgba(26, 114, 216, 0.12));
  border: 1px solid rgba(26, 114, 216, 0.12);
  margin-bottom: 8px;
}
.feature-item h3 {
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--brand-navy);
}
.feature-item p {
  color: var(--ink-2);
  font-size: clamp(0.98rem, 1.8vw, 1.05rem);
  max-width: 36em;
  line-height: 1.75;
}

.flow-line {
  display: grid;
  gap: 16px;
  margin-top: 8px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .flow-line { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .flow-line { grid-template-columns: repeat(4, 1fr); }
}
.flow-line article {
  padding: 20px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.flow-line article::before { display: none; }
.flow-line article:last-child { padding-bottom: 20px; }
.flow-line h3 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; color: var(--brand-navy); }
.flow-line p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* Plans — keep structure, refresh accents */
.plans-entry {
  display: grid;
  gap: 14px;
  margin-bottom: 48px;
}

.plans-subhead {
  margin-top: 48px;
  margin-bottom: 28px;
}

.value-compare {
  margin-bottom: 8px;
  padding: 20px 16px;
  background: linear-gradient(180deg, #f1f5f9 0%, #fff 55%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}

.value-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-problems {
  display: grid;
  gap: 12px;
}

.value-save-mobile {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--brand-blue);
  padding: 8px 16px;
  background: #e8f4fc;
  border: 1px solid rgba(26, 114, 216, 0.2);
  border-radius: var(--pill);
  margin: -4px 0 4px;
}

.value-bridge {
  display: none;
}

@media (min-width: 768px) {
  .value-compare { padding: 32px 28px; }
  .value-grid {
    display: grid;
    grid-template-columns: 1fr auto 1.12fr;
    grid-template-areas: "problems bridge hero";
    align-items: center;
    gap: 14px;
  }

  .value-problems {
    grid-area: problems;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .value-bridge {
    grid-area: bridge;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 2px;
  }

  .value-col--hero { grid-area: hero; }

  .value-save-mobile { display: none; }
}

.value-bridge-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--brand-blue);
  color: var(--brand-blue);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(26, 114, 216, 0.14);
}

.value-bridge-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--brand-blue);
  text-align: center;
  line-height: 1.4;
}

.value-col {
  position: relative;
  padding: 20px 18px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: #f8fafc;
}

.value-col-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: var(--pill);
  margin-bottom: 12px;
}

.value-col-tag--warn {
  color: #94a3b8;
  background: #e2e8f0;
}

.value-col-tag--best {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal-dk));
  box-shadow: 0 4px 14px rgba(26, 114, 216, 0.35);
}

.value-col h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 14px;
}

.value-col ul {
  list-style: none;
  font-size: 0.84rem;
  color: var(--ink-2);
  margin-bottom: 16px;
}

.value-col li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.value-col li:last-child { border-bottom: none; }

.value-sum {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.value-sum strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
}

.value-sum--bad strong {
  color: #94a3b8;
  font-size: 1.05rem;
}

.value-note {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.value-col--problem {
  background: #f8fafc;
  border-color: #e2e8f0;
  opacity: 0.82;
}

.value-col--problem h3 {
  color: #64748b;
  font-size: 0.88rem;
}

.value-col--problem ul {
  color: #94a3b8;
  font-size: 0.8rem;
}

.value-col--problem .value-note {
  color: #94a3b8;
}

@media (min-width: 768px) {
  .value-col--problem {
    transform: scale(0.94);
    transform-origin: center;
  }
}

.value-col--hero {
  background: linear-gradient(160deg, #fff 0%, #e8f4fc 45%, #dff0fa 100%);
  border: 2px solid var(--brand-blue);
  box-shadow:
    0 0 0 4px rgba(26, 114, 216, 0.1),
    0 20px 48px rgba(26, 114, 216, 0.18),
    var(--shadow-teal);
  z-index: 2;
}

.value-col--hero h3 {
  color: var(--brand-blue);
  font-size: 1.05rem;
}

.value-col--hero ul {
  color: var(--ink);
  font-size: 0.86rem;
}

.value-col--hero ul strong {
  color: var(--brand-blue);
}

.value-price {
  margin: 4px 0 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand-blue-dk);
}

.value-price strong {
  font-size: clamp(1.75rem, 4vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--brand-blue);
  line-height: 1.1;
}

.value-price span {
  font-size: 1rem;
  font-weight: 800;
  margin-left: 2px;
}

.value-note--win {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--brand-teal-dk);
}

@media (min-width: 768px) {
  .value-col--hero {
    padding: 28px 24px;
    transform: scale(1.03);
    transform-origin: center;
  }

  .value-col--hero::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
  }
}
.plan-value {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--ink-2);
  padding: 10px 12px;
  margin-bottom: 8px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.plan-value-diy,
.plan-value-out {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  margin-right: 4px;
}

.plan-value-save {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 14px;
}

.plan-value--inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin-bottom: 16px;
  background: #f0f7ff;
  border-color: rgba(26, 114, 216, 0.15);
}

.plan-value-arrow {
  color: var(--brand-teal-dk);
  font-weight: 800;
}

.plan-value-save-inline {
  font-weight: 800;
  color: var(--brand-blue);
}

.plan-enterprise-save {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  color: #cbd5e1;
}

.plan-enterprise-save strong {
  color: var(--brand-teal);
  font-weight: 800;
}

@media (min-width: 640px) {
  .plans-entry { grid-template-columns: 1fr 1fr; }
}
.plan-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.plan-card:hover {
  border-color: rgba(26, 114, 216, 0.25);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}
.plan-card--compact .plan-features li { padding: 6px 0; }
.plan-card.featured {
  border-color: var(--brand-blue);
  box-shadow: 0 8px 28px rgba(26, 114, 216, 0.1);
}
.plan-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--brand-teal-dk);
  margin-bottom: 8px;
}
.plan-name { font-size: 1.05rem; font-weight: 800; color: var(--brand-navy); }
.plan-price {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 10px 0;
  letter-spacing: -0.02em;
  color: var(--brand-blue);
}
.plan-price small { font-size: 0.85rem; font-weight: 500; color: var(--muted); }
.plan-desc { font-size: 0.85rem; color: var(--muted); margin-bottom: 16px; }
.plan-features {
  list-style: none;
  font-size: 0.88rem;
  color: var(--ink-2);
}
.plan-features li {
  padding: 8px 0;
  border-top: 1px solid #f1f5f9;
}

.plans-highlight { margin-bottom: 20px; }
.plans-highlight-head { margin-bottom: 24px; max-width: 42em; }
.plans-highlight-head h3 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--brand-navy);
}
.plans-highlight-head p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}
.plans-detail-grid { display: grid; gap: 16px; }
@media (min-width: 900px) {
  .plans-detail-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
.plan-detail {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}
.plan-detail--featured {
  border: 2px solid var(--brand-teal);
  box-shadow: 0 12px 48px rgba(0, 196, 212, 0.15);
}
.plan-detail-hd {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 520px) {
  .plan-detail-hd {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.plan-tier {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 6px;
}
.plan-tier--accent { color: var(--brand-teal-dk); }
.plan-detail .plan-name { font-size: 1.35rem; margin-bottom: 4px; }
.plan-detail .plan-desc { margin-bottom: 0; }
.plan-price-block { text-align: left; flex-shrink: 0; }
@media (min-width: 520px) {
  .plan-price-block { text-align: right; }
}
.plan-price-sub { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }
.plan-fit {
  font-size: 0.88rem;
  color: var(--ink-2);
  background: var(--bg);
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  line-height: 1.5;
  border: 1px solid rgba(26, 114, 216, 0.08);
}
.plan-specs { display: flex; flex-direction: column; gap: 18px; }
.plan-spec-group h5 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 8px;
}
.plan-spec-group ul { list-style: none; font-size: 0.88rem; }
.plan-spec-group li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #f1f5f9;
  color: var(--ink-2);
}
.plan-spec-group li span { flex: 1; }
.plan-spec-group li strong {
  font-weight: 700;
  color: var(--ink);
  text-align: right;
  white-space: nowrap;
}
.plan-compare-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}
.plan-compare-note strong { color: var(--ink); }

.plan-enterprise {
  margin-top: 16px;
  margin-bottom: 24px;
  padding: 28px 24px;
  background: var(--brand-navy);
  color: #e2e8f0;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.plan-enterprise-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 640px) {
  .plan-enterprise-main {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.plan-enterprise .plan-tier { color: #94a3b8; }
.plan-enterprise .plan-name { font-size: 1.35rem; color: var(--white); margin-bottom: 6px; }
.plan-enterprise .plan-desc { color: #94a3b8; margin-bottom: 0; }
.plan-enterprise .plan-price { color: var(--white); }
.plan-enterprise .plan-price small { color: #64748b; }
.plan-enterprise .plan-price-sub { color: #64748b; }
.plan-enterprise-features {
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 0.9rem;
  color: #cbd5e1;
}
@media (min-width: 768px) {
  .plan-enterprise-features { grid-template-columns: 1fr 1fr; }
}
.plan-enterprise-features strong { color: var(--white); font-weight: 700; }

.plan-legend {
  margin-bottom: 48px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}
.plan-legend p + p { margin-top: 8px; }
.plan-legend strong { color: var(--ink-2); font-weight: 700; }

.biz-block {
  margin-top: 56px;
  padding: 40px 32px;
  background: var(--brand-navy);
  color: #e2e8f0;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.biz-block h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}
.biz-nums {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px 24px;
  margin-bottom: 32px;
}
.biz-nums .big {
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.biz-nums .big.dim { color: #475569; text-decoration: line-through; text-decoration-color: #64748b; }
.biz-nums .big.ok { color: var(--brand-teal); }
.biz-nums .lbl { font-size: 0.9rem; color: #94a3b8; }
.biz-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.biz-table th, .biz-table td {
  padding: 12px 8px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.biz-table th { color: #94a3b8; font-weight: 600; }

.faq-list { border-top: 2px solid var(--brand-navy); max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  padding: 20px 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  color: var(--brand-navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--brand-blue); }
.faq-item p {
  padding: 0 0 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.cta-final { padding: var(--section-y) 0; text-align: center; }
.cta-final--dark {
  background: var(--brand-navy);
  color: var(--white);
  padding: clamp(72px, 10vw, 120px) 0;
  border: none;
}
.cta-final--dark::before { display: none; }
.cta-final--dark .container { position: relative; z-index: 1; }
.cta-final-logo {
  width: auto;
  height: 48px;
  margin: 0 auto 24px;
  display: block;
}
.cta-final--dark h2 {
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 18px;
}
.cta-final--dark p {
  color: #94a3b8;
  margin-bottom: 32px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 28em;
  margin-left: auto;
  margin-right: auto;
}
.cta-final--dark .btn-orange {
  padding: 20px 44px;
  font-size: 1.1rem;
  box-shadow: var(--shadow-teal);
}
.cta-final--dark .sub { margin-top: 28px; font-size: 0.95rem; color: #64748b; }
.cta-final--dark .sub a { color: var(--brand-teal); font-weight: 600; }

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--bg-warm);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
.footer-brand img { height: 40px; width: auto; }
.footer-links { display: flex; gap: 20px; font-weight: 600; }
.footer-links a:hover { color: var(--brand-blue); }

.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 99;
  padding: 6px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  box-shadow: 0 8px 40px rgba(15, 23, 42, 0.12);
}
.sticky-cta .btn {
  border-radius: var(--pill);
  box-shadow: none;
  padding: 12px 24px;
}

@media (min-width: 768px) { .nav-links { display: flex; } }
@media (max-width: 767px) {
  body { padding-bottom: 80px; }
  .site-header .btn-sm { display: none; }
  .logo--img img { height: 38px; }
  .sticky-cta {
    left: 16px;
    right: 16px;
    transform: none;
    width: auto;
  }
  .sticky-cta .btn { flex: 1; }
  .hero-logo-float { display: none; }
  .portal-ui { grid-template-columns: 1fr; }
  .portal-side { display: none; }
}

/* ── Simplified layout (laymaker-style) ── */

.hero--split {
  position: relative;
  padding: 108px 0 72px;
}

.hero--split .hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}

@media (min-width: 960px) {
  .hero--split .hero-tags { justify-content: flex-start; }
}

.hero--split .hero-tags span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-blue);
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid rgba(26, 114, 216, 0.15);
  border-radius: var(--pill);
}

.hero--split .hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  color: var(--ink-2);
  line-height: 1.75;
  max-width: 36em;
  margin: 0 auto 28px;
}

@media (min-width: 960px) {
  .hero--split .hero-sub { margin-left: 0; margin-right: 0; }
}

.hero--split .hero-visual {
  width: 100%;
}

.hero--simple {
  padding: 120px 0 56px;
  background: #f8fafc;
  text-align: center;
}

.hero-simple-inner {
  max-width: 720px;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-blue);
  padding: 8px 16px;
  margin-bottom: 20px;
  background: #e8f4fc;
  border: 1px solid rgba(26, 114, 216, 0.2);
  border-radius: var(--pill);
}

.hero-definition {
  font-size: clamp(1.02rem, 2.4vw, 1.15rem);
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 32px;
}

.hero-definition strong {
  color: var(--brand-navy);
  font-weight: 800;
}

.hero--simple .hero-sub {
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

.trust-strip {
  background: var(--brand-navy);
  color: var(--white);
  padding: 20px 0;
}

.trust-strip--stats {
  padding: 28px 0;
}

.trust-stat {
  text-align: center;
}

.trust-stat strong {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--brand-teal);
  line-height: 1.1;
  margin-bottom: 6px;
}

.trust-stat span {
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.4;
}

.trust-stat span em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  color: #64748b;
  margin-top: 2px;
}

.trust-strip-inner {
  display: grid;
  gap: 16px;
  text-align: center;
}

@media (min-width: 640px) {
  .trust-strip-inner { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.trust-strip-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--white);
}

.trust-strip-item span {
  font-size: 0.82rem;
  color: #94a3b8;
}

.not-banner {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-blue-dk);
  padding: 8px 16px;
  margin-bottom: 20px;
  background: #f0f9ff;
  border: 1px solid rgba(26, 114, 216, 0.15);
  border-radius: var(--pill);
}

.hook-demo-head {
  margin-top: 48px;
  margin-bottom: 20px;
  text-align: center;
}

.hook-demo-title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  color: var(--brand-navy);
  letter-spacing: -0.02em;
}

.hook-demo-title span {
  color: var(--brand-blue);
}

.start-steps {
  margin-top: 32px;
  padding: 20px 24px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--r);
  text-align: center;
}

.start-steps-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 12px;
}

.start-steps-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  counter-reset: start;
}

.start-steps-list li {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-2);
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--pill);
}

.start-steps-list li::before {
  content: counter(start) '. ';
  counter-increment: start;
  color: var(--brand-blue);
  font-weight: 800;
}

.trust-reviews {
  padding: var(--section-y) 0;
  background: #f8fafc;
  text-align: center;
}

.case-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  text-align: left;
}

@media (min-width: 640px) {
  .case-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

@media (min-width: 960px) {
  .case-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.case-card {
  padding: 22px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.case-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.case-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--brand-blue);
  padding: 4px 10px;
  margin-bottom: 12px;
  background: #e8f4fc;
  border-radius: var(--pill);
}

.case-quote {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 14px;
}

.case-metric {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.case-metric strong {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--brand-blue);
  margin-left: 4px;
}

.case-card footer {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.case-note {
  margin-top: 24px;
  font-size: 0.75rem;
  color: var(--muted);
}

.review-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  text-align: left;
}

@media (min-width: 768px) {
  .review-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.review-card {
  padding: 24px 22px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  margin: 0;
}

.review-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 16px;
}

.review-card footer {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.compare-item em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 6px;
}

.compare-item--win em {
  color: var(--brand-blue);
}

.cta-kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-teal);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(0, 196, 212, 0.12);
  border-radius: var(--pill);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-tags span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-blue);
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid rgba(26, 114, 216, 0.15);
  border-radius: var(--pill);
}

.hero--simple h1 {
  font-size: clamp(2.1rem, 6.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--brand-navy);
  margin-bottom: 20px;
}

.hero--simple .hero-cta {
  justify-content: center;
  margin-bottom: 32px;
}

.hero--simple .hero-meta {
  justify-content: center;
}

.hook {
  padding: var(--section-y) 0;
  text-align: center;
  background: var(--white);
}

.hook-q {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--muted);
  margin-bottom: 12px;
}

.hook h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand-navy);
  margin-bottom: 40px;
}

.hook-grid {
  display: grid;
  gap: 16px;
  text-align: left;
}

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

.hook-card {
  padding: 28px 24px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}

.hook-card strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 10px;
}

.hook-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.hook-demo-wrap {
  max-width: 800px;
  margin: 48px auto 0;
  text-align: left;
}

.hook-demo-wrap .portal-frame {
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.flow-simple {
  padding: var(--section-y) 0;
  background: #f8fafc;
  text-align: center;
}

.section-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand-navy);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 40px;
}

.flow-steps {
  list-style: none;
  display: grid;
  gap: 12px;
  counter-reset: none;
}

@media (min-width: 640px) {
  .flow-steps { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

.flow-steps li {
  padding: 24px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
}

.flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.flow-steps strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.flow-steps p {
  font-size: 0.82rem;
  color: var(--muted);
}

.section-plans {
  padding: var(--section-y) 0;
  background: var(--white);
  text-align: center;
}

.product-grid {
  display: grid;
  gap: 16px;
  text-align: left;
}

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

@media (min-width: 960px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}

.product-card:hover {
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.product-bar {
  padding: 10px 20px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--white);
  background: var(--brand-blue);
  letter-spacing: 0.02em;
}

.product-bar--accent {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-teal-dk));
}

.product-bar--dark {
  background: var(--brand-navy);
}

.product-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-navy);
  padding: 20px 20px 0;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 6px 20px 0;
  line-height: 1.5;
}

.product-price {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--brand-navy);
  padding: 16px 20px 0;
}

.product-price small {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  margin-left: 2px;
}

.product-save {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-blue);
  padding: 6px 20px 0;
}

.product-features {
  list-style: none;
  padding: 16px 20px 12px;
  margin-top: auto;
  font-size: 0.86rem;
  color: var(--ink-2);
}

.product-cta {
  padding: 0 20px 24px;
  margin-top: auto;
}

.product-cta .btn {
  width: 100%;
  border-radius: var(--pill);
  padding: 14px 20px;
  font-size: 0.92rem;
}

.product-card--featured .product-cta .btn {
  padding: 16px 24px;
  font-size: 1rem;
  box-shadow: 0 6px 24px rgba(26, 114, 216, 0.25);
}

.product-cta-note {
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-blue);
  text-align: center;
}

.plans-cta-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding: 32px 28px;
  background: linear-gradient(135deg, #e8f4fc 0%, #f0f9ff 100%);
  border: 1px solid rgba(26, 114, 216, 0.2);
  border-radius: var(--r-lg);
  text-align: center;
}

@media (min-width: 640px) {
  .plans-cta-banner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .plans-cta-banner .btn {
    flex-shrink: 0;
  }
}

.plans-cta-copy strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 6px;
}

.plans-cta-copy p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.product-wide-price .btn {
  width: 100%;
  border-radius: var(--pill);
  padding: 14px 20px;
}

.cta-plan-hint {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-teal);
  background: rgba(0, 196, 212, 0.12);
  border: 1px solid rgba(0, 196, 212, 0.25);
  border-radius: var(--pill);
}

.cta-plan-hint[hidden] {
  display: none;
}

.product-features li {
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
}

.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-teal);
}

.product-card--featured {
  border-color: rgba(26, 114, 216, 0.35);
  box-shadow: 0 8px 32px rgba(26, 114, 216, 0.12);
}

.product-card--wide {
  grid-column: 1 / -1;
}

.product-wide-body {
  display: grid;
  gap: 24px;
  padding: 20px;
}

@media (min-width: 768px) {
  .product-wide-body {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 24px 28px;
  }
}

.product-wide-body h3 {
  padding: 0;
}

.product-wide-body .product-desc {
  padding: 6px 0 0;
}

.product-wide-body .product-features {
  padding: 12px 0 0;
}

.product-wide-price {
  text-align: center;
  padding: 20px;
  background: #f8fafc;
  border-radius: var(--r);
  border: 1px solid var(--line);
}

.product-wide-price .product-price {
  padding: 0;
}

.product-note {
  font-size: 0.82rem;
  color: var(--brand-blue);
  font-weight: 700;
  margin: 8px 0 16px;
}

.plan-footnote {
  margin-top: 32px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

.compare-simple {
  padding: var(--section-y) 0;
  background: #f8fafc;
  text-align: center;
}

.compare-simple .section-title {
  margin-bottom: 32px;
}

.compare-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.compare-item {
  flex: 1 1 140px;
  max-width: 200px;
  padding: 20px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  text-align: center;
}

.compare-item span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}

.compare-item strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-navy);
}

.compare-item em {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-top: 6px;
}

.compare-item--dim {
  opacity: 0.7;
  background: #f1f5f9;
}

.compare-item--dim strong {
  color: #94a3b8;
}

.compare-item--win {
  border: 2px solid var(--brand-blue);
  background: #e8f4fc;
  box-shadow: 0 8px 28px rgba(26, 114, 216, 0.12);
  max-width: 220px;
}

.compare-item--win strong {
  font-size: 1.2rem;
  color: var(--brand-blue);
}

.compare-arrow {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-blue);
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .compare-arrow { display: none; }
  .compare-item--win { flex: 1 1 100%; max-width: none; }
}

.section-faq {
  padding: var(--section-y) 0;
  background: var(--white);
}

.section-faq .section-title {
  text-align: center;
  margin-bottom: 32px;
}

.faq-list--num .faq-item summary {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.faq-num {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--brand-blue);
  flex-shrink: 0;
}

.cta-final {
  padding: var(--section-y) 0;
  background: var(--brand-navy);
  text-align: center;
  color: var(--white);
}

.cta-inner h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 16px;
}

.cta-inner p {
  color: #94a3b8;
  margin-bottom: 28px;
  font-size: 1rem;
}

.cta-sub {
  margin-top: 24px;
  font-size: 0.9rem;
  color: #64748b;
}

.cta-sub a {
  color: var(--brand-teal);
  font-weight: 600;
}

.site-footer--simple {
  text-align: center;
}

.site-footer--simple .footer-inner {
  flex-direction: column;
  justify-content: center;
}

.site-footer--simple .footer-links {
  justify-content: center;
}
