:root {
  --bg: #07101f;
  --bg-soft: #0d1728;
  --panel: rgba(15, 28, 48, 0.92);
  --panel-solid: #101d31;
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #9fb0c8;
  --blue: #38bdf8;
  --blue-dark: #0284c7;
  --orange: #fb923c;
  --danger: #ef4444;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input { font: inherit; }
button { border: 0; }
.container { width: min(1160px, calc(100% - 36px)); margin: 0 auto; }
.section { padding: 96px 0; }
.hidden { display: none !important; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 12, 24, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-icon {
  width: 43px; height: 43px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.24);
}
.brand strong { display: block; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.brand small { display: block; color: var(--blue); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.site-nav { display: flex; gap: 28px; }
.site-nav a { color: #c8d3e2; font-size: .92rem; font-weight: 600; }
.site-nav a:hover { color: var(--blue); }
.menu-button { display: none; background: transparent; color: white; font-size: 1.3rem; cursor: pointer; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 20px; border-radius: 999px; cursor: pointer;
  color: white; font-weight: 800;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  box-shadow: 0 12px 28px rgba(14, 165, 233, .22);
  transition: transform .2s ease, filter .2s ease, opacity .2s ease;
}
.button:hover { transform: translateY(-2px); filter: brightness(1.08); }
.button:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.button-small { padding: 10px 18px; font-size: .9rem; }
.button-secondary { background: transparent; border: 1px solid var(--line); box-shadow: none; }

.hero { position: relative; overflow: hidden; padding: 102px 0 92px; background: linear-gradient(180deg, #050b16 0%, #081321 100%); }
.hero-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; filter: blur(110px); opacity: .18; pointer-events: none; }
.hero-glow-one { background: var(--blue); left: -180px; top: -140px; }
.hero-glow-two { background: var(--orange); right: -200px; bottom: -180px; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.03fr .97fr; gap: 62px; align-items: center; }
.eyebrow, .section-kicker {
  display: inline-block; color: #fdba74; font-weight: 800; font-size: .73rem;
  letter-spacing: .13em; text-transform: uppercase;
}
.eyebrow { padding: 7px 12px; border-radius: 999px; background: rgba(249, 115, 22, .09); border: 1px solid rgba(251, 146, 60, .28); }
h1 { margin: 20px 0 20px; font-size: clamp(2.7rem, 6vw, 5.1rem); line-height: 1.02; letter-spacing: -.055em; }
h1 span { background: linear-gradient(90deg, var(--blue), #7dd3fc, var(--orange)); background-clip: text; -webkit-background-clip: text; color: transparent; }
.hero-text { max-width: 680px; color: var(--muted); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.store-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.store-badge { display: inline-flex; align-items: center; gap: 12px; min-width: 166px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 13px; background: rgba(13, 23, 40, .75); }
.store-badge i { font-size: 1.55rem; }
.store-badge small, .store-badge strong { display: block; line-height: 1.2; }
.store-badge small { color: var(--muted); font-size: .62rem; text-transform: uppercase; }
.store-badge strong { font-size: .82rem; }
.media-frame { position: relative; padding: 1px; border-radius: 30px; background: linear-gradient(135deg, var(--blue), transparent 40%, var(--orange)); box-shadow: var(--shadow); }
.media-frame img { height: 500px; object-fit: cover; border-radius: 29px; }
.floating-card { position: absolute; left: -28px; bottom: 32px; display: flex; align-items: center; gap: 12px; padding: 14px 17px; border-radius: 16px; background: rgba(7, 16, 31, .92); border: 1px solid var(--line); backdrop-filter: blur(14px); box-shadow: var(--shadow); }
.floating-card strong, .floating-card small { display: block; }
.floating-card small { color: var(--muted); font-size: .72rem; }
.pulse-dot { width: 12px; height: 12px; border-radius: 50%; background: #f43f5e; box-shadow: 0 0 0 7px rgba(244, 63, 94, .14); }

.showcase { background: #0a1424; }
.section-heading { max-width: 690px; margin: 0 auto 44px; text-align: center; }
.section-heading h2 { margin: 8px 0 12px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; letter-spacing: -.035em; }
.section-heading p { margin: 0; color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel-solid); box-shadow: 0 18px 50px rgba(0,0,0,.16); }
.feature-card img { height: 240px; object-fit: cover; opacity: .88; transition: transform .35s ease, opacity .35s ease; }
.feature-card:hover img { transform: scale(1.035); opacity: 1; }
.feature-body { position: relative; padding: 26px; }
.feature-icon { position: absolute; right: 22px; top: -24px; width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue-dark), var(--orange)); }
.feature-body h3 { margin: 0 0 8px; font-size: 1.15rem; }
.feature-body p { margin: 0; color: var(--muted); font-size: .92rem; }

.record-section { background: linear-gradient(180deg, #060d19, #091426); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.record-container { max-width: 860px; }
.record-panel { padding: clamp(28px, 6vw, 58px); border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(180deg, rgba(17, 31, 52, .96), rgba(7, 16, 31, .98)); box-shadow: var(--shadow); text-align: center; }
.section-heading.compact { margin-bottom: 26px; }
.timer { font-size: clamp(2.8rem, 8vw, 5.5rem); font-weight: 900; letter-spacing: -.05em; font-variant-numeric: tabular-nums; }
.status { color: var(--muted); min-height: 26px; margin-bottom: 24px; }
.record-controls { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.record-button { background: linear-gradient(135deg, #dc2626, #f43f5e); box-shadow: 0 12px 28px rgba(239, 68, 68, .24); }
.stop-button { background: #334155; box-shadow: none; }
.audio-area { margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
audio { width: min(100%, 560px); }
.form-grid { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: end; margin-top: 22px; text-align: left; }
label { color: #dbe7f5; font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
input { width: 100%; margin-top: 7px; padding: 13px 14px; color: white; background: #0b1627; border: 1px solid #31415a; border-radius: 13px; outline: none; }
input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(56, 189, 248, .12); }
.download-button { border-radius: 13px; white-space: nowrap; }
.privacy-note { margin: 18px 0 0; color: #7f91aa; font-size: .78rem; }

footer { padding: 56px 0 24px; background: #040a13; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr .85fr; gap: 44px; }
footer h3, footer h4 { color: white; margin: 0 0 12px; }
footer p { margin: 7px 0; color: var(--muted); }
footer i { width: 21px; color: var(--blue); }
footer a:hover { color: var(--blue); }
.copyright { margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--line); color: #61718a; font-size: .76rem; text-align: center; }

@media (max-width: 900px) {
  .nav-cta { display: none; }
  .menu-button { display: block; }
  .site-nav { display: none; position: absolute; top: 76px; left: 18px; right: 18px; flex-direction: column; gap: 0; padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: #081321; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 14px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions, .store-row { justify-content: center; }
  .hero-media { max-width: 620px; margin: 0 auto; width: 100%; }
  .floating-card { left: 18px; }
  .card-grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .feature-card img { height: 300px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 620px) {
  .section { padding: 72px 0; }
  .hero { padding-top: 76px; }
  .media-frame img { height: 390px; }
  .floating-card { right: 14px; left: 14px; bottom: 14px; }
  .form-grid { grid-template-columns: 1fr; }
  .download-button { width: 100%; }
  .hero-actions .button { width: 100%; }
  .store-badge { flex: 1; min-width: 145px; }
}
