/* ============================================================
   BRUTALLY YOURS — Main Stylesheet v2.0
   brutallyyours.com
   Brand Book v2.0: Black/Purple/Violet system
   ============================================================ */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { max-width: 100%; display: block; }
button { cursor: pointer; }

/* --- Variables (v2.0 palette) --- */
:root {
  --black:        #0A0A0F;
  --purple:       #6B5B8E;
  --violet:       #3D3158;
  --off-white:    #F4F2F9;
  --purple-light: #9B8BBE;
  --purple-pale:  #EAE6F4;
  --chalk:        #DDDAE8;
  --mist:         #8A87A0;

  --black-soft:   #131318;
  --black-raised: #1C1B24;
  --purple-dark:  #5A4A7A;
  --purple-faint: rgba(107,91,142,0.08);
  --purple-glow:  rgba(107,91,142,0.15);
  --border:       1px solid rgba(244,242,249,0.1);
  --border-light: 1px solid rgba(10,10,15,0.12);

  --font-display:  'Roboto Slab', Georgia, serif;
  --font-editorial:'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --font-mono:     'DM Mono', monospace;

  --sp1: 8px;  --sp2: 16px; --sp3: 24px;  --sp4: 32px;
  --sp5: 40px; --sp6: 48px; --sp8: 64px;  --sp10: 80px;
  --sp12: 96px; --sp16: 128px;

  --max-w: 1160px;
}

/* --- Base --- */
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* H1: Roboto Slab (authority, weight) */
h1 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

/* H2, H3: Playfair Display Italic (editorial, warmth under directness) */
h2 {
  font-family: var(--font-editorial);
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

h3 {
  font-family: var(--font-editorial);
  font-weight: 700;
  font-style: italic;
  line-height: 1.25;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

h4 {
  font-family: var(--font-editorial);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
}

p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--mist);
}

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

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp4);
}
.section { padding: var(--sp16) 0; }

/* --- Navigation --- */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 20px 0;
  background: rgba(10,10,15,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: var(--border);
  transition: padding 0.3s ease;
}
.nav.scrolled { padding: 14px 0; }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo: Roboto Slab, all-caps, "YOURS." in purple-light */
.nav__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--off-white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav__logo span { color: var(--purple-light); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--sp5);
  list-style: none;
}
.nav__menu a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  transition: color 0.2s;
}
.nav__menu a:hover { color: var(--off-white); }
.nav__cta {
  color: var(--off-white) !important;
  background: var(--purple);
  padding: 9px 20px;
  transition: background 0.2s !important;
}
.nav__cta:hover { background: var(--purple-dark) !important; color: var(--off-white) !important; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--off-white);
  transition: all 0.3s;
}

