/* ============================================================
   Gimucco.com
   Design: warm-dark editorial, typographic, minimal
   ============================================================ */

:root {
  --bg:        #0a0908;
  --bg-alt:    #0f0e0c;
  --bg-hover:  #131210;
  --line:      rgba(242, 237, 230, 0.08);
  --line-md:   rgba(242, 237, 230, 0.14);
  --text:      #f2ede6;
  --text-2:    rgba(242, 237, 230, 0.42);
  --text-3:    rgba(242, 237, 230, 0.20);
  --green:     #c9a84c;
  --green-bg:  rgba(201, 168, 76, 0.07);
  /* --green:  #a78bfa; --green-bg: rgba(167, 139, 250, 0.07); */ /* violet — reserved */
  --fd:        'Syne', sans-serif;
  --fb:        'Inter', sans-serif;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Animations ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.06s; }
.d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.18s; }
.d4 { transition-delay: 0.24s; }
.d5 { transition-delay: 0.30s; }
.d6 { transition-delay: 0.36s; }
.d7 { transition-delay: 0.42s; }
.d8 { transition-delay: 0.48s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 20px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { height: 26px; }
.nav-logo-name {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* ── Hamburger ────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu overlay ──────────────────────────────── */
.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-family: var(--fd);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.nav-mobile-menu a:hover { color: var(--text); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0 0 64px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.hero-title { margin-top: auto; }

.hero-topbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: rgba(18, 17, 16, 0.92);
  border: 1px solid rgba(242, 237, 230, 0.10);
  border-radius: 100px;
  padding: 9px 20px 9px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  white-space: nowrap;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-notch-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}
.hero-topbar-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.55);
}
.hero-topbar-sep {
  color: rgba(242, 237, 230, 0.18);
  font-size: 0.7rem;
}
.hero-topbar-year {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.35);
}

.hero-title {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(4.4rem, 11.5vw, 12.5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  padding: 0 40px;
  margin-bottom: 64px;
}
.hero-title span { display: block; }
.hero-title .ot { color: var(--green); }

.hero-bottom {
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.hero-desc {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 420px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: flex-end;
  align-items: flex-end;
}
.hstat {
  text-align: right;
}
.hstat-num {
  font-family: var(--fd);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
}
.hstat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 5px;
  display: block;
}

/* ============================================================
   SPOTLIGHT — LNK.BIO
   ============================================================ */
.spotlight {
  border-bottom: 1px solid var(--line);
}
.spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.spotlight-left {
  padding: 80px 40px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.spotlight-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 8px;
}
.spotlight-label::before {
  content: '';
  width: 20px; height: 1.5px;
  background: var(--green);
  display: block;
}
.spotlight-number {
  font-family: var(--fd);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--text);
}
.spotlight-number-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-2);
  margin-top: 16px;
}
.spotlight-since {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}

