/* EMOZN — first-draft homepage styles
   Palette sampled from assets/logo-banner.jpg:
   green tube ≈ #3ddc6f (core ≈ #a8f8c8), purple glow ≈ #7a2fd0.
   Brighter tints are used for text so they pass contrast on the dark background. */

:root {
  --bg: #07060b;
  --bg-2: #0d0b14;
  --surface: #13101c;
  --text: #ecebf2;
  --muted: #b3afc2;
  --green: #3ddc6f;          /* sampled logo tube */
  --green-bright: #5cf59a;   /* accent / text */
  --green-core: #a8f8c8;     /* sampled logo core */
  --purple: #7a2fd0;         /* sampled logo glow */
  --purple-bright: #b57cff;  /* accent / text */
  --radius: 18px;
  --max: 1160px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --glow-green: 0 0 6px rgba(92, 245, 154, .55), 0 0 22px rgba(61, 220, 111, .35);
  --glow-text: 0 0 2px rgba(168, 248, 200, .9), 0 0 10px rgba(61, 220, 111, .7),
               0 0 26px rgba(122, 47, 208, .75), 0 0 52px rgba(122, 47, 208, .45);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(900px 600px at 85% -10%, rgba(122, 47, 208, .22), transparent 60%),
    radial-gradient(700px 500px at -10% 30%, rgba(61, 220, 111, .08), transparent 60%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
p { margin: 0 0 1em; }
h1, h2 { margin: 0; line-height: 1.1; letter-spacing: -0.02em; text-wrap: balance; }

a { color: var(--green-bright); }
:focus-visible { outline: 3px solid var(--green-bright); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 10;
  padding: .6rem 1rem; background: var(--green-bright); color: #04110a;
  font-weight: 700; border-radius: 8px; text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.container--center { text-align: center; }

/* ---------- Wordmark (HTML text with neon glow) ---------- */
.wordmark {
  margin: 0;
  font-weight: 800;
  font-size: 2.25rem;
  letter-spacing: .14em;
  line-height: 1;
  color: #06140c;
  -webkit-text-stroke: 1.5px var(--green-core);
  text-shadow: var(--glow-text);
}
@supports not (-webkit-text-stroke: 1px black) {
  .wordmark { color: var(--green-bright); }
}
.wordmark--sm { font-size: 1.5rem; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-areas: "head" "media" "body";
  gap: 1.75rem;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  padding: 2.25rem 0 3.5rem;
}
.hero__head { grid-area: head; }
.hero__media { grid-area: media; }
.hero__body { grid-area: body; }

.hero__title {
  margin-top: 1.1rem;
  font-size: clamp(2.6rem, 11vw, 4.75rem);
  font-weight: 800;
  background: linear-gradient(95deg, #fff 10%, var(--green-core) 55%, var(--purple-bright) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero__sub {
  margin: 1rem 0 0;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--text);
  max-width: 34ch;
}
.hero__message { color: var(--muted); max-width: 60ch; }

.hero__media {
  position: relative;
  margin: 0 -1.25rem;          /* bleed to screen edges on mobile only */
  overflow: hidden;
}
.hero__media img {
  width: 100%;
  aspect-ratio: 1052 / 1498;
  object-fit: cover;
}
/* dark gradient + faint neon tint over the photo */
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(7, 6, 11, .6) 0%, transparent 14%, transparent 88%, var(--bg) 100%),
    linear-gradient(to right, rgba(122, 47, 208, .18), transparent 40%, transparent 60%, rgba(61, 220, 111, .10));
}

/* ---------- Buttons ---------- */
.actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.5rem; }
.actions--center { justify-content: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: .8rem 1.5rem;
  border-radius: 999px;
  font-weight: 700; font-size: 1rem; letter-spacing: .01em;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease;
}
.btn--primary {
  color: #04110a;
  background: var(--green-bright);
  box-shadow: var(--glow-green);
}
.btn--primary:hover { background: var(--green-core); box-shadow: 0 0 10px rgba(92,245,154,.7), 0 0 34px rgba(61,220,111,.45); }
.btn--ghost {
  color: var(--text);
  border: 1.5px solid rgba(181, 124, 255, .7);
  box-shadow: inset 0 0 14px rgba(122, 47, 208, .25), 0 0 16px rgba(122, 47, 208, .25);
}
.btn--ghost:hover { border-color: var(--purple-bright); background: rgba(122, 47, 208, .18); }
.btn:active { transform: translateY(1px); }
@media (max-width: 420px) { .hero .btn { flex: 1 1 auto; } }