/* --- Buttons (DM Mono, all-caps, square edges, 0.14em tracking) --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 0;
  border: none;
  transition: all 0.2s ease;
  cursor: pointer;
  line-height: 1;
}
.btn--primary { background: var(--purple); color: var(--off-white); }
.btn--primary:hover { background: var(--purple-dark); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(244,242,249,0.2);
}
.btn--ghost:hover { border-color: rgba(244,242,249,0.5); }
.btn--dark { background: var(--black); color: var(--off-white); }
.btn--dark:hover { background: var(--black-soft); }

/* --- Eyebrows / Labels --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp2);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: var(--sp3);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--purple-light);
  flex-shrink: 0;
}
.eyebrow--dark { color: var(--purple); }
.eyebrow--dark::before { background: var(--purple); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding-top: 88px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 40%, rgba(107,91,142,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 70% at 15% 75%, rgba(61,49,88,0.5) 0%, transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: var(--sp8) 0;
}
.hero__headline {
  color: var(--off-white);
  margin-bottom: var(--sp4);
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero__headline em {
  font-style: italic;
  color: var(--purple-light);
}
.hero__subhead {
  font-size: 1.125rem;
  color: var(--mist);
  max-width: 560px;
  margin-bottom: var(--sp6);
  line-height: 1.7;
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero__pills {
  display: flex;
  align-items: center;
  gap: var(--sp2);
  flex-wrap: wrap;
  margin-bottom: var(--sp5);
  animation: fadeUp 0.7s ease 0.25s both;
}
.pill {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  border: 1px solid rgba(244,242,249,0.12);
  padding: 5px 12px;
}
.pill--purple {
  color: var(--purple-light);
  border-color: rgba(107,91,142,0.4);
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp3);
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.3s both;
}
.hero__deco {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 240px;
  background: linear-gradient(to bottom, transparent, rgba(107,91,142,0.4), transparent);
  animation: fadeUp 1.2s ease 0.5s both;
}
.hero__deco::before, .hero__deco::after {
  content: '';
  position: absolute;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0.5;
}
.hero__deco::before { top: 0; }
.hero__deco::after { bottom: 0; }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem {
  background: var(--off-white);
  padding: var(--sp16) 0;
}
.problem__headline { color: var(--black); max-width: 680px; margin-bottom: var(--sp5); }
.problem__body { max-width: 620px; }
.problem__body p { color: #3a3844; }
.problem__body p + p { margin-top: var(--sp3); }
.problem__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp3);
  margin-top: var(--sp8);
  padding-top: var(--sp8);
  border-top: var(--border-light);
}
.pillar__icon {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
  margin-bottom: var(--sp2);
}
.pillar__title {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 6px;
}
.pillar__desc { font-size: 0.875rem; color: #5a5868; line-height: 1.65; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services { background: var(--black); padding: var(--sp16) 0; }
.services__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp6);
  margin-bottom: var(--sp8);
}
.services__headline { color: var(--off-white); max-width: 440px; }
.services__intro-text {
  font-size: 0.9375rem;
  color: var(--mist);
  max-width: 340px;
  line-height: 1.7;
  text-align: right;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(244,242,249,0.07);
  border: 1px solid rgba(244,242,249,0.07);
}
.service-card {
  display: block;
  background: var(--black);
  padding: var(--sp5) var(--sp6);
  position: relative;
  transition: background 0.25s;
}
.service-card:hover { background: var(--black-raised); }
.service-card:hover .service-card__arrow { transform: translate(3px, -3px); }
.service-card__num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(244,242,249,0.18);
  margin-bottom: var(--sp2);
}
.service-card__tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  display: block;
  margin-bottom: 8px;
}
.service-card__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--off-white);
  line-height: 1.15;
  margin-bottom: var(--sp2);
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--mist);
  line-height: 1.65;
  margin-bottom: var(--sp4);
}
.service-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  transition: transform 0.2s ease;
}

/* ============================================================
   OPERATORS SECTION
   ============================================================ */
.operators { background: var(--violet); padding: var(--sp16) 0; }
.operators__intro { max-width: 580px; margin-bottom: var(--sp10); }
.operators__intro h2 { color: var(--off-white); margin-bottom: var(--sp3); }
.operators__intro p { color: rgba(244,242,249,0.65); }
.operators__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp4);
}
.op-card {
  background: rgba(244,242,249,0.04);
  border: var(--border);
  padding: var(--sp5);
}
.op-card__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--off-white);
  margin-bottom: 4px;
}
.op-card__role {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: var(--sp3);
  display: block;
}
.op-card__bio { font-size: 0.9375rem; color: rgba(244,242,249,0.6); line-height: 1.7; margin-bottom: var(--sp3); }
.op-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(244,242,249,0.12);
  color: rgba(244,242,249,0.4);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--off-white); padding: var(--sp16) 0; }
.how__headline { color: var(--black); max-width: 480px; margin-bottom: var(--sp10); }
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp6);
}
.step__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 5rem;
  color: rgba(107,91,142,0.15);
  line-height: 1;
  margin-bottom: var(--sp2);
}
.step__title {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: var(--sp2);
}
.step__desc { font-size: 0.9375rem; color: #3a3844; line-height: 1.7; }

/* ============================================================
   PLAYBOOKS TEASER
   ============================================================ */
.pb-teaser {
  background: var(--black-soft);
  padding: var(--sp16) 0;
  border-top: var(--border);
}
.pb-teaser__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp4);
  margin-bottom: var(--sp8);
}
.pb-teaser__headline { color: var(--off-white); max-width: 380px; }
.pb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp3);
}
.pb-card {
  background: var(--purple-faint);
  border: var(--border);
  padding: var(--sp4);
  transition: border-color 0.2s;
}
.pb-card:hover { border-color: rgba(244,242,249,0.22); }
.pb-card__service {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: var(--sp2);
}
.pb-card__title {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--off-white);
  line-height: 1.4;
  margin-bottom: var(--sp3);
}
.pb-card__status {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,242,249,0.25);
}

/* ============================================================
   CONTACT / FORM — Purple CTA block
   ============================================================ */
