/* NotchDude website. System fonts only: SF Pro Display, SF Pro Text, and SF Mono on Apple devices. */

:root {
  --bg: #08080c;
  --text: #f5f3f7;
  --muted: rgba(245, 243, 247, 0.62);
  --faint: rgba(245, 243, 247, 0.38);
  --surface: rgba(255, 255, 255, 0.055);
  --hairline: rgba(255, 255, 255, 0.11);
  --accent: #ff9f2e;
  --teal: #27d8cf;

  --display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", system-ui, sans-serif;
  --mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace;

  --gutter: clamp(20px, 6vw, 96px);
  --ease-out: cubic-bezier(0.2, 0.9, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

s { opacity: 0.55; font-weight: 400; }

/* ---------- Aurora background ---------- */

.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: drift 26s ease-in-out infinite alternate;
}

.blob-a { background: #8b5cf6; top: -20vmax; left: -15vmax; }
.blob-b { background: #ec4899; top: 10vmax; right: -25vmax; animation-duration: 32s; animation-delay: -8s; }
.blob-c { background: #4f46e5; bottom: -30vmax; left: 20vmax; animation-duration: 38s; animation-delay: -16s; }

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(8vmax, 6vmax) scale(1.15); }
}

/* ---------- Type ---------- */

h1, h2, h3 { font-family: var(--display); font-weight: 700; margin: 0; }

h1 {
  font-size: clamp(50px, 7.6vw, 100px);
  line-height: 1;
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 48px;
}

h3 { font-size: 22px; font-weight: 650; letter-spacing: -0.02em; margin-bottom: 8px; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 18px;
}

.lede { font-size: clamp(17px, 1.6vw, 20px); color: var(--muted); max-width: 560px; margin: 24px 0 0; }
h2 + .lede { margin-top: -24px; }

.muted { color: var(--muted); }

.fineprint { font-size: 13px; color: var(--faint); margin: 14px 0 0; }

/* ---------- Buttons ---------- */

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #fff;
  color: #0b0b10;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.button:hover { transform: translateY(-1px) scale(1.02); box-shadow: 0 8px 30px rgba(255, 255, 255, 0.18); }
.button:active { transform: scale(0.97); }

.button-note {
  font-size: 12px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
}

.button-ghost { background: var(--surface); color: var(--text); border: 1px solid var(--hairline); }
.button-ghost:hover { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3); background: rgba(255, 255, 255, 0.09); }

.button-small { padding: 9px 18px; font-size: 14px; }
.button.is-soon { opacity: 0.55; cursor: default; pointer-events: none; }

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 var(--gutter);
  height: 72px;
  pointer-events: none;
}

.nav > * { pointer-events: auto; }
.nav .brand, .nav > .button { margin-top: 14px; }

/* The links live inside a black notch hanging from the top edge, with concave shoulders. */
.nav-notch {
  --shoulder: 16px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
  padding: 16px 34px 17px;
  background: #000;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45), inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  transition: padding 0.4s var(--ease-out), gap 0.4s var(--ease-out);
}

.nav-notch::before,
.nav-notch::after {
  content: "";
  position: absolute;
  top: 0;
  width: var(--shoulder);
  height: var(--shoulder);
}

.nav-notch::before { left: calc(var(--shoulder) * -1); background: radial-gradient(circle at 0 100%, transparent var(--shoulder), #000 calc(var(--shoulder) + 0.5px)); }
.nav-notch::after { right: calc(var(--shoulder) * -1); background: radial-gradient(circle at 100% 100%, transparent var(--shoulder), #000 calc(var(--shoulder) + 0.5px)); }

.nav-notch a { text-decoration: none; color: rgba(255, 255, 255, 0.7); font-size: 14.5px; font-weight: 500; transition: color 0.2s; }
.nav-notch a:hover { color: #fff; }

/* The notch grows a little when hovered, like the app. */
.nav-notch:hover { padding: 18px 40px 20px; gap: 34px; }

/* Once the page scrolls, the logo sits on a frosted pill so content passing under stays readable. */
.nav .brand { padding: 7px 14px 7px 10px; margin-left: -10px; border-radius: 999px; transition: background 0.3s, box-shadow 0.3s; }
.nav.scrolled .brand {
  background: rgba(8, 8, 12, 0.62);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.nav.scrolled > .button { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4); }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; text-decoration: none; }

.brand-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.45);
}


/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 56px;
  padding: clamp(56px, 9vw, 120px) var(--gutter) 72px;
  min-height: calc(100vh - 70px);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 16px; }

.hint { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); margin: 0; }

