/* syncwake — static marketing landing (HTML/CSS/JS only). */

:root {
  --bg-deep: #030308;
  --bg-elevated: rgba(255, 255, 255, 0.035);
  --bg-card: rgba(255, 255, 255, 0.045);
  --border-subtle: rgba(255, 255, 255, 0.09);
  --border-glow: rgba(139, 92, 246, 0.22);
  --text: #f8f8fc;
  --text-soft: #b4b4c8;
  --text-muted: #8b8ba0;
  --accent-violet: #8b5cf6;
  --accent-blue: #3b82f6;
  --accent-cyan: #22d3ee;
  --radius: 22px;
  --radius-sm: 14px;
  --font: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --pad-x: max(1.25rem, env(safe-area-inset-left, 0px));
  --pad-x-right: max(1.25rem, env(safe-area-inset-right, 0px));
  --pad-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
  --nav-h: 3.75rem;
  --content-max: 42rem;
  --wide-max: 52rem;
  /* “At a glance” — uses more horizontal space than other wide sections */
  --spotlight-max: min(96vw, 76rem);
}

@media (min-width: 768px) {
  :root {
    --pad-x: max(2rem, env(safe-area-inset-left, 0px));
    --pad-x-right: max(2rem, env(safe-area-inset-right, 0px));
  }
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-animate {
    animation: none;
  }
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  font-size: clamp(1rem, 2.8vw, 1.0625rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

a {
  color: #93c5fd;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 130% 90% at 50% -25%, rgba(139, 92, 246, 0.42), transparent 55%),
    radial-gradient(ellipse 90% 70% at 110% 20%, rgba(59, 130, 246, 0.22), transparent 50%),
    radial-gradient(ellipse 85% 60% at -15% 55%, rgba(34, 211, 238, 0.12), transparent 45%),
    radial-gradient(ellipse 70% 50% at 80% 95%, rgba(236, 72, 153, 0.08), transparent 40%),
    var(--bg-deep);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  min-height: var(--nav-h);
  padding: 0.75rem var(--pad-x) 0.75rem var(--pad-x-right);
  max-width: 72rem;
  margin: 0 auto;
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  background: rgba(3, 3, 8, 0.72);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 0.65rem;
}

.lang-switch {
  display: inline-flex;
  align-items: stretch;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.03);
  gap: 2px;
}

.lang-btn {
  appearance: none;
  margin: 0;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.55rem;
  min-width: 2.25rem;
  min-height: 2.25rem;
  border-radius: 999px;
  color: var(--text-muted);
  background: transparent;
  transition: background 0.2s, color 0.2s;
}

.lang-btn:hover {
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.06);
}

.lang-btn[aria-pressed="true"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.lang-btn:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
}

.logo {
  font-weight: 700;
  font-size: clamp(1.05rem, 3vw, 1.2rem);
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, #fff 0%, #e9d5ff 45%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.nav-cta {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.65rem 1.15rem;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.nav-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  text-decoration: none;
}
.nav-cta:active {
  transform: scale(0.98);
}

.hero {
  padding: clamp(2.5rem, 8vw, 4rem) var(--pad-x) clamp(2.5rem, 6vw, 3.5rem);
  text-align: center;
  max-width: var(--content-max);
  margin: 0 auto;
}

.hero-animate {
  animation: heroFade 0.9s ease-out both;
}
@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-visual {
  margin: 0 auto clamp(1.5rem, 4vw, 2rem);
  width: min(100%, 22rem);
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.45), rgba(59, 130, 246, 0.28), rgba(34, 211, 238, 0.18));
  border: 1px solid var(--border-glow);
  display: grid;
  place-items: center;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 28px 90px -20px rgba(139, 92, 246, 0.35),
    0 12px 40px -15px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .hero-visual {
    width: min(100%, 24rem);
  }
}

/* Same footprint as the old hero SVG: 72% of .hero-visual (min-width:0 so intrinsic 1024px doesn’t blow up the grid). */
.hero-app-icon {
  width: 72%;
  max-width: 100%;
  min-width: 0;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 22%;
  box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.45);
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

