/* =========================================
   FULLOPEN — Terminal Luxury VPS Theme
   ========================================= */

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

:root {
  --bg:        #06060a;
  --bg-subtle: #0c0c12;
  --bg-card:   #0e0e16;
  --bg-hover:  #13131d;
  --border:    #1a1a28;
  --border-lt: #24243a;
  --text:      #e8e8f0;
  --text-dim:  #7a7a96;
  --text-muted:#50506a;
  --accent:    #BBFF00;
  --accent-dim:#8bcc00;
  --accent-bg: rgba(187, 255, 0, 0.06);
  --red:       #ff4060;
  --radius:    12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --font-heading: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --max-w:     1200px;
  --nav-h:     72px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* --- REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--text);
  color: var(--bg);
}
.btn--primary:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232, 232, 240, 0.15);
}

.btn--accent {
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
}
.btn--accent:hover {
  background: #d0ff33;
  transform: translateY(-1px);
  box-shadow: 0 4px 30px rgba(187, 255, 0, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--text-dim);
  color: var(--text);
  background: var(--bg-hover);
}

.btn--full { width: 100%; }
.btn--lg { padding: 16px 40px; font-size: 1rem; }

.btn__loader {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: var(--bg);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.btn--loading .btn__text { opacity: 0; }
.btn--loading .btn__loader { display: block; position: absolute; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(6, 6, 10, 0.8);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.nav--scrolled {
  border-bottom-color: var(--border);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__logo-mark {
  font-family: var(--font-mono);
  color: var(--accent);
  font-weight: 500;
  font-size: 1rem;
  margin-right: 6px;
}

.nav__links {
  display: flex;
  gap: 36px;
}

.nav__links a {
  font-size: 0.875rem;
  color: var(--text-dim);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav__links a:hover {
  color: var(--text);
}

.nav__cta {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: var(--radius-xs);
  background: var(--accent);
  color: var(--bg);
  transition: all 0.2s;
}
.nav__cta:hover {
  background: #d0ff33;
  box-shadow: 0 2px 16px rgba(187, 255, 0, 0.2);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 32px 80px;
  overflow: hidden;
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(187, 255, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(187, 255, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 32px;
  background: var(--bg-subtle);
}

.hero__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent); }
  50% { opacity: 0.5; box-shadow: 0 0 4px var(--accent); }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__title-accent {
  color: var(--accent);
  position: relative;
}

.hero__sub {
  font-size: 1.125rem;
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 64px;
}

.hero__metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.hero__metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero__metric-value {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero__metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__metric-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* --- SECTION HEADER --- */
.section-header {
  margin-bottom: 64px;
}

.section-header__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-header__sub {
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 480px;
}

/* --- PLANS --- */
.plans {
  padding: 120px 32px;
  position: relative;
}

.plans__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.plans__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.plan-card::before {
  content: '';
  position: absolute;
  top: var(--glow-y, 50%);
  left: var(--glow-x, 50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(187, 255, 0, 0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.plan-card:hover {
  border-color: var(--border-lt);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.plan-card--featured {
  border-color: rgba(187, 255, 0, 0.2);
  background: linear-gradient(170deg, rgba(187, 255, 0, 0.04) 0%, var(--bg-card) 40%);
}

.plan-card--featured:hover {
  border-color: rgba(187, 255, 0, 0.35);
  box-shadow: 0 12px 40px rgba(187, 255, 0, 0.08), 0 12px 40px rgba(0, 0, 0, 0.3);
}

.plan-card__glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(187, 255, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.plan-card__header {
  margin-bottom: 28px;
}

.plan-card__name-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.plan-card__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.plan-card__badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--bg-hover);
  color: var(--text-dim);
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.plan-card__badge--accent {
  background: var(--accent-bg);
  color: var(--accent);
  border-color: rgba(187, 255, 0, 0.15);
}

.plan-card__desc {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.plan-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.plan-card__currency {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dim);
  align-self: flex-start;
  margin-top: 8px;
}

.plan-card__price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.plan-card--featured .plan-card__price {
  color: var(--accent);
}

.plan-card__cents {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dim);
}

.plan-card__period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: 6px;
}

.plan-card__specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
  flex-grow: 1;
}

.plan-card__specs li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-card__spec-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-xs);
  background: var(--bg-hover);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  flex-shrink: 0;
}

.plan-card--featured .plan-card__spec-icon {
  color: var(--accent);
  border-color: rgba(187, 255, 0, 0.12);
  background: rgba(187, 255, 0, 0.04);
}

.plan-card__spec-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-grow: 1;
}

.plan-card__spec-value {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.plans__note {
  margin-top: 40px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- FEATURES --- */
.features {
  padding: 120px 32px;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
  border-color: var(--border-lt);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-bg);
  border: 1px solid rgba(187, 255, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card__text {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* --- NETWORK --- */
.network {
  padding: 120px 32px;
}

.network__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.network__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.network__stat {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.network__stat-value {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}

.network__stat-unit {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 4px;
}

.network__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Terminal */
.network__terminal {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-card);
  max-width: 720px;
  margin: 0 auto;
}

.network__terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--bg-hover);
  border-bottom: 1px solid var(--border);
}

.network__terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.network__terminal-dot--red { background: #ff5f57; }
.network__terminal-dot--yellow { background: #febc2e; }
.network__terminal-dot--green { background: #28c840; }

.network__terminal-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 8px;
}

.network__terminal-body {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 2;
}

.terminal-line {
  opacity: 0;
}

.network__terminal.is-animating .terminal-line {
  animation: terminalFadeIn 0.3s forwards;
}

.network__terminal.is-animating .terminal-line[data-delay="0"] { animation-delay: 0.3s; }
.network__terminal.is-animating .terminal-line[data-delay="1"] { animation-delay: 0.8s; }
.network__terminal.is-animating .terminal-line[data-delay="2"] { animation-delay: 1.4s; }
.network__terminal.is-animating .terminal-line[data-delay="3"] { animation-delay: 2.0s; }
.network__terminal.is-animating .terminal-line[data-delay="4"] { animation-delay: 2.6s; }
.network__terminal.is-animating .terminal-line[data-delay="5"] { animation-delay: 3.2s; }
.network__terminal.is-animating .terminal-line[data-delay="6"] { animation-delay: 3.8s; }

@keyframes terminalFadeIn {
  to { opacity: 1; }
}

.terminal-prompt {
  color: var(--accent);
  margin-right: 8px;
}

.terminal-hop {
  color: var(--text-muted);
}

.terminal-ms {
  color: var(--text-dim);
}

.terminal-cursor {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* --- CTA --- */
.cta {
  padding: 120px 32px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg-subtle);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(187, 255, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 1;
}

.cta__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cta__sub {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* --- FOOTER --- */
.footer {
  padding: 64px 32px 32px;
  border-top: 1px solid var(--border);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
}

.footer__brand-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.footer__links {
  display: flex;
  gap: 64px;
}

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

.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 4px;
}

.footer__col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__col a:hover {
  color: var(--text);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

/* --- CHECKOUT MODAL --- */
.checkout-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.checkout-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.checkout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-overlay.is-active .checkout {
  transform: translateY(0) scale(1);
}

.checkout__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.checkout__close:hover {
  color: var(--text);
}

.checkout__step--hidden {
  display: none;
}

.checkout__header {
  margin-bottom: 28px;
}

.checkout__step-indicator {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.checkout__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.checkout__plan-summary {
  background: var(--bg-hover);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.checkout__plan-summary .plan-summary__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--text);
}

.checkout__plan-summary .plan-summary__price {
  color: var(--accent);
  font-weight: 500;
}

.checkout__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkout__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.checkout__field label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.01em;
}

.checkout__field input,
.checkout__field select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.checkout__field input::placeholder {
  color: var(--text-muted);
}

.checkout__field input:focus,
.checkout__field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(187, 255, 0, 0.08);
}

.checkout__field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237a7a96' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.checkout__field select option {
  background: var(--bg-card);
  color: var(--text);
}

.checkout__field-row {
  display: flex;
  gap: 16px;
}

.checkout__actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.checkout__actions .btn {
  flex: 1;
}

/* Review step */
.checkout__review {
  background: var(--bg-hover);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-bottom: 24px;
  font-size: 0.85rem;
}

.checkout__review-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.checkout__review-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.checkout__review-row:first-child {
  padding-top: 0;
}

.checkout__review-label {
  color: var(--text-muted);
}

.checkout__review-value {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--text);
}

.checkout__review-total {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 600;
}

/* Confirmation step */
.checkout__confirmation {
  text-align: center;
  padding: 20px 0;
}

.checkout__check-circle {
  color: var(--accent);
  margin-bottom: 24px;
  animation: confirmPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes confirmPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.checkout__confirm-text {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 28px;
}

.checkout__progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.checkout__progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
  width: 0%;
  animation: progressFill 3s ease-out forwards;
}

@keyframes progressFill {
  0% { width: 0%; }
  60% { width: 75%; }
  100% { width: 92%; }
}

.checkout__progress-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .plans__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .network__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .nav__links {
    display: none;
  }

  .hero__metrics {
    flex-direction: column;
    gap: 20px;
  }

  .hero__metric-divider {
    width: 36px;
    height: 1px;
  }

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

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

  .footer__links {
    flex-direction: column;
    gap: 32px;
  }

  .checkout {
    padding: 28px 24px;
  }

  .checkout__field-row {
    flex-direction: column;
  }

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

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--border-lt);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}
