/* ==========================================================
   WZ-PDF — Notion/Linear-style Product Landing Page
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Design tokens ─────────────────────────────────────── */
:root {
  --bg:          #fffefb;
  --bg-subtle:   #f8f4f0;
  --bg-hover:    #f1ede9;
  --border:      #e6e3df;
  --border-dark: #c5c0b1;

  --text:        #201515;
  --text-2:      #36342e;
  --text-3:      #605d52;

  --blue:        #ff4f00;
  --blue-hover:  #e04500;
  --blue-light:  #fff0eb;
  --blue-glow:   rgba(255,79,0,0.18);

  --green:       #0f7b4e;
  --green-light: #edf7f2;

  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:        'JetBrains Mono', 'Cascadia Code', monospace;

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-xl:   0 32px 80px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);

  --transition:  0.18s cubic-bezier(0.4,0,0.2,1);

  --max-w:       1080px;
  --max-w-wide:  1200px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: 58px; /* For fixed header */
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ── Utilities ──────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.container--wide {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Animations ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes pulseRing {
  0%   { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.animate-fadeup   { animation: fadeUp 0.6s ease both; }
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }

/* ── Scroll Reveal System ───────────────────────────────── */
.reveal {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1) !important;
}
.reveal-up { transform: translateY(50px); }
.reveal-down { transform: translateY(-50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.92); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── HEADER ─────────────────────────────────────────────── */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid var(--border);
  height: 58px;
}
.header-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  cursor: pointer;
  user-select: none;
}
.logo-icon {
  width: 28px;
  height: 28px;
  background: var(--text);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.nav-link:hover {
  background: var(--bg-hover);
  color: var(--text);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Lang dropdown */
.lang-selector { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-2);
  transition: var(--transition);
}
.lang-btn:hover { background: var(--bg-hover); border-color: var(--border-dark); }
.lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 110px;
  overflow: hidden;
  z-index: 100;
}
.lang-dropdown.show { display: block; }
.lang-option {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 9px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-2);
  transition: background var(--transition);
}
.lang-option:hover { background: var(--bg-hover); }
.lang-option.active { color: var(--blue); font-weight: 600; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn svg { flex-shrink: 0; }
.btn-primary {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.btn-primary:hover {
  background: #333;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}
.btn-blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-hover);
  box-shadow: 0 4px 14px var(--blue-glow);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text-2);
}
.btn-ghost:hover {
  background: var(--bg-hover);
  border-color: var(--border-dark);
  color: var(--text);
}
.btn-lg {
  padding: 13px 26px;
  font-size: 1rem;
  border-radius: var(--radius);
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-2);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 58px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 800;
  padding: 32px 28px;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
}
.nav-active .mobile-menu { display: flex; }
.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 10px 4px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-link:last-of-type { border-bottom: none; }
.mobile-lang-row {
  margin-top: 20px;
  display: flex;
  gap: 8px;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  padding: 140px 0 120px;
  overflow: hidden;
}
.hero-top {
  text-align: center;
  margin-bottom: 64px;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  align-items: center;
  gap: 40px;
}
.hero-left {
  text-align: left;
}
.hero-right {
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue-light);
  color: var(--blue);
  border: 1px solid rgba(35,131,226,0.2);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--text);
  margin: 0 auto 20px;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--blue) 0%, #5b8dee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* English-specific layout adjustments for longer titles */
html[lang="en"] .hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
html[lang="en"] .hero-sub {
  margin-bottom: 20px;
  font-size: 1.05rem;
}
html[lang="en"] .hero-cta-row {
  gap: 10px;
}
html[lang="en"] .hero-cta-row .btn-lg {
  padding: 12px 18px;
  font-size: 0.95rem;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--text-2);
  margin-bottom: 32px;
  line-height: 1.7;
  font-weight: 400;
  max-width: 580px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-footnote {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 12px;
}
.hero-footnote span { margin: 0 6px; opacity: 0.4; }

/* ── PRODUCT SCREENSHOT (centred hero image) ────────────── */
.hero-screenshot-wrap {
  position: relative;
  width: 100%;
}

/* Glow halo behind screenshot */
.hero-screenshot-wrap::before {
  content: '';
  position: absolute;
  inset: -20px -30px;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,79,0,0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.screenshot-browser {
  position: relative;
  z-index: 1;
  background: transparent;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0,0,0,0.1);
  animation: float 6s ease-in-out infinite;
}
.screenshot-browser img {
  width: 100%;
  display: block;
}

/* ── SOCIAL PROOF STRIP ─────────────────────────────────── */
.social-strip {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
}
.social-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-3);
  font-weight: 500;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── SECTION COMMON ─────────────────────────────────────── */
