/* ═══════════════════════════════════════════════════════════════
   getile audio marketing site
   Design system: dark #13100C base, #E7A75A amber accent
   Fonts: Hanken Grotesk + IBM Plex Mono
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --bg:          #13100C;
  --bg-1:        #1B1710;
  --bg-2:        #221E14;
  --bg-card:     #1D1912;
  --border:      rgba(255,255,255,0.07);
  --border-soft: rgba(255,255,255,0.04);
  --accent:      #E7A75A;
  --accent-dim:  rgba(231,167,90,0.15);
  --accent-glow: rgba(231,167,90,0.08);
  --text-1:      #F5EFE6;
  --text-2:      #A89C8C;
  --text-3:      #6E6358;
  --mono:        'IBM Plex Mono', 'Courier New', monospace;
  --sans:        'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --r-sm:        6px;
  --r-md:        10px;
  --r-lg:        16px;
  --r-xl:        24px;
  --shadow-card: 0 1px 3px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 48px rgba(231,167,90,0.12);
  --easing:      cubic-bezier(0.4, 0, 0.2, 1);
  --container:   1120px;
  
  /* Spacing Tokens (integrated from second file) */
  --sp-8:        8px;
  --sp-16:       16px;
  --sp-24:       24px;
  --sp-32:       32px;
  --sp-12:       12px;

  --success:     #6FBF7A;
  --success-bg:  rgba(111,191,122,0.12);
  --danger:      #E2685C;
  --danger-bg:   rgba(226,104,92,0.12);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

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

ul { list-style: none; }

/* ── Utilities ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent { color: var(--accent); }

.hidden { display: none !important; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-md);
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.18s var(--easing), border-color 0.18s var(--easing),
              opacity 0.18s var(--easing), transform 0.12s var(--easing);
  white-space: nowrap;
}

.btn:active:not(.btn--disabled) { transform: scale(0.97); }

.btn--primary {
  background: var(--accent);
  color: #13100C;
  border-color: var(--accent);
}
.btn--primary:hover { background: #f0b96c; border-color: #f0b96c; }

.btn--ghost {
  background: transparent;
  color: var(--text-1);
  border-color: var(--border);
}
.btn--ghost:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); }

.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: rgba(231,167,90,0.4);
}
.btn--outline:hover { background: var(--accent-dim); border-color: var(--accent); }

.btn--sm { padding: 8px 18px; font-size: 0.875rem; }
.btn--lg { padding: 15px 30px; font-size: 1rem; }

.btn--full { width: 100%; justify-content: center; }

.btn--disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Section header ──────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.0625rem;
  color: var(--text-2);
  max-width: 540px;
  margin: 0 auto;
}

/* ── Brand ───────────────────────────────────────────────────── */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-1);
}

.brand-logo {
  height: 64px;
  width: auto;
  display: block;
}

/* ── Site header ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.25s var(--easing), border-color 0.25s var(--easing);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(19,16,12,0.92);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}

.header-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.header-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.15s;
}
.header-nav a:hover { color: var(--text-1); }

.header-cta { margin-left: 8px; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 1px;
  flex-shrink: 0;
}

.lang-opt {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-3);
  padding: 4px 7px;
  border-radius: var(--r-sm);
  transition: color 0.15s;
}
.lang-opt:hover { color: var(--text-2); }
.lang-opt--active {
  color: var(--accent);
  background: var(--accent-dim);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-1);
  margin-left: auto;
}

.hamburger svg { width: 24px; height: 24px; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  background: rgba(19,16,12,0.98);
}

.mobile-nav a {
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.mobile-nav a:hover { color: var(--text-1); }
.mobile-nav .btn {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}
.hero-glow--1 {
  width: 480px; height: 480px;
  background: rgba(231,167,90,0.08);
  top: 5%; right: 10%;
}
.hero-glow--2 {
  width: 320px; height: 320px;
  background: rgba(231,100,50,0.05);
  bottom: 20%; left: 5%;
}

.hero-rings {
  position: absolute;
  top: 50%; right: -60px;
  transform: translateY(-50%);
  width: 580px; height: 580px;
  opacity: 0.65;
}
.hero-rings svg { width: 100%; height: 100%; }

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto 1fr;
  column-gap: 64px;
  row-gap: 0;
}

.pill-badge {
  grid-column: 1;
  display: inline-flex;
  align-self: start;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--accent-dim);
  border: 1px solid rgba(231,167,90,0.3);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-headline {
  grid-column: 1;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-subhead {
  grid-column: 1;
  font-size: 1.125rem;
  color: var(--text-2);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.hero-actions {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-mockup {
  grid-column: 2;
  grid-row: 1 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Hero demo video (girato in verticale, 1080×1440 — 3:4) ────── */
