* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #060606;
  --bg-elevated: #0a0a0a;
  --bg-card: #0f0f0f;
  --bg-hover: #141414;
  --bg-sidebar: #050505;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --border-subtle: rgba(255, 255, 255, 0.05);
  --text: rgba(255, 255, 255, 0.88);
  --text-muted: rgba(255, 255, 255, 0.5);
  --text-subtle: rgba(255, 255, 255, 0.32);
  --text-faint: rgba(255, 255, 255, 0.18);
  --accent: rgba(190, 150, 255, 0.78);
  --accent-dim: rgba(190, 150, 255, 0.12);
  --accent-soft: rgba(190, 150, 255, 0.06);
  --font-display: 'Playfair Display', Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.mono { font-family: 'JetBrains Mono', monospace; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.875rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.navbar-inner > .nav-links {
  margin-right: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--text);
}


.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s;
  position: relative;
}

.nav-links a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
  font-family: inherit;
  white-space: nowrap;
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--text);
}

.btn-primary {
  background: #fff;
  color: #000;
  font-weight: 600;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-strong);
}

.btn-lg {
  padding: 0.75rem 1.25rem;
  font-size: 0.925rem;
}

.stars-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

.hero {
  padding: 9rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 700px 500px at 30% 25%, rgba(190, 150, 255, 0.07), transparent 70%),
    radial-gradient(ellipse 600px 500px at 70% 75%, rgba(190, 150, 255, 0.04), transparent 70%),
    radial-gradient(ellipse 1000px 500px at 50% 0%, rgba(255, 255, 255, 0.025), transparent);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 800px 600px at 50% 0%, black 30%, transparent);
  -webkit-mask-image: radial-gradient(ellipse 800px 600px at 50% 0%, black 30%, transparent);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.hero-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--text-subtle);
  font-weight: 600;
}

