/* ─── Tokens ─── */
:root {
  --bg:        #0a0c0f;
  --surface:   #111418;
  --surface2:  #181c22;
  --border:    #222830;
  --accent:    #f0b429;
  --accent2:   #00d8a4;
  --red:       #f23645;
  --text:      #e2e6ec;
  --muted:     #6b7585;
  --font-head: 'Syne', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --font-body: 'Inter', sans-serif;
}

*, *::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: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── Noise overlay ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}

/* ─── Grid bg ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
	linear-gradient(var(--border) 1px, transparent 1px),
	linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
  transition: height 0.2s;
}

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 64px;
  background: rgba(10,12,15,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-brand span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--accent);
  color: #000;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.15s;
}

.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ─── WRAPPER ─── */
.wrap {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── HERO ─── */
.hero {
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,180,41,0.1);
  border: 1px solid rgba(240,180,41,0.25);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

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

.hero p {
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, button.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 4px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ─── SCREEN SHOT ─── */
.screen-wrap {
  position: relative;
  z-index: 1;
  margin: 40px auto 100px;
  max-width: 1000px;
  padding: 0 32px;
}

.screen-shot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}

/* ─── SECTION TITLE ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--accent);
}

section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

section + section {
  border-top: 1px solid var(--border);
}

section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

section h2 span { color: var(--accent); }

section > .wrap > p.intro {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 56px;
}

/* ─── WHAT IS IT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.about-text p { color: var(--muted); margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }

.about-highlight {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  padding: 28px;
}

.about-highlight h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
}

.ah-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ah-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.ah-list li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
  font-family: var(--font-mono);
}

/* ─── FEATURES ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.feature-card {
  background: var(--surface);
  padding: 32px 28px;
  transition: background 0.2s;
}

.feature-card:hover { background: var(--surface2); }

.fc-icon {
  width: 40px; height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.fc-icon.gold { background: rgba(240,180,41,0.12); }
.fc-icon.green { background: rgba(0,216,164,0.12); }
.fc-icon.red { background: rgba(242,54,69,0.12); }

.feature-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}

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

/* ─── HOW TO USE ─── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.step:last-child { border-bottom: none; }
.step:hover { background: var(--surface2); }

.step-num {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 0 0;
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
}

.step-content {
  padding: 28px 32px;
}

.step-content h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(240,180,41,0.1);
  color: var(--accent);
  border: 1px solid rgba(240,180,41,0.2);
  padding: 2px 8px;
  border-radius: 100px;
}

.step-content p {
  color: var(--muted);
  font-size: 0.9rem;
}

.step-tip {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
}

.step-tip .tip-label {
  color: var(--accent);
  font-weight: 500;
  flex-shrink: 0;
}

.step-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 12px;
  background: rgba(240,180,41,0.08);
  border: 1px solid rgba(240,180,41,0.25);
  border-radius: 6px;
  padding: 14px 16px;
}

.step-highlight .highlight-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-highlight .highlight-content {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.step-highlight a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.step-highlight a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* ─── INSTRUMENTS / TIMEFRAMES ─── */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}

.tag:hover { border-color: var(--accent); color: var(--accent); }
.tag.active { border-color: var(--accent2); color: var(--accent2); background: rgba(0,216,164,0.07); }

/* ─── DRAWING TOOLS ─── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.tool-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, transform 0.15s;
}

.tool-item:hover { border-color: var(--accent); transform: translateY(-2px); }

.tool-icon {
  font-size: 1.4rem;
}

.tool-item h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
}

.tool-item p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ─── SPECS ─── */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.specs-table th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
}

.specs-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:hover td { background: var(--surface2); }

.specs-table td:first-child {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  white-space: nowrap;
  width: 200px;
}

.specs-table td:last-child { color: var(--muted); }

.specs-wrap {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

/* ─── SYSTEM REQUIREMENTS ─── */
.sysreq-wrap {
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.sysreq-header {
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.sysreq-sub {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.sysreq-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--border);
  gap: 1px;
}

.sysreq-item {
  background: var(--surface);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.2s;
}

.sysreq-item:hover { background: var(--surface2); }

.sysreq-icon { font-size: 1.3rem; margin-bottom: 4px; }

.sysreq-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sysreq-value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sysreq-rec {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--accent2);
}

.sysreq-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 28px;
  background: rgba(240,180,41,0.04);
  border-top: 1px solid var(--border);
}