.hero-video-frame {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  background: #000;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  overflow: hidden;
}

.hero-video {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #000;
  object-fit: cover;
}

/* ── Values ──────────────────────────────────────────────────── */
.values {
  padding: 96px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.value-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}

.value-card:hover {
  border-color: rgba(231,167,90,0.2);
  background: #201C11;
}

.value-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-dim);
  border-radius: var(--r-sm);
  margin-bottom: 20px;
  color: var(--accent);
}
.value-icon svg { width: 22px; height: 22px; }

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-1);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── How it works ────────────────────────────────────────────── */
.how {
  padding: 112px 0;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1 1 0;
  min-width: 0;
  display: grid;
  gap: 16px;
}

.step-number {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.step-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-1);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text-2);
  transition: border-color 0.2s, color 0.2s;
}
.step:hover .step-icon {
  border-color: rgba(231,167,90,0.35);
  color: var(--accent);
}
.step-icon svg { width: 24px; height: 24px; }

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.3;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}

.step-download-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.step-connector {
  flex: 0 0 40px;
  display: flex;
  align-items: flex-start;
  padding-top: 56px;
  justify-content: center;
}

.step-connector::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--accent), rgba(231,167,90,0.3));
}

/* ── Demo / video ────────────────────────────────────────────── */
.demo {
  padding: 112px 0;
}

.demo-frame-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  background: var(--bg-2);
  aspect-ratio: 16 / 10;
}

.demo-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.demo-fullscreen {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(19,16,12,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.demo-fullscreen:hover {
  color: var(--text-1);
  border-color: rgba(255,255,255,0.18);
  background: rgba(19,16,12,0.92);
}

.demo-fullscreen svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ── Features ────────────────────────────────────────────────── */
.features {
  padding: 112px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.feature-block {
  padding: 40px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 24px;
  align-items: start;
  transition: border-color 0.2s;
}

.feature-block:hover { border-color: rgba(231,167,90,0.18); }

.feature-block--wide {
  grid-column: 1 / -1;
  grid-template-columns: 52px 1fr;
}

.feature-block-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-dim);
  border-radius: var(--r-sm);
  color: var(--accent);
  flex-shrink: 0;
}
.feature-block-icon svg { width: 22px; height: 22px; }

.feature-block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-block p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.feature-tags span {
  font-family: var(--mono);
  font-size: 0.6875rem;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  color: var(--text-2);
  border: 1px solid var(--border);
}

/* ── Pro CTA ─────────────────────────────────────────────────── */
.pro-cta {
  padding: 96px 0;
}

.pro-cta-inner {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 64px;
  align-items: center;
  background: linear-gradient(135deg, #1D1912 0%, #211D10 100%);
  border: 1px solid rgba(231,167,90,0.15);
  border-radius: var(--r-xl);
  padding: 60px;
}

.pro-cta-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.25;
}

.pro-cta-content p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 540px;
}

.pro-cta-visual { display: flex; justify-content: center; }
.pro-cta-visual svg { width: 100%; max-width: 200px; }

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing { padding: 112px 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: border-color 0.2s;
}

.pricing-card--featured {
  border-color: rgba(231,167,90,0.3);
  background: #1D1910;
  position: relative;
}

.pricing-card--featured::before {
  content: 'Inizia qui';
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #13100C;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card--featured2 {
  border-color: rgba(231,167,90,0.3);
  background: #1D1910;
  position: relative;
}

