* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
a { -webkit-tap-highlight-color: transparent; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #000;
  color: #e0e4ed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}


/* ── Navigation ─────────────────────────────────────────────── */
.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 960px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: rgba(12, 12, 12, 0.45);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.topbar.scrolled {
  background: rgba(12, 12, 12, 0.6);
  border-color: rgba(255, 255, 255, 0.12);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav-logo-img {
  height: 20px;
  width: auto;
  display: block;
}
.nav-logo-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff8a65;
  margin-left: 4px;
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: 2px;
}
.nav-logo:hover {
  opacity: 0.65;
}

.nav-desktop {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-desktop a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-desktop a:hover {
  color: #fff;
}
.nav-desktop a:focus { outline: none; }
.nav-desktop a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.3);
  outline-offset: 3px;
  border-radius: 2px;
}
.nav-desktop a.active {
  color: #fff;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:first-child {
  transform: rotate(45deg) translate(3px, 3px);
}
.hamburger.open span:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

.nav-mobile {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 150;
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 8px;
}
.nav-mobile.open {
  display: flex;
  flex-direction: column;
}
.nav-mobile a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.nav-mobile a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.nav-mobile a.active {
  color: #fff;
}

/* ── Gradient text utility ──────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #ff8a65 0%, #ffb74d 40%, #81c784 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Pill badge ─────────────────────────────────────────────── */
.pill {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  margin-bottom: 24px;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(52px, 9vw, 100px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hw {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hw.show {
  opacity: 1;
}
.hero-underline {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
  transition: opacity 0.4s ease, text-decoration-color 0.6s ease 0.4s;
}
.hero-underline.show {
  text-decoration-color: #ff8a65;
}

.hero-subhead {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-subhead.show {
  opacity: 1;
  transform: translateY(0);
}


.hero-scroll {
  margin-top: 48px;
  text-align: center;
}
.scroll-chevron {
  display: inline-block;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  animation: gentle-bob 2.5s ease-in-out infinite;
}
.scroll-chevron:hover {
  color: rgba(255, 255, 255, 0.5);
}
@keyframes gentle-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Glow behind hero */
.hero-glow {
  position: absolute;
  width: 120%;
  height: 100%;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
  opacity: 0.35;
  background:
    radial-gradient(ellipse at 35% 40%, rgba(255, 138, 101, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 65% 50%, rgba(255, 183, 77, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 55% 60%, rgba(129, 199, 132, 0.25) 0%, transparent 50%);
  animation: hero-glow-drift 14s ease-in-out infinite alternate;
}
@keyframes hero-glow-drift {
  0% { transform: translateX(-50%) scale(1) rotate(-1deg); }
  100% { transform: translateX(-50%) scale(1.05) rotate(1deg); }
}

/* ── Sections (shared) ──────────────────────────────────────── */
.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 40px;
  text-align: center;
}

.section h2 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.section-body {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Manifesto ──────────────────────────────────────────────── */
.manifesto {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 40px;
  text-align: center;
}
.manifesto h2 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 64px;
}
.manifesto-header {
  text-align: center;
  margin-bottom: 80px;
}
.manifesto-list {
  list-style: none;
  counter-reset: manifesto;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.manifesto-item {
  counter-increment: manifesto;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
}
.manifesto-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.manifesto-trigger {
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
  padding-right: 32px;
}
.manifesto-trigger::before {
  content: counter(manifesto) '. ';
  color: #ff8a65;
  opacity: 0.6;
  font-weight: 600;
}
.manifesto-trigger::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.3s ease, color 0.3s ease;
}
.manifesto-item.open .manifesto-trigger::after {
  transform: rotate(45deg);
  color: #ff8a65;
}
.manifesto-item:hover .manifesto-trigger {
  color: rgba(255, 255, 255, 0.6);
}
.manifesto-trigger strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}
.manifesto-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
  opacity: 0;
}
.manifesto-item.open .manifesto-expand {
  max-height: 300px;
  opacity: 1;
}
.manifesto-expand p {
  padding: 16px 0 4px;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
}

/* ── Product card ───────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 40px auto 0;
}
.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 40px;
  text-align: left;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.product-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}
/* Product brand lockups */
.product-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.baseline-mark {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #fff;
  flex-shrink: 0;
}
.baseline-wordmark {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 3px;
}
.relief-leaf {
  display: block;
  flex-shrink: 0;
}
.relief-wordmark {
  font-family: ui-rounded, 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #5BC97D;
  letter-spacing: 0.3px;
}
.product-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.product-card-meta {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 16px;
}
.product-card-cta {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, #ff8a65, #ffb74d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-card--stealth {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: default;
}
.product-card--stealth:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
}
.stealth-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff8a65;
  opacity: 0.5;
  margin-bottom: 12px;
}
.stealth-teaser {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1.5;
}

/* ── Signature quote ────────────────────────────────────────── */
.signature {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;
}
.signature-quote {
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.2;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: -0.025em;
  max-width: 800px;
  margin: 0 auto;
}

/* ── Founder note ───────────────────────────────────────────── */
.founder-note {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px 120px;
  text-align: center;
}
.founder-note p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}
.founder-note strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
.founder-note a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: color 0.2s, border-color 0.2s;
}
.founder-note a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

