/* =========================================================================
   Setly — late-night booth aesthetic
   Pink + cyan + amber laser palette on near-black. Built to pop.
   ========================================================================= */

:root {
  --ink: #06050b;
  --ink-2: #0b0918;
  --ink-3: #110d22;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.10);
  --line-soft: rgba(255, 255, 255, 0.06);

  --text: #f4eefe;
  --muted: #a79fc2;
  --muted-2: #6f6890;

  --pink: #ff2e7e;
  --pink-soft: #ff6aa6;
  --cyan: #22e6cf;
  --cyan-soft: #7af6e6;
  --amber: #ffb84d;
  --violet: #7b5cff;

  --grad-hot: linear-gradient(110deg, var(--pink), var(--violet) 55%, var(--cyan));
  --grad-warm: linear-gradient(120deg, var(--amber), var(--pink));
  --hero-photo: url("assets/dj-mixing-atmosphere.png");

  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1180px;

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --font-mono: "Space Mono", "SFMono-Regular", monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 78% -8%, rgba(255, 46, 126, 0.22), transparent 60%),
    radial-gradient(1100px 800px at 8% 4%, rgba(34, 230, 207, 0.14), transparent 58%),
    radial-gradient(900px 900px at 50% 110%, rgba(123, 92, 255, 0.18), transparent 60%),
    var(--ink);
  background-attachment: fixed;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* film grain overlay — gives the whole page club-photo texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

@media (pointer: fine) {
  html.has-neon-cursor body,
  html.has-neon-cursor a,
  html.has-neon-cursor button,
  html.has-neon-cursor summary,
  html.has-neon-cursor select {
    cursor: url("assets/neon-cursor.svg") 5 4, pointer;
  }

  .cursor-glow {
    background: radial-gradient(circle, rgba(255, 46, 126, 0.38), rgba(123, 92, 255, 0.2) 38%, transparent 72%);
    border-radius: 50%;
    filter: blur(6px);
    height: 34px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transform: translate3d(calc(var(--cursor-x, -60px) - 17px), calc(var(--cursor-y, -60px) - 17px), 0);
    transition: opacity 800ms ease, width 800ms ease, height 800ms ease, filter 800ms ease;
    width: 34px;
    z-index: 1000;
  }

  .cursor-glow.is-active {
    opacity: 0.68;
  }

  .cursor-glow.is-hovering {
    filter: blur(8px);
    height: 46px;
    width: 46px;
  }
}

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.02; letter-spacing: -0.02em; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan-soft);
  margin-bottom: 1rem;
}

em { font-style: normal; background: var(--grad-hot); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- buttons ---------- */
.button {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: transform 2.25s cubic-bezier(.2,.9,.3,1), box-shadow 1.25s, background 1.25s, border-color 1.25s;
  backdrop-filter: blur(6px);
}
.button span { opacity: 0.65; font-size: 0.78em; }
.button:hover { transform: translateY(-2px); }

.button-primary {
  background: var(--grad-hot);
  border: none;
  color: #0a0612;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(255, 46, 126, 0.35), inset 0 1px 0 rgba(255,255,255,0.4);
}
.button-primary span { opacity: 0.8; color: #1a0e22; }
.button-primary:hover { box-shadow: 0 14px 44px rgba(255, 46, 126, 0.55); }

.button-ghost { background: transparent; }
.button-ghost:hover { border-color: var(--cyan); box-shadow: 0 0 0 1px var(--cyan), 0 8px 26px rgba(34,230,207,0.18); }

.button-small { padding: 0.6rem 1.1rem; font-size: 0.74rem; }
.button-wide { width: 100%; justify-content: center; margin-top: 1rem; }

/* ---------- brand mark (animated EQ) ---------- */
.brand { display: inline-flex; align-items: center; gap: 0.65rem; text-decoration: none; color: var(--text); font-family: var(--font-display); font-weight: 800; letter-spacing: -0.01em; font-size: 1.15rem; }
.brand-mark { display: inline-flex; align-items: flex-end; gap: 3px; height: 22px; }
.brand-mark i { width: 4px; border-radius: 2px; background: var(--grad-hot); animation: eq 1.1s ease-in-out infinite; }
.brand-mark i:nth-child(1) { height: 40%; animation-delay: -0.2s; }
.brand-mark i:nth-child(2) { height: 100%; animation-delay: -0.5s; }
.brand-mark i:nth-child(3) { height: 65%; animation-delay: -0.1s; }
.brand-mark i:nth-child(4) { height: 85%; animation-delay: -0.7s; }
.brand-mark.tiny { height: 15px; }
.brand-mark.tiny i { width: 3px; }
@keyframes eq { 0%, 100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 3rem clamp(1.1rem, 4vw, 2.4rem);
  background: rgba(6, 5, 11, 0.55);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.desktop-nav { display: flex; gap: 1.8rem; }
.desktop-nav a { color: var(--muted); text-decoration: none; font-size: 0.92rem; font-weight: 500; transition: color 0.2s; }
.desktop-nav a:hover { color: var(--text); }

main { display: block; }
section { position: relative; }

.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 9vw, 7.5rem) clamp(1.1rem, 4vw, 2.4rem); }
.section-intro { max-width: 760px; margin-bottom: 3rem; }
.section-intro.narrow { max-width: 640px; }
.section-intro h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-bottom: 1rem; }
.section-intro p { color: var(--muted); font-size: 1.05rem; }