.pricing-card--featured2::before {
  content: 'Start here';
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #13100C;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card--muted { opacity: 0.7; }
.pricing-card--pro { border-color: rgba(255,255,255,0.1); }

.pricing-card-header { display: grid; gap: 10px; }

.pricing-tier {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-amount { display: flex; align-items: baseline; gap: 2px; }

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-1);
}

.pricing-price--custom { font-size: 1.75rem; }

.pricing-currency {
  font-size: 1.25rem;
  font-weight: 600;
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--text-3);
}

.pricing-features { display: grid; gap: 14px; flex: 1; }

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-2);
}

.pricing-features svg {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.coming-soon-badge {
  font-size: 0.875rem;
  color: var(--text-3);
  font-family: var(--mono);
}

/* ── Register ────────────────────────────────────────────────── */
.register {
  padding: 112px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}

.register-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.register-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.register-content p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.65;
}

.register-form {
  display: grid;
  gap: 16px;
}

.form-row { display: grid; }

.form-field { display: grid; gap: 6px; }

.form-field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
}

.form-field input {
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--text-1);
  outline: none;
  transition: border-color 0.15s;
}

.form-field input::placeholder { color: var(--text-3); }

.form-field input:focus {
  border-color: rgba(231,167,90,0.5);
  background: #1D1912;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--text-3);
  text-align: center;
  line-height: 1.5;
}

.form-note a { color: var(--text-2); text-decoration: underline; text-decoration-color: transparent; }
.form-note a:hover { text-decoration-color: var(--text-2); }

/* ── Register soon ───────────────────────────────────────────── */
.register-soon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 40px;
  background: var(--bg-2);
  border: 1.5px solid rgba(231,167,90,0.15);
  border-radius: var(--r-xl);
}

.register-soon-icon { align-self: center; }
.register-soon-icon svg { width: 72px; height: 72px; }

.register-soon-title {
  font-family: var(--mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-self: center;
}

.register-soon-text {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.65;
  text-align: center;
  align-self: center;
  max-width: 360px;
}

.register-soon-text a { color: var(--text-1); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.2); }
.register-soon-text a:hover { text-decoration-color: var(--text-1); }

.register-soon .btn { align-self: center; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(100,200,100,0.08);
  border: 1px solid rgba(100,200,100,0.2);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  color: #8ed89e;
}

.form-success svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Auth Cards (Login/Register) ────────────────────────────── */

