/* ═══════════════════════════════════════════════
   SONRIFY — Main Stylesheet
   Brand Colors: #3A8C4C #00B4A6 #FFFFFF #2C2C2C
═══════════════════════════════════════════════ */

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

:root {
  --green:      #3A8C4C;
  --teal:       #00B4A6;
  --white:      #FFFFFF;
  --dark:       #2C2C2C;
  --dark2:      #222222;
  --dark3:      #1A1A1A;
  --muted:      rgba(255,255,255,0.45);
  --muted-dark: rgba(255,255,255,0.25);
  --border:     rgba(255,255,255,0.08);
  --surface:    rgba(255,255,255,0.04);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark3);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark3); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }

/* ══════════════════════════════════
   SHARED COMPONENTS
══════════════════════════════════ */

.nav {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.75rem 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}

.logo {
  font-family: 'Instrument Serif', serif;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg { width: 18px; height: 18px; }

.logo-icon-sm { width: 28px; height: 28px; border-radius: 7px; }
.logo-icon-sm svg { width: 15px; height: 15px; }

.status-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px 6px 12px;
  font-size: 12px;
  color: var(--muted);
}

.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: blink 2.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0,180,166,0.3);
  background: rgba(0,180,166,0.08);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.accent-green { color: var(--green); }
.accent-teal  { color: var(--teal); font-style: italic; }

.footer {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}

.footer p { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ══════════════════════════════════
   BACKGROUND EFFECTS
══════════════════════════════════ */

#page-coming-soon, #page-launched {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#page-coming-soon::before,
#page-launched::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 10%, rgba(58,140,76,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 80% 80%, rgba(0,180,166,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ══════════════════════════════════
   COMING SOON PAGE
══════════════════════════════════ */

.hero-soon {
  flex: 1;
  width: 100%;
  max-width: 960px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-soon .eyebrow { margin-top: 5.5rem; opacity: 0; animation: fadeUp 0.8s ease 0.1s forwards; }

.hero-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -0.03em;
  text-align: center;
  margin-top: 1.4rem;
  max-width: 720px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.25s forwards;
}

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  text-align: center;
  max-width: 460px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

/* ── Waveform ── */
.waveform-wrap {
  margin-top: 3.5rem;
  width: 100%;
  max-width: 580px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.55s forwards;
}

.bar {
  width: 3px;
  border-radius: 100px;
  background: linear-gradient(to top, var(--green), var(--teal));
  opacity: 0.25;
  animation: wave var(--dur) ease-in-out var(--delay) infinite alternate;
}

@keyframes wave {
  0%   { height: 6px;    opacity: 0.15; }
  100% { height: var(--h); opacity: 0.75; }
}

/* ── Form ── */
.form-wrap {
  margin-top: 3rem;
  width: 100%;
  max-width: 440px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.form-inner {
  display: flex;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s;
}

.form-inner:focus-within { border-color: rgba(0,180,166,0.5); }

.form-inner input[type="email"] {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--white);
  background: transparent;
  min-width: 0;
}

.form-inner input::placeholder { color: rgba(255,255,255,0.25); }

.form-inner button {
  border: none;
  outline: none;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 0 1.4rem;
  height: 46px;
  border-radius: 100px;
  cursor: pointer;
  margin: 3px;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: opacity 0.15s, transform 0.1s;
}

.form-inner button:hover  { opacity: 0.88; }
.form-inner button:active { transform: scale(0.97); }
.form-inner button:disabled { opacity: 0.5; cursor: not-allowed; }

.form-note {
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.22);
}

.success-msg {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-size: 14px;
  color: var(--teal);
  padding: 14px 0;
}

.success-msg svg { width: 18px; height: 18px; stroke: var(--teal); }

.error-msg {
  display: none;
  text-align: center;
  font-size: 13px;
  color: #ff6b6b;
  padding: 8px 0;
}