section { padding: 96px 0; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 18px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 560px;
}
.section-header-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 64px;
}
.section-header-center .section-sub { text-align: center; }

/* ── FEATURES BENTO GRID ────────────────────────────────── */
.features-section { background: var(--bg-subtle); }

.bento-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  align-items: stretch;
}

/* Right-column flex stack for 3 small cards */
.bento-side-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Compact small bento cards */
.bento-card-sm {
  padding: 14px 18px 16px;
  flex: 1;
  position: relative; /* needed for absolute tag */
}
.bento-card-sm .bento-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  margin-bottom: 0;
}
.bento-card-sm .bento-icon {
  width: 30px;
  height: 30px;
  font-size: 1rem;
  margin-bottom: 8px;
  margin-top: 2px;
}
.bento-card-sm h3 {
  font-size: 0.88rem;
  margin-bottom: 4px;
}
.bento-card-sm p {
  font-size: 0.78rem;
  line-height: 1.5;
}

/* Card base */
.bento-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
  position: relative;
}
.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-dark);
}

/* Accent colour strips */
.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity var(--transition);
}
.bento-card:hover::before { opacity: 1; }
.bc-blue::before  { background: linear-gradient(90deg, var(--blue), #5b8dee); }
.bc-green::before { background: linear-gradient(90deg, var(--green), #34c48c); }
.bc-purple::before{ background: linear-gradient(90deg, #8b5cf6, #c084fc); }
.bc-orange::before{ background: linear-gradient(90deg, #f59e0b, #fbbf24); }

/* Span columns */
.bento-span-2 { grid-column: span 2; grid-row: span 2; }
.bento-span-3 { grid-column: span 3; }

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.bi-blue   { background: var(--blue-light); }
.bi-green  { background: var(--green-light); }
.bi-purple { background: #f3f0ff; }
.bi-orange { background: #fff8ec; }

.bento-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 10px;
}
.bento-card p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.65;
}
.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.bt-exclusive {
  background: linear-gradient(135deg, var(--blue), #5b8dee);
  color: #fff;
}
.bt-best {
  background: linear-gradient(135deg, #8b5cf6, #c084fc);
  color: #fff;
}
.bt-free {
  background: linear-gradient(135deg, var(--green), #34c48c);
  color: #fff;
}

.bento-horizontal {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Wide card extra content (for main2.png) */
.bento-img-row {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.bento-img-row img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

/* ── LARGE FEATURE BOXES (for Editor / Presentation) ─────── */
.feature-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px;
  margin-top: 32px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 768px) {
  .feature-box { padding: 32px 24px; }
}

/* ── EXE SHOWCASE (side-by-side with main2.png) ─────────── */
.exe-section { background: var(--bg); }
.exe-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.exe-text-side { }
.exe-text-side .section-sub { max-width: 440px; }

.exe-steps {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.exe-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--text);
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.step-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.step-content p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
}

.exe-img-side {
  position: relative;
}
.exe-img-side::before {
  content: '';
  position: absolute;
  inset: -30px -20px;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(35,131,226,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.exe-screenshot {
  position: relative;
  z-index: 1;
  background: transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0,0,0,0.1);
}
.exe-screenshot img { width: 100%; display: block; }

/* ── PRESENTATION SECTION ────────────────────────────────── */
.pres-section {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pres-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}
.pres-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pres-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.pres-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.pres-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.pres-card p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── PLATFORM SECTION ────────────────────────────────────── */
.platform-section {
  background: var(--bg);
}
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}
.platform-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.platform-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.platform-card-desktop {
  background: var(--text);
  color: #fff;
}
.platform-card-web {
  background: var(--bg-subtle);
}
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.pb-dark {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
}
.pb-light {
  background: var(--blue-light);
  color: var(--blue);
}
.platform-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.platform-card-desktop h3 { color: #fff; }
.platform-card-web h3 { color: var(--text); }
.platform-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}
.platform-card-desktop p { color: rgba(255,255,255,0.65); }
.platform-card-web p { color: var(--text-2); }

.platform-features {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.platform-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}
.platform-card-desktop .platform-features li { color: rgba(255,255,255,0.75); }
.platform-card-web .platform-features li { color: var(--text-2); }
.check-icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}
.ci-white { background: rgba(255,255,255,0.15); color: #fff; }
.ci-blue  { background: var(--blue-light); color: var(--blue); }

/* ── CTA DOWNLOAD BAND ──────────────────────────────────── */
.cta-section {
  background: var(--text);
  padding: 100px 0;
  text-align: center;
}
.cta-section .section-label { color: rgba(255,255,255,0.4); }
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.1;
}
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-cta-primary {
  background: #fff;
  color: var(--text);
  border-color: #fff;
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: var(--radius);
}
.btn-cta-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.btn-cta-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.2);
  padding: 14px 24px;
  font-size: 0.95rem;
  border-radius: var(--radius);
}
.btn-cta-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.cta-footnote {
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-2);
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--text-3);
}
.footer-copy a {
  color: var(--text-2);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--transition);
}
.footer-copy a:hover { text-decoration-color: var(--text-2); }
.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--text-3);
  font-weight: 500;
  transition: color var(--transition);
}
.footer-link:hover { color: var(--text); }

/* ── DEMO MODAL ─────────────────────────────────────────── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.5);
  backdrop-filter: blur(6px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}
.modal.show { display: flex; }
.modal-content {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  width: 92%;
  max-width: 960px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  animation: fadeUp 0.25s ease both;
}
.modal-header {
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-subtle);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  flex-shrink: 0;
}
.modal-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.modal-close {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--text-3);
  width: 28px; height: 28px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.modal-close:hover { background: var(--bg-hover); color: var(--text); }
.modal-body { flex: 1; overflow-y: auto; }

/* ── MOCK DESKTOP WINDOW ────────────────────────────────── */
.mock-window {
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 540px;
}
.window-header {
  height: 40px;
  background: #f5f5f4;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 16px;
  position: relative;
  flex-shrink: 0;
}
.window-dots { display: flex; gap: 6px; }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-red    { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green  { background: #27c93f; }
.window-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-3);
}
.window-body {
  flex: 1;
  display: grid;
  grid-template-columns: 190px 1fr;
  overflow: hidden;
}
.window-sidebar {
  background: var(--bg-subtle);
  border-right: 1px solid var(--border);
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.sidebar-section-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-3);
  padding: 6px 10px 4px;
  margin-top: 6px;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.sidebar-item:hover { background: var(--bg-hover); }
.sidebar-item.active {
  background: var(--bg-hover);
  color: var(--text);
  font-weight: 600;
}
.window-content {
  padding: 22px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.demo-tab-panel { display: none; flex-direction: column; height: 100%; }
.demo-tab-panel.active { display: flex; }

/* Demo inner elements */
.panel-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.panel-subtitle {
  font-size: 0.82rem;
  color: var(--text-3);
  margin-bottom: 18px;
  line-height: 1.6;
}
.dropzone {
  flex: 1;
  border: 2px dashed var(--border-dark);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--bg-subtle);
  transition: all var(--transition);
  padding: 24px;
  text-align: center;
  min-height: 120px;
}
.dropzone:hover {
  border-color: var(--blue);
  background: var(--blue-light);
}
.dropzone-emoji { font-size: 2rem; margin-bottom: 10px; }
.dropzone-text  { font-size: 0.875rem; font-weight: 500; color: var(--text-2); margin-bottom: 4px; }
.dropzone-sub   { font-size: 0.75rem; color: var(--text-3); }
.file-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.file-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px;
  background: #fff;
  text-align: center;
  position: relative;
  cursor: grab;
  user-select: none;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.file-item:active { cursor: grabbing; }
.file-item:hover  { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.file-item-icon   { font-size: 1.4rem; margin-bottom: 4px; }
.file-item-name   { font-size: 0.7rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.file-item-size   { font-size: 0.62rem; color: var(--text-3); }
.file-item-remove {
  position: absolute; top: 3px; right: 3px;
  width: 14px; height: 14px;
  background: #ff5f56; color: #fff;
  border-radius: 50%; font-size: 0.6rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.demo-actions {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.demo-status { font-size: 0.78rem; color: var(--text-3); }
.demo-btn {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background var(--transition);
}
.demo-btn:hover { background: var(--blue-hover); }
.demo-btn:disabled { background: var(--text-3); cursor: not-allowed; }
.demo-btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-2);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
}
.demo-btn-ghost:hover { background: var(--bg-hover); }
.progress-bar-wrap {
  height: 5px;
  background: var(--bg-hover);
  border-radius: 3px;
  margin-top: 10px;
  overflow: hidden;
  display: none;
}
.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), #5b8dee);
  transition: width 0.1s linear;
}
.success-block {
  display: none;
  background: var(--green-light);
  border: 1px solid rgba(15,123,78,0.12);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-top: 12px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.success-content { display: flex; align-items: center; gap: 10px; }
.success-emoji  { font-size: 1.25rem; }
.success-text   { font-size: 0.82rem; color: var(--text); }
.format-selector { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.format-option {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.format-option:hover { background: var(--bg-hover); border-color: var(--border-dark); }
.format-option input[type="radio"] { accent-color: var(--blue); }
.format-option-title { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.format-option-desc  { font-size: 0.75rem; color: var(--text-3); }

/* Presentation stage */
.presentation-preview-box {
  flex: 1;
  background: #111;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 240px;
}
.presentation-stage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  padding: 24px;
  text-align: center;
}
.slide-content { display: none; animation: fadeIn 0.3s ease; max-width: 85%; }
.slide-content.active { display: block; }
.slide-content h4 { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.slide-content p  { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.slide-content .slide-num-label { font-size: 0.7rem; color: rgba(255,255,255,0.3); margin-top: 16px; display: block; }
.slide-canvas {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 2;
}
.presentation-controls {
  position: absolute;
  bottom: 12px;
  background: rgba(20,20,20,0.85);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
  border: 1px solid rgba(255,255,255,0.08);
}
.pres-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 0.85rem;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background var(--transition);
}
.pres-btn:hover { background: rgba(255,255,255,0.1); }
.pres-btn.active { color: #ff5f56; }
.slide-num-display { font-size: 0.72rem; color: rgba(255,255,255,0.5); font-family: var(--mono); }
.pres-sep { color: rgba(255,255,255,0.2); }

/* ── PRIVACY / ZERO-STORAGE SECTION ────────────────────── */
.privacy-section {
  background: #0f1117;
  padding: 96px 0;
  color: #fff;
}
.privacy-section .section-title {
  color: #fff;
}
.privacy-section .section-sub {
  color: rgba(255,255,255,0.55);
}
.privacy-shield-icon {
  font-size: 3rem;
  line-height: 1;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
  margin-bottom: 48px;
}
.privacy-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), background var(--transition);
}
.privacy-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.07);
}
.privacy-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #2383e2, #5b8dee);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.privacy-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.privacy-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.privacy-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}
.privacy-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(35,131,226,0.2);
  color: #7cb9ff;
  border: 1px solid rgba(35,131,226,0.3);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Trust proof bar */
.privacy-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 0 24px;
}
.proof-check { font-size: 1rem; }
.proof-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Hero privacy strip (inline under subtitle) */
.hero-privacy-strip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 123, 78, 0.08);
  border: 1px solid rgba(15,123,78,0.18);
  color: #0f7b4e;
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 32px;
}
.hero-privacy-strip svg { flex-shrink: 0; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-span-2 { grid-column: span 1; }
  .bento-span-3 { grid-column: span 2; }
  .exe-inner { grid-template-columns: 1fr; gap: 48px; }
  .pres-grid { grid-template-columns: 1fr 1fr; }
  .privacy-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero   { padding: 72px 0 0; }

  .nav-desktop  { display: none; }
  .header-actions > *:not(.menu-toggle) { display: none; }
  .menu-toggle  { display: flex; }
  .header-actions { gap: 6px; }

  .hero h1 { font-size: 2.2rem; }
  .hero-cta-row { gap: 10px; justify-content: center; }
  .hero-cta-row .btn-lg { width: 100%; justify-content: center; }
  
  .hero-split { grid-template-columns: 1fr; gap: 32px; }
  .hero-left { text-align: center; }
  .hero-sub { margin: 0 auto 24px; max-width: 500px; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-span-3 { grid-column: span 1; }
  .bento-horizontal { flex-direction: column; align-items: flex-start; gap: 16px; }
  .bento-side-stack { flex-direction: column; }
  
  .platform-grid { grid-template-columns: 1fr; }
  .pres-grid { grid-template-columns: 1fr; }
  .social-strip-inner { gap: 24px; }
  .stat-divider { display: none; }

  .window-body { grid-template-columns: 1fr; }
  .window-sidebar {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 8px;
    gap: 4px;
  }
  .sidebar-section-title { display: none; }
  .sidebar-item { white-space: nowrap; }
  .mock-window { height: auto; }
  .window-content { min-height: 360px; }

  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-left  { flex-direction: column; gap: 8px; }

  .cta-row { flex-direction: column; align-items: center; }
  .btn-cta-primary, .btn-cta-ghost { width: 100%; max-width: 320px; justify-content: center; }

  .exe-inner { gap: 36px; }

  .privacy-grid { grid-template-columns: 1fr; }
  .privacy-proof-bar { flex-direction: column; gap: 12px; }
  .proof-sep { display: none; }
  .proof-item { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .container, .container--wide { padding: 0 18px; }
  .hero-screenshot-wrap { padding: 0; }
}
