/* Ondaly marketing site — dark, cinematic, matches the app's design tokens.
   Display type: Outfit (headings, prices, brand). Body: Inter. */
:root {
  --bg: #070a10;
  --bg-2: #0d121b;
  --bg-3: #131a26;
  --bg-4: #1a2331;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f3f5f8;
  --text-2: #c9d1dc;
  --muted: #8f9bad;
  --accent: #1495ad;
  --accent-2: #0f7d95;
  --accent-soft: rgba(20, 149, 173, 0.14);
  --accent-glow: rgba(94, 234, 212, 0.16);
  --aqua: #5eead4;
  --live: #ff3b30;
  --rating: #f5c542;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  --max: 1180px;
  --display: Outfit, Inter, 'Segoe UI', system-ui, sans-serif;
  --body: Inter, 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-wrap: balance;
}

p {
  margin: 0;
}

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

.container.narrow {
  max-width: 800px;
}

.center {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 0.9rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.11);
}

.btn:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 30px rgba(20, 149, 173, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1aa9c4, var(--accent));
}

.btn-ghost {
  background: transparent;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 0.95rem 1.7rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7, 10, 16, 0.55);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.site-header.is-scrolled {
  background: rgba(7, 10, 16, 0.88);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.brand-mark {
  display: block;
  flex-shrink: 0;
  border-radius: 9px;
  box-shadow: 0 6px 18px rgba(15, 125, 149, 0.35);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-2);
}

.site-nav a:not(.btn):hover {
  color: var(--text);
}

.lang-switch {
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  padding: 5.5rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(50% 60% at 18% 20%, rgba(20, 149, 173, 0.22), transparent 62%),
    radial-gradient(40% 50% at 90% 15%, var(--accent-glow), transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 100% 56px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 56px 100%;
  mask-image: linear-gradient(180deg, #000 30%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 30%, transparent 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 3.5rem;
  align-items: center;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.platforms span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
}

.platforms svg {
  color: var(--aqua);
}

.hero h1 {
  font-size: clamp(2.5rem, 5.2vw, 4.2rem);
  margin-bottom: 1.2rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-2);
  max-width: 36rem;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  color: var(--text-2);
  font-size: 0.95rem;
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.hero-points svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: var(--aqua);
}

.tv {
  position: relative;
}

.tv-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    var(--shadow),
    0 0 0 8px #0b1018,
    0 0 0 9px rgba(255, 255, 255, 0.08),
    0 40px 120px rgba(20, 149, 173, 0.18);
}

.tv-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.tv-frame img.is-active {
  opacity: 1;
}

.tv-stand {
  width: 38%;
  height: 10px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}

/* Formats strip */
.formats {
  padding: 1.5rem 0 2.5rem;
}

.formats-label {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.formats-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 0.8rem;
}

.formats-row li {
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-2);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 46rem;
  margin-bottom: 3rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  margin-bottom: 0.7rem;
}