/* =========================================================================
   HERO — the booth
   ========================================================================= */
.hero {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.1rem, 4vw, 2.4rem) clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  isolation: isolate;
}

/* atmosphere container fills the hero, lives behind content */
.hero-atmosphere {
  position: absolute;
  inset: -10% -20% -25% -20%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

/* OPTIONAL real photo: set --hero-photo to a url() to drop a DJ shot behind everything */
.hero-atmosphere::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--hero-photo, none);
  background-size: cover;
  background-position: right center;
  opacity: 0.22;
  filter: saturate(112%) contrast(108%) brightness(0.58);
  mask-image: radial-gradient(104% 92% at 82% 42%, #000 24%, transparent 78%);
}

/* volumetric light stays subtle so the product preview leads the hero */
.beam { position: absolute; top: -30%; width: 46%; height: 150%; filter: blur(44px); opacity: 0.34; mix-blend-mode: screen; transform-origin: top center; }
.beam-pink { left: 8%; background: linear-gradient(180deg, rgba(255,46,126,0.72), transparent 70%); animation: sway 9s ease-in-out infinite; }
.beam-cyan { right: 6%; background: linear-gradient(180deg, rgba(34,230,207,0.64), transparent 70%); animation: sway 11s ease-in-out infinite reverse; }
.beam-amber { left: 44%; width: 30%; background: linear-gradient(180deg, rgba(255,184,77,0.42), transparent 65%); animation: sway 13s ease-in-out infinite; opacity: 0.2; }
@keyframes sway { 0%,100% { transform: rotate(-9deg) scaleY(1); } 50% { transform: rotate(7deg) scaleY(1.08); } }

/* haze */
.haze { position: absolute; border-radius: 50%; filter: blur(82px); opacity: 0.32; }
.haze.one { width: 380px; height: 380px; right: 4%; top: 8%; background: rgba(123,92,255,0.42); }
.haze.two { width: 320px; height: 320px; left: 2%; bottom: 2%; background: rgba(255,46,126,0.26); }

/* equaliser strip across the bottom of the hero */
.hero-eq { position: absolute; left: 0; right: 0; bottom: 0; height: 90px; display: flex; align-items: flex-end; gap: 4px; padding: 0 clamp(1rem,4vw,2.4rem); z-index: -1; opacity: 0.34; }
.hero-eq::before { content: ""; position: absolute; left: clamp(1rem,4vw,2.4rem); right: clamp(1rem,4vw,2.4rem); bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(34,230,207,0.55), rgba(255,46,126,0.42), transparent); box-shadow: 0 0 18px rgba(34,230,207,0.35); }
.hero-eq i { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, rgba(34,230,207,0.9), rgba(123,92,255,0.18)); animation: bars 1.4s ease-in-out infinite; }
.hero-eq i:nth-child(3n) { background: linear-gradient(180deg, rgba(255,46,126,0.78), rgba(123,92,255,0.16)); }
.hero-eq i:nth-child(4n) { background: linear-gradient(180deg, rgba(255,184,77,0.62), rgba(123,92,255,0.14)); }
@keyframes bars { 0%,100% { height: 12%; } 50% { height: 90%; } }