.contact { background: var(--purple); padding: var(--sp16) 0; }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--sp12);
  align-items: start;
}
.contact__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp2);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,242,249,0.55);
  margin-bottom: var(--sp3);
}
.contact__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(244,242,249,0.35);
}
.contact__headline { color: var(--off-white); margin-bottom: var(--sp3); }
.contact__subhead {
  font-size: 1rem;
  color: rgba(244,242,249,0.75);
  line-height: 1.75;
  margin-bottom: var(--sp3);
}
.contact__sig {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.3rem;
  color: rgba(244,242,249,0.45);
  padding-top: var(--sp5);
  border-top: 1px solid rgba(244,242,249,0.15);
}
.form {
  display: flex;
  flex-direction: column;
  gap: var(--sp3);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp3);
}
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,242,249,0.5);
}
.form__input,
.form__select,
.form__textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  background: rgba(244,242,249,0.08);
  border: 1px solid rgba(244,242,249,0.18);
  color: var(--off-white);
  padding: 12px 16px;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form__input::placeholder,
.form__textarea::placeholder { color: rgba(244,242,249,0.3); }
.form__input:focus,
.form__select:focus,
.form__textarea:focus { border-color: rgba(244,242,249,0.5); }
.form__select option { background: var(--black); color: var(--off-white); }
.form__textarea { resize: vertical; min-height: 110px; }
.form__submit {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.form__submit:hover { background: var(--black-soft); }
.form__note {
  font-size: 0.8rem;
  color: rgba(244,242,249,0.35);
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: var(--border);
  padding: var(--sp10) 0 var(--sp5);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp8);
  padding-bottom: var(--sp6);
  border-bottom: var(--border);
  margin-bottom: var(--sp4);
}
.footer__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: var(--sp2);
}
.footer__name span { color: var(--purple-light); }
.footer__tagline {
  font-size: 0.875rem;
  color: rgba(244,242,249,0.3);
  line-height: 1.6;
  max-width: 260px;
}
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,242,249,0.3);
  margin-bottom: var(--sp3);
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(244,242,249,0.45);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--off-white); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(244,242,249,0.18);
  letter-spacing: 0.04em;
}
.footer__sig {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(244,242,249,0.18);
}
.footer__sig span { color: rgba(107,91,142,0.5); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 140px 0 var(--sp10);
  background: var(--black);
  border-bottom: var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(107,91,142,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__headline { color: var(--off-white); max-width: 640px; margin-bottom: var(--sp3); }
.page-hero__subhead {
  color: var(--mist);
  max-width: 560px;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-page { background: var(--black); padding: var(--sp16) 0; }
.services-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(244,242,249,0.07);
  border: 1px solid rgba(244,242,249,0.07);
  margin-bottom: var(--sp8);
}
.service-item {
  background: var(--black);
  padding: var(--sp6);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp6);
  transition: background 0.2s;
}
.service-item:hover { background: var(--black-raised); }
.service-item__num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: rgba(244,242,249,0.18);
  margin-bottom: var(--sp1);
}
.service-item__tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  display: block;
  margin-bottom: 10px;
}
.service-item__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--off-white);
  line-height: 1.1;
  margin-bottom: var(--sp4);
}
.service-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  transition: gap 0.2s;
}
.service-item:hover .service-item__cta { gap: 10px; }
.service-item__desc {
  font-size: 1rem;
  color: var(--mist);
  line-height: 1.75;
  margin-bottom: var(--sp4);
}
.service-item__gets-title {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,242,249,0.3);
  margin-bottom: var(--sp2);
}
.service-item__gets ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-item__gets li {
  font-size: 0.9rem;
  color: rgba(244,242,249,0.5);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.service-item__gets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 1px;
  background: var(--purple-light);
  opacity: 0.5;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-section { background: var(--black); padding: var(--sp16) 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp4);
  margin-bottom: var(--sp10);
}
.about-card {
  border: var(--border);
  padding: var(--sp5);
}
.about-card--rohit { background: var(--purple-faint); }
.about-card--aamanat { background: rgba(107,91,142,0.06); border-color: rgba(107,91,142,0.25); }
.about-card__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--off-white);
  margin-bottom: 4px;
}
.about-card__role {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  display: block;
  margin-bottom: var(--sp3);
}
.about-card__bio { font-size: 0.9375rem; color: rgba(244,242,249,0.6); line-height: 1.75; margin-bottom: var(--sp3); }
.about-lead { max-width: 680px; margin-bottom: var(--sp10); }
.about-lead h2 { color: var(--off-white); margin-bottom: var(--sp4); }
.about-lead p { margin-bottom: var(--sp3); }
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp4);
  padding-top: var(--sp8);
  border-top: var(--border);
}
.value__title {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--off-white);
  margin-bottom: var(--sp2);
}
.value__desc { font-size: 0.9rem; color: var(--mist); line-height: 1.7; }

