/* ===== Design tokens ===== */
:root {
  --orange: #FF6A00;
  --orange-soft: #ff8a3a;
  --black: #111111;
  --bg: #0d0d0d;
  --surface: #1a1a1a;
  --surface-2: #2A2A2A;
  --line: rgba(255, 255, 255, 0.08);
  --gray-100: #E5E5E5;
  --white: #FFFFFF;
  --text: #e9e9e9;
  --text-dim: #9a9a9a;

  --maxw: 1180px;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== Reset ===== */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Sora', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { line-height: 1.1; margin: 0; font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.accent { color: var(--orange); }

/* ===== Logo ===== */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  display: inline-flex;
  gap: 5px;
  transform: skewX(-12deg);
}
.logo-mark .slash {
  width: 9px;
  height: 34px;
  background: var(--orange);
  border-radius: 2px;
}

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  color: var(--white);
}
.logo-sub {
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.42em;
  color: var(--text-dim);
  margin-top: 3px;
}

.logo--small .logo-mark .slash { height: 26px; width: 7px; }
.logo--small .logo-name { font-size: 1.05rem; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.main-nav {
  display: flex;
  gap: 38px;
}
.main-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
  position: relative;
  transition: color 0.2s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.25s var(--ease);
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { width: 100%; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 30px -8px rgba(255, 106, 0, 0.6);
}
.btn-primary:hover {
  background: var(--orange-soft);
  transform: translateY(-2px);
  box-shadow: 0 14px 38px -10px rgba(255, 106, 0, 0.7);
}
.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== Section helpers ===== */
.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 22px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: clamp(70px, 11vw, 140px) 0 clamp(60px, 9vw, 120px);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.74rem;
  color: var(--text-dim);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
}
.lead {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 30ch;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero art */
.hero-art {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 50%, rgba(255, 106, 0, 0.28), transparent 60%);
  filter: blur(20px);
}
.hero-slashes {
  position: relative;
  display: flex;
  gap: 26px;
  transform: skewX(-12deg);
}
.hero-slashes span {
  width: 46px;
  height: 280px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--orange), #c44e00);
  box-shadow: 0 30px 80px -20px rgba(255, 106, 0, 0.7);
  animation: float 6s var(--ease) infinite;
}
.hero-slashes span:last-child {
  background: linear-gradient(180deg, var(--surface-2), #161616);
  animation-delay: -3s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}

/* ===== Pillars ===== */
.pillars { padding: clamp(70px, 9vw, 120px) 0; border-top: 1px solid var(--line); }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 14px;
}
.pillar {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 0, 0.5);
  background: #1e1e1e;
}

/* Featured pillar — collaboration */
.pillar--featured {
  background: linear-gradient(160deg, rgba(255, 106, 0, 0.14), rgba(255, 106, 0, 0.03) 55%, var(--surface));
  border-color: rgba(255, 106, 0, 0.45);
  box-shadow: 0 18px 50px -22px rgba(255, 106, 0, 0.55);
}
.pillar--featured:hover {
  background: linear-gradient(160deg, rgba(255, 106, 0, 0.2), rgba(255, 106, 0, 0.05) 55%, #1e1e1e);
  border-color: var(--orange);
}
.pillar--featured h3 { color: var(--white); }
.pillar--featured p { color: #cfcfcf; }
.pillar--featured em { color: var(--orange); font-style: normal; font-weight: 600; }
.pillar--featured .pillar-icon { background: rgba(255, 106, 0, 0.22); }
.pillar-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255, 106, 0, 0.14);
  border: 1px solid rgba(255, 106, 0, 0.35);
  padding: 5px 11px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.pillar-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 106, 0, 0.12);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 22px;
}
.pillar h3 { font-size: 1.12rem; margin-bottom: 12px; font-weight: 600; }
.pillar p { color: var(--text-dim); font-size: 0.94rem; }

/* ===== About ===== */
.about { padding: clamp(70px, 9vw, 120px) 0; border-top: 1px solid var(--line); }
.about-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
}
.about-copy p { color: var(--text-dim); font-size: 1.05rem; margin-bottom: 18px; }
.about-motto {
  font-size: 1.5rem !important;
  font-weight: 600;
  color: var(--white) !important;
  margin-top: 8px !important;
}
.stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.stats li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.stats strong { font-size: 2rem; color: var(--orange); font-weight: 700; }
.stats span { color: var(--text-dim); font-size: 0.92rem; }

/* ===== CTA ===== */
.cta {
  padding: clamp(70px, 9vw, 110px) 0;
  border-top: 1px solid var(--line);
}
.cta-inner {
  background: linear-gradient(135deg, #1c1c1c, #141414);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(40px, 6vw, 70px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 180%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.18), transparent 70%);
}
.cta-inner > * { position: relative; }
.cta h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: 16px; }
.cta p { color: var(--text-dim); margin-bottom: 32px; font-size: 1.05rem; }

/* ===== Contact ===== */
.contact { padding: clamp(70px, 9vw, 120px) 0; border-top: 1px solid var(--line); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.contact-lead { color: var(--text-dim); font-size: 1.05rem; max-width: 38ch; }
.contact-lead a { color: var(--orange); }
.contact-lead a:hover { text-decoration: underline; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
  display: grid;
  gap: 14px;
}
.contact-email {
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s var(--ease);
  word-break: break-word;
}
.contact-email:hover { color: var(--orange); }
.contact-site { color: var(--orange); font-size: 0.95rem; letter-spacing: 0.02em; }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 50px 0;
  background: #0a0a0a;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-tagline { color: var(--text-dim); font-size: 0.95rem; }
.footer-copy { color: var(--text-dim); font-size: 0.82rem; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .lead { max-width: none; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .main-nav { display: none; }
  .pillar-grid,
  .stats { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; align-items: center; }
  .header-inner { height: 66px; }
}
