/* =========================================================
   Doge Shiba — Landing Page Styles
   Palette: orange #F97316, cream #FFFBF5, dark #1A1208
   Typography: Nunito (headings), Inter (body)
   ========================================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: #FFFBF5;
  color: #1A1208;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---------- Container ---------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Nunito', sans-serif;
  line-height: 1.2;
  font-weight: 800;
}

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F97316;
  background: #FEF3E2;
  border: 1px solid #FDBA74;
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1rem;
}

.section-h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #1A1208;
  margin-bottom: 2.5rem;
}

.section-sub {
  font-size: 1.125rem;
  color: #6B4F2A;
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

.gradient-text {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 60%, #C2410C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 4px 18px rgba(249,115,22,0.3);
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,0.4);
  opacity: 0.95;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #F97316;
  border: 2px solid #F97316;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.73rem 1.75rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
}

.btn-outline:hover {
  background: #F97316;
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.9rem 2.25rem;
  font-size: 1.0625rem;
}

/* ---------- Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 245, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #FDE8C8;
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(26,18,8,0.08);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.logo-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.375rem;
  color: #1A1208;
  letter-spacing: -0.01em;
}

.logo-accent {
  color: #F97316;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
  align-items: center;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  color: #5C3D18;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover {
  color: #F97316;
  background: #FEF3E2;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1A1208;
  border-radius: 2px;
  transition: transform 0.3s;
}

.mobile-menu {
  display: none;
  background: #FFFBF5;
  border-top: 1px solid #FDE8C8;
  padding: 1rem 1.5rem 1.5rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #5C3D18;
  padding: 0.5rem 0;
}

/* ---------- Hero ---------- */
.hero-section {
  background: linear-gradient(160deg, #FFFBF5 0%, #FEF3E2 60%, #FDE8C8 100%);
  padding: 5rem 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 5rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #EA580C;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.25rem;
}

.hero-h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  color: #1A1208;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.0625rem;
  color: #6B4F2A;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat-pill {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Nunito', sans-serif;
  font-size: 1.375rem;
  font-weight: 900;
  color: #1A1208;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.75rem;
  color: #9A7040;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: #F5CFA0;
}

/* Hero image */
.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 0 24px 64px rgba(249,115,22,0.2), 0 4px 16px rgba(26,18,8,0.12);
}

.hero-image-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26,18,8,0.82);
  backdrop-filter: blur(8px);
  color: #F97316;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid rgba(249,115,22,0.4);
  white-space: nowrap;
}