input {
  background: #1E1C18;
  border: 1px solid  rgba(200,146,42,0.22);
  border-radius: 4px;
  color: #F0EBE0;
  font: inherit;
  padding: 8px 12px;
  outline: none;
  width: 100%;
  transition: 120ms;
}
input:focus { border-color: #C8922A;}


.auth-card {
  background: #1A1815 !important;
  border: 1px solid rgba(200,146,42,0.12) !important;
  border-radius: 12px !important; /* Aligned with design system variable */
  padding: 32px !important;
  width: 100% !important;
  max-width: 400px !important;
}

.auth-title {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #F0EBE0 !important;
  margin-bottom: 4px !important;
  letter-spacing: -0.01em !important;
}

.auth-subtitle {
  font-size: 13px !important;
  color: #8A8070 !important;
  margin-bottom: 24px !important; 
}

.form-group { margin-bottom: var(--sp-16) !important; }

.form-label {
  display: block !important;
  font-size: 12px !important;
  color: var(--text-2) !important;
  margin-bottom: var(--sp-8) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
}

.auth-footer {
  margin-top: var(--sp-24);
  text-align: center;
  font-size: 13px;
  color: var(--text-2);
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: #0F0D09;
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  padding-bottom: 48px;
}

.footer-tagline {
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-top: 12px;
}

.footer-nav {
  display: flex;
  gap: 64px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.footer-nav-col a {
  font-size: 0.9rem;
  color: var(--text-3);
  transition: color 0.15s;
}
.footer-nav-col a:hover { color: var(--text-2); }

.footer-bottom {
  padding: 20px 24px;
  border-top: 1px solid var(--border-soft);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-3);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════════════ */

/* ── Tablet (≤ 960px) ────────────────────────────────────────── */
@media (max-width: 960px) {
  .header-nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-headline { font-size: clamp(2rem, 6vw, 2.75rem); }

  .hero-rings { width: 380px; height: 380px; right: -100px; }

  .hero-mockup {
    grid-column: 1;
    grid-row: auto;
    margin-top: 40px;
  }

  .values-grid { grid-template-columns: 1fr 1fr; }

  .steps {
    flex-direction: column;
    gap: 32px;
  }
  .step-connector { display: none; }
  .step { grid-template-columns: 52px 1fr; column-gap: 16px; }
  .step-number { grid-column: 1; grid-row: 1; align-self: center; text-align: center; }
  .step-icon   { grid-column: 1; grid-row: 2; }
  .step h3     { grid-column: 2; grid-row: 1; align-self: end; }
  .step p      { grid-column: 2; grid-row: 2; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-block--wide { grid-column: 1; }

  .pro-cta-inner { grid-template-columns: 1fr; }
  .pro-cta-visual { display: none; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

  .register-inner { grid-template-columns: 1fr; gap: 48px; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { gap: 32px; }
}

/* ── Mobile (≤ 640px) ────────────────────────────────────────── */
@media (max-width: 640px) {
  :root { --container: 100%; }

  .container { padding: 0 20px; }

  .hero { padding: 100px 0 60px; min-height: auto; }

  .hero-headline { font-size: clamp(1.75rem, 8vw, 2.25rem); }

  .hero-subhead { font-size: 1rem; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  .hero-rings { display: none; }

  .values { padding: 64px 0; }
  .values-grid { grid-template-columns: 1fr; gap: 2px; }
  .value-card { padding: 28px 22px; }

  .how { padding: 72px 0; }
  .demo { padding: 72px 0; }
  .demo-frame-wrap { aspect-ratio: 4 / 3; }
  .features { padding: 72px 0; }
  .pricing { padding: 72px 0; }
  .register { padding: 72px 0; }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-block--wide { grid-template-columns: 1fr; }
  .feature-block-icon { width: 44px; height: 44px; }

  .pro-cta-inner { padding: 36px 24px; }
  .pro-cta-inner h2 { font-size: 1.375rem; }

  .pricing-card { padding: 32px 24px; }
  .pricing-price { font-size: 2rem; }

  .section-header { margin-bottom: 44px; }
  .section-header h2 { font-size: 1.5rem; }

  .footer-nav { flex-direction: column; gap: 24px; }
  .footer-inner { padding-bottom: 32px; }

  .mobile-nav { display: flex; }
}

/* ── Legal modal ─────────────────────────────────────────────── */
dialog.legal-modal {
  margin: auto;
  padding: 0;
  border: none;
  border-radius: var(--r-xl);
  width: min(860px, calc(100vw - 32px));
  height: min(88vh, 940px);
  max-width: none;
  max-height: none;
  background: var(--bg-1);
  border: 1px solid var(--border);
  box-shadow: 0 32px 96px rgba(0,0,0,0.7);
  overflow: hidden;
}

dialog.legal-modal[open] {
  display: flex;
  flex-direction: column;
}

dialog.legal-modal::backdrop {
  background: rgba(8, 6, 3, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.legal-modal-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.legal-modal-header {
  padding: 24px 28px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 6px;
  flex-shrink: 0;
}

.legal-modal-label {
  grid-column: 1;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-modal-title {
  grid-column: 1;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-1);
}

.legal-modal-close {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: start;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  margin-top: 2px;
}
.legal-modal-close:hover { border-color: rgba(255,255,255,0.2); color: var(--text-1); }
.legal-modal-close svg { width: 16px; height: 16px; }

.legal-modal-nav {
  display: flex;
  gap: 2px;
  padding: 16px 28px 0;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.legal-modal-nav::-webkit-scrollbar { display: none; }

.legal-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 10px 18px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-3);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
  margin-bottom: -1px;
}
.legal-tab:hover { color: var(--text-2); }
.legal-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.legal-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 36px 40px 48px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.legal-modal-body::-webkit-scrollbar { width: 5px; }
.legal-modal-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }

.legal-panel { display: none; }
.legal-panel.active { display: block; }

/* Legal content typography */
.legal-panel h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.legal-panel section {
  margin-bottom: 28px;
}

.legal-panel h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 10px;
}

.legal-panel p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 10px;
}

.legal-panel p:last-child { margin-bottom: 0; }

.legal-panel ul {
  list-style: none;
  margin: 10px 0 10px 0;
  display: grid;
  gap: 6px;
}

.legal-panel ul li {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.legal-panel ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.legal-panel a {
  color: var(--text-1);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.2);
  transition: text-decoration-color 0.15s;
}
.legal-panel a:hover { text-decoration-color: var(--text-1); }

.legal-panel em { font-style: italic; color: var(--text-1); }
.legal-panel strong { font-weight: 600; color: var(--text-1); }

/* ── Expert mode modal ───────────────────────────────────────── */
dialog.expert-modal {
  margin: auto;
  padding: 0;
  border: none;
  border-radius: var(--r-xl);
  width: min(480px, calc(100vw - 32px));
  max-width: none;
  background: var(--bg-1);
  border: 1px solid var(--border);
  box-shadow: 0 32px 96px rgba(0,0,0,0.7);
}
dialog.expert-modal::backdrop {
  background: rgba(8, 6, 3, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.expert-modal-inner { padding: 28px; }
.expert-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}
.expert-modal-title { font-size: 1.05rem; font-weight: 700; color: var(--text-1); }
.expert-modal-close {
  flex-shrink: 0;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.expert-modal-close:hover { border-color: rgba(255,255,255,0.2); color: var(--text-1); }
.expert-modal-close svg { width: 16px; height: 16px; }
.expert-modal-body p { font-size: 0.9rem; color: var(--text-2); line-height: 1.6; margin-bottom: 14px; }
.expert-modal-code {
  display: block;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-1);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  word-break: break-all;
  overflow-x: auto;
}

/* Placeholder for missing documents */
.legal-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 60px 24px;
  text-align: center;
}
.legal-placeholder svg { width: 56px; height: 56px; }
.legal-placeholder p { font-size: 0.9375rem; color: var(--text-2); }

/* Modal responsive */
@media (max-width: 640px) {
  dialog.legal-modal {
    width: 100%;
    height: 100%;
    border-radius: 0;
    margin: 0;
  }
  .legal-modal-body { padding: 24px 20px 40px; }
  .legal-modal-header { padding: 20px 20px 0; }
  .legal-modal-nav { padding: 12px 20px 0; }
}

/* ── Scroll reveal ───────────────────────────────────────────── */
.fade-enter {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s var(--easing), transform 0.5s var(--easing);
}
.fade-enter.visible {
  opacity: 1;
  transform: none;
}

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .fade-enter { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
/* ==========================================================================
   STRUTTURA BASE DELLE MODALI (Condivisa)
   ========================================================================== */

/* Lo sfondo oscurato comune a tutte le modali */
.modal-overlay {
    display: none; 
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
    z-index: 99999 !important;
    justify-content: center !important;
    align-items: center !important;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Stato attivo: si mostra e diventa visibile */
.modal-overlay.active {
    display: flex !important;
    opacity: 1 !important;
}

/* La card interna comune a tutte le modali */
.modal-content {
    position: relative !important;
    padding: 30px !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
    max-width: 400px !important;
    width: 90% !important;
    margin: auto !important;
    box-sizing: border-box !important;
    transform: scale(0.85) !important;
    transition: transform 0.3s ease-in-out;
}
.dash-title { font-size: 22px; font-weight: 700; color: #F0EBE0; }
.dash-user-email { font-size: 13px; color: #8A8070; margin-top: 2px; }

/* Effetto zoom quando la modale si apre */
.modal-overlay.active .modal-content {
    transform: scale(1) !important;
}

    #lg-loginModal.modal-overlay {
        display: none !important; /* Nascosto di default, forzato */
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background-color: rgba(0, 0, 0, 0.5) !important; /* Sfondo oscurato */
        z-index: 9999 !important; /* Forzato sopra a qualsiasi altro elemento della pagina */
        justify-content: center !important;
        align-items: center !important;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    /* Quando la modale è attiva */
    #lg-loginModal.modal-overlay.active {
        display: flex !important; /* Sovrascrive il display: none */
        opacity: 1 !important;
    }

    /* La card vera e propria, centrata */
    #lg-loginModal .modal-content {
        position: relative !important;
        background: #000000  !important;
        padding: 30px !important;
        border-radius: 12px !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
        max-width: 400px !important;
        width: 90% !important; /* Responsivo su mobile */
        transform: scale(0.85) !important;
        transition: transform 0.3s ease;
        box-sizing: border-box !important;
    }

    /* Effetto zoom all'apertura */
    #lg-loginModal.modal-overlay.active .modal-content {
        transform: scale(1) !important;
    }

    /* Il pulsante di chiusura 'X' */
    #lg-loginModal .close-btn {
      position: absolute !important;
      top: 16px !important;
      right: 16px !important; /* Sposta la X a destra */
      left: auto !important;  /* Disattiva qualsiasi spinta da sinistra */
      margin: 0 !important;   /* Evita che vecchi margini diano fastidio */
      
      /* Stile estetico per renderla cliccabile e visibile */
      width: 32px !important;
      height: 32px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      cursor: pointer !important;
      font-size: 24px !important;
      color: var(--text-2) !important; /* Usa la variabile del tuo CSS */
      background: transparent !important;
      border: none !important;
      z-index: 10 !important;
    }

    #lg-loginModal .close-btn:hover {
        color: var(--accent) !important; /* Diventa color oro quando ci passi sopra */
    }
/* ── Product line (gtLine hardware bundle) ──────────────────────── */
.product-line {
  padding: 96px 0;
}

.product-line-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.product-line-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 14px;
}

.product-line-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--text-1);
}

