/* GEARU LLC — Global Styles */
/* Design: Premium Corporate Dark · Space Grotesk + Inter · Gold accents */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg:            #05080f;
  --bg-card:       #0b0f18;
  --bg-card-hover: #10151f;
  --border:        #1c2336;
  --border-hover:  #c9a84c;
  --text:          #e8eaf0;
  --text-muted:    #6b7894;
  --text-subtle:   #8a93ad;
  --gold:          #c9a84c;
  --gold-light:    #e2c87a;
  --gold-dim:      rgba(201,168,76,0.12);
  --font-heading:  'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:        10px;
  --radius-lg:     16px;
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* ─── UTILITY ────────────────────────────────────────── */
.gold-text {
  color: var(--gold);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── NAV ────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,8,15,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }


/* ─── HERO LOGO ────────────────────────────────────── */
.hero-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.hero-logo {
  width: 380px;
  max-width: 88%;
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  padding: 8rem 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at center top, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 1.1rem;
  margin-bottom: 2rem;
}

.hero-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: #05080f;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ─── SECTION BASE ───────────────────────────────────── */
.section {
  padding: 5.5rem 0;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

/* ─── BRAND GRID ─────────────────────────────────────── */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.brand-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  cursor: default;
}

.brand-card:hover {
  border-color: rgba(201,168,76,0.35);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.brand-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: flex-start;
}

.brand-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  white-space: nowrap;
}

.brand-tag.saas {
  background: rgba(56, 139, 253, 0.12);
  color: #79b8ff;
  border: 1px solid rgba(56,139,253,0.2);
}

.brand-tag.apparel {
  background: rgba(201,168,76,0.1);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.2);
}

.brand-tag.desktop {
  background: rgba(163,230,53,0.1);
  color: #a3e635;
  border: 1px solid rgba(163,230,53,0.18);
}

.brand-tag.free {
  background: rgba(52,211,153,0.1);
  color: #34d399;
  border: 1px solid rgba(52,211,153,0.18);
}

.brand-tag.coming-soon {
  background: rgba(107,114,148,0.15);
  color: var(--text-muted);
  border: 1px solid rgba(107,114,148,0.25);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.brand-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  transition: color 0.2s;
}

.brand-link:hover { color: var(--gold-light); }

.brand-link-disabled {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  opacity: 0.55;
  cursor: not-allowed;
}

/* ─── WHAT WE BUILD ──────────────────────────────────── */
.build-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.build-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
}

.build-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.build-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.build-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.build-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── CONTACT (HOME) ─────────────────────────────────── */
.contact-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  border: 1px solid var(--border);
  text-align: center;
  max-width: 600px;
  margin: 3rem auto 0;
}

.contact-box h2 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.contact-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.contact-email {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 1.25rem;
  transition: color 0.2s;
}

.contact-email:hover { color: var(--gold-light); }

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.25rem 2rem;
  text-align: center;
  font-size: 0.825rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 2rem;
}

footer a { transition: color 0.2s; }
footer a:hover { color: var(--text); }

/* ─── POLICY PAGES ───────────────────────────────────── */
.policy-nav {
  padding: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(5,8,15,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.policy-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
}

.policy-nav a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.policy-nav a:hover { color: var(--text); }

.policy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 4.5rem 2rem;
}

.policy-content h1 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

.policy-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  display: block;
}

.policy-content h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 2.5rem 0 0.75rem;
  color: var(--text);
}

.policy-content p, .policy-content li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.policy-content ul, .policy-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── CONTACT PAGE ───────────────────────────────────── */
.contact-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.contact-page h1 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

.contact-page-sub {
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-row label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-row a, .contact-row span {
  font-size: 0.95rem;
  color: var(--text-subtle);
  transition: color 0.2s;
}

.contact-row a:hover { color: var(--gold); }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 640px) {
  .nav-inner { padding: 1rem 1.25rem; }
  .nav-links { gap: 1.25rem; }
  .hero { padding: 5rem 1.25rem 4rem; }
  .section-inner { padding: 0 1.25rem; }
  .contact-box { padding: 2rem 1.5rem; }
  footer { padding: 2rem 1.25rem; flex-direction: column; gap: 0.5rem; }
  .brand-grid { grid-template-columns: 1fr; }
  .build-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
