/* === Reset / base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Anchor links land below the sticky nav, not under it */
section[id], header[id] { scroll-margin-top: 76px; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: #0a0a0c;
  color: #e7e7ea;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Nav === */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
  backdrop-filter: blur(12px);
  background: rgba(10, 10, 12, 0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.brand { font-weight: 700; letter-spacing: -0.01em; }
.nav-links a {
  margin-left: 28px;
  font-size: 14px;
  color: rgba(231,231,234,0.65);
  transition: color .15s;
}
.nav-links a:hover { color: #fff; }
@media (max-width: 600px) {
  .nav-links a { margin-left: 16px; font-size: 13px; }
  .nav { padding: 14px 18px; }
}

/* === Hero === */
.hero {
  position: relative;
  padding: 96px 0 88px;
  background: #0a0a0c;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 80%);
  opacity: 0.7;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  mix-blend-mode: screen;
  will-change: transform;
}
.orb-1 {
  width: 460px; height: 460px;
  background: #818cf8;
  opacity: 0.32;
  top: -120px; left: -140px;
  animation: drift1 20s ease-in-out infinite;
}
.orb-2 {
  width: 380px; height: 380px;
  background: #f472b6;
  opacity: 0.26;
  top: 80px; right: -120px;
  animation: drift2 24s ease-in-out infinite;
}
.orb-3 {
  width: 340px; height: 340px;
  background: #fbbf24;
  opacity: 0.18;
  bottom: -120px; left: 38%;
  animation: drift3 28s ease-in-out infinite;
}
@keyframes drift1 {
  0%, 100% { transform: translate3d(0,0,0); }
  50%      { transform: translate3d(70px, 50px, 0); }
}
@keyframes drift2 {
  0%, 100% { transform: translate3d(0,0,0); }
  50%      { transform: translate3d(-60px, 70px, 0); }
}
@keyframes drift3 {
  0%, 100% { transform: translate3d(0,0,0); }
  50%      { transform: translate3d(50px, -50px, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .orb-1, .orb-2, .orb-3 { animation: none; }
}
.hero-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .hero { padding: 72px 0 64px; }
  .orb { filter: blur(70px); }
}
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(231,231,234,0.55);
  margin-bottom: 28px;
}
.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(231,231,234,0.5);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  font-weight: 700;
}
.grad {
  background: linear-gradient(135deg, #818cf8 0%, #f472b6 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lead {
  font-size: clamp(17px, 1.7vw, 21px);
  color: rgba(231,231,234,0.78);
  max-width: 720px;
  margin: 0 0 36px;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.cta {
  display: inline-flex;
  align-items: center;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all .15s;
  font-size: 15px;
}
.cta:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.25); }
.cta.primary {
  background: #fff;
  color: #0a0a0c;
  border-color: #fff;
}
.cta.primary:hover { background: rgba(255,255,255,0.92); }
.meta {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: rgba(231,231,234,0.55);
  flex-wrap: wrap;
}

/* === About strip (between hero and Now Shipping) === */
.section-about {
  padding: 36px 24px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.about-line {
  max-width: 880px;
  margin: 0 auto;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
  color: rgba(231,231,234,0.85);
  letter-spacing: -0.005em;
  font-weight: 400;
}

/* === Sections === */
.section { padding: 90px 0; }
.section h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 48px;
  font-weight: 700;
  max-width: 800px;
}

/* === Current (3 live products) === */
.section-current {
  background:
    linear-gradient(180deg, transparent 0%, rgba(99,102,241,0.04) 100%),
    #0a0a0c;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.current-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.current-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  transition: all .2s;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.card-shot {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.card-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .4s ease;
}
.current-card:hover .card-shot img,
.community-card:hover .card-shot img,
.work-card.has-shot:hover .work-shot img {
  transform: scale(1.04);
}
.card-body {
  position: relative;
  z-index: 1;
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.current-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  z-index: 0;
}
.current-card.geo::before {
  background: radial-gradient(circle at 30% 30%, #34d399, transparent 60%),
              radial-gradient(circle at 80% 80%, #60a5fa, transparent 60%);
}
.current-card.studio::before {
  background: radial-gradient(circle at 30% 30%, #818cf8, transparent 60%),
              radial-gradient(circle at 80% 80%, #c084fc, transparent 60%);
}
.current-card.star::before {
  background: radial-gradient(circle at 30% 30%, #fbbf24, transparent 60%),
              radial-gradient(circle at 80% 80%, #f472b6, transparent 60%);
}
.current-card > * { position: relative; z-index: 1; }
.current-card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.current-card:hover::before { opacity: 0.16; }

.card-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(231,231,234,0.6);
  margin-bottom: 14px;
}
.current-card h3 {
  font-size: 26px;
  margin: 0 0 8px;
  letter-spacing: -0.015em;
}
.card-tagline {
  font-weight: 600;
  color: rgba(231,231,234,0.92);
  margin: 0 0 12px;
}
.current-card p {
  font-size: 14.5px;
  color: rgba(231,231,234,0.7);
  margin: 0 0 22px;
  flex: 1;
}
.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.card-foot .link {
  font-weight: 500;
}
.card-foot .stack {
  font-family: 'JetBrains Mono', monospace;
  color: rgba(231,231,234,0.5);
  font-size: 12px;
}

/* === Work cards === */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}
.work-card {
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.015);
  transition: border-color .15s;
  position: relative;
  overflow: hidden;
}
.work-card.has-shot { padding: 0; }
.work-shot {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.work-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .4s ease;
}
.work-body { padding: 26px 28px 28px; }
.work-card:hover { border-color: rgba(255,255,255,0.18); }
.work-card .ext { font-size: 14px; color: rgba(231,231,234,0.5); margin-left: 4px; }
.work-card header { margin-bottom: 14px; }
.work-card h3 {
  margin: 0 0 4px;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(231,231,234,0.55);
}
.work-card p {
  font-size: 15px;
  color: rgba(231,231,234,0.75);
  margin: 0 0 16px;
}
.metrics {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: rgba(231,231,234,0.7);
}
.metrics li {
  padding: 6px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.metrics li:first-child { border-top: none; padding-top: 12px; }
.metrics strong { color: #fff; font-weight: 600; }

/* === Community === */
.section-community {
  background:
    linear-gradient(180deg, transparent 0%, rgba(52,211,153,0.04) 100%),
    #0a0a0c;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.section-lede {
  font-size: 16px;
  color: rgba(231,231,234,0.65);
  max-width: 740px;
  margin: -28px 0 44px;
  line-height: 1.65;
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.community-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  transition: all .2s;
  position: relative;
  overflow: hidden;
  min-height: 240px;
}
.community-card .card-body {
  padding: 22px 24px 24px;
}
.community-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  z-index: 0;
}
.community-card.she::before {
  background: radial-gradient(circle at 30% 30%, #f472b6, transparent 60%),
              radial-gradient(circle at 80% 80%, #fbbf24, transparent 60%);
}
.community-card.royal::before {
  background: radial-gradient(circle at 30% 30%, #f87171, transparent 60%),
              radial-gradient(circle at 80% 80%, #fbbf24, transparent 60%);
}
.community-card.wildlife::before {
  background: radial-gradient(circle at 30% 30%, #34d399, transparent 60%),
              radial-gradient(circle at 80% 80%, #65a30d, transparent 60%);
}
.community-card.sharda::before {
  background: radial-gradient(circle at 30% 30%, #c084fc, transparent 60%),
              radial-gradient(circle at 80% 80%, #f472b6, transparent 60%);
}
.community-card > * { position: relative; z-index: 1; }
.community-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.community-card:hover::before { opacity: 0.12; }
.community-card h3 {
  font-size: 22px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.community-card p {
  font-size: 14px;
  color: rgba(231,231,234,0.7);
  margin: 0 0 18px;
  flex: 1;
}
.community-card .card-tagline {
  font-weight: 600;
  color: rgba(231,231,234,0.92);
  margin: 0 0 10px;
  font-size: 14.5px;
}

.work-aside {
  margin: 28px 0 0;
  font-size: 14px;
  color: rgba(231,231,234,0.55);
  font-style: italic;
}
.work-aside strong { color: rgba(231,231,234,0.85); font-style: normal; font-weight: 600; }

/* === Press === */
.section-press { background: linear-gradient(180deg, transparent 0%, rgba(244,114,182,0.04) 100%); }
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.press-card {
  display: block;
  padding: 26px 24px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  transition: all .15s;
}
a.press-card:hover {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}
.press-pub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fbbf24;
  margin-bottom: 12px;
  font-weight: 500;
}
.press-headline {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}
.press-byline {
  margin: 0;
  font-size: 13.5px;
  color: rgba(231,231,234,0.62);
  line-height: 1.55;
}
.press-speaking {
  background: linear-gradient(135deg, rgba(99,102,241,0.06), rgba(244,114,182,0.06));
  border-color: rgba(244,114,182,0.18);
}
.press-speaking .press-pub { color: #f472b6; }

/* === Stack === */
.section-stack { border-top: 1px solid rgba(255,255,255,0.04); }
.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.stack-grid > div {
  padding: 22px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(231,231,234,0.75);
}
.stack-grid strong {
  color: #fff;
  font-size: 15px;
  display: inline-block;
  margin-bottom: 4px;
}

/* === Contact === */
.section-contact {
  text-align: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(99,102,241,0.1), transparent 60%),
    #0a0a0c;
}
.contact-lead {
  font-size: 18px;
  color: rgba(231,231,234,0.75);
  max-width: 620px;
  margin: 0 auto 32px;
}
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.contact-grid a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background .15s;
}
.contact-grid a:hover { background: rgba(255,255,255,0.05); }

/* === Footer === */
footer {
  padding: 32px 0 48px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
  color: rgba(231,231,234,0.4);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-meta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.footer-mark {
  display: flex;
  align-items: center;
  opacity: 0.55;
  transition: opacity .15s;
}
.footer-mark:hover { opacity: 1; }
.footer-mark img {
  height: 26px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
}
.footer-mark::before {
  content: 'a';
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(231,231,234,0.35);
  margin-right: 10px;
}
.footer-mark::after {
  content: 'project';
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(231,231,234,0.35);
  margin-left: 10px;
}
@media (max-width: 600px) {
  .footer-inner { justify-content: center; }
}