.product-line-desc {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* ── gtLine card ─────────────────────────────────────────────────── */
.aaline-card {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(231,167,90,0.22);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  overflow: hidden;
}

.aaline-early-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--accent-dim);
  border: 1px solid rgba(231,167,90,0.35);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  z-index: 1;
}

.aaline-card-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  padding: 48px 48px 48px 44px;
  align-items: center;
}

.aaline-features { padding-top: 8px; }

.aaline-features .pricing-features {
  display: grid;
  gap: 16px;
}

.aaline-features .pricing-features li {
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.5;
}

.aaline-features .pricing-features svg {
  margin-top: 2px;
}

/* ── Pricing box ─────────────────────────────────────────────────── */
.aaline-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 32px 28px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.aaline-price-crossed {
  font-family: var(--mono);
  font-size: 0.875rem;
  color: var(--text-3);
  text-decoration: line-through;
  text-decoration-color: rgba(226,104,92,0.6);
}

.aaline-price-main {
  display: flex;
  align-items: baseline;
  gap: 3px;
  line-height: 1;
  margin-bottom: 4px;
}

.aaline-price-value {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.aaline-price-cur {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
}

.aaline-price-note {
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-bottom: 12px;
}

.aaline-pricing .btn { margin-top: 4px; }

.aaline-ship-note {
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-top: 4px;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .aaline-card-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 32px 40px;
  }
  .aaline-early-badge {
    top: 20px;
    right: 20px;
    left: 20px;
    justify-content: center;
  }
  .aaline-pricing { width: 100%; }
}