h1 {
  font-size: clamp(1.85rem, 6.5vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 1.35rem;
  text-wrap: balance;
}

.release-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  margin-bottom: 0.65rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
}

.chip-android {
  border-color: rgba(52, 211, 153, 0.35);
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.12), rgba(255, 255, 255, 0.03));
  color: #6ee7b7;
}

.chip-ios {
  border-color: rgba(147, 197, 253, 0.35);
  background: linear-gradient(135deg, rgba(147, 197, 253, 0.1), rgba(255, 255, 255, 0.03));
  color: #bfdbfe;
}

.release-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 26rem;
  line-height: 1.5;
}

.may-release-inner {
  position: relative;
  text-align: center;
  padding: 1.15rem 1.35rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(139, 92, 246, 0.38);
  background: linear-gradient(155deg, rgba(139, 92, 246, 0.16), rgba(59, 130, 246, 0.08), rgba(34, 211, 238, 0.06));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 20px 50px -28px rgba(139, 92, 246, 0.45),
    0 8px 24px -12px rgba(34, 211, 238, 0.12);
  overflow: hidden;
}

.may-release-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 90% at 50% -20%, rgba(253, 230, 138, 0.12), transparent 52%);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .may-release-inner {
    animation: mayReleaseGlow 6s ease-in-out infinite;
  }
}

@keyframes mayReleaseGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      0 20px 50px -28px rgba(139, 92, 246, 0.45),
      0 8px 24px -12px rgba(34, 211, 238, 0.12);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.06) inset,
      0 24px 56px -24px rgba(59, 130, 246, 0.35),
      0 10px 32px -10px rgba(253, 230, 138, 0.08);
  }
}

.may-release-kicker {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fde68a;
  margin-bottom: 0.45rem;
}

.may-release-headline {
  position: relative;
  z-index: 1;
  display: block;
  font-size: clamp(1.08rem, 3.6vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
  background: linear-gradient(115deg, #ffffff 0%, #e9d5ff 38%, #a5f3fc 95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.may-release-sub {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.5;
  max-width: 24rem;
  margin: 0 auto;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
  margin: 0 auto;
  max-width: min(12rem, 60vw);
}

/* “Why it’s hard” — friction / planning gaps */
.pain-points {
  padding-top: clamp(2rem, 5vw, 2.75rem);
  padding-bottom: clamp(2rem, 5vw, 2.75rem);
}

#day-planning-problem.wide {
  max-width: var(--spotlight-max);
}

#day-planning-problem .section-label {
  color: #fca5a5;
  font-size: 0.75rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 1.1rem;
  margin: 0;
  padding: 0;
}

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

  .pain-card-wide {
    grid-column: span 2;
  }
}

@media (min-width: 900px) {
  .pain-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pain-card-wide {
    grid-column: span 3;
  }
}

.pain-card {
  margin: 0;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
}

.pain-card-title {
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 0 0 0.5rem;
}

.pain-card-text {
  font-size: clamp(0.88rem, 1.2vw, 0.98rem);
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 0.35rem;
}

.pain-kicker {
  font-size: clamp(0.8rem, 1.1vw, 0.9rem);
  font-weight: 500;
  color: #fca5a5;
  margin: 0.5rem 0 0;
  line-height: 1.4;
}

.pain-sublist {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
  font-size: clamp(0.88rem, 1.2vw, 0.98rem);
  line-height: 1.55;
}

.pain-sublist li {
  margin-bottom: 0.45rem;
}

.pain-sublist li:last-child {
  margin-bottom: 0;
}

.pain-kicker-inline {
  font-weight: 500;
  color: #fca5a5;
}

/* Pain scenes — viral, one punchy line per card with a red tag underneath */
.scenes {
  padding-top: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

#scenes.wide {
  max-width: var(--wide-max);
}

#scenes .section-label {
  color: #fca5a5;
  font-size: 0.72rem;
}

