*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --orange:#E85A1B;
  --orange-light:#FF7A38;
  --orange-pale:#FFF0E8;
  --black:#0D0D0D;
  --ink:#1C1C1C;
  --mid:#3D3D3D;
  --muted:#767676;
  --rule:#E2E2E2;
  --white:#FFFFFF;
  --off-white:#F8F6F3;
  --serif:'DM Serif Display',Georgia,serif;
  --sans:'DM Sans',system-ui,sans-serif;
}

html{scroll-behavior:smooth;font-size:16px}

body{
  font-family:var(--sans);
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}

nav{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:border-color 0.3s,box-shadow 0.3s;
}

nav.scrolled{
  border-color:var(--rule);
  box-shadow:0 2px 20px rgba(0,0,0,0.06);
}

.nav-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 32px;
  height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.nav-logo{
  display:flex;
  align-items:center;
  gap:14px;
}

.nav-logo svg{flex-shrink:0}

.nav-logo-text{
  display:flex;
  flex-direction:column;
  line-height:1;
}

.nav-logo-abbr{
  font-family:var(--serif);
  font-size:18px;
  letter-spacing:3px;
  color:var(--black);
}

.nav-logo-full{
  font-size:9.5px;
  letter-spacing:2px;
  color:var(--muted);
  text-transform:uppercase;
  margin-top:3px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:36px;
  list-style:none;
}

.nav-links a{
  font-size:13.5px;
  font-weight:500;
  letter-spacing:0.3px;
  color:var(--mid);
  transition:color 0.2s;
  position:relative;
}

.nav-links a::after{
  content:'';
  position:absolute;
  bottom:-3px;left:0;
  width:0;height:1.5px;
  background:var(--orange);
  transition:width 0.25s ease;
}

.nav-links a:hover{color:var(--black)}
.nav-links a:hover::after{width:100%}

.nav-cta{
  background:var(--orange);
  color:var(--white) !important;
  padding:9px 22px;
  border-radius:3px;
  font-weight:600;
  font-size:13px !important;
  letter-spacing:0.4px;
  transition:background 0.2s,transform 0.15s !important;
}

.nav-cta::after{display:none !important}
.nav-cta:hover{background:#C94A10 !important;transform:translateY(-1px)}

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  padding:4px;
  background:none;
  border:none;
}

.hamburger span{
  display:block;
  width:24px;height:2px;
  background:var(--black);
  transition:transform 0.3s,opacity 0.3s;
}

.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.mobile-menu{
  display:none;
  position:fixed;
  top:68px;left:0;right:0;
  background:var(--white);
  border-bottom:1px solid var(--rule);
  padding:20px 32px 28px;
  z-index:99;
  transform:translateY(-10px);
  opacity:0;
  transition:transform 0.25s,opacity 0.25s;
}

.mobile-menu.open{
  display:block;
  transform:translateY(0);
  opacity:1;
}

.mobile-menu ul{list-style:none}
.mobile-menu ul li{padding:13px 0;border-bottom:1px solid var(--rule)}
.mobile-menu ul li:last-child{border-bottom:none;padding-top:20px}
.mobile-menu ul li a{font-size:15px;font-weight:500;color:var(--ink)}

section{padding:100px 32px}

.container{max-width:1200px;margin:0 auto}
.container-narrow{max-width:820px;margin:0 auto}

.label{
  display:inline-block;
  font-size:10.5px;
  font-weight:600;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--orange);
  margin-bottom:18px;
}

h1,h2,h3{font-family:var(--serif);font-weight:400;line-height:1.1}

#hero{
  padding-top:148px;
  padding-bottom:0;
  background:var(--black);
  color:var(--white);
  overflow:hidden;
  position:relative;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  flex:1;
}

.hero-eyebrow{
  font-size:10.5px;
  font-weight:500;
  letter-spacing:3.5px;
  text-transform:uppercase;
  color:var(--orange);
  margin-bottom:24px;
  opacity:0;
  animation:fadeUp 0.8s 0.2s forwards;
}

