/* 1. GLOBAL TOKENS + THEMES */

/* Base tokens + default theme */
:root{
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-lg: 0 22px 60px rgba(15,23,42,.8);
  --max: 1160px;

  --bg: #020617;
  --surface: #020617;
  --surface-soft: #020617;
  --text: #e5e7eb;
  --muted: rgba(209,213,219,.85);
  --border: rgba(148,163,184,.5);
  --brand: #22c55e;
  --brand-2: #16a34a;
  --accent-warm: #fb7185;
  --accent-soft: #fef3c7;
}

/* Theme: ocean (blue/violet) */
body[data-theme="ocean"]{
  --bg: #050816;
  --surface: #070b1f;
  --surface-soft: #0b1028;

  --text: #fdfcff;
  --muted: rgba(225,232,255,.82);
  --border: rgba(148,163,255,.35);

  --brand: #22d3ee;
  --brand-2: #a855f7;

  --accent-warm: #fb7185;
  --accent-soft: #fef3c7;
}

/* Theme: sand (warm yellow) */
body[data-theme="sand"]{
  --bg: #f6c534;
  --surface: #c98a0b;
  --surface-soft: #1f1a10;

  --text: #1f1305;
  --muted: rgba(64,40,10,.85);
  --border: rgba(245,222,179,.8);

  --brand: #f97316;
  --brand-2: #b45309;

  --accent-warm: #ea580c;
  --accent-soft: #fef3c7;
}

/* Theme: midnight (dark + orange) */
body[data-theme="midnight"]{
  --bg: #02010b;
  --surface: #050315;
  --surface-soft: #090720;

  --text: #e5e7eb;
  --muted: rgba(229,231,235,.78);
  --border: rgba(75,85,99,.6);

  --brand: #f97316;
  --brand-2: #a855f7;

  --accent-warm: #fb7185;
  --accent-soft: #fde68a;
}

/* 2. BASE STYLES */

*,
*::before,
*::after{
  box-sizing: border-box;
}

html,body{
  height: 100%;
}

body{
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1100px 700px at 10% 0%, rgba(34,211,238,.18), transparent 60%),
    radial-gradient(900px 650px at 80% 0%, rgba(168,85,247,.22), transparent 60%),
    radial-gradient(800px 500px at 50% 100%, rgba(251,113,133,.18), transparent 60%),
    var(--bg);
}

a{
  color: inherit;
  text-decoration-color: rgba(255,255,255,.45);
}
a:hover{
  text-decoration-color: rgba(255,255,255,.9);
}

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--surface);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
}
.skip-link:focus{
  left: 10px;
}

/* 3. HEADER & BRAND */

.topbar{
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(5,7,19,.9), rgba(5,7,19,.6));
  border-bottom: 1px solid var(--border);
}

.topbar__inner{
  display:flex;
  flex-direction: column;
  align-items:flex-start;
  justify-content:center;
  gap: 8px;
  padding: 10px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
}

.brand__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(244,244,255,.35);
  background: radial-gradient(circle at 0 0, rgba(34,211,238,.35), transparent 60%),
              radial-gradient(circle at 100% 0, rgba(168,85,247,.32), transparent 55%),
              rgba(7,11,31,.96);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.brand__icon-main{ font-weight: 800; }

.brand__icon-symbol{
  margin: 0 2px;
  font-size: 10px;
  transform: translateY(-1px);
  opacity: .9;
}

.brand__text{
  display:flex;
  flex-direction:column;
  gap: 2px;
}