/* ---------- Content sections ---------- */
.section { padding: 4.5rem 0; position: relative; }
.section--alt { background: linear-gradient(180deg, transparent, rgba(19, 16, 28, .75) 12%, rgba(19, 16, 28, .75) 88%, transparent); }
/* thin signal line above each section */
.section:not(.cta)::before {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(100% - 2.5rem, var(--max)); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(92, 245, 154, .45), rgba(181, 124, 255, .45), transparent);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  margin-bottom: 1rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--green-bright);
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: currentColor; box-shadow: 0 0 10px currentColor;
}
.eyebrow--purple { color: var(--purple-bright); }

.section h2, .cta h2 {
  font-size: clamp(2rem, 7.5vw, 3.4rem);
  font-weight: 800;
  max-width: 20ch;
  margin-bottom: 1.5rem;
}
.prose { max-width: 62ch; color: var(--muted); }
.prose--center { margin-inline: auto; }
.prose .emph { color: var(--text); font-weight: 600; }
.kicker {
  margin-top: 1.5rem;
  font-size: 1.6rem; font-weight: 800; letter-spacing: -.01em;
  color: var(--green-bright);
  text-shadow: 0 0 18px rgba(61, 220, 111, .45);
}
.callout {
  margin-top: .5rem;
  padding: 1.1rem 1.25rem;
  border-left: 3px solid var(--green-bright);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: linear-gradient(90deg, rgba(61, 220, 111, .12), rgba(122, 47, 208, .06) 70%, transparent);
  font-size: 1.3rem; line-height: 1.4; font-weight: 700;
  color: var(--text);
}
.pair { margin-top: 1.5rem; font-size: 1.45rem; line-height: 1.35; font-weight: 700; color: var(--text); }
.pair span { display: block; }
.pair__hl { color: var(--purple-bright); text-shadow: 0 0 20px rgba(122, 47, 208, .6); }

/* ---------- Brand statement ---------- */
.statement {
  padding: 5rem 0 5.5rem;
  background:
    radial-gradient(60% 55% at 50% 45%, rgba(122, 47, 208, .22), transparent 70%),
    #000;
  border-block: 1px solid rgba(181, 124, 255, .18);
}
.statement__logo { width: min(88vw, 640px); margin: 0 auto; mix-blend-mode: screen; } /* logo bg is black: blend it into the glow */
.statement__line {
  margin: .5rem 0 1.25rem;
  font-size: clamp(2.2rem, 10vw, 4.5rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -.02em;
  color: #fff;
  text-shadow: 0 0 24px rgba(122, 47, 208, .55);
}
.statement__support { max-width: 46ch; margin: 0 auto; font-size: 1.15rem; color: var(--muted); }

/* ---------- CTA ---------- */
.cta { padding: 5rem 0; }
.cta h2 { margin-inline: auto; }

/* ---------- Footer ---------- */
.footer { padding: 3rem 0 3.5rem; border-top: 1px solid rgba(255, 255, 255, .07); background: #050408; }
.footer__inner { display: grid; gap: .5rem; }
.footer__tag { margin: .75rem 0 0; font-weight: 700; color: var(--text); }
.footer__desc { margin: 0; color: var(--muted); font-size: .95rem; }

/* ---------- Larger screens ---------- */
@media (min-width: 720px) {
  .section { padding: 6rem 0; }
  .wordmark { font-size: 2.75rem; }
  .hero__media { margin: 0; border-radius: var(--radius); }
}

@media (min-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
    grid-template-areas: "head media" "body media";
    grid-template-rows: auto 1fr;
    column-gap: clamp(3rem, 6vw, 6rem);
    row-gap: 0;
    align-items: start;
    padding: 4.5rem 0 5.5rem;
  }
  .hero__head { align-self: end; }
  .hero__sub { font-size: 1.3rem; }
  .hero__body { padding-top: 1.5rem; }
  .hero__media {
    max-width: 460px;
    border: 1px solid rgba(181, 124, 255, .35);
    box-shadow: 0 0 0 1px rgba(92, 245, 154, .08), 0 0 60px rgba(122, 47, 208, .35), 0 0 120px rgba(61, 220, 111, .08);
  }
  .hero__media img { aspect-ratio: 1052 / 1498; object-position: 50% 50%; }
  .hero__media::after {
    background:
      linear-gradient(to bottom, transparent 65%, rgba(7, 6, 11, .75) 100%),
      linear-gradient(to right, rgba(122, 47, 208, .16), transparent 45%);
  }

  /* two-column section layout: heading left, body right */
  .section .container {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    column-gap: 4rem;
    align-items: start;
  }
  .section .eyebrow { grid-column: 1 / -1; justify-self: start; }
  .section h2 { grid-column: 1; margin-bottom: 0; }
  .section .prose { grid-column: 2; font-size: 1.125rem; }
  .cta .container { display: block; }
  .cta h2 { margin-bottom: 1.5rem; }

  .footer__inner { grid-template-columns: auto 1fr; align-items: center; column-gap: 2rem; }
  .footer__inner .wordmark { grid-row: 1 / span 2; }
  .footer__tag { margin: 0; }
}