.spotlight-right {
  padding: 80px 60px 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.spotlight-name {
  font-family: var(--fd);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.spotlight-tagline {
  font-size: 1rem;
  color: var(--text-2);
  font-style: italic;
  margin-top: 8px;
}
.spotlight-desc {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.75;
}
.spotlight-brands {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.brands-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.brands-list span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 3px 10px;
  border: 1px solid var(--line-md);
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.spotlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
  border-bottom: 1px solid var(--line-md);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}
.spotlight-cta:hover {
  color: var(--green);
  border-color: var(--green);
}
.spotlight-cta svg {
  transition: transform 0.2s;
}
.spotlight-cta:hover svg { transform: translate(2px, -2px); }

/* Ticker */
.ticker-outer {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-content {
  display: inline-flex;
  gap: 0;
  flex-shrink: 0;
}
.ticker-item {
  font-family: var(--fd);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 0 32px;
}
.ticker-item.accent { color: var(--green); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   PRODUCTS INDEX
   ============================================================ */
.products {
  padding: 0;
}
.products-section-intro {
  padding-top: 64px;
  padding-bottom: 40px;
  display: flex;
  align-items: baseline;
  gap: 24px;
}
.products-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}
.products-section-sub {
  font-size: 0.85rem;
  color: var(--text-2);
}
.products-header {
  display: grid;
  grid-template-columns: 56px 1fr 200px 160px 40px;
  gap: 24px;
  align-items: center;
  padding: 14px 40px;
  border-bottom: 1px solid var(--line);
}
.products-header span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-3);
}
.products-header span:nth-child(2) { padding-left: 2px; }
.products-header span:nth-child(4) { text-align: right; }

.product-row {
  display: grid;
  grid-template-columns: 56px 1fr 200px 160px 40px;
  gap: 24px;
  align-items: center;
  padding: 26px 40px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  transition: background 0.18s ease;
  cursor: pointer;
}
.product-row:hover { background: var(--bg-hover); }
.product-row:hover .row-num { color: var(--green); }
.product-row:hover .row-arrow { color: var(--green); transform: translate(3px, -3px); }

.row-num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-3);
  transition: color 0.18s;
  padding-top: 2px;
}
.row-num.flagship { color: var(--green); }

.row-title {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.row-name {
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.row-blurb {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.4;
}

.row-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-3);
}

.row-domain {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-3);
  text-align: right;
  letter-spacing: 0.01em;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.row-arrow {
  font-size: 1.1rem;
  color: var(--text-3);
  text-align: right;
  transition: color 0.18s, transform 0.18s;
}

/* ============================================================
   ETHOS / MANIFESTO
   ============================================================ */
.ethos {
  padding: 100px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ethos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.ethos-left {}
.ethos-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}
.ethos-eyebrow::before {
  content: '';
  width: 20px; height: 1.5px;
  background: var(--green);
  display: block;
}
.ethos-manifesto {
  font-family: var(--fd);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.025em;
  color: var(--text);
}
.ethos-manifesto .highlight {
  color: var(--green);
}

.ethos-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.pillar {
  background: var(--bg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.2s;
}
.pillar:hover { background: var(--bg-alt); }
.pillar-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-3);
}
.pillar-title {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pillar-desc {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 64px 0 40px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img { height: 24px; margin-bottom: 14px; }
.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-3);
  line-height: 1.65;
  max-width: 200px;
}
.footer-email {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.01em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
}
.footer-email:hover { border-color: var(--green); opacity: 0.75; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-2);
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--text); }
.footer-base {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .hero-title { padding: 0 32px; font-size: clamp(3.5rem, 10vw, 10rem); }
  .hero-bottom { padding: 40px 32px 0; }
  .products-header,
  .product-row { grid-template-columns: 48px 1fr 1fr 40px; padding: 22px 32px; gap: 20px; }
  .products-header span:nth-child(3),
  .row-tag { display: none; }
  .spotlight-right { padding: 60px 40px; }
  .spotlight-left { padding: 60px 40px; }
  .ethos-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .hero-title { font-size: clamp(3rem, 14vw, 6rem); padding: 0 24px; }
  .hero-bottom { grid-template-columns: 1fr; padding: 32px 24px 0; gap: 28px; }
  .hero-stats { justify-content: flex-start; }
  .spotlight-inner { grid-template-columns: 1fr; }
  .spotlight-left { border-right: none; border-bottom: 1px solid var(--line); padding: 48px 24px; }
  .spotlight-right { padding: 48px 24px; }
  .products-header,
  .product-row { grid-template-columns: 44px 1fr 40px; padding: 20px 24px; gap: 16px; }
  .products-header span:nth-child(4),
  .row-domain { display: none; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .ethos-pillars { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.6rem, 14vw, 5rem); letter-spacing: -0.03em; }
  .hero-topbar { font-size: 0.62rem; padding: 7px 14px 7px 12px; gap: 8px; }
  .footer-cols { grid-template-columns: 1fr; }
}
