/* ===== CSS Variables ===== */
:root {
  --bg-dark: #0a0e17;
  --bg-card: #12182a;
  --bg-card-hover: #1a2238;
  --gold: #ffd700;
  --gold-light: #ffe566;
  --red: #e63946;
  --red-dark: #c1121f;
  --green: #2ecc71;
  --text: #e8e8e8;
  --text-muted: #8892a4;
  --border: rgba(255, 215, 0, 0.15);
  --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ff8c00 50%, #e63946 100%);
  --gradient-dark: linear-gradient(180deg, #0a0e17 0%, #12182a 100%);
  --shadow-gold: 0 0 40px rgba(255, 215, 0, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== Background ===== */
.bg-pattern {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(230, 57, 70, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(46, 204, 113, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.floating-cards {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.card {
  position: absolute;
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 2rem;
  opacity: 0.04;
  animation: float 20s ease-in-out infinite;
}

.card-1 { top: 10%; left: 5%; color: var(--text); animation-delay: 0s; }
.card-2 { top: 30%; right: 8%; color: var(--red); animation-delay: -5s; }
.card-3 { bottom: 25%; left: 12%; color: var(--gold); animation-delay: -10s; }
.card-4 { bottom: 15%; right: 15%; color: var(--green); animation-delay: -15s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(5deg); }
  50% { transform: translateY(10px) rotate(-3deg); }
  75% { transform: translateY(-15px) rotate(2deg); }
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.5rem;
}

.logo-icon {
  font-size: 1.8rem;
}

.logo-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #0a0e17;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(255, 215, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 60px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hero-title {
  margin-bottom: 16px;
}

.title-cn {
  display: block;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.title-en {
  display: block;
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--text-muted);
  letter-spacing: 0.3em;
  margin-top: 8px;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.hero-desc {
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.contract-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 20px;
  max-width: 100%;
}

.contract-box code {
  font-family: 'Orbitron', monospace;
  font-size: clamp(0.65rem, 2vw, 0.85rem);
  color: var(--text-muted);
  word-break: break-all;
}

.copy-btn {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  transition: var(--transition);
}

.copy-btn:hover {
  color: var(--gold-light);
  transform: scale(1.1);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 60px auto 0;
  padding: 0 24px;
}

.stat-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  transition: var(--transition);
}

.stat-item:hover {
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-4px);
}

.stat-value {
  display: block;
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Sections ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 16px;
}

.section-title .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  text-align: center;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 48px;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}

.about-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-6px);
}

.about-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--gold);
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Tokenomics ===== */
.tokenomics {
  background: rgba(18, 24, 42, 0.5);
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.card-heading {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.card-heading.center {
  text-align: center;
  border-bottom: none;
  margin-bottom: 8px;
}

.token-info,
.distribution-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  gap: 16px;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.info-value {
  font-weight: 700;
  font-size: 0.9rem;
  text-align: right;
}

.text-green {
  color: var(--green);
}

.text-gold {
  color: var(--gold);
}

/* Mint Section in Tokenomics */
.mint-section {
  margin-top: 48px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.06) 0%, rgba(230, 57, 70, 0.04) 100%);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}

.mint-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.mint-step {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}

.mint-step-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  background: var(--gradient-gold);
  color: #0a0e17;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 12px;
}

.mint-step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--gold-light);
}

.mint-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.mint-step code {
  font-size: 0.75rem;
  color: var(--gold);
}

.bnb-split {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.bnb-split-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.85rem;
}

.bnb-pct {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  color: var(--gold);
}

.mint-formula {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.mechanism-card.highlight-card {
  border-color: rgba(255, 215, 0, 0.4);
  background: rgba(255, 215, 0, 0.04);
}

/* Mint Page Section */
.mint {
  background: rgba(255, 215, 0, 0.03);
}

.mint-contract-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 2px dashed rgba(255, 215, 0, 0.4);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 32px auto;
  max-width: 700px;
  text-align: center;
}

.mint-contract-label {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 700;
}

.mint-contract-box code {
  font-family: 'Orbitron', monospace;
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  color: var(--text);
  word-break: break-all;
}

.dist-bars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dist-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dist-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
}

.dist-pct {
  color: var(--gold);
  font-family: 'Orbitron', monospace;
}

.dist-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.dist-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}

.dist-fill.burn { background: linear-gradient(90deg, #e63946, #ff6b6b); }
.dist-fill.lock { background: linear-gradient(90deg, #ffd700, #ff8c00); }
.dist-fill.lp { background: linear-gradient(90deg, #2ecc71, #27ae60); }
.dist-fill.community { background: linear-gradient(90deg, #3498db, #2980b9); }

.dist-amt {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Tax Section */
.tax-section {
  margin-top: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}

.tax-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 32px;
}

.tax-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.tax-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}

.tax-card:hover {
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-4px);
}

.tax-pct {
  display: block;
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 8px;
}

.tax-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.tax-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.tax-total {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 1rem;
}

.tax-total strong {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  color: var(--red);
}

/* Mechanism Grid */
.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.mechanism-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}

.mechanism-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-4px);
}

.mechanism-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.mechanism-card h4 {
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.mechanism-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.mechanism-card strong {
  color: var(--text);
}

/* ===== Model Analysis ===== */
.model {
  background: rgba(10, 14, 23, 0.8);
}

.model-flow {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin: 48px 0;
  overflow-x: auto;
  padding-bottom: 8px;
}

.flow-step {
  flex: 1;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
}

.flow-num {
  width: 36px;
  height: 36px;
  background: var(--gradient-gold);
  color: #0a0e17;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  margin: 0 auto 16px;
}

.flow-step h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--gold-light);
}

.flow-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.flow-arrow {
  display: flex;
  align-items: center;
  color: var(--gold);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.model-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.summary-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.summary-card.warning {
  border-color: rgba(230, 57, 70, 0.3);
  background: rgba(230, 57, 70, 0.05);
}

.summary-card h4 {
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.summary-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary-card li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.summary-card li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.summary-card li strong {
  color: var(--text);
}

.summary-card.warning li::before {
  color: var(--red);
}

/* ===== Buy ===== */
.buy-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.step:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-4px);
}

.step-num {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.buy-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Quote ===== */
.quote {
  padding: 60px 0;
}

.quote blockquote {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
}

.quote p {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.6;
}

.quote cite {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

/* ===== Community ===== */
.community-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.community-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
}

.community-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.community-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.community-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.community-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Footer ===== */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 48px 0;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-contract {
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  word-break: break-all;
  margin-bottom: 20px;
}

.footer-disclaimer {
  max-width: 600px;
  margin: 0 auto 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--gold);
  color: #0a0e17;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about-grid,
  .buy-steps,
  .community-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .tokenomics-grid,
  .mechanism-grid {
    grid-template-columns: 1fr;
  }

  .tax-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .model-summary {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links,
  .navbar .btn-primary {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .navbar.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 23, 0.98);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }

  .about-grid,
  .buy-steps,
  .community-links,
  .tax-grid,
  .mint-flow {
    grid-template-columns: 1fr;
  }

  .model-flow {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-value {
    font-size: 1.4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }

  .contract-box {
    flex-direction: column;
    gap: 8px;
  }
}