/* ============================================================
   PULL QUOTE / STAT BLOCKS
   ============================================================ */
.quote-block {
  border-left: 3px solid var(--purple);
  padding: var(--sp3) var(--sp4);
  background: var(--purple-faint);
}
.quote-block__text {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--off-white);
  line-height: 1.55;
  margin-bottom: var(--sp2);
}
.quote-block__attr {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
}

/* ============================================================
   SERVICE DETAIL PAGES
   ============================================================ */
.svc-section { padding: var(--sp12) 0; }
.svc-section--dark { background: var(--black); }
.svc-section--light { background: var(--off-white); }
.svc-section--violet { background: var(--violet); }

.svc-opener { max-width: 720px; margin-bottom: var(--sp8); }
.svc-opener__challenge {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: var(--off-white);
  line-height: 1.55;
  margin-bottom: var(--sp4);
  padding-left: var(--sp4);
  border-left: 3px solid var(--purple);
}
.svc-opener__body p { color: var(--mist); margin-bottom: var(--sp3); }

.gets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp3);
}
.gets-card {
  padding: var(--sp4);
  border: var(--border-light);
  background: rgba(10,10,15,0.03);
}
.gets-card__num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: var(--sp2);
  display: block;
}
.gets-card__title {
  font-family: var(--font-editorial);
  font-weight: 700;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--black);
  margin-bottom: 8px;
}
.gets-card__desc { font-size: 0.875rem; color: #3a3844; line-height: 1.65; }

.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp4);
}
.for-card { padding: var(--sp4); border: var(--border); }
.for-card--yes { background: var(--purple-faint); border-color: rgba(107,91,142,0.2); }
.for-card--no { background: rgba(244,242,249,0.02); }
.for-card__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp3);
  display: block;
}
.for-card--yes .for-card__label { color: var(--purple-light); }
.for-card--no .for-card__label { color: var(--mist); }
.for-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.for-card li {
  font-size: 0.9rem;
  color: var(--mist);
  line-height: 1.6;
  padding-left: 22px;
  position: relative;
}
.for-card--yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple-light);
  font-size: 0.75rem;
}
.for-card--no li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--mist);
  font-size: 0.75rem;
  opacity: 0.5;
}

.how-svc { background: var(--off-white); padding: var(--sp12) 0; }
.how-svc h2 { color: var(--black); margin-bottom: var(--sp8); max-width: 480px; }

.price-block {
  display: flex;
  align-items: flex-start;
  gap: var(--sp8);
  padding: var(--sp6);
  border: var(--border);
  background: rgba(244,242,249,0.04);
}
.price-left { flex-shrink: 0; }
.price-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--off-white);
  line-height: 1;
}
.price-note {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-top: 6px;
  display: block;
}
.price-includes { list-style: none; margin-top: 0; }
.price-includes li {
  font-size: 0.9rem;
  color: rgba(244,242,249,0.6);
  line-height: 1.65;
  padding-left: 18px;
  position: relative;
  margin-bottom: 10px;
}
.price-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 1px;
  background: var(--purple-light);
}
.price-staged {
  margin-top: var(--sp4);
  padding-top: var(--sp4);
  border-top: var(--border);
  display: flex;
  gap: var(--sp4);
  flex-wrap: wrap;
}
.price-stage__label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,242,249,0.3);
  display: block;
  margin-bottom: 4px;
}
.price-stage__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: rgba(244,242,249,0.4);
}

.svc-pb-teaser {
  background: var(--black-soft);
  padding: var(--sp10) 0;
  border-top: var(--border);
}
.svc-pb-card {
  border: var(--border);
  padding: var(--sp5);
  background: var(--purple-faint);
  max-width: 580px;
}
.svc-pb-card__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: var(--sp2);
  display: block;
}
.svc-pb-card__title {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--off-white);
  line-height: 1.4;
  margin-bottom: var(--sp3);
}
.svc-pb-card__status {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,242,249,0.25);
}

.svc-cta {
  background: var(--purple);
  padding: var(--sp12) 0;
  text-align: center;
}
.svc-cta h2 { color: var(--off-white); margin-bottom: var(--sp3); }
.svc-cta p { color: rgba(244,242,249,0.7); margin-bottom: var(--sp5); max-width: 480px; margin-left: auto; margin-right: auto; }