.scene-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
  counter-reset: scene;
}

.scene {
  position: relative;
  margin: 0;
  padding: clamp(1.35rem, 4vw, 2rem);
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(165deg, rgba(244, 63, 94, 0.09), rgba(255, 255, 255, 0.02));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.03) inset,
    0 14px 40px -28px rgba(244, 63, 94, 0.45);
}

.scene::before {
  counter-increment: scene;
  content: counter(scene, decimal-leading-zero);
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(252, 165, 165, 0.55);
  margin-bottom: 0.5rem;
}

.scene-line {
  font-size: clamp(1.2rem, 4.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.22;
  margin: 0 0 0.7rem;
  text-wrap: balance;
  color: var(--text);
}

.scene-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fca5a5;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

/* The fix reveal — three claim rows then feature grid, then "also inside" chip strip */
.fix-reveal {
  padding-top: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
  text-align: center;
}

#fix.wide {
  max-width: var(--wide-max);
}

#fix .section-label {
  color: #6ee7b7;
  font-size: 0.72rem;
}

.claim-row {
  margin: 0.85rem auto 0;
  max-width: 38rem;
  text-align: left;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(110, 231, 183, 0.22);
  background: linear-gradient(155deg, rgba(110, 231, 183, 0.07), rgba(255, 255, 255, 0.02));
}

.claim-row:first-of-type {
  margin-top: 1.35rem;
}

.claim-head {
  font-size: clamp(1.05rem, 2.8vw, 1.22rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 0;
  color: var(--text);
}

.claim-body {
  color: var(--text-soft);
  margin: 0.35rem 0 0;
  font-size: clamp(0.92rem, 2.3vw, 1rem);
  line-height: 1.55;
}

.spotlight-grid.features-grid {
  margin-top: clamp(2.75rem, 7vw, 4rem);
  text-align: left;
}

.also-inside {
  margin: clamp(1.25rem, 3vw, 1.75rem) auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.also-inside-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 0.3rem;
}

.also-inside-chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-soft);
}

.spotlight {
  padding-top: clamp(2rem, 5vw, 2.75rem);
  padding-bottom: clamp(2rem, 5vw, 2.75rem);
}

#solutions.wide {
  max-width: var(--spotlight-max);
}

#solutions .section-label {
  color: #fde68a;
  font-size: 0.75rem;
}

.anchor-alias {
  display: block;
  position: relative;
  top: calc(var(--nav-h) * -1);
  visibility: hidden;
}

#extras.wide {
  max-width: var(--spotlight-max);
}

#extras .section-label {
  color: #7dd3fc;
  font-size: 0.75rem;
  margin-bottom: 1.25rem;
}

.spotlight-heading {
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1.35rem;
  line-height: 1.25;
  text-wrap: balance;
}

.spotlight-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16.5rem, 1fr));
  gap: 1rem 1.1rem;
}

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

@media (min-width: 900px) {
  .spotlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .spotlight-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.spotlight-item {
  margin: 0;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 100%;
}

.spotlight-item-title {
  display: block;
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.spotlight-item-text {
  display: block;
  font-size: clamp(0.88rem, 1.2vw, 0.98rem);
  color: var(--text-muted);
  line-height: 1.5;
}

.landing-footnote {
  max-width: var(--spotlight-max);
  margin: 0.5rem auto 0;
  padding: 0 0.5rem;
  font-size: 0.7rem;
  line-height: 1.45;
  color: var(--text-faint, var(--text-muted));
  text-align: center;
  letter-spacing: 0.01em;
}

#screenshots {
  padding-top: clamp(2rem, 5vw, 2.75rem);
  padding-bottom: clamp(2rem, 5vw, 2.75rem);
}

#screenshots.wide {
  max-width: var(--spotlight-max);
}

#screenshots .section-label {
  color: #93c5fd;
  font-size: 0.75rem;
}

.privacy-teaser {
  padding-top: clamp(1rem, 3vw, 1.75rem);
  padding-bottom: clamp(1.25rem, 3.5vw, 2rem);
  text-align: center;
}

