:root {
  --bg: #0f1217;
  --panel: #171b22;
  --panel2: #101318;
  --text: #f7f7f2;
  --muted: #aeb4bd;
  --line: rgba(255,255,255,.12);
  --accent: #ffb347;
  --accent2: #77e0a3;
  --shadow: 0 24px 80px rgba(0,0,0,.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,179,71,.16), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(119,224,163,.12), transparent 34%),
    linear-gradient(135deg, #141820 0%, #0c0f14 70%);
  color: var(--text);
  line-height: 1.75;
}
a { color: inherit; }
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(15,18,23,.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.logo { text-decoration: none; font-weight: 900; letter-spacing: .02em; font-size: clamp(22px, 3vw, 34px); }
.logo span { color: var(--accent); }
.nav { display: flex; flex-wrap: wrap; gap: 16px; color: var(--muted); font-size: 14px; }
.nav a { text-decoration: none; }
.nav a:hover { color: var(--text); }
.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(52px, 9vw, 112px) clamp(18px, 5vw, 72px);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.04);
  font-size: 14px;
}
h1 { margin: 22px 0 18px; font-size: clamp(44px, 8vw, 96px); line-height: .95; letter-spacing: -.055em; }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(17px, 2vw, 22px); }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
}
.button.primary { background: linear-gradient(135deg, var(--accent), #ff7c4b); color: #14110d; border: none; }
.device {
  border: 1px solid var(--line);
  border-radius: 36px;
  background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  padding: 22px;
}
.screen {
  min-height: 430px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 15%, rgba(255,179,71,.18), transparent 30%),
    linear-gradient(180deg, #212733, #11151c);
  border: 1px solid rgba(255,255,255,.1);
  padding: 26px;
}
.album { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.card {
  aspect-ratio: 3/4;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.22), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
}
.section { padding: clamp(42px, 8vw, 90px) clamp(18px, 5vw, 72px); }
.section h2 { margin: 0 0 18px; font-size: clamp(30px, 4vw, 54px); letter-spacing: -.04em; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 30px; }
.panel {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.055);
  padding: 26px;
  box-shadow: 0 16px 50px rgba(0,0,0,.18);
}
.panel h3 { margin-top: 0; font-size: 22px; }
.panel p { color: var(--muted); margin-bottom: 0; }
.footer { padding: 36px clamp(18px, 5vw, 72px); color: var(--muted); border-top: 1px solid var(--line); }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 10px; }
.footer a { color: var(--muted); text-decoration: none; }
.legal { max-width: 920px; margin: 0 auto; padding: clamp(42px, 7vw, 84px) 18px; }
.legal h1 { font-size: clamp(34px, 5vw, 58px); }
.legal h2 { margin-top: 40px; border-top: 1px solid var(--line); padding-top: 24px; }
.legal p, .legal li { color: var(--muted); }
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .device { max-width: 520px; }
}