/* The MacBook mock */
.mac {
  width: min(100%, 620px);
  aspect-ratio: 16 / 9.2;
  border-radius: 26px;
  padding: 10px;
  background: linear-gradient(145deg, #2a2a32, #111116);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.mac-screen {
  position: relative;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #3b2f8f 0%, #8a4b9e 45%, #ef8a78 100%);
}

.menubar { position: absolute; inset: 0 0 auto; height: 22px; background: rgba(0, 0, 0, 0.32); }

/* The notch: height leads when opening, width leads when closing, like the app. */
.notch {
  --shoulder: 10px;
  position: absolute;
  top: 0;
  left: 50%;
  width: 150px;
  height: 22px;
  transform: translateX(-50%);
  background: #000;
  border-radius: 0 0 11px 11px;
  cursor: pointer;
  transition:
    width 0.42s var(--ease-out),
    height 0.46s var(--ease-out) 0.06s,
    border-radius 0.46s var(--ease-out);
}

.notch::before,
.notch::after {
  content: "";
  position: absolute;
  top: 0;
  width: var(--shoulder);
  height: var(--shoulder);
  transition: width 0.5s var(--ease-out), height 0.5s var(--ease-out);
}

.notch::before { left: calc(var(--shoulder) * -1); background: radial-gradient(circle at 0 100%, transparent var(--shoulder), #000 calc(var(--shoulder) + 0.5px)); }
.notch::after { right: calc(var(--shoulder) * -1); background: radial-gradient(circle at 100% 100%, transparent var(--shoulder), #000 calc(var(--shoulder) + 0.5px)); }

.notch.open {
  --shoulder: 16px;
  width: min(78%, 470px);
  height: 46%;
  border-radius: 0 0 34px 34px;
  transition:
    height 0.5s var(--ease-out),
    width 0.62s var(--ease-out) 0.04s,
    border-radius 0.6s var(--ease-out);
}

.notch-compact {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  transition: opacity 0.15s;
}

.notch.open .notch-compact { opacity: 0; }

.mini-art { width: 13px; height: 13px; border-radius: 4px; background: linear-gradient(135deg, #2ad06a, #27d8cf); }

.notch-open {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 26px 18px 16px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.12s, transform 0.3s var(--ease-out);
  pointer-events: none;
}

.notch.open .notch-open { opacity: 1; transform: none; transition: opacity 0.3s 0.12s, transform 0.4s var(--ease-out) 0.1s; }

.widget {
  height: 100%;
  max-height: 110px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
}

.widget-music { flex: 1.6; gap: 10px; padding: 10px; justify-content: flex-start; }
.widget-music strong { display: block; font-size: 13px; }
.widget-music .muted { display: block; font-size: 11px; color: #2ad06a; }
.album { width: 52px; height: 52px; flex: none; border-radius: 10px; background: linear-gradient(135deg, #2ad06a, #0ea5a4 60%, #155e75); }
.progress { display: block; width: 90px; height: 4px; margin-top: 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.15); overflow: hidden; }
.progress i { display: block; height: 100%; width: 40%; background: #2ad06a; animation: progress 8s linear infinite; }

@keyframes progress { from { width: 10%; } to { width: 95%; } }

.widget-ring { flex: 0.9; position: relative; }
.widget-ring svg { width: 60px; height: 60px; transform: rotate(-90deg); }
.widget-ring circle { fill: none; stroke: rgba(255, 255, 255, 0.15); stroke-width: 5; }
.widget-ring .ring-fill { stroke: #a78bfa; stroke-linecap: round; stroke-dasharray: 113; stroke-dashoffset: 43; }
.widget-ring span { position: absolute; font-weight: 700; font-size: 12px; }

.widget-timer { flex: 0.9; flex-direction: column; }
.widget-timer strong { font-size: 22px; font-weight: 300; font-variant-numeric: tabular-nums; }
.widget-timer .label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 700; }

/* Equalizer bars */
.eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 11px; }
.eq i { width: 2.5px; height: 100%; border-radius: 2px; background: #2ad06a; transform-origin: bottom; animation: bounce 0.9s ease-in-out infinite; }
.eq i:nth-child(2) { animation-delay: -0.3s; }
.eq i:nth-child(3) { animation-delay: -0.6s; }
.eq i:nth-child(4) { animation-delay: -0.15s; }
.eq i:nth-child(5) { animation-delay: -0.45s; }
.eq i:nth-child(6) { animation-delay: -0.75s; }
.eq i:nth-child(7) { animation-delay: -0.2s; }

@keyframes bounce { 0%, 100% { transform: scaleY(0.3); } 50% { transform: scaleY(1); } }

.eq-large { height: 36px; gap: 5px; margin-top: 20px; }
.eq-large i { width: 6px; }

/* ---------- Strip ---------- */

.strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 40px;
  padding: 26px var(--gutter);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ---------- Sections ---------- */

.section { padding: clamp(80px, 11vw, 150px) var(--gutter) 0; }
.section-narrow { max-width: 900px; }

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
}

.section-split h2 { margin-bottom: 0; }

/* ---------- Feature scenes ---------- */

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

.scene {
  position: relative;
  min-height: 380px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
  transition: transform 0.5s var(--ease-out), border-color 0.4s;
}

.scene:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.22); }

/* Soft darkening at the bottom keeps the copy readable over any scene. */
.scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 35%, rgba(6, 6, 10, 0.72));
}

.scene-music { background: radial-gradient(120% 90% at 20% 0%, #d65db1 0%, #7b3fe4 40%, #1d1b4b 100%); }
.scene-ai { background: radial-gradient(110% 90% at 80% 0%, #6d5bff 0%, #2b1f6b 45%, #0f1024 100%); }
.scene-calendar { background: radial-gradient(120% 100% at 30% 0%, #ff8a65 0%, #c2410c 35%, #3b1a12 100%); }
.scene-clip { background: linear-gradient(160deg, #2563eb, #1e3a8a 60%, #0b1437); }
.scene-focus { background: linear-gradient(160deg, #f59e0b, #b45309 55%, #2b1605); }
.scene-shelf { background: linear-gradient(160deg, #ec4899, #9d174d 55%, #2a0716); }

.scene-small { min-height: 320px; }

.scene-ui { display: flex; justify-content: center; padding: 0 24px; }

/* Widgets hang from the top edge of each scene, like the notch itself. */
.pane {
  margin-top: 0;
  background: rgba(0, 0, 0, 0.82);
  border-radius: 0 0 26px 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  color: #fff;
  backdrop-filter: blur(10px);
  transition: transform 0.6s var(--ease-out);
}

.scene:hover .pane { transform: translateY(4px); }

.scene-copy { padding: 28px 32px 30px; }
.scene-copy h3 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 8px; }
.scene-copy p { color: rgba(255, 255, 255, 0.72); margin: 0; max-width: 620px; font-size: 16px; }
.scene-small .scene-copy { padding: 24px 26px 26px; }
.scene-small .scene-copy h3 { font-size: 24px; }
.scene-small .scene-copy p { font-size: 15px; }

.pane-player { display: flex; gap: 18px; align-items: center; padding: 34px 28px 26px; width: min(100%, 560px); }
.art-large { width: 104px; height: 104px; flex: none; border-radius: 16px; background: linear-gradient(135deg, #ff7eb3, #7b3fe4 55%, #1e1b4b); box-shadow: 0 10px 30px rgba(123, 63, 228, 0.5); }
.player-meta { display: grid; gap: 4px; flex: 1; min-width: 0; }
.player-meta strong { font-family: var(--display); font-size: 21px; font-weight: 700; letter-spacing: -0.02em; }
.tag { font-size: 11px; font-weight: 600; }
.tag-green { color: #2ad06a; }
.scrub { display: block; height: 5px; border-radius: 5px; background: rgba(255, 255, 255, 0.15); margin-top: 10px; overflow: hidden; }
.scrub i { display: block; height: 100%; width: 35%; background: #2ad06a; animation: progress 9s linear infinite; }
.controls { font-size: 15px; color: rgba(255, 255, 255, 0.85); letter-spacing: 0.1em; margin-top: 6px; }

.pane-usage { display: flex; gap: 28px; padding: 30px 32px 24px; }
.usage { display: grid; gap: 12px; justify-items: center; }
.usage-name { font-size: 12.5px; font-weight: 600; color: rgba(255, 255, 255, 0.75); }

.rings { display: flex; gap: 14px; }
.rings span {
  --size: 76px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background:
    radial-gradient(closest-side, #0c0c12 78%, transparent 80% 100%),
    conic-gradient(#e08a6a calc(var(--p) * 360deg), rgba(255, 255, 255, 0.12) 0);
}
.rings-blue span { background: radial-gradient(closest-side, #0c0c12 78%, transparent 80% 100%), conic-gradient(#6bb3ff calc(var(--p) * 360deg), rgba(255, 255, 255, 0.12) 0); }
.rings b { font-size: 15px; line-height: 1; }
.rings small { font-size: 10px; color: var(--faint); }

.pane-list { display: grid; gap: 8px; padding: 28px 22px 20px; width: 100%; max-width: 300px; }
.pane-list .row { font-family: var(--mono); font-size: 12px; padding: 9px 12px; border-radius: 10px; background: rgba(255, 255, 255, 0.07); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pane-list .row-dim { opacity: 0.5; }

.pane-timer { display: grid; justify-items: center; padding: 30px 46px 22px; }
.pane-timer strong { font-size: 44px; font-weight: 300; font-variant-numeric: tabular-nums; }
.pane-timer .label { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; color: var(--accent); }

.pane-files { display: flex; gap: 12px; padding: 30px 26px 22px; }
.file { width: 58px; height: 72px; border-radius: 10px; display: grid; place-items: end center; padding-bottom: 10px; font-size: 11px; font-weight: 700; background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)); }

.pane-events { display: grid; gap: 8px; padding: 30px 26px 22px; width: min(100%, 460px); }
.event { display: flex; align-items: center; gap: 14px; padding: 11px 14px; border-radius: 12px; background: rgba(255, 255, 255, 0.07); font-size: 14px; }
.event b { font-variant-numeric: tabular-nums; width: 46px; }
.event em { margin-left: auto; font-style: normal; font-size: 11px; font-weight: 700; color: #ff8a65; padding: 3px 9px; border-radius: 999px; background: rgba(255, 138, 101, 0.16); }
.event-dim { opacity: 0.5; }

/* ---------- Pillars ---------- */

.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.pillar { padding: 30px; border-radius: 26px; background: var(--surface); border: 1px solid var(--hairline); }
.pillar-num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; color: var(--faint); }
.pillar h3 { margin: 26px 0 10px; font-size: 26px; }
.pillar p { color: var(--muted); margin: 0; font-size: 15.5px; }

/* ---------- Trial callout ---------- */

.trial-callout { margin: -24px 0 40px; color: var(--muted); font-size: 17px; }
.trial-callout span { color: var(--text); font-weight: 600; background: linear-gradient(90deg, #ff9f2e, #ff6a9a); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- Requirements line ---------- */

.requirements { margin: 22px 0 0; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }

/* Privacy checklist */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.checklist li { padding-left: 34px; position: relative; color: var(--muted); }
.checklist li strong { color: var(--text); }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--teal) 25%, transparent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2327d8cf' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L19 7'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; max-width: 980px; }

.plan {
  position: relative;
  padding: 34px;
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
}

.plan-pro {
  border-color: rgba(255, 159, 46, 0.55);
  background: linear-gradient(160deg, rgba(255, 159, 46, 0.12), rgba(236, 72, 153, 0.06) 60%, rgba(255, 255, 255, 0.03));
  box-shadow: 0 30px 80px rgba(255, 120, 60, 0.12);
}

.plan .price { white-space: nowrap; font-family: var(--display); font-size: clamp(44px, 5vw, 56px); font-weight: 700; letter-spacing: -0.045em; margin: 4px 0 0; line-height: 1.1; }
.plan .price s { font-size: 30px; }
.plan ul { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; align-content: start; gap: 12px; flex: 1; }
.plan li { color: var(--muted); padding-left: 26px; position: relative; font-size: 15.5px; }
.plan li strong { color: var(--text); font-weight: 600; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--faint); font-weight: 700; }
.plan-pro li::before { color: var(--accent); }
.plan .button { align-self: flex-start; }

.badge {
  position: absolute;
  top: -13px;
  left: 34px;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff9f2e, #ff6a3d);
  color: #1a0d00;
  font-size: 12px;
  font-weight: 700;
}

/* FAQ */
.faq-section { position: relative; max-width: 980px; }
.faq-word {
  position: absolute;
  right: var(--gutter);
  bottom: -40px;
  z-index: -1;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(160px, 26vw, 360px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02));
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none;
  user-select: none;
}

.faq { display: grid; gap: 12px; margin-top: 40px; }
.faq details {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--hairline);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s, border-color 0.3s;
}
.faq details:hover { border-color: rgba(255, 255, 255, 0.2); }
.faq details[open] { background: rgba(255, 255, 255, 0.1); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  font-size: 17.5px;
  font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .num { font-family: var(--mono); font-size: 13px; font-weight: 500; color: var(--faint); min-width: 22px; }
.faq summary::after {
  content: "";
  margin-left: auto;
  width: 9px;
  height: 9px;
  flex: none;
  border-right: 2px solid var(--faint);
  border-bottom: 2px solid var(--faint);
  transform: rotate(45deg) translateY(-3px);
  transition: transform 0.35s var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
.faq details p { color: var(--muted); margin: 0; padding: 0 26px 24px 66px; max-width: 760px; }
.faq details p a { color: var(--text); }

/* Final call to action */
.cta { text-align: center; padding-bottom: 40px; }
.cta-icon {
  display: block;
  width: 128px;
  height: 128px;
  margin: 0 auto 32px;
  border-radius: 29px;
  box-shadow: 0 30px 70px rgba(139, 92, 246, 0.45), 0 10px 30px rgba(236, 72, 153, 0.25);
}
.cta h2 { margin-bottom: 36px; }

/* Footer */
.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  margin-top: clamp(80px, 10vw, 140px);
  padding: 40px var(--gutter) 48px;
  border-top: 1px solid var(--hairline);
  font-size: 15px;
}
.footer nav { display: flex; gap: 24px; }
.footer nav a { text-decoration: none; color: var(--muted); }
.footer nav a:hover { color: var(--text); }
.footer p { margin: 8px 0 0; }
.copyright { grid-column: 1 / -1; font-size: 13px; }

/* ---------- Scroll reveal ---------- */

.reveal { opacity: 0; transform: translateY(24px); filter: blur(6px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out), filter 0.8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; filter: none; }

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .section-split { grid-template-columns: 1fr; gap: 32px; }
  .scene-row, .pillars { grid-template-columns: 1fr; }
  .nav-notch { gap: 20px; padding: 14px 24px 15px; }
}

/* Below this the notch menu would run into the logo; the logo and Download stay. */
@media (max-width: 860px) {
  .nav-notch { display: none; }
}

@media (max-width: 760px) {
  .pricing { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-notch { display: none; }
  .pricing { grid-template-columns: 1fr; }
  .pane-usage { flex-direction: column; gap: 18px; }
  .pane-player { flex-direction: column; text-align: center; }
  .faq details p { padding-left: 26px; }
  .plan { padding: 28px 24px; }
  .footer { grid-template-columns: 1fr; }
  .widget-timer { display: none; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; }
}