#privacy-teaser.wide {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

#privacy-teaser .section-label {
  color: #6ee7b7;
  font-size: 0.75rem;
}

.privacy-teaser-text {
  font-size: clamp(0.94rem, 1.2vw, 1.02rem);
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0 auto 0.85rem;
  text-wrap: pretty;
}

.privacy-teaser-link {
  margin: 0;
  font-size: 0.92rem;
}

.privacy-teaser-link a {
  color: #5eead4;
  font-weight: 600;
  text-decoration: none;
}

.privacy-teaser-link a:hover {
  text-decoration: underline;
}

/* Screenshots: Swiper carousel (see assets/js/landing/screenshots.js + Swiper on index.html) */
.screenshots-swiper-wrap {
  margin-top: 0.35rem;
  position: relative;
  padding: 0.25rem 0 0.5rem;
  --swiper-theme-color: #22d3ee;
  --swiper-navigation-size: 2.25rem;
}
.screenshots-swiper {
  overflow: hidden;
  padding: 0.35rem 0 0.65rem;
  margin: 0;
  width: 100%;
  max-width: 100%;
}

.screenshots-swiper .swiper-slide.screenshot-slide {
  width: 200px;
  max-width: min(200px, calc(100vw - 5.5rem));
  height: auto;
  box-sizing: border-box;
}

.screenshots-swiper .screenshot-item {
  margin: 0;
  width: 100%;
}

.screenshots-swiper .screenshot-item img {
  width: 100%;
  height: auto;
  max-height: min(440px, 52vh);
  display: block;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
}

.screenshots-swiper .swiper-button-prev,
.screenshots-swiper .swiper-button-next {
  color: var(--text);
  background: rgba(15, 15, 28, 0.92);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
}

.screenshots-swiper .swiper-button-prev::after,
.screenshots-swiper .swiper-button-next::after {
  font-size: 1rem;
  font-weight: 700;
}

.screenshots-swiper .swiper-button-prev:hover,
.screenshots-swiper .swiper-button-next:hover {
  background: rgba(28, 28, 44, 0.96);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text);
}

@media (min-width: 768px) {
  .screenshots-swiper .swiper-slide.screenshot-slide {
    width: 220px;
    max-width: min(220px, calc(100vw - 6rem));
  }

  .screenshots-swiper .screenshot-item img {
    max-height: min(480px, 56vh);
  }
}

section {
  padding: clamp(3rem, 8vw, 4.5rem) var(--pad-x);
  max-width: var(--content-max);
  margin: 0 auto;
}

section.wide {
  max-width: var(--wide-max);
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 0.65rem;
}

