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

:root {
  --bg1: #06040a;
  --bg2: #1b0f08;
  --bg3: #0b1220;
  --accent: #fbbf24;
  --accent-soft: #fde68a;
  --text: #ffffff;
  --muted: #d1d5db;
  --muted2: #cbd5e1;
  --card: rgba(2, 6, 23, 0.62);
  --stroke: rgba(255, 255, 255, 0.08);
  --dark: #020617;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--muted2);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-soft);
}

p {
  margin: 0 0 16px;
  color: var(--muted2);
}

/* ==================== HEADER ==================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.logo-text {
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
}

.header-nav a:hover {
  color: var(--accent);
}

/* ==================== HERO ==================== */
#aceto-landing {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  overflow: hidden;
}

.hero-banner-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.4) 0%,
    rgba(2, 6, 23, 0.7) 50%,
    rgba(2, 6, 23, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid var(--stroke);
}

.pill-gold {
  background: rgba(251, 191, 36, 0.15);
  border-color: rgba(251, 191, 36, 0.35);
  color: var(--accent);
}

.pill-blue {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.25);
  color: #93c5fd;
}

.pill-silver {
  background: rgba(148, 163, 184, 0.12);
  border-color: rgba(148, 163, 184, 0.25);
  color: var(--muted2);
}

.hero-title {
  margin: 0 0 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(36px, 8vw, 72px);
  line-height: 1.05;
  color: var(--text);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero-lead {
  margin: 0 0 32px;
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ==================== BUTTONS ==================== */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 16px;
  border: 1px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  cursor: pointer;
}

.cta.primary {
  background: var(--accent);
  color: #1a1a1a;
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.3);
}

.cta.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.4);
}

.cta.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted2);
  border-color: rgba(255, 255, 255, 0.15);
}

.cta.ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

/* ==================== SECTIONS ==================== */
.aceto-section {
  padding: 60px 20px;
  background: var(--dark);
}

.aceto-section.alt-bg {
  background: rgba(11, 18, 32, 0.6);
}

.section-shell {
  max-width: 1000px;
  margin: 0 auto;
}

.aceto-section h2 {
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(24px, 4vw, 36px);
  margin: 0 0 16px;
}

/* ==================== TOKEN SECTION ==================== */
.token-section {
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.95) 0%, var(--dark) 100%);
  padding-top: 40px;
}

.token-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.token-info h2 {
  margin-bottom: 20px;
}

.token-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 20px;
  display: grid;
  gap: 14px;
}

.token-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted2);
}

.token-row strong {
  color: var(--text);
}

.token-row a {
  color: var(--accent);
  font-weight: 600;
}

.mint-row {
  flex-wrap: wrap;
}

.mint-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

#aceto-mint {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--stroke);
  color: var(--muted2);
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
}

#copy-mint {
  cursor: pointer;
  border-radius: 8px;
  padding: 6px 12px;
  font-weight: 600;
  font-size: 12px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  background: rgba(251, 191, 36, 0.1);
  color: var(--accent);
  transition: background 0.2s;
}

#copy-mint:hover {
  background: rgba(251, 191, 36, 0.2);
}

.token-footnote {
  margin-top: 12px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
}

/* ==================== VALUE PROPS ==================== */
.value-props {
  display: grid;
  gap: 16px;
}

.value-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.value-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.value-title {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.value-body {
  font-size: 14px;
  color: var(--muted2);
  line-height: 1.5;
}

/* ==================== INFO CARDS ==================== */
.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.info-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 20px;
}

.info-title {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.info-copy {
  color: var(--muted2);
  font-size: 14px;
  line-height: 1.6;
}

.info-copy ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.info-copy li {
  margin-bottom: 6px;
}

.note {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(251, 191, 36, 0.25);
  background: rgba(251, 191, 36, 0.08);
  color: var(--accent-soft);
  font-size: 14px;
}

.cadence {
  margin-top: 24px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 20px;
}

/* ==================== LEDGER ==================== */
.ledger-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 20px;
  margin-top: 20px;
}

.ledger-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.ledger-header strong {
  color: var(--text);
  font-size: 16px;
}

.ledger-status {
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.12);
  color: var(--accent);
}

.ledger-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ledger-pill {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 14px;
}

.ledger-label {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 4px;
}

.pill-strong {
  font-weight: 600;
  color: var(--text);
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--stroke);
  padding: 40px 20px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--muted2);
}

.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-disclaimer {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
  max-width: 700px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .token-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .three-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-nav {
    display: none;
  }
}

@media (max-width: 680px) {
  #aceto-landing {
    min-height: 90vh;
    padding-top: 80px;
  }

  .two-col,
  .three-col,
  .ledger-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta-row {
    flex-direction: column;
    width: 100%;
  }

  .cta {
    width: 100%;
  }

  .value-card {
    flex-direction: column;
    text-align: center;
  }

  .aceto-section {
    padding: 40px 16px;
  }
}