.brand__word{
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.brand__tagline{
  font-size: 11px;
  color: var(--muted);
}

.brand__photo{
  width: 152px;
  height: 152px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(244,244,255,.45);
}

.topbar__nav{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

.topbar__link{
  font-size: 14px;
  opacity: .9;
  text-decoration:none;
}
.topbar__link--active{
  opacity: 1;
  text-decoration: underline;
}

/* 4. GENERIC SECTIONS */

.section{
  padding: 28px 0 24px;
}

.section--tinted{
  background: linear-gradient(to bottom, rgba(15,23,42,.6), rgba(15,23,42,.3));
}

.eyebrow{
  display:inline-block;
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

h1{
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.2;
}
@media (min-width: 640px){
  h1{ font-size: 32px; }
}

.lead{
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  border: none;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.btn--primary{
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 30px rgba(37,99,235,.55);
  color: #020617;
}

.micro{
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--muted);
}

/* 5. LAYOUT HELPERS (ABOUT/OPTIN STYLE) */

.hero-about__grid{
  display:flex;
  flex-direction: column;
  gap: 24px;
}

.hero-about__copy{
  max-width: 680px;
}

.hero-about__cta{
  margin-top: 14px;
}

.hero-about__side{
  max-width: 360px;
  margin: 0 auto;
}

.portrait-card{
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(7,11,31,.92);
  overflow: hidden;
}

.portrait-card__img{
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.portrait-card__body{
  padding: 10px 12px 12px;
}

.portrait-card__role{
  margin: 0 0 2px;
  font-weight: 600;
}

.portrait-card__line{
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--muted);
}

.portrait-card__list{
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: var(--muted);
}

/* 6. FOOTER */

.footer{
  border-top: 1px solid var(--border);
  padding: 14px 0 18px;
  color: var(--muted);
  font-size: 12px;
}

.footer__inner{
  display:flex;
  flex-direction: column;
  align-items:flex-start;
  gap: 6px;
}

.footer__brand{
  margin: 0;
}

.footer__links{
  margin: 0;
  display:flex;
  align-items:center;
  gap: 8px;
}

.footer__micro{
  margin: 0;
}

/* 7. DESKTOP ENHANCEMENTS */

@media (min-width: 768px){
  .topbar__inner{
    flex-direction: row;
    align-items:center;
    justify-content:space-between;
  }

  .hero-about__grid{
    flex-direction: row;
    align-items:flex-start;
  }

  .footer__inner{
    flex-direction: row;
    align-items:center;
    justify-content:space-between;
  }
}
/* PRIVACY PAGE */

.privacy{
  max-width: 820px;
}

.privacy__header{
  margin-bottom: 22px;
}

.privacy__meta{
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.privacy__section{
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(7,11,31,.92);
  padding: 14px 14px 16px;
  margin-bottom: 14px;
}

.privacy__section h2{
  margin: 0 0 8px;
  font-size: 17px;
}

.privacy__section h3{
  margin: 10px 0 6px;
  font-size: 14px;
}

.privacy__section p{
  margin: 6px 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.privacy__section ul{
  margin: 4px 0 8px;
  padding-left: 18px;
  font-size: 13px;
  color: var(--muted);
}

.privacy__section li{
  margin: 4px 0;
}

.privacy__block{
  border-radius: 12px;
  border: 1px dashed var(--border);
  padding: 8px 10px;
  font-size: 13px;
}

.privacy__summary{
  border-style: dashed;
  background: linear-gradient(135deg, rgba(34,211,238,.10), rgba(168,85,247,.10));
}
/* CONTACT PAGE */

.hero-contact__grid{
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-contact__copy{
  max-width: 680px;
}

.hero-contact__photo{
  max-width: 360px;
  margin: 0 auto;
}

.contact-photo{
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.contact-reasons{
  margin: 18px 0;
}

.contact-reasons h3{
  margin: 0 0 8px;
  font-size: 15px;
}

.contact-reasons ul{
  margin: 0;
  padding-left: 18px;
  list-style: square;
}

.contact-reasons li{
  margin: 4px 0;
  font-size: 14px;
  color: var(--muted);
}

.contact-lead{
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 500;
}

.contact-comparison{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 18px 0;
}

@media (min-width: 640px){
  .contact-comparison{
    flex-direction: row;
  }
}

.comparison-col{
  flex: 1;
}

.comparison-col h3{
  margin: 0 0 8px;
  font-size: 14px;
}

.comparison-col ul{
  margin: 0;
  padding-left: 18px;
}

.comparison-col li{
  margin: 3px 0;
  font-size: 13px;
  color: var(--muted);
}

.contact-direct__grid{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 640px){
  .contact-direct__grid{
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
  }
}

.contact-card{
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(7,11,31,.92);
  padding: 16px;
}

.contact-card h3{
  margin: 0 0 8px;
  font-size: 15px;
}

.contact-copy{
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--muted);
}

.contact-value{
  margin: 6px 0;
  font-size: 16px;
  font-weight: 600;
}

.contact-link{
  color: var(--brand);
  text-decoration: none;
}

.contact-link:hover{
  text-decoration: underline;
}

.contact-note{
  margin-top: 6px;
}

.contact-final{
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

/* RESPONSIVE */
@media (min-width: 768px){
  .hero-contact__grid{
    flex-direction: row;
    align-items: flex-start;
  }

  .hero-contact__copy{
    flex: 1;
  }

  .contact-direct__grid{
    display: grid;
  }
}
/* VSL PAGE */

.vsl-hero__inner{
  max-width: 920px;
}

.vsl-video{
  margin: 14px 0 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: rgba(7,11,31,.92);
}

.vsl-cta{
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(7,11,31,.92);
  padding: 14px;
}

.vsl-cta__headline{
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--muted);
}

.vsl-cta__buttons{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn--ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}

.btn--ghost:hover{
  border-color: rgba(255,255,255,.55);
}

.vsl-grid{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.vsl-card{
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(7,11,31,.92);
  padding: 12px 14px;
}

.vsl-card h3{
  margin: 0 0 6px;
  font-size: 14px;
}

.vsl-card p{
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.vsl-final{
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.faq{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.faq__item{
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(7,11,31,.92);
  padding: 10px 12px;
}

.faq__item summary{
  cursor: pointer;
  font-weight: 600;
}

.faq__item p{
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

/* JS "soft unlock" */
.vsl-cta--ready{
  border-color: rgba(255,255,255,.55);
  box-shadow: 0 14px 40px rgba(249,115,22,.16);
}

@media (min-width: 768px){
  .vsl-cta__buttons{
    flex-direction: row;
    align-items: center;
  }

  .vsl-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* HOME PAGE */

.home-hero__grid{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.home-hero__copy{
  max-width: 720px;
}

.home-hero__cta{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  max-width: 460px;
}

.home-hero__trust{
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trustline{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.trustline__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 4px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.trustline__text{
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.home-hero__card .card{
  background: rgba(7,11,31,.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
}

.steps{
  margin: 10px 0 12px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.home-hero__cardBtns{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-section{
  max-width: 920px;
}

.home-grid{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.home-box{
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(7,11,31,.92);
  padding: 12px 14px;
}

.home-box h3{
  margin: 0 0 6px;
  font-size: 14px;
}

.home-box p{
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.home-bridge{
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.inline-cta{
  margin-top: 14px;
}

.bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.home-split{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.home-split__card{
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(7,11,31,.92);
  padding: 12px 14px;
}

.home-split__card h3{
  margin: 0 0 6px;
  font-size: 14px;
}

.home-split__card p{
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.checklist{
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.checklist--x{
  list-style: square;
  opacity: .95;
}

.numbered{
  margin: 10px 0 0;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.home-note{
  margin-top: 10px;
  border-radius: 14px;
  border: 1px dashed var(--border);
  padding: 10px 12px;
  background: rgba(7,11,31,.75);
}

.home-final{
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.home-final__cta{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

@media (min-width: 768px){
  .home-hero__grid{
    flex-direction: row;
    align-items: flex-start;
    gap: 22px;
  }

  .home-hero__card{
    max-width: 420px;
    width: 100%;
  }

  .home-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-split{
    flex-direction: row;
  }

  .home-final__cta{
    flex-direction: row;
    justify-content: center;
  }

  .home-hero__cardBtns{
    flex-direction: row;
  }
}
/* CASE STUDIES (DETAILS/SUMMARY ACCORDION) */

.case-grid{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.case{
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(7,11,31,.92);
  overflow: hidden;
}

.case__summary{
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
}

.case__summary::-webkit-details-marker{
  display: none;
}

.case__title{
  font-size: 14px;
}

.case__tag{
  font-size: 12px;
  color: var(--accent-soft);
  opacity: .95;
}

.case__content{
  padding: 0 14px 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.case__content p{
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.case__content ul{
  margin: 10px 0 0;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.case[open] .case__summary{
  background: linear-gradient(135deg, rgba(34,211,238,.10), rgba(168,85,247,.10));
}

@media (min-width: 768px){
  .case-grid{
    gap: 12px;
  }
}
/* OGILVY / HALBERT / CIALDINI SECTIONS */

.ogilvy-facts{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.fact{
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(7,11,31,.92);
  padding: 12px 14px;
}

.fact h3{
  margin: 0 0 6px;
  font-size: 14px;
}

.halbert-note{
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(34,211,238,.08), rgba(251,113,133,.08));
  padding: 12px 14px;
  margin-top: 12px;
}

.halbert-note p{
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.curiosity{
  margin-top: 12px;
  border-radius: 16px;
  border: 1px dashed var(--border);
  background: rgba(7,11,31,.75);
  padding: 12px 14px;
}

.curiosity h3{
  margin: 0 0 6px;
  font-size: 14px;
}

.cialdini-grid{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

@media (min-width: 768px){
  .ogilvy-facts{
    flex-direction: row;
  }
  .fact{
    flex: 1;
  }

  .cialdini-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* CAREERS PAGE */

.careers-hero__grid{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.careers-hero__copy{
  max-width: 720px;
}

.careers-cta{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  max-width: 520px;
}

.careers{
  max-width: 920px;
}

.careers__grid{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.careers__pill{
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(7,11,31,.92);
  padding: 12px 14px;
}

.careers__pill h3{
  margin: 0 0 6px;
  font-size: 14px;
}

.careers__pill p{
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.careers__values{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.value{
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(7,11,31,.92);
  padding: 12px 14px;
}

.value h3{
  margin: 0 0 6px;
  font-size: 14px;
}

.value p{
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

/* Open roles accordion */
.role{
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(7,11,31,.92);
  overflow: hidden;
  margin-top: 10px;
}

.role__summary{
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
}

.role__summary::-webkit-details-marker{
  display: none;
}

.role__title{
  font-size: 14px;
}

.role__meta{
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.role__body{
  padding: 0 14px 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.role__body p{
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.role__cta{
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
}

.talent{
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(7,11,31,.92);
  padding: 12px 14px;
  margin-top: 12px;
}

@media (min-width: 768px){
  .careers-hero__grid{
    flex-direction: row;
    align-items: flex-start;
    gap: 22px;
  }

  .careers-hero__card{
    max-width: 420px;
    width: 100%;
  }

  .careers__grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .careers__values{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .careers-cta{
    flex-direction: row;
  }

  .role__summary{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .role__cta{
    flex-direction: row;
  }
}