/* ── Steps ── */
.steps-section {
  margin-top: 6rem;
  width: 100%;
  max-width: 880px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.steps-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  text-align: center;
  margin-bottom: 2rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.step-card {
  background: var(--dark2);
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: background 0.2s;
}

.step-card:hover { background: #272727; }

.step-num {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon svg, .hiw-icon svg, .feature-icon svg { width: 21px; height: 21px; }
.step-icon.g { background: rgba(58,140,76,0.15); }
.step-icon.t { background: rgba(0,180,166,0.12); }
.step-icon.g svg { stroke: var(--green); }
.step-icon.t svg { stroke: var(--teal); }

.step-title {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.3;
}

.step-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

.kokoro-section {
  margin: 5rem 0 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.kokoro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 18px 7px 13px;
  font-size: 12px;
  color: var(--muted);
  background: var(--surface);
}

.kokoro-badge svg { width: 15px; height: 15px; stroke: var(--teal); fill: none; stroke-width: 1.6; stroke-linecap: round; }


/* ══════════════════════════════════
   LAUNCHED PAGE — NAV
══════════════════════════════════ */

.nav-launched { max-width: 1100px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: linear-gradient(135deg, var(--green), var(--teal)) !important;
  color: white !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 500 !important;
  font-size: 13px !important;
  transition: opacity 0.15s !important;
}

.nav-cta:hover { opacity: 0.85; }

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-mobile-menu span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem 2rem;
  z-index: 99;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 400;
}

/* ══════════════════════════════════
   LAUNCHED HERO
══════════════════════════════════ */

.launched-hero {
  width: 100%;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.launched-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 5rem 0 4rem;
}

.launched-hero-text { display: flex; flex-direction: column; gap: 0; }

.eyebrow-launched { margin-bottom: 1.5rem; }

.launched-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.launched-subtitle {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
}

.launched-cta-group {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.15s, transform 0.1s;
  white-space: nowrap;
}

.btn-primary:hover  { opacity: 0.88; }
.btn-primary:active { transform: scale(0.98); }
.btn-primary svg { width: 18px; height: 18px; }

.btn-large { padding: 16px 32px; font-size: 15px; }

.btn-ghost {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}

.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

.launched-stats {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat { display: flex; flex-direction: column; gap: 2px; }

.stat-num {
  font-size: 1.4rem;
  font-weight: 500;
  background: linear-gradient(135deg, var(--green), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label { font-size: 12px; color: var(--muted); font-weight: 300; }
.stat-divider { width: 1px; height: 32px; background: var(--border); }

/* ── Phone Mockup ── */
.launched-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow-1, .hero-glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero-glow-1 { width: 300px; height: 300px; background: rgba(58,140,76,0.2); top: -50px; right: 50px; }
.hero-glow-2 { width: 250px; height: 250px; background: rgba(0,180,166,0.15); bottom: 20px; left: 30px; }

.phone-mockup {
  width: 260px;
  background: #111;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 12px;
  position: relative;
  z-index: 1;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.phone-screen {
  background: var(--dark2);
  border-radius: 26px;
  overflow: hidden;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.phone-logo-small {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-logo-small svg { width: 13px; height: 13px; }

.phone-doc-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark3);
  border-radius: 12px;
  padding: 10px 12px;
}

.phone-doc-icon {
  width: 32px; height: 32px;
  background: rgba(58,140,76,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-doc-icon svg { width: 16px; height: 16px; }
.phone-doc-name { font-size: 11px; font-weight: 500; }
.phone-doc-size { font-size: 10px; color: var(--muted); margin-top: 1px; }

.phone-progress-section { display: flex; flex-direction: column; gap: 6px; }
.phone-progress-label { font-size: 11px; color: var(--teal); }

.phone-progress-bar {
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.phone-progress-fill {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, var(--green), var(--teal));
  border-radius: 2px;
  animation: progress 3s ease-in-out infinite alternate;
}

@keyframes progress {
  from { width: 40%; }
  to   { width: 80%; }
}

.phone-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  height: 36px;
}

.phone-bar {
  width: 2px;
  border-radius: 1px;
  background: linear-gradient(to top, var(--green), var(--teal));
  opacity: 0.4;
  animation: phoneWave var(--dur) ease-in-out var(--delay) infinite alternate;
}

@keyframes phoneWave {
  from { height: 4px; opacity: 0.2; }
  to   { height: var(--h); opacity: 0.8; }
}

.phone-player {
  background: var(--dark3);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-player-info { display: flex; justify-content: space-between; align-items: baseline; }
.phone-player-title { font-size: 11px; font-weight: 500; }
.phone-player-time  { font-size: 10px; color: var(--muted); }

.phone-player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.phone-btn-sm {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-btn-sm svg { width: 14px; height: 14px; stroke: var(--muted); }

.phone-btn-play {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--teal));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-btn-play svg { width: 14px; height: 14px; margin-left: 2px; }

/* ══════════════════════════════════
   SECTION SHARED STYLES
══════════════════════════════════ */

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════════
   FEATURES
══════════════════════════════════ */

.features-section {
  width: 100%;
  padding: 7rem 0;
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.feature-card {
  background: var(--dark2);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.2s;
}

.feature-card:hover { background: #272727; }

.feature-card-large { grid-column: span 2; }

.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon.g { background: rgba(58,140,76,0.15); }
.feature-icon.t { background: rgba(0,180,166,0.12); }
.feature-icon.g svg { stroke: var(--green); }
.feature-icon.t svg { stroke: var(--teal); }

.feature-card h3 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
}

.feature-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════════════
   HOW IT WORKS
══════════════════════════════════ */

.hiw-section {
  width: 100%;
  padding: 7rem 0;
  position: relative;
  z-index: 1;
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hiw-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.hiw-step-num {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
  min-width: 28px;
  padding-top: 2px;
}

.hiw-step-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  flex: 1;
  transition: background 0.2s;
}

.hiw-step-content:hover { background: #272727; }

.hiw-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hiw-icon.g { background: rgba(58,140,76,0.15); }
.hiw-icon.t { background: rgba(0,180,166,0.12); }
.hiw-icon.g svg { stroke: var(--green); }
.hiw-icon.t svg { stroke: var(--teal); }

.hiw-step-content h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.hiw-step-content p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

.hiw-connector {
  width: 1px;
  height: 24px;
  background: var(--border);
  margin-left: calc(28px + 2rem + 23px);
}

/* ══════════════════════════════════
   DOWNLOAD CTA
══════════════════════════════════ */

.download-section {
  width: 100%;
  padding: 0 0 7rem;
  position: relative;
  z-index: 1;
}

.download-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,166,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.download-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 1rem 0;
  line-height: 1.2;
}

.download-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.download-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.download-note {
  margin-top: 1.25rem;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ── Launched Footer ── */
.footer-launched {
  max-width: 1100px;
  flex-direction: column;
  gap: 2rem;
  padding-top: 2.5rem;
}

.footer-inner {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  max-width: 240px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.footer-links a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  gap: 1rem;
  flex-wrap: wrap;
}

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */

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

/* ══════════════════════════════════
   RESPONSIVE — TABLET (768px)
══════════════════════════════════ */

@media (max-width: 900px) {
  .launched-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding: 3rem 0;
  }

  .launched-hero-text { align-items: center; }
  .launched-subtitle  { max-width: 100%; }
  .launched-cta-group { justify-content: center; }
  .launched-stats     { justify-content: center; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-large { grid-column: span 2; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); }

  .nav-links { display: none; }
  .nav-mobile-menu { display: flex; }
}

@media (max-width: 700px) {
  .nav { padding: 1.5rem 1.25rem 0; }

  .hero-soon { padding: 0 1.25rem; }
  .hero-soon .eyebrow { margin-top: 3.5rem; }

  .hero-title { font-size: 2.4rem; }

  .waveform-wrap { height: 60px; }

  .form-inner { flex-direction: column; border-radius: 16px; padding: 10px; gap: 8px; }
  .form-inner input { padding: 12px 14px; font-size: 15px; }
  .form-inner button { border-radius: 10px; height: 48px; width: 100%; margin: 0; }

  .steps-grid { grid-template-columns: 1fr; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-column: span 1; }

  .hiw-connector { margin-left: calc(28px + 1.5rem + 23px); }

  .launched-hero { padding: 0 1.25rem; }
  .section-inner { padding: 0 1.25rem; }

  .features-section, .hiw-section { padding: 5rem 0; }

  .download-card { padding: 3rem 1.5rem; }
  .download-btns { flex-direction: column; align-items: center; }

  .footer { padding: 1.5rem 1.25rem; flex-direction: column; gap: 0.5rem; text-align: center; }
  .footer-launched { padding: 2rem 1.25rem; }
  .footer-inner { flex-direction: column; }
  .footer-links { align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 2rem; }
  .phone-mockup { width: 220px; }
  .launched-title { font-size: 2.4rem; }
}

/* ══════════════════════════════════
   FOOTER LINKS ROW
══════════════════════════════════ */
.footer-links-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links-row a {
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.15s;
}
.footer-links-row a:hover { color: var(--white); }
.footer-links-row span { color: rgba(255,255,255,0.15); font-size: 12px; }

/* ══════════════════════════════════
   DEVELOPMENT PROGRESS
══════════════════════════════════ */
.progress-section {
  margin-top: 6rem;
  width: 100%;
  max-width: 880px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.progress-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
}

.progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}

.progress-title {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.progress-subtitle {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

.progress-overall {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.progress-ring { width: 60px; height: 60px; }

.progress-pct {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
}

.progress-items { display: flex; flex-direction: column; gap: 1rem; }

.progress-item { display: flex; flex-direction: column; gap: 6px; }

.progress-item-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.progress-item-name { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.7); }
.progress-item-pct  { font-size: 12px; font-weight: 500; color: var(--teal); }

.progress-bar-bg {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--teal));
  border-radius: 2px;
  transition: width 1.5s ease;
}

/* ══════════════════════════════════
   ROADMAP
══════════════════════════════════ */
.roadmap-section {
  margin-top: 6rem;
  width: 100%;
  max-width: 880px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.roadmap-list { display: flex; flex-direction: column; }

.roadmap-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.roadmap-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.roadmap-item.done .roadmap-dot     { background: var(--green); }
.roadmap-item.active .roadmap-dot   { background: var(--teal); box-shadow: 0 0 12px rgba(0,180,166,0.5); animation: blink 2s ease-in-out infinite; }
.roadmap-item.upcoming .roadmap-dot { background: rgba(255,255,255,0.15); }

.roadmap-connector {
  width: 2px;
  height: 28px;
  background: var(--border);
  margin-left: 6px;
}

.roadmap-content { padding-bottom: 1.5rem; }

.roadmap-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 100px;
  margin-bottom: 6px;
}

.done-tag     { background: rgba(58,140,76,0.15); color: var(--green); }
.active-tag   { background: rgba(0,180,166,0.15); color: var(--teal); }
.upcoming-tag { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.3); }

.roadmap-content h4 { font-size: 0.95rem; font-weight: 500; margin-bottom: 4px; }
.roadmap-content p  { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════
   BUILT BY STUDENTS STORY
══════════════════════════════════ */
.story-section {
  margin-top: 6rem;
  width: 100%;
  max-width: 880px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}

.story-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.story-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,140,76,0.1) 0%, transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.story-emoji { font-size: 2.5rem; margin-bottom: 1rem; }

.story-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,180,166,0.1);
  border: 1px solid rgba(0,180,166,0.2);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.story-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.story-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 1rem;
  text-align: left;
}

.story-sign { font-style: italic; margin-bottom: 2rem !important; }

.story-authors {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.story-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: white;
  flex-shrink: 0;
}

.story-author-name { font-size: 14px; font-weight: 500; margin: 0; }
.story-author-role { font-size: 12px; color: var(--muted); margin: 0; }

/* ══════════════════════════════════
   STORY (LAUNCHED)
══════════════════════════════════ */
.story-launched-section {
  width: 100%;
  padding: 7rem 0;
  position: relative;
  z-index: 1;
}

.story-launched-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
}

.story-launched-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0.75rem 0 1.25rem;
}

.story-launched-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.story-launched-authors {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.story-launched-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story-stat-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.story-stat-num {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  font-weight: 400;
  background: linear-gradient(135deg, var(--green), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-stat-label {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
}

/* ══════════════════════════════════
   RESPONSIVE ADDITIONS
══════════════════════════════════ */
@media (max-width: 700px) {
  .progress-header { flex-direction: column; align-items: flex-start; }
  .story-card { padding: 2rem 1.25rem; }
  .story-launched-card { grid-template-columns: 1fr; padding: 2rem 1.25rem; }
  .story-launched-visual { flex-direction: row; flex-wrap: wrap; }
  .story-stat-card { flex: 1; min-width: 120px; }
}

/* ── Real logo image ── */
.logo-png {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  flex-shrink: 0;
}