.section-head p {
  color: var(--text-2);
  font-size: 1.08rem;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.feature {
  padding: 1.6rem;
  border-radius: var(--radius);
  background: var(--bg-3);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.feature:hover {
  transform: translateY(-3px);
  border-color: rgba(94, 234, 212, 0.35);
  background: var(--bg-4);
}

.feature h3 {
  font-size: 1.08rem;
  margin: 1rem 0 0.5rem;
}

.feature p {
  color: var(--text-2);
  font-size: 0.95rem;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid rgba(94, 234, 212, 0.2);
  color: var(--aqua);
}

.feature-icon::before {
  content: '';
  width: 24px;
  height: 24px;
  background: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.feature-icon[data-icon='tv'] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M3 5h18a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1h-7v2h3v1H7v-1h3v-2H3a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1Zm1 2v9h16V7H4Z'/%3E%3C/svg%3E"); }
.feature-icon[data-icon='film'] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M4 4h16a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1Zm1 2v2h2V6H5Zm0 4v2h2v-2H5Zm0 4v2h2v-2H5Zm12-8v2h2V6h-2Zm0 4v2h2v-2h-2Zm0 4v2h2v-2h-2ZM9 6v12h6V6H9Z'/%3E%3C/svg%3E"); }
.feature-icon[data-icon='subtitles'] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M3 5h18v14H3V5Zm2 2v10h14V7H5Zm2 3h6v2H7v-2Zm8 0h2v2h-2v-2ZM7 14h2v2H7v-2Zm4 0h6v2h-6v-2Z'/%3E%3C/svg%3E"); }
.feature-icon[data-icon='dvr'] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M12 3a9 9 0 1 1 0 18 9 9 0 0 1 0-18Zm0 2a7 7 0 1 0 0 14 7 7 0 0 0 0-14Zm0 3.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 0 1 0-7Z'/%3E%3C/svg%3E"); }
.feature-icon[data-icon='grid'] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4 4h7v7H4V4Zm9 0h7v7h-7V4ZM4 13h7v7H4v-7Zm9 0h7v7h-7v-7Z'/%3E%3C/svg%3E"); }
.feature-icon[data-icon='settings'] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M19.4 13a7.4 7.4 0 0 0 .06-1 7.4 7.4 0 0 0-.06-1l2.03-1.58a.5.5 0 0 0 .12-.64l-1.92-3.32a.5.5 0 0 0-.6-.22l-2.39.96a7.3 7.3 0 0 0-1.73-1l-.36-2.54a.5.5 0 0 0-.5-.42h-3.84a.5.5 0 0 0-.5.42l-.36 2.54a7.3 7.3 0 0 0-1.73 1l-2.39-.96a.5.5 0 0 0-.6.22L2.75 8.78a.5.5 0 0 0 .12.64L4.9 11a7.4 7.4 0 0 0-.06 1 7.4 7.4 0 0 0 .06 1l-2.03 1.58a.5.5 0 0 0-.12.64l1.92 3.32a.5.5 0 0 0 .6.22l2.39-.96c.53.42 1.11.76 1.73 1l.36 2.54a.5.5 0 0 0 .5.42h3.84a.5.5 0 0 0 .5-.42l.36-2.54a7.3 7.3 0 0 0 1.73-1l2.39.96a.5.5 0 0 0 .6-.22l1.92-3.32a.5.5 0 0 0-.12-.64L19.4 13Zm-7.4 2.5A3.5 3.5 0 1 1 15.5 12 3.5 3.5 0 0 1 12 15.5Z'/%3E%3C/svg%3E"); }
.feature-icon[data-icon='user'] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Zm0 10c4.42 0 8 1.79 8 4v2H4v-2c0-2.21 3.58-4 8-4Z'/%3E%3C/svg%3E"); }
.feature-icon[data-icon='lock'] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6 8V6a4 4 0 1 1 8 0v2h1a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1h1Zm2 0h4V6a2 2 0 1 0-4 0v2Z'/%3E%3C/svg%3E"); }

/* Screens */
.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.screen {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.screen:hover,
.screen:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
  outline: none;
}

.screen img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.screen figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: var(--text-2);
  background: var(--bg-3);
  border-top: 1px solid var(--border);
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  position: relative;
}

.step {
  position: relative;
  padding: 1.8rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-3);
}

.step-num {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(20, 149, 173, 0.3);
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.step p {
  color: var(--text-2);
}

/* Pricing */
.plans {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.6rem;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.8rem 1.4rem 1.4rem;
  border-radius: var(--radius);
  background: var(--bg-3);
  border: 1px solid var(--border);
}

.plan.is-recommended {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(20, 149, 173, 0.14), var(--bg-3) 55%);
  box-shadow: 0 0 0 1px var(--accent), 0 24px 60px rgba(20, 149, 173, 0.18);
}

.plan-badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan h3 {
  font-size: 1rem;
  color: var(--text-2);
  font-weight: 600;
}

.plan-price {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin: 0.3rem 0 0.4rem;
}

.plan-price .amount {
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.plan-price .interval {
  color: var(--muted);
  font-size: 0.88rem;
}

.plan-blurb {
  color: var(--text-2);
  font-size: 0.92rem;
  flex: 1;
  margin-bottom: 0.9rem;
}

.premium-includes {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.premium-includes h3 {
  margin-bottom: 1.1rem;
  font-size: 1.15rem;
}

.checks {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.6rem 1.6rem;
  color: var(--text-2);
}

.checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.checks svg {
  flex-shrink: 0;
  margin-top: 0.3rem;
  color: var(--aqua);
}

.fine {
  color: var(--muted);
  font-size: 0.9rem;
}

.fine + .fine {
  margin-top: 0.4rem;
}

.fine.soon {
  color: var(--rating);
}

/* FAQ */
.faq {
  border-top: 1px solid var(--border);
}

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

.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.08rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  color: var(--aqua);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--text-2);
  padding-bottom: 1.2rem;
  max-width: 62ch;
}

/* Download */
.download {
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(20, 149, 173, 0.18), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--border);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}

.platform {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1.8rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-3);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.platform:hover {
  transform: translateY(-3px);
  border-color: rgba(94, 234, 212, 0.35);
}

.platform-icon {
  color: var(--aqua);
  margin-bottom: 0.5rem;
}

.platform-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
}

.platform-req {
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-tagline {
  margin-top: 0.9rem;
  color: var(--text-2);
}

.footer-platforms {
  margin-top: 0.3rem;
}

.footer-col {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 2rem;
  padding-top: 1.6rem;
  font-size: 0.85rem;
}

.disclaimer {
  max-width: 64ch;
}

/* Legal */
.legal h1 {
  font-size: 2.3rem;
  margin-bottom: 0.4rem;
}

.legal h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.5rem;
}

.legal p {
  color: var(--text-2);
}

/* Lightbox */
.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  gap: 1rem;
}

.lightbox img {
  max-height: 80vh;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
}

.lightbox-caption {
  color: var(--text-2);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 1080px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .screens-grid,
  .steps,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem 1.25rem;
    border-top: 1px solid var(--border);
  }

  .site-nav .btn {
    margin: 0.8rem 1.25rem;
    border-radius: 999px;
  }

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

@media (max-width: 640px) {
  .feature-grid,
  .plans {
    grid-template-columns: 1fr;
  }

  .plan-badge {
    left: 1.2rem;
    transform: none;
  }
}