.hero-ascii-heading {
  font-size: 0;
  line-height: 0;
  margin: 0 auto 1.75rem;
  display: flex;
  justify-content: center;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hero-ascii-heading::-webkit-scrollbar {
  display: none;
}

.hero-ascii {
  font-family: 'JetBrains Mono', ui-monospace, 'Courier New', monospace;
  font-size: clamp(0.5rem, 1.3vw, 0.95rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
  white-space: pre;
  margin: 0;
  text-align: left;
  display: inline-block;
  
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f5f5f7 25%,
    #e8e8ec 45%,
    rgba(180, 180, 190, 0.7) 65%,
    rgba(140, 140, 150, 0.4) 80%,
    rgba(120, 120, 130, 0.18) 92%,
    rgba(120, 120, 130, 0.06) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  
  filter:
    drop-shadow(0 0 30px rgba(255, 255, 255, 0.18))
    drop-shadow(0 8px 28px rgba(0, 0, 0, 0.7))
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  user-select: none;
  -webkit-user-select: none;
  
  animation: ascii-float 6s ease-in-out infinite;
  will-change: transform, filter;
}

@keyframes ascii-float {
  0%, 100% {
    transform: translateY(0) translateZ(0);
    filter:
      drop-shadow(0 0 30px rgba(255, 255, 255, 0.18))
      drop-shadow(0 8px 28px rgba(0, 0, 0, 0.7))
      drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  }
  50% {
    transform: translateY(-10px) translateZ(0);
    filter:
      drop-shadow(0 0 40px rgba(255, 255, 255, 0.22))
      drop-shadow(0 18px 36px rgba(0, 0, 0, 0.75))
      drop-shadow(0 4px 8px rgba(0, 0, 0, 0.55));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-ascii {
    animation: none;
  }
}

.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.85vw, 1.5rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid var(--border-subtle);
}

.meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.meta-value {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.meta-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

section {
  padding: 6rem 0;
  position: relative;
  z-index: 2;
}

header.hero {
  z-index: 2;
}

.footer {
  position: relative;
  z-index: 2;
}

.container {
  position: relative;
  z-index: 2;
}

.section-header {
  max-width: 640px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.25rem;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

.section-header h2 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 0.875rem;
  color: rgba(255, 255, 255, 0.95);
}

.section-header h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.95;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
}

.feature {
  background: var(--bg);
  padding: 2rem;
  transition: background 0.2s;
}

.feature:hover {
  background: var(--bg-elevated);
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.feature h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.methods-section {
  background: rgba(10, 10, 10, 0.6);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.methods-table {
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
}

.methods-header {
  display: grid;
  grid-template-columns: 80px 180px 1fr 100px;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.methods-row {
  display: grid;
  grid-template-columns: 80px 180px 1fr 100px;
  gap: 1rem;
  padding: 0.875rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  align-items: center;
  transition: background 0.15s;
}

.methods-row:last-child {
  border-bottom: none;
}

.methods-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.method-layer {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-align: center;
  width: fit-content;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
}

.method-name {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
}

.method-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.method-power {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--text-subtle);
  text-align: right;
  letter-spacing: 0.05em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  gap: 0.75rem;
}

.price-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.price-card:hover {
  border-color: var(--border);
}

.price-card.featured {
  background:
    linear-gradient(180deg, var(--accent-soft) 0%, var(--bg-card) 60%);
  border-color: rgba(190, 150, 255, 0.25);
  box-shadow: 0 0 0 1px rgba(190, 150, 255, 0.04), 0 12px 40px -12px rgba(190, 150, 255, 0.15);
}

.price-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0a;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  box-shadow: 0 4px 16px rgba(190, 150, 255, 0.3);
}

.price-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.375rem;
  min-height: 56px;
}

.price-currency {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-value {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-value-small {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-summary {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  min-height: 60px;
}

.price-features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.45rem 0;
  font-size: 0.875rem;
  color: var(--text);
}

.price-features li i {
  color: var(--accent);
  font-size: 0.7rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
  opacity: 0.85;
}

.price-features li .highlight {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.price-cta {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.price-cta.primary {
  background: #fff;
  color: #000;
}

.price-cta.primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.price-cta.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
}

.price-cta.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-strong);
}

.compare-section {
  background: transparent;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.compare-table-wrapper {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 800px;
}

.compare-table thead {
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  padding: 1.25rem 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.compare-table th.feature-col {
  text-align: left;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-left: 1.5rem;
  width: 30%;
}

.compare-table th.featured-col,
.compare-table td.featured-col {
  background: rgba(255, 255, 255, 0.025);
  position: relative;
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.15s;
}

.compare-table tbody tr:last-child {
  border-bottom: none;
}

.compare-table tbody tr:not(.section-row):not(.cta-row):hover {
  background: rgba(255, 255, 255, 0.01);
}

.compare-table td {
  padding: 0.875rem 1rem;
  text-align: center;
  color: var(--text-muted);
}

.compare-table td:first-child {
  text-align: left;
  color: var(--text);
  padding-left: 1.5rem;
  font-weight: 500;
}

.compare-table .section-row td {
  background: rgba(255, 255, 255, 0.015);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.625rem 1.5rem;
  text-align: left;
  border-top: 1px solid var(--border-subtle);
}

.compare-table .check {
  color: #4ade80;
  font-size: 0.85rem;
}

.compare-table .cross {
  color: var(--text-faint);
  font-size: 0.75rem;
}

.compare-table .mono {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  color: var(--text);
  font-size: 0.85rem;
}

.compare-table .muted {
  color: var(--text-subtle);
  font-size: 0.825rem;
  font-style: italic;
}

.compare-table .cta-row td {
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.015);
}

.btn-table {
  display: inline-block;
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.15s;
}

.btn-table.primary {
  background: #fff;
  color: #000;
}

.btn-table.primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-table.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-table.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-strong);
}

.faq-section {
  background: rgba(10, 10, 10, 0.6);
  border-top: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  transition: border-color 0.15s;
}

.faq-item:hover {
  border-color: var(--border);
}

.faq-q {
  padding: 1.125rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 0.925rem;
  color: var(--text);
}

.faq-q i {
  color: var(--text-subtle);
  transition: transform 0.2s;
  font-size: 0.75rem;
}

.faq-item.open .faq-q i {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease, padding 0.2s ease;
}

.faq-item.open .faq-a {
  padding: 0 1.5rem 1.25rem;
  max-height: 400px;
}

.faq-tos-callout {
  max-width: 720px;
  margin: 2.5rem auto 0;
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.faq-tos-text {
  flex: 1;
  min-width: 0;
}

.faq-tos-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.faq-tos-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .faq-tos-callout {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
  }

  .faq-tos-callout .btn {
    width: 100%;
    justify-content: center;
  }
}

.cta-section {
  padding: 6rem 0;
  text-align: center;
}

.cta-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 600px 300px at 30% 0%, rgba(190, 150, 255, 0.06), transparent 70%),
    radial-gradient(ellipse 500px 200px at 70% 100%, rgba(190, 150, 255, 0.04), transparent 70%);
  pointer-events: none;
}