h1.hero-headline{
  font-size:clamp(40px,5vw,68px);
  line-height:1.05;
  color:var(--white);
  margin-bottom:28px;
  opacity:0;
  animation:fadeUp 0.8s 0.4s forwards;
}

h1.hero-headline em{
  font-style:italic;
  color:var(--orange-light);
}

.hero-sub{
  font-size:17px;
  line-height:1.7;
  color:rgba(255,255,255,0.65);
  max-width:480px;
  margin-bottom:44px;
  font-weight:300;
  opacity:0;
  animation:fadeUp 0.8s 0.6s forwards;
}

.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  opacity:0;
  animation:fadeUp 0.8s 0.8s forwards;
}

.btn-primary{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--orange);
  color:var(--white);
  padding:14px 30px;
  font-family:var(--sans);
  font-size:14px;
  font-weight:600;
  letter-spacing:0.4px;
  border:none;
  cursor:pointer;
  transition:background 0.2s,transform 0.15s;
  border-radius:2px;
}

.btn-primary:hover{background:#C94A10;transform:translateY(-2px)}
.btn-primary svg{transition:transform 0.2s}
.btn-primary:hover svg{transform:translateX(4px)}

.btn-outline{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:transparent;
  color:rgba(255,255,255,0.8);
  padding:14px 30px;
  font-family:var(--sans);
  font-size:14px;
  font-weight:500;
  letter-spacing:0.4px;
  border:1px solid rgba(255,255,255,0.25);
  cursor:pointer;
  transition:border-color 0.2s,color 0.2s,transform 0.15s;
  border-radius:2px;
}

.btn-outline:hover{border-color:rgba(255,255,255,0.7);color:var(--white);transform:translateY(-2px)}

.hero-visual{
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  animation:fadeIn 1.2s 0.5s forwards;
}

.cube-container{
  position:relative;
  width:320px;
  height:320px;
}

.cube-container svg{
  width:100%;height:100%;
  filter:drop-shadow(0 40px 80px rgba(232,90,27,0.3));
}

.hero-ticker{
  border-top:1px solid rgba(255,255,255,0.1);
  margin-top:60px;
  padding:22px 0;
  overflow:hidden;
  position:relative;
}

.ticker-track{
  display:flex;
  gap:60px;
  white-space:nowrap;
  animation:ticker 22s linear infinite;
}

.ticker-item{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:11px;
  font-weight:500;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:rgba(255,255,255,0.35);
  flex-shrink:0;
}

.ticker-dot{
  width:4px;height:4px;
  border-radius:50%;
  background:var(--orange);
  flex-shrink:0;
}

@keyframes ticker{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(24px)}
  to{opacity:1;transform:translateY(0)}
}

@keyframes fadeIn{
  from{opacity:0}
  to{opacity:1}
}

#about{
  background:var(--off-white);
  padding-top:110px;
  padding-bottom:110px;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}

.about-label{color:var(--orange)}

.about-headline{
  font-size:clamp(32px,3.5vw,48px);
  color:var(--black);
  margin-bottom:0;
}

.about-right p{
  font-size:16.5px;
  line-height:1.8;
  color:var(--mid);
  margin-bottom:22px;
  font-weight:300;
}

.about-right p:last-of-type{margin-bottom:32px}

.about-stats{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1px;
  background:var(--rule);
  border:1px solid var(--rule);
  margin-top:8px;
}

.stat-cell{
  background:var(--white);
  padding:24px 20px;
}

.stat-num{
  font-family:var(--serif);
  font-size:36px;
  color:var(--orange);
  display:block;
  margin-bottom:4px;
}

.stat-desc{
  font-size:12px;
  color:var(--muted);
  letter-spacing:0.3px;
  line-height:1.4;
}

#model{
  background:var(--white);
  padding-top:110px;
  padding-bottom:110px;
}

.section-header{
  text-align:center;
  margin-bottom:64px;
}

.section-headline{
  font-size:clamp(30px,3.2vw,46px);
  color:var(--black);
  margin-bottom:16px;
}