.sysreq-note-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.sysreq-note p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.sysreq-note p strong {
  color: var(--text);
  font-weight: 600;
}



/* ─── CTA ─── */
.cta-section {
  text-align: center;
  padding: 100px 0;
}

.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 40px;
}

/* ─── FOOTER ─── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 32px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
}

footer span { color: var(--accent); }

/* ─── DIVIDER ─── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 16px 0;
}

.highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 255, 150, 0.1);
  color: #00ff99;
}

/* ─── HAMBURGER BUTTON ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.nav-hamburger:hover { border-color: var(--accent); }

.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE MENU DRAWER ─── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(10,12,15,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  list-style: none;
  padding: 12px 0;
}

.mobile-menu ul li a {
  display: block;
  padding: 14px 24px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}

.mobile-menu ul li:last-child a { border-bottom: none; }
.mobile-menu ul li a:hover { color: var(--accent); background: rgba(240,180,41,0.04); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; }
  .logo img { height: 32px; }

  .about-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .tools-grid { grid-template-columns: 1fr 1fr; }
  .screen-shot { border-radius: 6px; }

  .sysreq-grid { grid-template-columns: repeat(3, 1fr); }
  .sysreq-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  /* Nav */
  nav { padding: 0 16px; height: 56px; }
  .mobile-menu { top: 56px; }
  .logo img { height: 28px; }

  /* Wrap padding */
  .wrap { padding: 0 16px; }
  .screen-wrap { padding: 0 16px; margin-bottom: 60px; }

  /* Hero */
  .hero { padding: 72px 0 56px; }
  .hero h1 {
    font-size: clamp(2.2rem, 11vw, 2.2rem);
    letter-spacing: -0.03em;
    line-height: 1.05;
  }
  .hero p { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 10px; }
  .btn-primary, button.btn-primary { padding: 14px 28px; font-size: 0.9rem; }
  .btn-ghost { padding: 13px 28px; font-size: 0.9rem; }

  /* Sections */
  section { padding: 56px 0; }
  section h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.15;
  }
  section > .wrap > p.intro { margin-bottom: 32px; font-size: 0.95rem; }

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

  /* Steps */
  .step { grid-template-columns: 48px 1fr; }
  .step-content { padding: 20px 16px 20px 0; }
  .step-num { font-size: 1.4rem; padding-top: 22px; }

  /* Specs table — stack on mobile */
  .specs-table thead { display: none; }
  .specs-table, .specs-table tbody, .specs-table tr, .specs-table td {
    display: block;
    width: 100%;
  }
  .specs-table tr {
    border-bottom: 1px solid var(--border);
    padding: 12px 16px;
  }
  .specs-table tr:last-child { border-bottom: none; }
  .specs-table td { padding: 2px 0; border-bottom: none; white-space: normal; }
  .specs-table td:first-child { width: 100%; margin-bottom: 4px; font-size: 0.72rem; }

  /* Sysreq */
  .sysreq-grid { grid-template-columns: 1fr 1fr; }
  .sysreq-note { padding: 16px; gap: 10px; }

  /* CTA */
  .cta-section { padding: 72px 0; }
  .cta-section h2 { font-size: clamp(1.6rem, 8vw, 2.4rem); }

  /* Modal */
  .modal-card { padding: 32px 20px 24px; }
  .modal-title { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(1.5rem, 6vw, 2.5rem); }
  .sysreq-grid { grid-template-columns: 1fr; }
}

/* ─── DOWNLOAD MODAL ─── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 24px;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  position: relative;
  background: rgba(17, 20, 24, 0.92);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 44px 40px 36px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.05);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.28s ease, opacity 0.25s ease;
}

.modal-backdrop.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  line-height: 1;
}

.modal-close:hover { color: var(--text); background: var(--surface2); }

.modal-icon {
  width: 56px;
  height: 56px;
  background: rgba(240,180,41,0.1);
  border: 1px solid rgba(240,180,41,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
}

.modal-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.modal-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}

.modal-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.modal-btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.modal-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25d366;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.modal-btn-whatsapp:hover { background: rgba(37,211,102,0.18); transform: translateY(-1px); }

.modal-footnote {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
  opacity: 0.7;
}

@media (max-width: 500px) {
  .modal-card { padding: 36px 24px 28px; }
  .modal-title { font-size: 1rem; }
}

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeIn 0.7s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
