:root {
  --bg: #050505;
  --bg-2: #0c0c0d;
  --card: #111113;
  --line: rgba(255,255,255,.08);
  --text: #f4f4f5;
  --muted: rgba(255,255,255,.58);
  --faint: rgba(255,255,255,.36);
  --accent: #ff5c94;
  --accent-2: #7cc4ff;
  --radius: 18px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text); font-family: var(--font);
  -webkit-font-smoothing: antialiased; line-height: 1.5; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; letter-spacing: -.02em; }
h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 650; }
p { margin: 0; }
img { display: block; max-width: 100%; }
section { padding: 96px 24px; max-width: 1180px; margin: 0 auto; }

/* nav */
.nav {
  position: sticky; top: 0; z-index: 10; display: flex; justify-content: space-between; align-items: center;
  padding: 14px 28px; backdrop-filter: blur(18px) saturate(1.4); background: rgba(5,5,5,.55);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 9px; font-weight: 650; font-size: 16px; }
.brand-mark {
  width: 16px; height: 16px; border-radius: 50%;
  background: linear-gradient(90deg, #fff 50%, #000 50%); border: 1.5px solid #fff; display: inline-block;
}
.brand-mark.small { width: 12px; height: 12px; margin-right: 7px; vertical-align: -1px; }
.nav nav { display: flex; gap: 22px; align-items: center; font-size: 14px; color: var(--muted); }
.nav nav a:hover { color: var(--text); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px;
  padding: 13px 22px; font-weight: 600; font-size: 15px; transition: transform .18s ease, background .18s, box-shadow .18s;
  border: 1px solid transparent; cursor: pointer;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: #fff; color: #000; box-shadow: 0 10px 40px rgba(255,255,255,.12); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 50px rgba(255,255,255,.2); }
.btn-ghost { border-color: var(--line); color: var(--text); background: rgba(255,255,255,.04); }
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-small { padding: 8px 14px; font-size: 13px; background: #fff; color: #000 !important; }
.btn-wide { width: 100%; padding: 16px; font-size: 16px; }

/* hero */
.hero { padding-top: 64px; display: grid; gap: 64px; text-align: center; justify-items: center; }
.hero-copy { max-width: 820px; }
.hero .cta { justify-content: center; }
.eyebrow { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); font-weight: 600; }
.hero h1 { font-size: clamp(44px, 7vw, 92px); font-weight: 700; line-height: .98; margin: 14px 0 22px; }
.lede { font-size: clamp(17px, 1.6vw, 20px); color: var(--muted); max-width: 640px; }
.cta { display: flex; gap: 12px; margin: 30px 0 14px; flex-wrap: wrap; }
.fine { font-size: 13px; color: var(--faint); }

.screen {
  position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 16 / 6.6; width: 100%; border: 1px solid var(--line);
  background: #1a1c1a; box-shadow: 0 40px 120px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.04);
}
.wallpaper {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(255,92,148,.28), transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(124,196,255,.25), transparent 55%),
    radial-gradient(ellipse at 60% 90%, rgba(120,255,180,.16), transparent 50%),
    linear-gradient(180deg, #0f1614 0%, #0a0d0f 100%);
}
.menubar {
  position: absolute; top: 0; left: 0; right: 0; height: 34px; z-index: 2; display: flex; align-items: center; gap: 18px;
  padding: 0 18px; font-size: 13px; color: rgba(255,255,255,.85); background: rgba(40,44,42,.55); backdrop-filter: blur(10px);
}
.menubar b { font-weight: 650; }
.menubar .apple { width: 13px; height: 13px; background: #fff; border-radius: 40% 40% 50% 50%; display: inline-block; opacity: .9; }
.menubar .right { margin-left: auto; display: flex; gap: 12px; }
.menubar .right i { width: 14px; height: 10px; border-radius: 3px; background: rgba(255,255,255,.7); display: inline-block; }
.notch {
  position: absolute; z-index: 3; top: 0; left: 50%; transform: translateX(-50%);
  width: 21%; height: 34px; background: #000; border-radius: 0 0 14px 14px;
  transition: width .45s cubic-bezier(.2,.8,.2,1), height .45s cubic-bezier(.2,.8,.2,1), border-radius .45s;
  cursor: pointer; overflow: hidden; box-shadow: 0 0 0 1px rgba(255,255,255,0);
}
.notch::before, .notch::after {
  content: ""; position: absolute; top: 0; width: 12px; height: 12px; background: transparent;
}
.notch-idle { position: absolute; inset: 0; display: flex; justify-content: space-between; align-items: center; padding: 0 12px; transition: opacity .25s; }
.notch-idle .art { width: 18px; height: 18px; border-radius: 5px; background: linear-gradient(135deg, var(--accent), #ffb86b); box-shadow: 0 0 12px rgba(255,92,148,.6); }
.notch-idle .bars { display: flex; gap: 2px; align-items: center; height: 14px; }
.notch-idle .bars i { width: 2.5px; border-radius: 2px; background: var(--accent); animation: eq 1s ease-in-out infinite; height: 40%; }
.notch-idle .bars i:nth-child(2) { animation-delay: .15s; } .notch-idle .bars i:nth-child(3) { animation-delay: .3s; } .notch-idle .bars i:nth-child(4) { animation-delay: .45s; }
@keyframes eq { 0%,100% { height: 30%; } 50% { height: 100%; } }
.notch-card { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; opacity: 0; transition: opacity .3s .1s; }
.notch.open { width: 83%; height: 78%; border-radius: 0 0 26px 26px; box-shadow: 0 30px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(255,92,148,.35); }
.notch.open .notch-idle { opacity: 0; }
.notch.open .notch-card { opacity: 1; }

/* strip */
.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding-top: 0; padding-bottom: 0; }
.strip div { border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; background: var(--bg-2); }
.strip b { display: block; font-size: 28px; font-weight: 650; letter-spacing: -.02em; }
.strip span { color: var(--faint); font-size: 13px; }

/* tools */
.sub { color: var(--muted); font-size: 17px; max-width: 700px; margin-top: 12px; }
.gallery { margin: 44px 0 56px; }
.gallery-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.gallery-tabs button {
  background: rgba(255,255,255,.05); color: var(--muted); border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 13px; font: inherit; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .15s;
}
.gallery-tabs button:hover { color: var(--text); background: rgba(255,255,255,.09); }
.gallery-tabs button.active { background: #fff; color: #000; border-color: #fff; }
.gallery-frame {
  margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #000;
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
}
.gallery-frame img { width: 100%; aspect-ratio: 1400 / 540; object-fit: cover; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.grid article { background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 20px; transition: border-color .2s, transform .2s; }
.grid article:hover { border-color: rgba(255,255,255,.18); transform: translateY(-2px); }
.grid h3 { font-size: 15px; font-weight: 650; margin-bottom: 8px; }
.grid p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* themes */
.themes { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: center; }
.themes-copy p { color: var(--muted); margin-top: 16px; font-size: 16px; }
.themes-copy b { color: var(--text); }
.themes-shots { display: grid; gap: 12px; }
.themes-shots img { border-radius: 14px; border: 1px solid var(--line); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.themes-shots .ticker { width: 62%; justify-self: center; }

/* honest */
.honest { max-width: 860px; }
.honest ul { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.honest li { padding: 18px 20px; border-left: 2px solid var(--accent); background: var(--bg-2); border-radius: 0 12px 12px 0; color: var(--muted); font-size: 15px; }
.honest li b { color: var(--text); display: block; margin-bottom: 4px; }

/* pricing */
.pricing { display: flex; justify-content: center; }
.price-card {
  width: 100%; max-width: 480px; padding: 40px; border-radius: 26px; background: var(--card); text-align: center;
  border: 1px solid var(--line); position: relative; overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
}
.price-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, rgba(255,92,148,.6), rgba(124,196,255,.4), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.price { font-size: 84px; font-weight: 700; letter-spacing: -.04em; line-height: 1; margin: 14px 0 6px; }
.price span { font-size: 40px; vertical-align: top; margin-right: 2px; color: var(--muted); }
.price small { font-size: 40px; color: var(--muted); }
.price-sub { color: var(--muted); }
.price-card ul { list-style: none; padding: 0; margin: 26px 0; text-align: left; display: grid; gap: 10px; font-size: 15px; color: var(--muted); }
.price-card li::before { content: "✓"; color: var(--accent); font-weight: 700; margin-right: 10px; }
.price-card .fine { margin-top: 14px; }

/* faq */
.faq { max-width: 760px; }
.faq details { border-bottom: 1px solid var(--line); padding: 16px 0; }
.faq summary { cursor: pointer; font-weight: 600; font-size: 16px; list-style: none; display: flex; justify-content: space-between; }
.faq summary::after { content: "+"; color: var(--faint); }
.faq details[open] summary::after { content: "–"; }
.faq p { color: var(--muted); margin-top: 10px; font-size: 15px; }

footer { display: flex; justify-content: space-between; padding: 40px 28px; border-top: 1px solid var(--line); color: var(--faint); font-size: 13px; max-width: 1180px; margin: 40px auto 0; }

@media (max-width: 900px) {
  .strip, .grid { grid-template-columns: repeat(2, 1fr); }
  .themes { grid-template-columns: 1fr; }
  .nav nav a:not(.btn) { display: none; }
  section { padding: 64px 20px; }
}
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } .notch.open { width: 96%; height: 90%; } }

.btn.is-soon { opacity: .75; cursor: default; }