.section-sub{
  font-size:16px;
  color:var(--muted);
  line-height:1.7;
  max-width:560px;
  margin:0 auto;
  font-weight:300;
}

.pillars{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-bottom:72px;
}

.pillar{
  border:1px solid var(--rule);
  padding:36px 32px;
  background:var(--white);
  transition:border-color 0.25s,transform 0.2s,box-shadow 0.25s;
  position:relative;
  overflow:hidden;
}

.pillar::before{
  content:'';
  position:absolute;
  top:0;left:0;
  width:3px;height:0;
  background:var(--orange);
  transition:height 0.3s ease;
}

.pillar:hover{
  border-color:rgba(232,90,27,0.3);
  transform:translateY(-4px);
  box-shadow:0 20px 50px rgba(0,0,0,0.07);
}

.pillar:hover::before{height:100%}

.pillar-icon{
  width:44px;height:44px;
  background:var(--orange-pale);
  border-radius:6px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:22px;
}

.pillar-icon svg{color:var(--orange)}

.pillar-num{
  font-size:10px;
  font-weight:600;
  letter-spacing:3px;
  color:var(--rule);
  text-transform:uppercase;
  margin-bottom:10px;
}

.pillar h3{
  font-size:22px;
  margin-bottom:12px;
  color:var(--black);
}

.pillar p{
  font-size:14.5px;
  line-height:1.75;
  color:var(--muted);
  font-weight:300;
}

.pillar-tags{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:24px;
}

.tag{
  font-size:10.5px;
  font-weight:500;
  letter-spacing:0.5px;
  padding:4px 10px;
  background:var(--off-white);
  color:var(--mid);
  border-radius:2px;
}

.pipeline{
  background:var(--black);
  padding:48px 52px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:0;
  overflow-x:auto;
}

.pipeline-step{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  flex:1;
  min-width:100px;
  position:relative;
}

.pipeline-step::after{
  content:'→';
  position:absolute;
  right:-16px;
  top:18px;
  color:rgba(255,255,255,0.2);
  font-size:18px;
}

.pipeline-step:last-child::after{display:none}

.step-circle{
  width:48px;height:48px;
  border:2px solid rgba(255,255,255,0.15);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  transition:border-color 0.2s,background 0.2s;
}

.pipeline-step:hover .step-circle{
  border-color:var(--orange);
  background:rgba(232,90,27,0.15);
}

.step-circle svg{color:var(--orange)}

.step-label{
  font-size:11px;
  font-weight:600;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:rgba(255,255,255,0.5);
  text-align:center;
}

#community{
  background:var(--off-white);
  padding-top:110px;
  padding-bottom:110px;
}

.community-grid{
  display:grid;
  grid-template-columns:5fr 4fr;
  gap:80px;
  align-items:center;
}

.community-headline{
  font-size:clamp(30px,3.2vw,46px);
  color:var(--black);
  margin-bottom:24px;
}

.community-body{
  font-size:16px;
  line-height:1.8;
  color:var(--mid);
  font-weight:300;
  margin-bottom:36px;
}

.audience-cards{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.audience-card{
  background:var(--white);
  padding:20px 22px;
  border:1px solid var(--rule);
  display:flex;
  align-items:center;
  gap:16px;
  transition:border-color 0.2s;
}

.audience-card:hover{border-color:var(--orange)}

.aud-icon{
  width:36px;height:36px;
  background:var(--orange-pale);
  border-radius:4px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}

.aud-title{
  font-size:14px;
  font-weight:600;
  color:var(--black);
  margin-bottom:2px;
}

.aud-desc{
  font-size:12.5px;
  color:var(--muted);
  line-height:1.5;
}

.sector-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.sector{
  font-size:11.5px;
  font-weight:500;
  padding:6px 14px;
  border:1px solid var(--rule);
  color:var(--mid);
  border-radius:2px;
  transition:border-color 0.2s,color 0.2s;
}

.sector:hover{border-color:var(--orange);color:var(--orange)}

#contact{
  background:var(--black);
  padding-top:110px;
  padding-bottom:110px;
  color:var(--white);
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}