/* hero copy */
.hero-copy, .hero-visual { min-width: 0; }
.hero-copy { animation: rise 0.8s cubic-bezier(.2,.9,.3,1) both; }
.hero-copy h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); letter-spacing: -0.055em; line-height: 0.98; margin: 0.4rem 0 1.2rem; }
.hero-text { color: var(--muted); font-size: 1.12rem; max-width: 30rem; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2rem; }
.trust-row { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.9rem; color: var(--muted); }
.trust-row b { color: var(--cyan); margin-right: 0.4rem; }

/* glass product mockup */
.hero-visual { position: relative; animation: rise 0.9s 0.15s cubic-bezier(.2,.9,.3,1) both; }
.visual-glow { position: absolute; inset: -14%; background: var(--grad-hot); filter: blur(70px); opacity: 0.24; border-radius: 40%; z-index: -1; }
.app-window {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(20,16,38,0.92), rgba(10,8,20,0.96));
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(.2,.9,.3,1);
}
.hero-visual:hover .app-window { transform: perspective(1200px) rotateX(3deg) rotateY(-4deg) translateY(-4px); }
.window-top { display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 1.1rem; border-bottom: 1px solid var(--line-soft); background: rgba(255,255,255,0.02); }
.mini-brand { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-size: 0.85rem; }
.local-chip { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.18em; color: var(--cyan); border: 1px solid rgba(34,230,207,0.4); padding: 0.25rem 0.55rem; border-radius: 999px; }
.deck-telemetry { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 0.55rem; padding: 0.38rem 1.05rem; border-bottom: 1px solid var(--line-soft); background: rgba(4,3,10,0.45); }
.deck-label, .grid-lock { font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.14em; color: var(--muted-2); }
.deck-label { color: var(--pink-soft); }
.grid-lock { color: var(--cyan); }
.waveform-rail { position: relative; display: grid; gap: 2px; height: 20px; overflow: hidden; }
.waveform { display: block; background-repeat: repeat-x; background-size: 116px 8px; opacity: 0.68; }
.waveform-a { background-image: linear-gradient(90deg, rgba(255,46,126,0.28) 0 4px, transparent 4px 7px, rgba(255,46,126,0.88) 7px 9px, transparent 9px 13px, rgba(123,92,255,0.72) 13px 17px, transparent 17px 21px, rgba(255,46,126,0.46) 21px 25px, transparent 25px 29px); }
.waveform-b { background-image: linear-gradient(90deg, rgba(34,230,207,0.38) 0 5px, transparent 5px 8px, rgba(34,230,207,0.9) 8px 10px, transparent 10px 14px, rgba(123,92,255,0.7) 14px 18px, transparent 18px 23px, rgba(34,230,207,0.52) 23px 27px, transparent 27px 31px); }
.waveform-playhead { position: absolute; top: 0; bottom: 0; left: 52%; width: 1px; background: var(--amber); box-shadow: 0 0 10px var(--amber); }
.window-body { padding: 1.2rem; display: flex; flex-direction: column; gap: 0.7rem; }
.preview-heading { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 0.3rem; }
.preview-heading small { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.2em; color: var(--muted-2); display: block; }
.preview-heading strong { font-family: var(--font-display); font-size: 1.05rem; }
.preview-heading > span { font-family: var(--font-mono); color: var(--cyan); }
.track-preview, .transition-preview { border: 1px solid var(--line-soft); border-radius: 14px; padding: 0.75rem 0.9rem; background: rgba(255,255,255,0.025); }
.track-line { display: flex; align-items: center; gap: 0.75rem; }
.track-index { font-family: var(--font-mono); font-size: 0.78rem; color: var(--pink); border: 1px solid rgba(255,46,126,0.35); border-radius: 8px; padding: 0.25rem 0.45rem; }
.track-line b { display: block; font-size: 0.95rem; }
.track-line small { color: var(--muted-2); font-family: var(--font-mono); font-size: 0.7rem; }
.track-preview time, .transition-preview time { font-family: var(--font-mono); font-size: 0.62rem; color: var(--muted-2); display: block; margin-bottom: 0.4rem; }
.transition-preview { background: linear-gradient(120deg, rgba(255,46,126,0.08), rgba(34,230,207,0.06)); border-color: rgba(255,46,126,0.2); }
.flow-pill { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.16em; background: var(--grad-hot); color: #0a0612; padding: 0.2rem 0.5rem; border-radius: 999px; font-weight: 700; }
.transition-line small { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.14em; color: var(--muted); display: block; margin: 0.45rem 0; }
.phrase-row { display: flex; gap: 0.5rem; }
.phrase-row span { flex: 1; text-align: center; border: 1px solid var(--line-soft); border-radius: 10px; padding: 0.4rem 0.2rem; }
.phrase-row span small { font-family: var(--font-mono); font-size: 0.55rem; color: var(--muted-2); display: block; }
.phrase-row span b { font-family: var(--font-mono); font-size: 0.82rem; }
.phrase-row span.active { background: var(--grad-hot); border: none; }
.phrase-row span.active small { color: #1a0e22; }
.phrase-row span.active b { color: #0a0612; }
.preview-footer { display: flex; justify-content: space-between; margin-top: 0.3rem; padding-top: 0.7rem; border-top: 1px solid var(--line-soft); }
.preview-footer span { font-family: var(--font-mono); font-size: 0.62rem; color: var(--muted-2); }
.preview-footer b { color: var(--text); font-size: 0.95rem; display: block; }

@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================================================
   marquee strip
   ========================================================================= */
.signal-strip {
  display: flex; align-items: center; justify-content: center; gap: clamp(1.5rem, 5vw, 4rem);
  padding: 1.1rem clamp(1.1rem, 4vw, 2.4rem);
  border-block: 1px solid var(--line-soft);
  background: rgba(255,255,255,0.015);
  overflow: hidden;
  font-family: var(--font-mono);
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
}
.signal-strip p { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* =========================================================================
   product demo
   ========================================================================= */
.demo-video-section { padding-bottom: 2rem; }
.demo-video-shell {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(0.45rem, 1.5vw, 0.85rem);
  background: linear-gradient(145deg, rgba(34,230,207,0.1), rgba(123,92,255,0.08) 48%, rgba(255,46,126,0.1));
  box-shadow: 0 28px 90px rgba(0,0,0,0.4);
}
.demo-video {
  aspect-ratio: 16 / 9;
  background: #05040a;
  border-radius: var(--radius);
  display: block;
  width: 100%;
}

/* =========================================================================
   feature cards
   ========================================================================= */
.three-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.feature-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  background: var(--panel);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.feature-card::before { content: ""; position: absolute; inset: 0; background: var(--grad-hot); opacity: 0; transition: opacity 0.3s; z-index: -1; }
.feature-card:hover { transform: translateY(-5px); border-color: transparent; background: rgba(255,255,255,0.02); box-shadow: 0 18px 50px rgba(255,46,126,0.16); }
.feature-card .card-number { font-family: var(--font-mono); font-size: 0.85rem; color: var(--cyan); }
.feature-card h3 { font-size: 1.15rem; margin: 0.8rem 0 0.6rem; }
.feature-card p { color: var(--muted); font-size: 0.95rem; }

/* =========================================================================
   workflow
   ========================================================================= */
.workflow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: step; }
.workflow article { display: flex; gap: 1rem; align-items: flex-start; position: relative; padding-top: 1.4rem; border-top: 2px solid var(--line); }
.workflow article > span { font-family: var(--font-display); font-size: 1.6rem; background: var(--grad-hot); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.workflow h3 { font-size: 1.1rem; margin-bottom: 0.45rem; }
.workflow p { color: var(--muted); font-size: 0.95rem; }

/* =========================================================================
   genre grid
   ========================================================================= */
.profile-section .genre-grid { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.genre-grid span {
  font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 999px; padding: 0.65rem 1.3rem; color: var(--muted);
  transition: 0.25s;
}
.genre-grid span:hover { color: var(--text); border-color: var(--pink); box-shadow: 0 0 0 1px var(--pink), 0 6px 20px rgba(255,46,126,0.2); transform: translateY(-2px); }

/* =========================================================================
   free tools
   ========================================================================= */
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.tool-card {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem; background: linear-gradient(165deg, rgba(20,16,38,0.6), rgba(10,8,20,0.5));
  display: flex; flex-direction: column; gap: 0.9rem;
}
.tool-card .tool-tag { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.22em; color: var(--amber); }
.tool-card h3 { font-size: 1.15rem; }
.tool-card > p { color: var(--muted); font-size: 0.9rem; }
.tool-fields { display: grid; gap: 0.7rem; }
.tool-fields.two-col { grid-template-columns: 1fr 1fr; }
.tool-fields.three-col { grid-template-columns: 1fr 1fr 1fr; }
.tool-fields label { display: flex; flex-direction: column; gap: 0.35rem; }
.tool-fields span { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.16em; color: var(--muted-2); text-transform: uppercase; }
.tool-fields input, .tool-fields select {
  font-family: var(--font-mono); font-size: 0.95rem; color: var(--text);
  background: rgba(0,0,0,0.35); border: 1px solid var(--line); border-radius: 10px; padding: 0.6rem 0.7rem; width: 100%;
}
.tool-fields input:focus, .tool-fields select:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 2px rgba(34,230,207,0.25); }
.tool-result { margin-top: auto; padding: 1rem; border-radius: 14px; background: linear-gradient(120deg, rgba(255,46,126,0.1), rgba(34,230,207,0.08)); border: 1px solid rgba(255,46,126,0.18); text-align: center; }
.tool-result small { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.18em; color: var(--muted); display: block; }
.tool-result strong { font-family: var(--font-display); font-size: 2rem; display: block; margin: 0.2rem 0; background: var(--grad-hot); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tool-result span { font-family: var(--font-mono); font-size: 0.7rem; color: var(--muted-2); }
.key-results { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
.key-pill { border: 1px solid var(--line); border-radius: 12px; padding: 0.6rem; text-align: center; background: rgba(255,255,255,0.02); }
.key-pill small { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.14em; color: var(--muted-2); display: block; }
.key-pill b { font-family: var(--font-display); font-size: 1.25rem; background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* =========================================================================
   bento
   ========================================================================= */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.bento-card {
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.7rem;
  background: var(--panel); position: relative; overflow: hidden; transition: 0.3s;
}
.bento-card.wide { grid-column: span 2; }
.bento-card::after { content: ""; position: absolute; right: -40px; top: -40px; width: 130px; height: 130px; background: var(--grad-hot); filter: blur(50px); opacity: 0.16; transition: opacity 0.3s; }
.bento-card:hover { transform: translateY(-4px); border-color: var(--line); box-shadow: 0 18px 50px rgba(0,0,0,0.4); }
.bento-card:hover::after { opacity: 0.4; }
.bento-card h3 { font-size: 1.3rem; margin: 0.5rem 0 0.7rem; }
.bento-card p { color: var(--muted); font-size: 0.95rem; }

/* =========================================================================
   pricing — wristband / ticket
   ========================================================================= */
.pricing-section { max-width: 1000px; }
.pricing-card {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(20,16,38,0.85), rgba(10,8,20,0.92));
  position: relative;
}
.pricing-card::before { content: ""; position: absolute; inset: 0; padding: 1px; border-radius: var(--radius-lg); background: var(--grad-hot); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.6; pointer-events: none; }
.pricing-card > div { padding: clamp(1.8rem, 4vw, 2.8rem); }
.pricing-card h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: 0.8rem; }
.pricing-copy { color: var(--muted); margin-bottom: 1.4rem; }
.pricing-card ul { list-style: none; display: grid; gap: 0.6rem; }
.pricing-card li { position: relative; padding-left: 1.6rem; color: var(--muted); font-size: 0.92rem; }
.pricing-card li::before { content: "▸"; position: absolute; left: 0; color: var(--cyan); }
.price-box {
  border-left: 1px dashed var(--line);
  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(255,46,126,0.14), transparent 70%);
}
.price-box > span { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.2em; color: var(--muted); }
.price-box strong { font-family: var(--font-display); font-size: clamp(3.5rem, 9vw, 5rem); line-height: 1; margin: 0.5rem 0; }
.price-box strong small { font-size: 0.4em; vertical-align: super; }
.price-box > p { font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted-2); }
.price-box .button { margin-top: 1.5rem; }
.price-box > small { display: block; margin-top: 0.8rem; font-size: 0.7rem; color: var(--muted-2); }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq-list { display: grid; gap: 0.7rem; }
.faq-list details {
  border: 1px solid var(--line); border-radius: 14px; padding: 1.1rem 1.4rem;
  background: var(--panel); transition: border-color 0.25s;
}
.faq-list details[open] { border-color: var(--pink); }
.faq-list summary { font-family: var(--font-display); font-size: 1.05rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-list summary::after { content: "+"; font-family: var(--font-mono); color: var(--cyan); transition: 0.25s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { color: var(--muted); margin-top: 0.8rem; font-size: 0.95rem; }

/* =========================================================================
   closing + footer
   ========================================================================= */
.closing-section { max-width: 800px; margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) clamp(1.1rem, 4vw, 2.4rem); text-align: center; }
.closing-section h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1.1rem; }
.closing-section p { color: var(--muted); margin-bottom: 2rem; font-size: 1.05rem; }

footer { border-top: 1px solid var(--line-soft); padding: 2.5rem clamp(1.1rem, 4vw, 2.4rem); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; max-width: var(--maxw); margin: 0 auto; }
footer p { color: var(--muted-2); font-size: 0.85rem; max-width: 30rem; }
footer a[href^="http"] { color: var(--cyan); text-decoration: none; font-family: var(--font-mono); font-size: 0.85rem; }
.footerlink {
    color: var(--cyan); text-decoration: none; font-family: var(--font-mono); font-size: 0.85rem;
}

/* =========================================================================
   modal
   ========================================================================= */
.checkout-modal { border: none; border-radius: var(--radius-lg); padding: 2.2rem; max-width: 460px; width: 92%; background: linear-gradient(160deg, var(--ink-3), var(--ink-2)); color: var(--text); box-shadow: 0 40px 100px rgba(0,0,0,0.7); position: relative; }
.checkout-modal::backdrop { background: rgba(4,3,8,0.7); backdrop-filter: blur(6px); }
.checkout-modal h2 { font-size: 1.5rem; margin-bottom: 0.8rem; }
.checkout-modal p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.5rem; }
.checkout-modal code { font-family: var(--font-mono); color: var(--cyan); background: rgba(34,230,207,0.1); padding: 0.1rem 0.4rem; border-radius: 6px; }
.modal-close { position: absolute; top: 1rem; right: 1.2rem; background: none; border: none; color: var(--muted); font-size: 1.6rem; cursor: pointer; line-height: 1; }
.modal-close:hover { color: var(--text); }

/* =========================================================================
   responsive
   ========================================================================= */
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { order: 2; }
  .three-grid, .workflow, .tools-grid, .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.wide { grid-column: span 2; }
  .pricing-card { grid-template-columns: 1fr; }
  .price-box { border-left: none; border-top: 1px dashed var(--line); }
  .desktop-nav { display: none; }
}
@media (max-width: 600px) {
  .three-grid, .workflow, .tools-grid, .bento-grid { grid-template-columns: 1fr; }
  .bento-card.wide { grid-column: span 1; }
  .tool-fields.three-col { grid-template-columns: 1fr 1fr; }
  .site-header { gap: 0.5rem; padding-inline: 0.85rem; }
  .site-header .button-small { padding: 0.52rem 0.68rem; font-size: 0.6rem; white-space: nowrap; }
  .site-header .button-small span { display: none; }
  .hero-copy h1 { font-size: clamp(2.2rem, 9.4vw, 2.8rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto; }
  .cursor-glow { display: none; }
}