.hero-wave {
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ---------- About ---------- */
.about-section {
  background: #FEF3E2;
  padding: 6rem 1.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  color: #4A3015;
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-text p em {
  color: #F97316;
  font-style: normal;
  font-weight: 600;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #FDE8C8;
  box-shadow: 0 2px 12px rgba(249,115,22,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(249,115,22,0.12);
}

.about-card-icon {
  margin-bottom: 0.75rem;
}

.about-card h3 {
  font-size: 1.125rem;
  color: #1A1208;
  margin-bottom: 0.5rem;
}

.about-card p {
  font-size: 0.9375rem;
  color: #6B4F2A;
  line-height: 1.6;
}

/* ---------- Tokenomics ---------- */
.tokenomics-section {
  background: #FFFBF5;
  padding: 6rem 1.5rem;
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

/* Key stat cards */
.token-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.token-stat-card {
  background: #FEF3E2;
  border: 1px solid #FDE8C8;
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform 0.2s;
}

.token-stat-card:hover {
  transform: translateY(-3px);
}

.token-stat-card.accent {
  background: #F97316;
  border-color: #EA580C;
}

.token-stat-card.accent .token-stat-num,
.token-stat-card.accent .token-stat-label {
  color: #fff;
}

.token-stat-num {
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #1A1208;
  line-height: 1.2;
  margin-bottom: 0.4rem;
  word-break: break-all;
}

.token-stat-label {
  font-size: 0.8125rem;
  color: #9A7040;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Distribution table */
.token-table-wrap {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #FDE8C8;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(249,115,22,0.08);
}

.token-table-title {
  font-size: 1.125rem;
  color: #1A1208;
  margin-bottom: 1.25rem;
  font-weight: 800;
}

.token-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.token-table thead tr {
  border-bottom: 2px solid #FDE8C8;
}

.token-table th {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #9A7040;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: left;
  padding: 0.6rem 0.75rem;
}

.token-table td {
  padding: 0.85rem 0.75rem;
  font-size: 0.9375rem;
  color: #3D2810;
  border-bottom: 1px solid #FEF3E2;
  vertical-align: middle;
}

.token-table tbody tr:last-child td {
  border-bottom: none;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 0.5rem;
  flex-shrink: 0;
  vertical-align: middle;
}

.dot-orange { background: #F97316; }
.dot-amber  { background: #FB923C; }
.dot-brown  { background: #92400E; }
.dot-red    { background: #DC2626; }

/* Distribution bar */
.dist-bar-wrap {
  margin-top: 0.5rem;
}

.dist-bar {
  display: flex;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.dist-bar-seg {
  transition: opacity 0.2s;
}

.dist-bar-seg:hover {
  opacity: 0.8;
}

.dist-legend {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: #9A7040;
  font-weight: 500;
}

/* Burn notice */
.burn-notice {
  margin-top: 3rem;
  background: linear-gradient(135deg, #FEF3E2, #FDE8C8);
  border: 1.5px solid #FDBA74;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.burn-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.burn-notice p {
  font-size: 1rem;
  color: #4A3015;
  font-weight: 500;
  line-height: 1.5;
}

/* ---------- Features ---------- */
.features-section {
  background: #FEF3E2;
  padding: 6rem 1.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #FDE8C8;
  padding: 2rem 1.75rem;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F97316, #EA580C);
  opacity: 0;
  transition: opacity 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(249,115,22,0.12);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-illustration {
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.1875rem;
  color: #1A1208;
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.feature-card p {
  font-size: 0.9375rem;
  color: #6B4F2A;
  line-height: 1.7;
}

/* ---------- Community ---------- */
.community-section {
  background: #FFFBF5;
  padding: 6rem 1.5rem;
  text-align: center;
}

.community-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid #FDE8C8;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: 0 2px 10px rgba(249,115,22,0.06);
}

.social-card:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 24px rgba(249,115,22,0.14);
  border-color: #FDBA74;
}

.social-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.social-discord  { background: #5865F2; }
.social-twitter  { background: #000; }
.social-telegram { background: #26A5E4; }

.social-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.social-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #1A1208;
}

.social-stat {
  font-size: 0.8125rem;
  color: #9A7040;
}

.social-arrow {
  font-size: 1.25rem;
  color: #F97316;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.social-card:hover .social-arrow {
  transform: translateX(4px);
}

/* CTA block */
.cta-block {
  background: linear-gradient(135deg, #1A1208 0%, #2D1E0A 100%);
  border-radius: 24px;
  padding: 3rem 2rem;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
}

.cta-block h3 {
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-block p {
  color: #C4965A;
  font-size: 1rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #1A1208;
  color: #C4965A;
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  color: #fff;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: #7A5530;
  margin: 0.75rem 0 1.5rem;
  line-height: 1.5;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input::placeholder {
  color: #7A5530;
}

.newsletter-input:focus {
  border-color: #F97316;
}

.newsletter-note {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #F97316;
}

.footer-links-group h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links-group a {
  font-size: 0.9375rem;
  color: #7A5530;
  transition: color 0.15s;
}

.footer-links-group a:hover {
  color: #F97316;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: #5C3D18;
}

.footer-disclaimer {
  font-size: 0.8125rem !important;
  line-height: 1.5;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-inner .btn-primary { display: none; }
  .mobile-menu-btn { display: flex; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding-bottom: 0;
  }

  .hero-h1 {
    font-size: clamp(2.25rem, 7vw, 3rem);
  }

  .hero-sub {
    margin: 0 auto 2rem;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-wrap {
    order: -1;
  }

  .hero-image-frame {
    max-width: 300px;
    margin: 0 auto;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Tokenomics */
  .tokenomics-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  /* Hero */
  .hero-section {
    padding-top: 3.5rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
    text-align: center;
  }

  /* Token stats */
  .token-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .token-stat-num {
    font-size: 1.1rem;
  }

  /* Tokenomics table */
  .token-table td,
  .token-table th {
    padding: 0.6rem 0.4rem;
    font-size: 0.8125rem;
  }

  /* Burn notice */
  .burn-notice {
    flex-direction: column;
    text-align: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    border-radius: 12px;
  }

  .newsletter-form .btn-primary {
    border-radius: 12px;
    width: 100%;
    text-align: center;
  }

  .footer-bottom {
    gap: 0.75rem;
  }

  /* Section headings */
  .section-h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 375px) {
  /* Ensure no horizontal scroll */
  body { overflow-x: hidden; }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .stat-divider {
    display: none;
  }
}
