/* wearemighty — production styles
   ---------------------------------------------------------------- */

:root {
  --bg: #FFFFFF;
  --ink: #0D0D0D;
  --ink-soft: #6B7280;
  --ink-softer: #9CA3AF;
  --rule: #E5E7EB;
  --card: #F5F5F7;
  --card-border: #EEEEF1;
  --accent: #EC008C;
  --accent-deep: #C2007A;
  --pink-mist: #FFE9F4;

  --sans: 'Geist', system-ui, -apple-system, sans-serif;
  --mono: 'Geist Mono', ui-monospace, SFMono-Regular, monospace;

  --r-card: 24px;
  --r-pill: 999px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ── Mist gradients ──────────────────────────────────────────── */
.mist { position: absolute; pointer-events: none; z-index: 0; }
.mist--top {
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1400px; height: 600px;
  background: radial-gradient(ellipse at top, var(--pink-mist), transparent 60%);
}
.mist--left { top: 0; left: 0; width: 500px; height: 400px;
  background: radial-gradient(ellipse, var(--pink-mist), transparent 70%); }
.mist--center { top: 80px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, var(--pink-mist), transparent 70%); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 14px; line-height: 1;
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer; border: none; font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn--pink {
  background: var(--accent); color: #fff;
  box-shadow: 0 0 0 8px rgba(236,0,140,0.10), 0 12px 30px -8px rgba(236,0,140,0.4);
}
.btn--pink:hover { box-shadow: 0 0 0 10px rgba(236,0,140,0.14), 0 16px 36px -8px rgba(236,0,140,0.5); }
.btn--pink-outline {
  background: #fff; color: var(--accent);
  border: 1.5px solid var(--accent); padding: 10px 22px;
}
.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn--sm { padding: 8px 16px; font-size: 12px; font-weight: 700; }

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 0; flex: 1 1 auto; }
.brand__mark { height: 36px; width: auto; flex-shrink: 0; }
.brand__name { font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.nav__links { display: flex; gap: 32px; font-size: 14px; font-weight: 500; align-items: center; }
.nav__links a:not(.nav__links-cta) { color: var(--ink); }
.nav__links a:not(.nav__links-cta):hover { color: var(--accent); }
.nav__links .nav__links-cta { display: none !important; }
.nav__menu { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--ink); flex-shrink: 0; margin-left: auto; }
.nav .nav__cta.btn { flex-shrink: 0; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  padding: 100px 32px 80px;
  max-width: 1100px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero__title {
  font-weight: 800;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 0;
  text-wrap: balance;
}
.hero__lede {
  margin-top: 36px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 760px;
  margin-inline: auto;
}
.hero__lede strong { color: var(--ink); font-weight: 600; }
.hero__cta { margin-top: 48px; display: flex; justify-content: center; }

/* Hero video */
.hero-video {
  margin-top: 80px;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--r-card);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.18);
  overflow: hidden;
  text-align: left;
}
.hero-video__chrome {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--card-border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot--red { background: #FF5F57; }
.dot--yellow { background: #FFBD2E; }
.dot--green { background: #28C940; }
.hero-video__url {
  flex: 1; text-align: center;
  font-family: var(--mono); font-size: 12px; color: var(--ink-soft);
}
.hero-video__body {
  position: relative;
  background: #0D0D0D;
  aspect-ratio: 16 / 9;
}
.hero-video__body video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── TRUST ───────────────────────────────────────────────────── */
.trust { padding: 60px 32px; position: relative; z-index: 1; }
.trust__label { text-align: center; font-size: 13px; color: var(--ink-soft); font-weight: 500; margin-bottom: 32px; }
.trust__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
}
.trust__logo {
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(245,245,247,0.72);
  border: 1px solid var(--card-border);
  color: var(--ink);
  transition: color .15s ease, border-color .15s ease, transform .15s ease;
}
.trust__logo:hover {
  color: var(--accent);
  border-color: rgba(236,0,140,0.28);
  transform: translateY(-1px);
}
.trust__logo img {
  max-width: 150px;
  max-height: 54px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ── SECTIONS ────────────────────────────────────────────────── */
.section { padding: 140px 32px; position: relative; }
.section--centered { text-align: center; }
.section--narrow { max-width: 1100px; }
.section__title {
  font-weight: 800;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1; letter-spacing: -0.035em;
  margin: 0;
}
.section__title--sm { font-size: clamp(36px, 5vw, 72px); }
.section__lede {
  margin-top: 28px; font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55; color: var(--ink-soft);
  max-width: 760px; margin-inline: auto;
}
.section__cta { margin-top: 32px; display: flex; justify-content: center; }

/* ── CARDS ───────────────────────────────────────────────────── */
.card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--r-card); padding: 28px;
}

/* ── STEPS ───────────────────────────────────────────────────── */
.steps {
  margin-top: 64px;
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  text-align: left;
}
.step { display: flex; flex-direction: column; gap: 20px; padding: 24px; min-height: 460px; }
.step__n { font-weight: 700; font-size: 14px; color: var(--ink-soft); }
.step__visual { flex: 1; min-height: 220px; position: relative; }
.step__title { font-weight: 700; font-size: 17px; line-height: 1.3; }
.step__desc { font-size: 14px; line-height: 1.55; color: var(--ink-soft); }

/* Step visuals */
.visual--input { position: relative; width: 100%; height: 100%; }
.vi__mist { position: absolute; inset: 20px; background: var(--pink-mist); border-radius: 18px; }
.vi__bar {
  position: absolute; left: 8px; right: 8px; top: 60px;
  background: #fff; border: 1.5px solid var(--accent);
  border-radius: 14px; padding: 10px 12px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.12);
}
.vi__url { flex: 1; font-family: var(--mono); font-size: 13px; }
.vi__attach { width: 22px; height: 22px; border-radius: 6px; background: var(--card); display: grid; place-items: center; font-size: 11px; }
.vi__send { width: 28px; height: 28px; border-radius: 8px; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 14px; }

.chip {
  position: absolute; padding: 5px 10px; border-radius: var(--r-pill);
  font-size: 10px; font-weight: 600; white-space: nowrap;
}
.chip--dark { background: var(--ink); color: #fff; }
.chip--light { background: #fff; color: var(--ink); border: 1px solid var(--card-border); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.chip--tl { left: 4px; top: 14px; }
.chip--mr { right: 8px; bottom: 50px; }
.chip--bl { left: 24px; bottom: 8px; }

.visual--brief { position: relative; width: 100%; height: 100%; display: grid; place-items: center; }
.vb__card { width: 110px; height: 110px; border-radius: 18px; background: linear-gradient(180deg, var(--pink-mist), #fff); display: grid; place-items: center; border: 1px solid var(--card-border); }
.vb__icon { width: 36px; height: 36px; border-radius: 10px; background: #fff; border: 1px solid var(--card-border); display: grid; place-items: center; }
.vb__bubble { position: absolute; left: 8px; bottom: 16px; padding: 10px 14px; border-radius: 12px; background: #fff; border: 1px solid var(--card-border); font-size: 12px; font-weight: 500; max-width: 180px; line-height: 1.35; box-shadow: 0 6px 18px rgba(0,0,0,0.08); }

.visual--refine { position: relative; width: 100%; height: 100%; }
.vr__canvas { position: absolute; inset: 20px; background: #fff; border: 1px solid var(--card-border); border-radius: 18px; }
.vr__bubble { position: absolute; left: 14px; top: 14px; padding: 8px 14px; border-radius: 12px; background: #fff; border: 1px solid var(--card-border); font-size: 12px; font-weight: 500; box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
.vr__hit { position: absolute; left: 30px; right: 30px; bottom: 40px; height: 70px; border-radius: 12px; background: var(--pink-mist); display: grid; place-items: center; }

.visual--channels { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; padding: 6px; align-content: center; height: 100%; }
.visual--channels span {
  aspect-ratio: 1/1; border-radius: 12px;
  background: linear-gradient(135deg, rgba(236,0,140,0.87), rgba(236,0,140,0.67));
  display: grid; place-items: center;
  color: #fff; font-size: 16px; font-weight: 700;
  box-shadow: 0 4px 12px rgba(236,0,140,0.2);
}

/* ── GALLERY (Yes this is AI) ────────────────────────────────── */
.gallery { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery__card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--r-card); padding: 12px; }
.gallery__img { aspect-ratio: 1/1; border-radius: 16px; position: relative; overflow: hidden; background: #0D0D0D; }
.gallery__img video,
.gallery__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__label {
  position: absolute; left: 14px; bottom: 14px; z-index: 1;
  font-family: var(--mono); font-size: 11px; color: #fff;
  font-weight: 500; background: rgba(0,0,0,0.3); padding: 4px 10px;
  border-radius: var(--r-pill); backdrop-filter: blur(4px);
}

/* ── STATS ───────────────────────────────────────────────────── */
.stats { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { text-align: left; padding: 32px; }
.stat__n { font-weight: 800; font-size: 64px; line-height: 1; letter-spacing: -0.04em; color: var(--accent); }
.stat__l { font-size: 13px; color: var(--ink-soft); margin-top: 14px; font-weight: 500; }

/* ── TEAM ────────────────────────────────────────────────────── */
.team { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.team__member { display: flex; flex-direction: column; gap: 14px; padding: 16px; color: var(--ink); }
.team__member:hover { transform: translateY(-2px); transition: transform .15s ease; }
.team__photo {
  aspect-ratio: 1/1; border-radius: 16px;
  background: linear-gradient(135deg, var(--pink-mist), #fff);
  display: block;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--card-border);
}
.team__meta { padding: 0 8px 8px; text-align: left; }
.team__name { font-weight: 700; font-size: 17px; }
.team__role { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.team__link { font-size: 13px; color: var(--accent); font-weight: 600; margin-top: 10px; }

/* ── PRESS ───────────────────────────────────────────────────── */
.press { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.press__logo {
  padding: 40px 16px;
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 110px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  transition: border-color .15s ease, transform .15s ease;
}
.press__logo:hover {
  border-color: rgba(236,0,140,0.28);
  transform: translateY(-2px);
}
.press__logo small {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

/* ── JOBS ────────────────────────────────────────────────────── */
.jobs { margin-top: 48px; padding: 8px; text-align: left; }
.gohire-jobs-wrap { padding: 24px; }
.gohire-jobs-wrap gohire-jobs { display: block; width: 100%; }
.job {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid var(--card-border);
  border-radius: 18px;
  transition: background .15s ease;
}
.job:last-child { border-bottom: none; }
.job:hover { background: rgba(236,0,140,0.04); }
.job__title { font-size: 16px; font-weight: 700; }
.job__meta { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.job__arrow { color: var(--accent); font-size: 18px; font-weight: 700; }

/* ── CTA ─────────────────────────────────────────────────────── */
.cta { padding-bottom: 60px; }
.cta__title { position: relative; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--rule); padding: 60px 32px 36px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer__about { margin-top: 16px; font-size: 14px; color: var(--ink-soft); max-width: 320px; }
.footer__about strong { color: var(--accent); font-weight: 600; }
.footer__h { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.footer__grid > div > a { display: block; color: var(--ink-soft); font-size: 14px; margin-bottom: 10px; }
.footer__grid > div > a:hover { color: var(--accent); }
.footer__base { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-softer); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(2, 1fr); }
  .press { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .trust__row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }
  .nav__links { display: none; }
  .nav__menu { display: block; grid-column: 2; }
  .nav .nav__cta.btn { display: none; }
  .brand { grid-column: 1; min-width: 0; max-width: 100%; }
  .brand__name { font-size: 18px; }
  .brand__mark { height: 32px; }
  .nav__links.is-open .nav__links-cta { display: inline-flex !important; }

  /* Mobile nav drawer */
  .nav__links.is-open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 24px 20px; gap: 16px;
    border-bottom: 1px solid var(--rule);
    align-items: flex-start;
    z-index: 40;
  }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .hero { padding: 60px 20px 60px; }
  .section { padding: 80px 20px; }
  .steps { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr; }
  .press { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; gap: 8px; }
  .trust__row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .trust__logo { min-height: 74px; padding: 14px 12px; }
}