/* ── Page hero (About / Contact) ────────────────────────────── */
.page-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 180px 40px 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ── Gradient bars background ──────────────────────────────── */
.gradient-bar-hero {
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.gradient-bars {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: 0;
  display: flex;
  pointer-events: none;
}
.gradient-bar {
  flex: 1;
  background: linear-gradient(to top, rgba(255, 60, 0, 0.5), transparent);
  transform-origin: bottom;
  animation: pulseBar 2s ease-in-out infinite alternate;
}
.gradient-bar:nth-child(1)  { transform: scaleY(0.95); animation-delay: 0s; }
.gradient-bar:nth-child(2)  { transform: scaleY(0.82); animation-delay: 0.1s; }
.gradient-bar:nth-child(3)  { transform: scaleY(0.68); animation-delay: 0.2s; }
.gradient-bar:nth-child(4)  { transform: scaleY(0.55); animation-delay: 0.3s; }
.gradient-bar:nth-child(5)  { transform: scaleY(0.42); animation-delay: 0.4s; }
.gradient-bar:nth-child(6)  { transform: scaleY(0.34); animation-delay: 0.5s; }
.gradient-bar:nth-child(7)  { transform: scaleY(0.30); animation-delay: 0.6s; }
.gradient-bar:nth-child(8)  { transform: scaleY(0.28); animation-delay: 0.7s; }
.gradient-bar:nth-child(9)  { transform: scaleY(0.30); animation-delay: 0.8s; }
.gradient-bar:nth-child(10) { transform: scaleY(0.34); animation-delay: 0.9s; }
.gradient-bar:nth-child(11) { transform: scaleY(0.42); animation-delay: 1.0s; }
.gradient-bar:nth-child(12) { transform: scaleY(0.55); animation-delay: 1.1s; }
.gradient-bar:nth-child(13) { transform: scaleY(0.68); animation-delay: 1.2s; }
.gradient-bar:nth-child(14) { transform: scaleY(0.82); animation-delay: 1.3s; }
.gradient-bar:nth-child(15) { transform: scaleY(0.95); animation-delay: 1.4s; }
@keyframes pulseBar {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}
.gradient-bar-hero h1,
.gradient-bar-hero .page-lede,
.gradient-bar-hero .about-content {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.page-hero .page-lede {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ── About page ─────────────────────────────────────────────── */
.about-content {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 0;
  text-align: center;
}
.about-content {
  position: relative;
  z-index: 1;
}
.about-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 16px;
}
.about-content p:last-child { margin-bottom: 0; }

/* Founder section */
.founder-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px 100px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.founder-section-inner {
  max-width: 620px;
  margin: 0 auto;
}
.founder-section-kicker {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  margin-bottom: 28px;
}
.founder-section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ff8a65 0%, #ffb74d 40%, #81c784 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.founder-section p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: left;
}
.founder-section p:last-child { margin-bottom: 0; }
.founder-section strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* ── Contact page ───────────────────────────────────────────── */
.contact-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 40px 120px;
  text-align: center;
}
.contact-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 24px;
}
.contact-email {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s;
}
.contact-email:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.contact-social a {
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.2s;
}
.contact-social a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ── Divider ────────────────────────────────────────────────── */
.divider {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  padding: 40px 40px 32px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.2);
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  color: rgba(255, 255, 255, 0.3);
}
.footer-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(255, 255, 255, 0.7); }
.footer-nav a.footer-icon {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

/* ── Scroll reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger manifesto items */
.manifesto-item.reveal { transition-delay: 0s; }
.manifesto-item:nth-child(1).revealed { transition-delay: 0s; }
.manifesto-item:nth-child(2).revealed { transition-delay: 0.08s; }
.manifesto-item:nth-child(3).revealed { transition-delay: 0.16s; }
.manifesto-item:nth-child(4).revealed { transition-delay: 0.24s; }
.manifesto-item:nth-child(5).revealed { transition-delay: 0.32s; }
.manifesto-item:nth-child(6).revealed { transition-delay: 0.40s; }
.manifesto-item:nth-child(7).revealed { transition-delay: 0.48s; }
.manifesto-item:nth-child(8).revealed { transition-delay: 0.56s; }

/* Stagger product cards */
.product-card.reveal.revealed:nth-child(1) { transition-delay: 0s; }
.product-card.reveal.revealed:nth-child(2) { transition-delay: 0.12s; }
.product-card.reveal.revealed:nth-child(3) { transition-delay: 0.24s; }

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .topbar {
    top: 10px;
    width: calc(100% - 24px);
    padding: 12px 16px;
    border-radius: 14px;
  }
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .hero {
    padding: 140px 24px 80px;
  }
  .hero h1 {
    font-size: clamp(40px, 12vw, 60px);
  }
  .manifesto { padding: 80px 24px; }
  .manifesto-header { margin-bottom: 48px; }
  .manifesto-trigger { position: relative; padding-left: 48px; padding-right: 32px; }
  .manifesto-trigger::before { position: absolute; left: 0; top: -4px; font-size: 36px; }
  .manifesto-expand { padding-left: 48px; }
  .section { padding: 80px 24px; }
  .product-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .product-card--stealth { min-height: 160px; }
  .product-card { padding: 32px 28px; }
  .signature { padding: 48px 24px; }
  .founder-note { padding: 60px 24px 80px; }
  .page-hero { padding: 140px 24px 40px; }
  .about-content { padding: 20px 24px 60px; }
  .founder-section { padding: 60px 24px 80px; }
  .contact-content { padding: 20px 24px 80px; }
  footer { padding: 24px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
}