.contact-label{color:var(--orange)}

.contact-headline{
  font-size:clamp(30px,3.2vw,44px);
  color:var(--white);
  margin-bottom:20px;
}

.contact-body{
  font-size:15.5px;
  line-height:1.75;
  color:rgba(255,255,255,0.55);
  font-weight:300;
  margin-bottom:36px;
}

.contact-detail{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:14px;
  color:rgba(255,255,255,0.6);
  margin-bottom:14px;
}

.contact-detail svg{color:var(--orange);flex-shrink:0}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:14px;
}

.form-group{
  display:flex;
  flex-direction:column;
  gap:7px;
  margin-bottom:14px;
}

.form-group label{
  font-size:11px;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(255,255,255,0.45);
}

.form-group input,
.form-group textarea,
.form-group select{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  color:var(--white);
  padding:13px 16px;
  font-family:var(--sans);
  font-size:14px;
  font-weight:300;
  border-radius:2px;
  outline:none;
  transition:border-color 0.2s,background 0.2s;
  width:100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder{color:rgba(255,255,255,0.25)}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
  border-color:var(--orange);
  background:rgba(255,255,255,0.09);
}

.form-group textarea{height:120px;resize:vertical}

.form-group select option{background:var(--ink)}

.form-submit{
  width:100%;
  background:var(--orange);
  color:var(--white);
  border:none;
  padding:15px 24px;
  font-family:var(--sans);
  font-size:14px;
  font-weight:600;
  letter-spacing:0.5px;
  cursor:pointer;
  border-radius:2px;
  transition:background 0.2s,transform 0.15s;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.form-submit:hover{background:#C94A10;transform:translateY(-1px)}

.form-note{
  font-size:11px;
  color:rgba(255,255,255,0.3);
  text-align:center;
  margin-top:12px;
  line-height:1.5;
}

.success-msg{
  display:none;
  background:rgba(232,90,27,0.12);
  border:1px solid rgba(232,90,27,0.4);
  color:var(--orange-light);
  padding:16px 20px;
  font-size:14px;
  border-radius:2px;
  margin-top:12px;
  text-align:center;
}

footer{
  background:#080808;
  padding:40px 32px;
  border-top:1px solid rgba(255,255,255,0.06);
}

.footer-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:16px;
}

.footer-copy{
  font-size:12.5px;
  color:rgba(255,255,255,0.25);
  letter-spacing:0.3px;
}

.footer-links{
  display:flex;
  gap:24px;
  list-style:none;
}

.footer-links a{
  font-size:12px;
  color:rgba(255,255,255,0.3);
  transition:color 0.2s;
  letter-spacing:0.3px;
}

.footer-links a:hover{color:rgba(255,255,255,0.7)}

@media(max-width:900px){
  section{padding:80px 24px}

  .nav-links{display:none}
  .hamburger{display:flex}

  .hero-grid{
    grid-template-columns:1fr;
    gap:48px;
  }

  .hero-visual{order:-1}
  .cube-container{width:200px;height:200px}

  .about-grid,
  .contact-grid,
  .community-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .pillars{
    grid-template-columns:1fr;
    gap:16px;
  }

  .pipeline{
    padding:32px 24px;
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
  }

  .pipeline-step{
    flex-direction:row;
    align-items:center;
    gap:16px;
  }

  .pipeline-step::after{
    position:static;
    content:'↓';
    margin-left:auto;
  }

  .pipeline-step:last-child::after{display:none}

  .form-row{grid-template-columns:1fr}

  .about-stats{grid-template-columns:1fr 1fr}

  .footer-inner{flex-direction:column;align-items:flex-start;gap:12px}
}

@media(max-width:480px){
  .nav-inner{padding:0 20px}
  section{padding:64px 20px}
  .hero-cta-row{flex-direction:column}
  .about-stats{grid-template-columns:1fr}
}