/* ============================================================
   Radical Neutral — styles.css
   A minimal, typographic, neutral aesthetic.
   Colors are defined once as variables below; change them there.
   ============================================================ */

:root {
  /* Dark theme (default) */
  --bg:        #0b0b0c;
  --bg-soft:   #141416;
  --text:      #f2f2f0;
  --text-dim:  #9a9a97;
  --line:      #26262a;
  --accent:    #f2f2f0;   /* keep it neutral; swap for a signature color if you like */
  --accent-ink:#0b0b0c;
}

:root[data-theme="light"] {
  --bg:        #f6f6f4;
  --bg-soft:   #ffffff;
  --text:      #111112;
  --text-dim:  #6b6b68;
  --line:      #e2e2dd;
  --accent:    #111112;
  --accent-ink:#f6f6f4;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background .4s ease, color .4s ease;
}

a { color: inherit; text-decoration: none; }

section { scroll-margin-top: 80px; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem clamp(1.25rem, 5vw, 4rem);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
}
.nav__logo {
  height: 38px;
  width: auto;
  display: block;
}
/* Logo art is light; flip it dark for light theme so it stays visible */
:root[data-theme="light"] .nav__logo { filter: invert(1); }

.nav__links {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
  font-size: .9rem;
  color: var(--text-dim);
}
.nav__links a { transition: color .2s; }
.nav__links a:hover { color: var(--text); }

.theme-toggle {
  width: 40px;
  height: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
  cursor: pointer;
  position: relative;
  flex: none;
}
.theme-toggle__dot {
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--text);
  transition: left .25s ease;
}
:root[data-theme="light"] .theme-toggle__dot { left: 19px; }

/* ---------- Layout ---------- */
.section {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 8rem) clamp(1.25rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}

.section__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;              /* respects mobile browser chrome */
  display: flex;
  align-items: flex-end;           /* content sits toward the bottom */
  background-color: var(--bg);     /* fallback while image loads */
  background-image: url("assets/bg.jpg");
  background-size: cover;
  background-position: center 22%; /* keeps the faces in frame on wide screens */
  overflow: hidden;
}
/* Dark gradient so the title/buttons stay legible over the photo */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 11, 12, 0.15) 0%,
    rgba(11, 11, 12, 0.05) 35%,
    rgba(11, 11, 12, 0.85) 100%
  );
}
.hero__inner {
  position: relative;              /* above the overlay */
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(4rem, 14vw, 9rem) clamp(1.25rem, 5vw, 4rem) clamp(3rem, 8vw, 6rem);
  color: #f2f2f0;                  /* hero text stays light in both themes */
}
/* Hero text + buttons are always over a dark photo, so pin light colors
   regardless of the light/dark theme toggle. */
.hero .hero__eyebrow { color: rgba(242, 242, 240, 0.85); }
.hero .hero__title { color: #f2f2f0; }
.hero .hero__tagline { color: rgba(242, 242, 240, 0.9); }
.hero .btn--primary { background: #f2f2f0; color: #0b0b0c; border-color: #f2f2f0; }
.hero .btn--ghost { color: #f2f2f0; border-color: rgba(242, 242, 240, 0.55); }
.hero .btn--ghost:hover { background: rgba(242, 242, 240, 0.12); }
.hero__eyebrow {
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 9vw, 7rem); /* as large as fits on one line for "Radical-Neutral" */
  line-height: .95;
  letter-spacing: -.02em;
  white-space: nowrap;                 /* never break at the hyphen */
  margin-bottom: 1.75rem;
}
.hero__tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-dim);
  max-width: 34ch;
  margin-bottom: 2.5rem;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  padding: .8rem 1.6rem;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 500;
  border: 1px solid var(--text);
  transition: transform .15s ease, background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--ghost { background: transparent; color: var(--text); }
.btn--ghost:hover { background: var(--bg-soft); }

/* ---------- Listen / platforms ---------- */
.coming-soon {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text);
  padding: clamp(1.5rem, 5vw, 3rem) 0;
  border: 1px dashed var(--line);
  border-radius: 14px;
  text-align: center;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   /* center the tiles (nice with just one) */
  gap: 12px;
}
.platform {
  flex: 0 1 300px;           /* fixed-ish width tiles; don't stretch to fill */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  transition: background .2s, color .2s, border-color .2s;
}
.platform:hover { background: var(--bg-soft); border-color: var(--text-dim); }
.platform__arrow { color: var(--text-dim); transition: transform .2s, color .2s; }
.platform:hover .platform__arrow { transform: translateX(4px); color: var(--text); }

/* ---------- Embed ---------- */
.embed { margin-top: 2rem; }
.embed iframe { width: 100%; border: 0; border-radius: 14px; display: block; }
.embed__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-align: center;
  min-height: 180px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  color: var(--text-dim);
  font-size: .95rem;
}
.embed__placeholder span { font-size: .8rem; opacity: .7; }

/* ---------- About ---------- */
.section--split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.about__media img,
.about__placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  object-fit: cover;
}
.about__media img { object-position: center 30%; } /* keep faces in frame */
.about__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border: 1px dashed var(--line);
  color: var(--text-dim);
  font-size: .9rem;
}
.about__text p { margin-bottom: 1.2rem; color: var(--text); max-width: 60ch; }
.about__text p:last-child { color: var(--text-dim); }

/* ---------- Contact ---------- */
.section--contact { text-align: center; }
.contact__lead { color: var(--text-dim); margin-bottom: 1.5rem; }
.contact__email {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.6rem);
  border-bottom: 1px solid var(--line);
  padding-bottom: .15em;
  transition: border-color .2s;
}
.contact__email:hover { border-color: var(--text); }

.socials {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  font-size: .95rem;
  color: var(--text-dim);
}
.socials a { transition: color .2s; }
.socials a:hover { color: var(--text); }

/* ---------- Footer ---------- */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem clamp(1.25rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  font-size: .85rem;
  color: var(--text-dim);
}
.footer a:hover { color: var(--text); }

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .nav__links { display: none; }
  .section--split { grid-template-columns: 1fr; }
  .about__media { max-width: 320px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto; }
}