@media (max-width: 640px) {
  .product-line { padding: 64px 0; }
  .aaline-card-inner { padding: 56px 20px 32px; }
  .aaline-price-value { font-size: 2.25rem; }
}

/* ── Cookie consent banner ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(19, 16, 12, 0.97);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  border-top: 1px solid var(--border);
  padding: 18px 24px;
  display: none;
}

.cookie-banner.visible { display: block; }

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1 1 420px;
  color: var(--text-2);
  font-size: 0.84375rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 14px; }
  /* In colonna il flex-basis:420px di .cookie-banner-text (pensato come
     larghezza in riga) si applicherebbe all'altezza, facendo espandere
     il banner fino a coprire quasi tutto lo schermo. */
  .cookie-banner-text { flex: 1 1 auto; }
  .cookie-banner-actions { justify-content: flex-end; }
}

/* ── Guides: listing section (on the FAQ page) ──────────────────── */
.guide-list-section { padding: 40px 0 96px; }

.guide-list-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 720px) {
  .guide-list-grid { grid-template-columns: 1fr; }
}

.guide-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color 0.2s, background 0.2s;
}
.guide-card:hover { border-color: rgba(231,167,90,0.2); background: #201C11; }

.guide-card-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.guide-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--text-1); margin-bottom: 8px; }
.guide-card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.6; flex: 1; margin-bottom: 16px; }