@media (max-width: 768px) {
  .gets-grid { grid-template-columns: 1fr; }
  .for-grid { grid-template-columns: 1fr; }
  .price-block { flex-direction: column; gap: var(--sp4); }
}

/* ============================================================
   PLAYBOOKS HUB
   ============================================================ */
.pb-hub { background: var(--black); padding: var(--sp16) 0; }
.pb-hub__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp3);
}
.pb-hub__card {
  background: var(--purple-faint);
  border: var(--border);
  padding: var(--sp5);
  transition: border-color 0.2s;
}
.pb-hub__card:hover { border-color: rgba(244,242,249,0.22); }
.pb-hub__num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(244,242,249,0.2);
  margin-bottom: var(--sp2);
  display: block;
}
.pb-hub__service {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: var(--sp2);
  display: block;
}
.pb-hub__title {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--off-white);
  line-height: 1.4;
  margin-bottom: var(--sp3);
}
.pb-hub__thesis {
  font-size: 0.875rem;
  color: var(--mist);
  line-height: 1.65;
  margin-bottom: var(--sp3);
}
.pb-hub__status {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,242,249,0.22);
}

@media (max-width: 768px) {
  .pb-hub__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .services__grid { grid-template-columns: 1fr; }
  .operators__grid { grid-template-columns: 1fr; }
  .how__steps { grid-template-columns: 1fr; gap: var(--sp5); }
  .pb-grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .problem__pillars { grid-template-columns: 1fr; }
  .services__header { flex-direction: column; align-items: flex-start; }
  .services__intro-text { text-align: left; }
  .pb-teaser__header { flex-direction: column; align-items: flex-start; }
  .service-item { grid-template-columns: 1fr; gap: var(--sp3); }
  .about-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --sp16: 72px; }
  .nav__menu { display: none; }
  .nav__menu.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: var(--black);
    padding: var(--sp4);
    border-bottom: var(--border);
    gap: var(--sp3);
  }
  .nav__toggle { display: flex; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--sp2); text-align: center; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__deco { display: none; }
}

/* ============================================================
   SERVICE DETAIL PAGES
   ============================================================ */

.svc-what { background: var(--black); padding: var(--sp16) 0; }
.svc-what__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp10);
  margin-bottom: var(--sp10);
}
.svc-block__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: var(--sp2);
  display: block;
}
.svc-block__headline {
  color: var(--off-white);
  margin-bottom: var(--sp3);
}
.svc-block__body {
  font-size: 0.9375rem;
  color: var(--mist);
  line-height: 1.75;
}
.svc-block__body p + p { margin-top: var(--sp2); }

.gets-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: var(--sp3); }
.gets-list li {
  font-size: 0.9375rem;
  color: var(--mist);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.gets-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background: var(--purple-light);
}
.gets-list li strong {
  font-weight: 500;
  color: var(--off-white);
  display: block;
  margin-bottom: 2px;
}

.svc-who { background: var(--violet); padding: var(--sp16) 0; }
.svc-who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp8);
}
.who-block__headline {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--off-white);
  margin-bottom: var(--sp4);
}
.who-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.who-list li {
  font-size: 0.9375rem;
  color: rgba(244,242,249,0.65);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.who-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background: var(--purple-light);
  opacity: 0.6;
}
.who-list--not li { color: rgba(244,242,249,0.4); }
.who-list--not li::before { background: var(--mist); opacity: 0.4; }

.svc-process { background: var(--black-soft); padding: var(--sp16) 0; border-top: var(--border); }
.svc-process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp4);
  margin-top: var(--sp8);
}
.process-step { border-top: 2px solid rgba(244,242,249,0.08); padding-top: var(--sp3); }
.process-step:first-child { border-color: var(--purple); }
.process-step__num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--purple-light);
  margin-bottom: var(--sp2);
}
.process-step__title {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--off-white);
  margin-bottom: var(--sp2);
}
.process-step__desc { font-size: 0.875rem; color: var(--mist); line-height: 1.65; }

.svc-pricing { background: var(--black); padding: var(--sp10) 0; border-top: var(--border); border-bottom: var(--border); }
.svc-pricing__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp6);
}
.svc-pricing__left { }
.svc-pricing__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: var(--sp1);
}
.svc-pricing__price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--off-white);
  line-height: 1;
  margin-bottom: var(--sp1);
}
.svc-pricing__note {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--mist);
}
.svc-pricing__right {
  text-align: right;
}
.svc-pricing__details {
  font-size: 0.875rem;
  color: var(--mist);
  line-height: 1.65;
  max-width: 360px;
  text-align: right;
}