.cta-box > * {
  position: relative;
}

.cta-box h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.95);
}

.cta-box h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.95;
}

.cta-box p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-size: 1rem;
}

.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-meta a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  transition: color 0.15s, border-color 0.15s;
  border-bottom: 1px dotted transparent;
  padding-bottom: 1px;
}

.footer-meta a:hover {
  color: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--accent);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-subtle);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu-link {
  display: block;
  padding: 1rem;
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.15s;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
  background: rgba(255, 255, 255, 0.06);
}

.mobile-menu-link.primary {
  background: #fff;
  color: #000;
  font-weight: 600;
  margin-top: 0.5rem;
  text-align: center;
}

.mobile-menu-link.primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.mobile-menu-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 0.75rem 0;
}

@media (max-width: 1024px) {
  .pricing-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-toggle {
    display: flex;
  }

  
  .navbar-inner {
    justify-content: flex-end;
  }
}

@media (max-width: 768px) {
  .pricing-grid,
  .pricing-grid-4 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 1rem;
    gap: 0.875rem;
    padding: 1rem 1rem 1.5rem;
    margin: 0 -1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pricing-grid::-webkit-scrollbar,
  .pricing-grid-4::-webkit-scrollbar {
    display: none;
  }

  .pricing-grid > .price-card,
  .pricing-grid-4 > .price-card {
    flex: 0 0 calc(85% - 0.5rem);
    max-width: 320px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  
  #pricing .section-header p::after {
    content: ' · swipe →';
    color: var(--text-faint);
    font-size: 0.85em;
  }
}

@media (max-width: 768px) {
  
  input, select, textarea {
    font-size: 16px !important;
  }

  .container {
    padding: 0 1rem;
  }

  .navbar-inner {
    padding: 0.75rem 1rem;
  }

  
  .hero {
    padding: 6rem 0 3rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero h1 br {
    display: none;
  }

  .hero-ascii {
    font-size: clamp(0.38rem, 1.7vw, 0.65rem);
  }

  .hero-ascii-heading {
    padding: 0 0.5rem;
    margin-bottom: 1.25rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1;
    justify-content: center;
  }

  .hero-meta {
    margin-top: 3rem;
    padding-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .meta-value {
    font-size: 1.25rem;
  }

  
  section {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-header h2 {
    font-size: 1.625rem;
  }

  
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    padding: 1.5rem;
  }

  
  .methods-table {
    border-radius: 8px;
  }

  .methods-header,
  .methods-row {
    grid-template-columns: 50px 1fr auto;
    padding: 0.75rem 1rem;
  }

  .method-desc {
    display: none;
  }

  

  .price-card {
    padding: 1.5rem;
  }

  .price-amount {
    min-height: auto;
  }

  
  .compare-table-wrapper {
    border-radius: 8px;
    margin: 0 -1rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .compare-table {
    min-width: 640px;
    font-size: 0.8rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 0.625rem 0.625rem;
  }

  .compare-table th.feature-col,
  .compare-table td:first-child {
    padding-left: 1rem;
    position: sticky;
    left: 0;
    background: var(--bg-elevated);
    z-index: 1;
  }

  .compare-table .section-row td {
    padding: 0.5rem 1rem;
  }

  .compare-table .cta-row td {
    padding: 1rem 0.5rem;
  }

  .btn-table {
    padding: 0.5rem 0.4rem;
    font-size: 0.7rem;
  }

  
  .faq-q {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
  }

  .faq-a {
    font-size: 0.85rem;
  }

  
  .cta-section {
    padding: 4rem 0;
  }

  .cta-box {
    padding: 2.5rem 1.5rem;
  }

  .cta-box h2 {
    font-size: 1.5rem;
  }

  
  .footer {
    padding: 2rem 0 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-meta {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  
  .btn {
    padding: 0.625rem 1rem;
    min-height: 40px;
  }

  .btn-lg {
    padding: 0.85rem 1.25rem;
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-meta {
    gap: 1rem;
  }

  .meta-value {
    font-size: 1.1rem;
  }

  .compare-table {
    min-width: 540px;
  }
}

@supports (padding: env(safe-area-inset-bottom)) {
  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .navbar-inner {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
}