.guide-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}
.guide-card:hover .guide-card-link { gap: 10px; }
.guide-card-link svg { width: 15px; height: 15px; transition: transform 0.2s; }

/* ── Guides: individual article page ────────────────────────────── */
.guide-hero { padding: 96px 0 24px; }

.guide-hero .container { max-width: 760px; }

.guide-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-bottom: 24px;
}
.guide-breadcrumb a { color: var(--text-2); transition: color 0.15s; }
.guide-breadcrumb a:hover { color: var(--accent); }

.guide-hero h1 {
  font-size: clamp(1.75rem, 3.2vw, 2.375rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.guide-hero .guide-dek {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 620px;
}

.guide-article { padding: 8px 0 96px; }
.guide-article .container { max-width: 760px; }

.guide-body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.01em;
  margin: 40px 0 16px;
}
.guide-body h2:first-child { margin-top: 0; }

.guide-body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-1);
  margin: 28px 0 10px;
}

.guide-body p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
}

.guide-body ul, .guide-body ol {
  margin: 4px 0 20px;
  display: grid;
  gap: 8px;
  padding-left: 4px;
}
.guide-body ul { list-style: none; }
.guide-body ul li {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.65;
  padding-left: 22px;
  position: relative;
}
.guide-body ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}
.guide-body ol {
  counter-reset: guide-step;
  list-style: none;
}
.guide-body ol li {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.65;
  padding-left: 30px;
  position: relative;
  counter-increment: guide-step;
}
.guide-body ol li::before {
  content: counter(guide-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
}

.guide-body a { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(231,167,90,0.35); }
.guide-body a:hover { text-decoration-color: var(--accent); }
.guide-body strong { font-weight: 700; color: var(--text-1); }
.guide-body em { font-style: italic; color: var(--text-1); }
.guide-body code {
  font-family: var(--mono);
  font-size: 0.875em;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
}

.guide-body pre {
  display: block;
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--text-1);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 16px 18px;
  margin: 4px 0 20px;
  overflow-x: auto;
}
.guide-body pre code { background: none; border: none; padding: 0; }

.guide-table-wrap { overflow-x: auto; margin: 4px 0 24px; border: 1px solid var(--border); border-radius: var(--r-md); }
.guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.guide-table th, .guide-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  line-height: 1.5;
}
.guide-table th {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
  background: var(--bg-1);
}
.guide-table tr:last-child td { border-bottom: none; }
.guide-table td:first-child, .guide-table th:first-child { color: var(--text-1); font-weight: 600; white-space: nowrap; }
.guide-table td strong { color: var(--accent); }

.guide-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--accent-glow);
  border: 1px solid rgba(231,167,90,0.25);
  border-radius: var(--r-lg);
}
.guide-cta p { margin: 0; font-size: 1rem; font-weight: 600; color: var(--text-1); }

@media (max-width: 640px) {
  .guide-hero { padding: 80px 0 16px; }
  .guide-cta { flex-direction: column; align-items: stretch; text-align: center; }
}