.svc-cta { background: var(--purple); padding: var(--sp12) 0; text-align: center; }
.svc-cta h2 { color: var(--off-white); margin-bottom: var(--sp3); max-width: 600px; margin-left: auto; margin-right: auto; }
.svc-cta p { color: rgba(244,242,249,0.7); margin-bottom: var(--sp5); max-width: 480px; margin-left: auto; margin-right: auto; }

.svc-related { background: var(--black-soft); padding: var(--sp8) 0; border-top: var(--border); }
.svc-related__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp4); }
.svc-related__label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: var(--sp1);
}
.svc-related__title {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--off-white);
}
.svc-related__status {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,242,249,0.25);
  white-space: nowrap;
}

/* Playbooks page */
.pb-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp3);
}
.pb-full-card {
  background: var(--purple-faint);
  border: var(--border);
  padding: var(--sp5);
  transition: border-color 0.2s;
}
.pb-full-card:hover { border-color: rgba(244,242,249,0.2); }
.pb-full-card__num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(244,242,249,0.2);
  margin-bottom: var(--sp1);
}
.pb-full-card__service {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: var(--sp2);
}
.pb-full-card__title {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--off-white);
  line-height: 1.4;
  margin-bottom: var(--sp2);
}
.pb-full-card__thesis {
  font-size: 0.875rem;
  color: var(--mist);
  line-height: 1.65;
  margin-bottom: var(--sp3);
}
.pb-full-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pb-full-card__author {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
}
.pb-full-card__status {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,242,249,0.22);
}

@media (max-width: 960px) {
  .svc-what__grid { grid-template-columns: 1fr; gap: var(--sp6); }
  .svc-who__grid { grid-template-columns: 1fr; }
  .svc-process__steps { grid-template-columns: 1fr; }
  .svc-pricing__inner { flex-direction: column; align-items: flex-start; }
  .svc-pricing__right { text-align: left; }
  .svc-pricing__details { text-align: left; }
  .svc-related__inner { flex-direction: column; align-items: flex-start; }
  .pb-page-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HERO MONOGRAM DECORATION
   ============================================================ */
.hero__monogram {
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(18rem, 32vw, 42rem);
  color: var(--purple);
  opacity: 0.045;
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  z-index: 0;
}

/* ============================================================
   PROBLEM SECTION v2 — 2-COL LAYOUT WITH INFOGRAPHIC
   ============================================================ */
.problem__2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp10);
  align-items: start;
}
.problem__left { }
.problem__left h2 { color: var(--black); margin-bottom: var(--sp4); }
.problem__left h2 em {
  font-style: italic;
  color: var(--purple);
}
.problem__left p {
  color: #3a3844;
  font-size: 1.0625rem;
  line-height: 1.75;
}
.problem__left p + p { margin-top: var(--sp3); }

.problem__infographic {
  display: flex;
  flex-direction: column;
  border-left: 2px solid rgba(10,10,15,0.1);
  padding-left: var(--sp5);
}
.infographic-step {
  padding: var(--sp4) 0;
  border-bottom: 1px solid rgba(10,10,15,0.07);
  position: relative;
}
.infographic-step:first-child { padding-top: 0; }
.infographic-step:last-child { border-bottom: none; padding-bottom: 0; }
.infographic-step__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 6px;
  opacity: 0.65;
}
.infographic-step__title {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--black);
  margin-bottom: 6px;
}
.infographic-step__desc {
  font-size: 0.875rem;
  color: #5a5868;
  line-height: 1.65;
}

@media (max-width: 960px) {
  .problem__2col { grid-template-columns: 1fr; gap: var(--sp6); }
  .problem__infographic { border-left: none; border-top: 2px solid rgba(10,10,15,0.1); padding-left: 0; padding-top: var(--sp4); }
  .hero__monogram { display: none; }
}

/* ============================================================
   FORM SUCCESS / ERROR STATES
   ============================================================ */
.form__success {
  padding: var(--sp5) 0;
}
.form__success-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--off-white);
  margin-bottom: var(--sp2);
}
.form__success-body {
  font-size: 1rem;
  color: rgba(244,242,249,0.75);
  line-height: 1.7;
}
.form__error {
  font-size: 0.875rem;
  color: rgba(244,242,249,0.7);
  margin-top: var(--sp2);
  padding: var(--sp2) var(--sp3);
  border: 1px solid rgba(244,242,249,0.2);
  line-height: 1.5;
}
