/* OFF SWITCH — V10 locked master brand website */

:root{
  --black:#050505;
  --black-2:#0B0B0B;
  --white:#F2F2F2;
  --muted:#B7B7B7;
  --soft:#777;
  --orange:#FF6A00;
  --orange-2:#FF7A1A;
  --border:rgba(255,255,255,.10);
  --orange-border:rgba(255,106,0,.60);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  color:var(--white);
  background:
    radial-gradient(circle at 50% 12%, rgba(255,106,0,.10), transparent 28rem),
    radial-gradient(circle at 50% 96%, rgba(255,106,0,.09), transparent 24rem),
    linear-gradient(180deg, #050505 0%, #0B0B0B 52%, #050505 100%);
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
  background-size:34px 34px;
  mask-image:linear-gradient(to bottom, transparent, #000 24%, #000 76%, transparent);
  opacity:.22;
}

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

/* Header */
.site-header{
  min-height:104px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px clamp(18px,5vw,72px);
  border-bottom:1px solid var(--border);
  background:rgba(5,5,5,.93);
  backdrop-filter:blur(14px);
  position:sticky;
  top:0;
  z-index:20;
}

.site-logo{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  flex-shrink:0;
  width:132px;
  line-height:0;
}

.site-logo img{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
}

.site-logo--footer{
  width:190px;
  margin:0 auto 18px;
  justify-content:center;
}

.menu-toggle{
  width:50px;
  height:50px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  background:rgba(255,255,255,.035);
  display:grid;
  place-items:center;
  gap:4px;
  padding:13px;
}

.menu-toggle span{
  width:23px;
  height:2px;
  border-radius:999px;
  background:var(--white);
  display:block;
}

.nav{
  display:none;
  position:absolute;
  top:104px;
  left:18px;
  right:18px;
  padding:18px;
  border:1px solid var(--border);
  border-radius:16px;
  background:rgba(5,5,5,.98);
  box-shadow:0 20px 60px rgba(0,0,0,.66);
}

.nav.is-open{display:grid;gap:14px}

.nav a{
  font-family:Oswald, sans-serif;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-weight:700;
  padding:14px 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.nav a:last-child{border-bottom:0}

/* Hero */
.hero{
  min-height:calc(100svh - 104px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:46px 22px 66px;
}

.hero-logo{
  width:min(310px,76vw);
  margin:0 auto 22px;
  line-height:0;
  filter:drop-shadow(0 0 26px rgba(255,106,0,.08));
}

.hero-logo img{
  display:block;
  width:100%;
  height:auto;
}

.system-label,
.eyebrow,
.section-label{
  margin:0;
  font-family:Oswald, sans-serif;
  font-weight:700;
  text-transform:uppercase;
}

.system-label{
  color:var(--white);
  letter-spacing:.34em;
  font-size:clamp(12px,3vw,18px);
  opacity:.92;
  margin-top:8px;
}

.eyebrow{
  color:var(--orange);
  letter-spacing:.16em;
  font-size:clamp(17px,4.8vw,28px);
  margin-top:12px;
  margin-bottom:26px;
}

.eyebrow::after{
  content:"";
  display:block;
  width:min(420px,72vw);
  height:2px;
  margin:18px auto 0;
  background:linear-gradient(90deg, transparent, var(--orange), transparent);
  box-shadow:0 0 18px rgba(255,106,0,.45);
}

.section-label{
  color:var(--orange);
  letter-spacing:.16em;
}

h1,h2{
  font-family:Impact, "Arial Black", Oswald, sans-serif;
  text-transform:uppercase;
  letter-spacing:.015em;
  margin:0;
  line-height:.98;
}

h1{
  max-width:920px;
  font-size:clamp(46px,12.4vw,104px);
  text-wrap:balance;
}

.lead{
  max-width:650px;
  margin:24px auto 0;
  color:var(--muted);
  font-size:clamp(18px,5vw,25px);
  line-height:1.55;
}

.hero-actions{
  display:grid;
  gap:14px;
  width:min(560px,100%);
  margin-top:34px;
}

.button{
  min-height:60px;
  border-radius:8px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--orange);
  font-family:Oswald, sans-serif;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
}

.button.primary{
  background:linear-gradient(180deg, var(--orange-2), var(--orange));
  color:#080808;
  border-color:transparent;
}

.button.secondary{
  background:transparent;
  color:var(--orange);
}

.button.full{width:100%}

.pillars{
  width:min(800px,100%);
  display:grid;
  grid-template-columns:1fr;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  margin-top:42px;
}

.pillars div{
  padding:22px 10px;
  border-bottom:1px solid rgba(255,255,255,.09);
}

.pillars div:last-child{border-bottom:0}

.pillars small{
  display:block;
  color:var(--orange);
  font-family:Oswald, sans-serif;
  letter-spacing:.18em;
  margin-bottom:8px;
}

.pillars strong{
  display:block;
  font-family:Oswald, sans-serif;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:22px;
  line-height:1.15;
}

/* Sections */
.section{
  padding:74px 22px;
  border-top:1px solid var(--border);
}

.section-tight{
  max-width:900px;
  margin:0 auto;
  text-align:center;
}

.section h2{
  margin-top:14px;
  font-size:clamp(38px,10vw,76px);
}

.section p{
  max-width:720px;
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
}

.section-tight p,
.signup-panel p,
.contact-panel p{
  margin-left:auto;
  margin-right:auto;
}

.signup-panel,
.contact-panel{
  width:min(900px,calc(100% - 34px));
  margin:0 auto 30px;
  border:1px solid var(--orange-border);
  border-radius:18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,106,0,.16), transparent 16rem),
    rgba(10,10,10,.80);
  box-shadow:0 0 70px rgba(255,106,0,.08);
}

.email-form,
.contact-form{
  margin-top:26px;
  display:grid;
  gap:16px;
}

.email-row{
  display:grid;
  gap:12px;
}

label span,
.email-form label{
  display:block;
  color:var(--muted);
  font-family:Oswald, sans-serif;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:14px;
  margin-bottom:8px;
}

input, textarea{
  width:100%;
  min-height:58px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:8px;
  background:rgba(255,255,255,.045);
  color:var(--white);
  padding:15px 16px;
  font:inherit;
  outline:none;
}

textarea{resize:vertical;min-height:132px}

input:focus, textarea:focus{
  border-color:var(--orange);
  box-shadow:0 0 0 3px rgba(255,106,0,.16);
}

.form-status{
  min-height:24px;
  color:var(--orange) !important;
  font-weight:800;
  margin:0 !important;
}

/* Footer */
.site-footer{
  padding:58px 22px 36px;
  text-align:center;
  border-top:1px solid var(--border);
}

.site-footer p{
  max-width:380px;
  margin:0 auto 26px;
  color:var(--muted);
  line-height:1.55;
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin:22px 0;
  font-family:Oswald, sans-serif;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.footer-links a:not(:last-child)::after{
  content:"";
  display:inline-block;
  width:4px;
  height:4px;
  border-radius:50%;
  background:var(--orange);
  margin-left:18px;
  vertical-align:middle;
}

.site-footer small{color:var(--soft)}

@media (min-width:720px){
  .site-logo{width:150px}
  .site-header{min-height:112px}
  .menu-toggle{display:none}

  .nav{
    position:static;
    display:flex !important;
    align-items:center;
    gap:28px;
    padding:0;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
  }

  .nav a{
    border:0;
    padding:0;
    font-size:14px;
  }

  .hero-actions{
    display:flex;
    justify-content:center;
  }

  .hero-actions .button{
    min-width:230px;
  }

  .pillars{
    grid-template-columns:repeat(3,1fr);
  }

  .pillars div{
    border-bottom:0;
    border-right:1px solid rgba(255,255,255,.12);
  }

  .pillars div:last-child{border-right:0}

  .email-row{
    grid-template-columns:1fr auto;
    align-items:end;
  }

  .email-row .button{
    min-width:190px;
  }
}

@media (max-width:390px){
  .site-logo{width:118px}
  .hero-logo{width:min(275px,78vw)}
  h1{font-size:43px}
  .button{font-size:16px}
}
