:root{
  --bg: #070707;
  --panel: rgba(255,255,255,.04);
  --panel-2: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.10);
  --text: #ffffff;
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.55);

  --accent: #f59e0b;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(0,0,0,.45);
  --max: 1120px;

  --font-head: "Tomorrow", ui-sans-serif, system-ui;
  --font-body: "Exo 2", ui-sans-serif, system-ui;
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 900px at 20% -10%, rgba(245,158,11,.14), transparent 60%),
    radial-gradient(900px 700px at 90% 10%, rgba(245,158,11,.06), transparent 60%),
    var(--bg);
  line-height: 1.5;
}

/* Global hero overlay behind everything (25% opacity) */
body.hero-bg::before{
  content:"";
  position: fixed;
  inset: 0;
  background: url("../assets/images/hero.png") center/cover no-repeat;
  opacity: .25;
  pointer-events: none;
  z-index: -1; /* sits above body background, behind all content */
  filter: saturate(.9) contrast(1.05);
}

a{ color: inherit; text-decoration: none; }
.container{ width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7,7,7,.68);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  height: 74px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo: SVG only, with glow */
.brand{ display:flex; align-items:center; }
.brand-logo{
  display:flex;
  align-items:center;
  height: 44px;
}
.brand-logo img{
  height: 44px;
  width: auto;
  display:block;
  /* keep the glow vibe like the old placeholder */
  filter:
    drop-shadow(0 10px 22px rgba(245,158,11,.22))
    drop-shadow(0 0 18px rgba(245,158,11,.12));
}

/* Nav */
.site-nav{
  display:flex;
  align-items:center;
  gap: 14px;
}
.nav-link{
  padding: 10px 10px;
  border-radius: 12px;
  color: var(--muted);
  transition: background .2s ease, color .2s ease, transform .2s ease;
  font-weight: 600;
}
.nav-link:hover{
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.nav-link.is-active{
  background: rgba(245,158,11,.10);
  color: var(--text);
  border: 1px solid rgba(245,158,11,.22);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn:hover{ transform: translateY(-1px); }
.btn-solid{
  background: rgba(245,158,11,.95);
  border-color: rgba(245,158,11,.25);
  color: #111;
}
.btn-solid:hover{ background: rgba(245,158,11,1); }
.btn-ghost{
  background: rgba(255,255,255,.04);
}
.btn-ghost:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
}

.ico{ width: 18px; height: 18px; }

/* Mobile toggle */
.nav-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,.85);
  margin: 5px auto;
  border-radius: 999px;
}

/* Headings */
h1,h2,h3{ font-family: var(--font-head); letter-spacing: .2px; }
h1{
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
}
h2{
  margin: 0 0 10px;
  font-size: 28px;
}
h3{ margin: 0 0 8px; }

/* Hero */
.hero{ padding: 56px 0 22px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: center;
}
.eyebrow{
  margin:0 0 10px;
  color: var(--muted2);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  font-family: var(--font-head);
}
.subhead{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 56ch;
}
.hero-cta{
  display:flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

/* Trust row */
.trust-row{
  display:flex;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.trust-item{
  flex: 1 1 190px;
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.trust-icon{
  width: 34px; height: 34px;
  border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.20);
  box-shadow: 0 0 18px rgba(245,158,11,.10);
}
.trust-title{ font-weight: 900; font-family: var(--font-head); }
.trust-text{ color: var(--muted2); font-size: 13px; margin-top: 2px; }

/* Hero image container: fill, no placeholder */
.hero-media{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow:hidden;
  position: relative;
  background: rgba(255,255,255,.02);
}
.hero-image{
  width: 100%;
  height: 340px;
  object-fit: cover;
  display:block;
  /* keeps it subtle + classy */
  filter: saturate(.95) contrast(1.05);
  opacity: .92;
}

/* Sections */
.section{ padding: 46px 0; }
.section-lead{ margin: 0 0 18px; color: var(--muted); }

/* What We Do cards + icons */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 26px rgba(0,0,0,.25);
}
.card p{ margin: 0; color: var(--muted); }
.card-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 0 22px rgba(245,158,11,.08);
}

/* How It Works background should fill cleanly + not “split” */
.section-alt{
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
}
.section-alt::before{
  content:"";
  position:absolute;
  inset:-120px -120px;
  background:
    radial-gradient(520px 320px at 20% 30%, rgba(245,158,11,.10), transparent 60%),
    radial-gradient(520px 320px at 80% 60%, rgba(245,158,11,.06), transparent 65%);
  filter: blur(18px);
  pointer-events:none;
  z-index: 0;
}
.section-alt > .container{ position: relative; z-index: 1; }

/* Steps: square containers + Tomorrow numbers + subtle glow */
.steps{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}
.step{
  display:flex;
  gap: 14px;
  padding: 16px;
  border-radius: 8px; /* square-ish */
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 0 24px rgba(245,158,11,.06);
}
.step-num{
  width: 36px;
  height: 36px;
  border-radius: 8px; /* square-ish */
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  font-family: var(--font-head);
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.22);
  color: rgba(245,158,11,.95);
  box-shadow: 0 0 18px rgba(245,158,11,.10);
}

.section-cta{ margin-top: 18px; }

/* CTA strip */
.cta-strip{ padding: 34px 0; }
.cta-strip-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(245,158,11,.18), rgba(255,255,255,.03));
  border: 1px solid rgba(245,158,11,.20);
  box-shadow: var(--shadow);
}
.cta-strip p{ margin: 0; color: var(--muted); }

/* Footer */
.site-footer{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 30px 0;
  margin-top: 20px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .6fr .6fr;
  gap: 14px;
  align-items: start;
}
.footer-brand{
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 8px;
  font-family: var(--font-head);
}
.footer-links{ display:grid; gap: 8px; color: var(--muted); }
.footer-links a:hover{ color: var(--text); }
.footer-meta{ color: var(--muted2); display:grid; gap: 8px; }

.muted{ color: var(--muted); }

/* Responsive */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .hero-image{ height: 320px; }
}

@media (max-width: 760px){
  .nav-toggle{ display:block; }
  .site-nav{
    position: fixed;
    top: 74px;
    right: 14px;
    left: 14px;
    display:none;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(7,7,7,.86);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 55px rgba(0,0,0,.55);
  }
  .site-nav.is-open{ display:flex; }
  .nav-link, .btn{ width: 100%; justify-content: center; }
  .brand-logo{ height: 40px; }
  .brand-logo img{ height: 40px; }
}