h2 {
  font-size: clamp(1.35rem, 4.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 0.85rem;
  line-height: 1.22;
  text-wrap: balance;
}

.section-lead {
  color: var(--text-soft);
  margin: 0;
  font-size: clamp(1rem, 2.8vw, 1.08rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 4vw, 2rem);
  margin-bottom: 1rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

@media (min-width: 768px) {
  .feature-card {
    margin-bottom: 1.15rem;
  }
}

.feature-card:last-child {
  margin-bottom: 0;
}

.feature-visual-wrap {
  width: 100%;
  max-width: 20rem;
  margin: 0 auto 1.25rem;
  aspect-ratio: 16/10;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.feature-visual-wrap svg {
  width: 85%;
  height: auto;
}

.feature-visual-wrap.feature-visual-photo {
  padding: 0;
  max-width: min(100%, 28rem);
  box-shadow: 0 20px 50px -24px rgba(0, 0, 0, 0.65);
}

.feature-visual-wrap .feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 12rem;
}

.bg-violet {
  background: linear-gradient(165deg, rgba(139, 92, 246, 0.38), rgba(3, 3, 8, 0.92));
}
.bg-blue {
  background: linear-gradient(165deg, rgba(59, 130, 246, 0.35), rgba(3, 3, 8, 0.92));
}
.bg-cyan {
  background: linear-gradient(165deg, rgba(34, 211, 238, 0.28), rgba(3, 3, 8, 0.94));
}
.bg-green {
  background: linear-gradient(165deg, rgba(37, 211, 102, 0.2), rgba(3, 3, 8, 0.94));
}
.bg-warm {
  background: linear-gradient(165deg, rgba(245, 158, 11, 0.22), rgba(3, 3, 8, 0.94));
}
.bg-rose {
  background: linear-gradient(165deg, rgba(244, 63, 94, 0.18), rgba(3, 3, 8, 0.94));
}

.feature-card p {
  margin: 0 0 0.85rem;
  color: var(--text-soft);
  font-size: clamp(0.98rem, 2.5vw, 1.05rem);
  line-height: 1.62;
  text-wrap: pretty;
}

.feature-card p:last-child {
  margin-bottom: 0;
}

.fine-print {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.55;
}

.feature-card-accent {
  border-color: rgba(245, 158, 11, 0.22);
  background: linear-gradient(165deg, rgba(245, 158, 11, 0.07), rgba(255, 255, 255, 0.03));
}

.founder-section {
  padding: clamp(1.5rem, 4vw, 2.5rem) var(--pad-x) clamp(2rem, 5vw, 3rem);
  max-width: var(--wide-max);
  margin: 0 auto;
}

.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.35rem;
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.08),
    0 24px 60px -30px rgba(0, 0, 0, 0.6);
}

@media (min-width: 640px) {
  .founder-card {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 1.75rem;
  }
}

.founder-photo-wrap {
  flex-shrink: 0;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(59, 130, 246, 0.7), rgba(34, 211, 238, 0.5));
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.2);
}

@media (min-width: 640px) {
  .founder-photo-wrap {
    width: 6rem;
    height: 6rem;
  }
}

.founder-photo-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-deep);
  border: 2px solid rgba(3, 3, 8, 0.9);
}

.founder-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-copy {
  flex: 1;
  min-width: 0;
}

.founder-name {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 0.2rem;
}

.founder-role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin: 0 0 0.85rem;
}

.founder-bio {
  font-size: clamp(0.95rem, 2.5vw, 1.02rem);
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0 0 1.1rem;
  text-wrap: pretty;
}

.founder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .founder-actions {
    justify-content: flex-start;
  }
}

.btn-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #0a66c2, #004182);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  transition: filter 0.2s, transform 0.15s;
}
.btn-linkedin:hover {
  filter: brightness(1.08);
  text-decoration: none;
}
.btn-linkedin:active {
  transform: scale(0.98);
}
.btn-linkedin svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.btn-founder-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-soft);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s;
}
.btn-founder-email:hover {
  color: var(--text);
  border-color: var(--accent-cyan);
  background: rgba(34, 211, 238, 0.08);
  text-decoration: none;
}
.btn-founder-email:active {
  transform: scale(0.98);
}
.btn-founder-email svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

footer {
  padding: 1.75rem var(--pad-x) calc(1.75rem + var(--pad-bottom));
  text-align: center;
  color: var(--text-muted);
  font-size: 0.84rem;
  border-top: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.25);
}

footer strong {
  color: var(--text-soft);
  font-weight: 600;
}

.badge-platform {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  opacity: 0.85;
}

/* Standalone legal pages (e.g. privacy policy) */
.legal-doc {
  max-width: 40rem;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 1.5rem) var(--pad-x) calc(2.5rem + var(--pad-bottom))
    var(--pad-x-right);
}

.legal-doc h1 {
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.35rem;
}

.legal-doc .legal-meta {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0 0 1.75rem;
}

.legal-doc h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1.75rem 0 0.65rem;
  color: var(--text-soft);
}

.legal-doc p,
.legal-doc li {
  color: var(--text-soft);
  font-size: 0.9375rem;
  margin: 0 0 0.85rem;
}

.legal-doc ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal-doc li {
  margin-bottom: 0.45rem;
}

.legal-doc .legal-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.legal-back {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}
