@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700;900&display=swap');

:root {
  --ink: #0F1620;
  --ink-2: #161F2C;
  --ink-3: #1E2A3A;
  --paper: #F5F3EC;
  --paper-2: #EBE8DE;
  --amber: #F5A623;
  --amber-dim: #8A5E17;
  --circuit: #4A8FBF;
  --steel: #8B96A5;
  --steel-dim: #5A6474;
  --uptime: #49B87E;
  --line: rgba(139, 150, 165, 0.18);
  --line-dark: rgba(245, 243, 236, 0.1);
  --radius: 4px;
  --radius-lg: 8px;
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Inter', sans-serif;
  --glow-amber: 0 0 15px rgba(245, 166, 35, 0.4);
  --glow-green: 0 0 15px rgba(73, 184, 126, 0.4);
  --glow-blue: 0 0 15px rgba(74, 143, 191, 0.4);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Responsive scaling for larger screens */
@media (min-width: 1400px) {
  .wrap {
    max-width: 1360px;
    padding: 0 40px;
  }
}
@media (min-width: 1800px) {
  .wrap {
    max-width: 1560px;
    padding: 0 48px;
  }
}

/* ---------- Focus / motion ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Hero Typing Effect ---------- */
.hero-typing {
  font-family: var(--mono);
  font-size: clamp(14px, 3.3vw, 40px);
  font-weight: 800;
  color: var(--steel);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
  flex-wrap: nowrap;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .hero-typing {
    font-size: clamp(12px, 4.2vw, 16px);
    gap: 6px;
    margin-bottom: 12px;
  }
}

.typing-prompt {
  color: var(--amber);
  font-weight: 800;
  user-select: none;
}

#typing-effect {
  color: var(--paper);
  font-weight: 800;
  white-space: nowrap;
}

.typing-cursor {
  display: inline-block;
  width: 0.5em;
  height: 0.85em;
  background: var(--amber);
  margin-left: 2px;
  animation: blink 0.8s step-end infinite;
  vertical-align: middle;
}

@keyframes blink {
  from, to { background-color: transparent }
  50% { background-color: var(--amber) }
}

/* ---------- Header / Nav ---------- */
header.site {
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(10px);
  background: rgba(15, 22, 32, 0.9);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 19px;
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: -.01em;
}

.logo .mark {
  width: 22px;
  height: 22px;
  border: 2px solid var(--amber);
  border-radius: 3px;
  display: grid;
  place-items: center;
  color: var(--amber);
  font-size: 11px;
  font-weight: 800;
}

.navlinks {
  display: flex;
  gap: 30px;
  align-items: center;
}

.navlinks a {
  color: var(--steel);
  font-size: 14px;
  font-weight: 500;
  transition: color .15s, border-color .15s;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.navlinks a:hover, .navlinks a.active {
  color: var(--paper);
  border-bottom-color: var(--amber);
}

/* Navigation Dropdown Menu */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.drop-trigger {
  cursor: pointer;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-width: 170px;
  z-index: 100;
  overflow: hidden;
  margin-top: 8px;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.15s;
  border-bottom: none !important;
  text-align: left;
}

.nav-dropdown-menu a:hover {
  background: var(--ink-3);
  color: var(--amber);
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-actions a.login {
  color: var(--steel);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.15s;
}

.nav-actions a.login:hover {
  color: var(--paper);
}

/* Cart Button in Header */
.cart-btn-header {
  position: relative;
  background: transparent;
  border: 1px solid var(--line-dark);
  color: var(--paper);
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s;
}

.cart-btn-header:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(245, 166, 35, 0.05);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--amber);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s, box-shadow .12s, background .15s, border-color .15s, color .15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-amber {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}

.btn-amber:hover {
  box-shadow: var(--glow-amber);
  background: #f7b443;
}

.btn-outline {
  border-color: var(--line-dark);
  color: var(--paper);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(15, 22, 32, 0.03);
}

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

.burger {
  display: none;
  background: none;
  border: none;
  color: var(--paper);
  font-size: 24px;
  cursor: pointer;
}

/* ---------- Hero Section ---------- */
.hero {
  background: var(--ink);
  color: var(--paper);
  padding: 84px 0 96px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line-dark) 1px, transparent 1px), linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 60% at 70% 30%, black 10%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.20fr 0.80fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero Badge */
.hero-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.25);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 22px;
  letter-spacing: 0.08em;
}

h1.display {
  font-family: var(--mono);
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 22px;
}

h1.display .accent {
  color: var(--amber);
}

.hero p.lede {
  font-size: 17px;
  color: var(--steel);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

/* CSS Glowing Server Rack Illustration */
.hero-illustration {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.server-rack {
  background: #111823;
  border: 4px solid #1c2635;
  border-radius: var(--radius-lg);
  width: 320px;
  padding: 18px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 40px rgba(245, 166, 35, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.server-rack::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 20px;
  width: 30px;
  height: 4px;
  background: var(--amber);
  box-shadow: var(--glow-amber);
  border-radius: 2px;
}

.rack-header {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px dashed #1c2635;
  padding-bottom: 10px;
  margin-bottom: 4px;
}

.rack-header .indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.rack-header .indicator.power {
  background: var(--uptime);
  box-shadow: var(--glow-green);
}

.rack-header .indicator.net {
  background: var(--amber);
  box-shadow: var(--glow-amber);
  animation: pulse 1.5s infinite;
}

.rack-title {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--steel);
  letter-spacing: 0.05em;
  font-weight: 700;
}

.server-unit {
  background: #182230;
  border: 1px solid #233144;
  border-radius: var(--radius);
  height: 44px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, transform 0.2s;
}

.server-unit:hover {
  border-color: var(--amber);
  background: #1e2b3d;
  transform: scale(1.02);
}

.server-unit::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--steel-dim);
}

.server-unit.active::before {
  background: var(--amber);
}

.server-unit.offline::before {
  background: #e04b4b;
}

.server-unit.rebooting::before {
  background: #f5a623;
  animation: blink 0.5s step-end infinite;
}

.disk-bays {
  display: flex;
  gap: 4px;
  pointer-events: none;
}

.disk-bays .bay {
  width: 14px;
  height: 8px;
  background: #0f1620;
  border-radius: 1px;
  display: inline-block;
  transition: background 0.15s;
}

.disk-bays .bay.active {
  background: #2a3b52;
}

.disk-bays .bay.blink {
  animation: diskBlink 0.6s infinite alternate;
}

@keyframes diskBlink {
  0% { background: #2a3b52; }
  100% { background: var(--amber); }
}

.status-leds {
  display: flex;
  gap: 6px;
  pointer-events: none;
}

.status-leds .led {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2a3b52;
}

.status-leds .led.green {
  background: var(--uptime);
  box-shadow: 0 0 4px var(--uptime);
}

.status-leds .led.green.blink {
  animation: pulse-green 1s infinite;
}

.status-leds .led.blue {
  background: var(--circuit);
  box-shadow: 0 0 4px var(--circuit);
}

.status-leds .led.blue.blink {
  animation: pulse-blue 1.2s infinite;
}

.status-leds .led.amber {
  background: var(--amber);
  box-shadow: var(--glow-amber);
}

.status-leds .led.amber.blink {
  animation: pulse-amber 0.5s infinite;
}

.status-leds .led.red {
  background: #e04b4b;
  box-shadow: 0 0 6px #e04b4b;
}

.status-leds .led.red.blink {
  animation: pulse-red 0.5s infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 4px var(--uptime); }
  50% { opacity: 0.3; box-shadow: none; }
}

@keyframes pulse-blue {
  0%, 100% { opacity: 1; box-shadow: 0 0 4px var(--circuit); }
  50% { opacity: 0.3; box-shadow: none; }
}

@keyframes pulse-amber {
  0%, 100% { opacity: 1; box-shadow: 0 0 4px var(--amber); }
  50% { opacity: 0.3; box-shadow: none; }
}

@keyframes pulse-red {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px #e04b4b; }
  50% { opacity: 0.3; box-shadow: none; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

.rack-footer {
  border-top: 2px dashed #1c2635;
  padding-top: 10px;
  margin-top: 4px;
  display: flex;
  justify-content: center;
}

.uptime-badge {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--uptime);
  background: rgba(73, 184, 126, 0.1);
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid rgba(73, 184, 126, 0.2);
  letter-spacing: 0.05em;
  font-weight: 700;
}

/* ---------- Section basics ---------- */
section {
  padding: 88px 0;
}

.section-head {
  max-width: 600px;
  margin-bottom: 52px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.tag {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--amber-dim);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
  display: block;
  font-weight: 700;
}

h2.h2 {
  font-family: var(--mono);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 36px);
  letter-spacing: -.01em;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--steel-dim);
  font-size: 16px;
}

.section-dark {
  background: var(--ink);
  color: var(--paper);
}

.section-dark .tag {
  color: var(--amber);
}

.section-dark .section-head p {
  color: var(--steel);
}

.section-alt {
  background: var(--paper-2);
}

/* ---------- Hosting Plan Section & Billing Toggle ---------- */
.cycle-tabs-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cycle-tab {
  background: var(--paper-2);
  color: var(--steel-dim);
  border: 1px solid var(--line);
  padding: 10px 20px;
  border-radius: 30px;
  font-family: var(--mono);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}

.cycle-tab:hover {
  border-color: var(--steel);
  color: var(--ink);
}

.cycle-tab.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  box-shadow: 0 4px 12px rgba(15, 22, 32, 0.15);
}

.cycle-tab .discount-badge {
  font-size: 9px;
  background: var(--amber);
  color: var(--ink);
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 900;
  margin-left: 0;
  box-shadow: var(--glow-amber);
}

.rack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.rack-unit {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  position: relative;
  transition: transform .18s, border-color .18s, box-shadow .18s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rack-unit::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.05), transparent 60%);
  pointer-events: none;
}

.rack-unit:hover {
  transform: translateY(-4px);
  border-color: var(--steel-dim);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.rack-unit.featured {
  border-color: var(--amber);
  box-shadow: 0 10px 25px rgba(245, 166, 35, 0.08);
}

.rack-unit.featured:hover {
  box-shadow: 0 15px 35px rgba(245, 166, 35, 0.15);
}

.rack-unit.featured .ru-badge {
  display: block;
}

.ru-badge {
  display: none;
  position: absolute;
  top: 0;
  right: 20px;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 5px 10px;
  border-radius: 0 0 4px 4px;
  z-index: 2;
}

.ru-head {
  padding: 26px 24px 20px;
  border-bottom: 1px solid var(--line-dark);
  position: relative;
}

/* Visual Rack Screws in Corners of cards to look like hardware rack */
.ru-head::before, .ru-head::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #5a6474 2px, #1c2635 6px);
  border-radius: 50%;
  top: 10px;
}
.ru-head::before { left: 10px; }
.ru-head::after { right: 10px; }

.ru-holes {
  display: flex;
  gap: 5px;
  margin-bottom: 16px;
}

.ru-holes span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--steel-dim);
}

.ru-name {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
}

.ru-desc {
  color: var(--steel);
  font-size: 13px;
}

.ru-price {
  padding: 22px 24px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(22, 31, 44, 0.3);
}

.ru-price .amt {
  font-family: var(--mono);
  font-size: 34px;
  font-weight: 800;
}

.ru-price .amt sup {
  font-size: 15px;
  color: var(--steel);
  font-weight: 500;
}

.ru-price .per {
  color: var(--steel-dim);
  font-size: 12px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.ru-feats {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.ru-feats li {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  color: var(--paper);
  align-items: flex-start;
}

.ru-feats li::before {
  content: '▸';
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
}

.ru-foot {
  padding: 20px 24px 28px;
}

.rack-unit .btn-ghost {
  border-color: rgba(245, 243, 236, 0.2);
  color: var(--paper);
}

.rack-unit .btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(245, 166, 35, 0.05);
}

/* ---------- Domain Search Form Updates ---------- */
.domain-search-card {
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

/* Domain Registrar Coming Soon Overlay */
.coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(235, 232, 222, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  text-align: center;
  padding: 24px;
}

.coming-soon-badge {
  background: var(--amber);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 30px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  box-shadow: var(--glow-amber);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.coming-soon-overlay h3 {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}

.coming-soon-overlay p {
  font-size: 13.5px;
  color: var(--steel-dim);
  max-width: 320px;
  line-height: 1.5;
}


.domain-search-form {
  display: flex;
  gap: 10px;
  margin-bottom: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 4px;
}

.domain-search-form input {
  flex: 1;
  padding: 14px 16px;
  border: none;
  font-size: 16px;
  background: #fff;
  outline: none;
}

.domain-select-wrapper {
  position: relative;
  background: #fff;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  display: flex;
  align-items: center;
}

.domain-select-wrapper select {
  border: none;
  background: transparent;
  padding: 0 32px 0 16px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--steel-dim);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  height: 100%;
}

.domain-select-wrapper::after {
  content: '▾';
  position: absolute;
  right: 14px;
  pointer-events: none;
  color: var(--steel-dim);
  font-size: 12px;
}

.domain-pricing-tags {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.tld-tag {
  font-family: var(--mono);
  font-size: 13.5px;
  color: var(--steel-dim);
}

.tld-tag b {
  color: var(--ink);
}

.tld-tag span {
  color: var(--steel);
  font-weight: 500;
  margin-left: 2px;
}

#domain-results {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.domain-loading {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--steel-dim);
  text-align: center;
  padding: 20px;
}

.domain-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: center;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 8px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.domain-row:hover {
  border-color: var(--steel-dim);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.domain-name {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--ink);
  word-break: break-all;
}

.domain-name .tld {
  color: var(--steel-dim);
}

.domain-status {
  font-size: 13px;
  font-weight: 600;
}

.domain-status.avail {
  color: var(--uptime);
}

.domain-status.taken {
  color: #e04b4b;
}

.domain-price {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--ink);
}

.domain-price span {
  font-size: 11px;
  color: var(--steel-dim);
  font-weight: 400;
}

/* ---------- Global System Status Dashboard ---------- */
.status-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.status-card {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.status-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status-region {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--paper);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--uptime);
  box-shadow: var(--glow-green);
}

.status-dot.loading {
  background: var(--amber);
  box-shadow: var(--glow-amber);
  animation: pulse-amber 1s infinite;
}

.status-ping-label {
  font-size: 12px;
  color: var(--steel-dim);
}

.status-ping-value {
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 800;
  color: var(--amber);
}

.status-load-bar {
  height: 4px;
  background: var(--ink-3);
  border-radius: 2px;
  overflow: hidden;
}

.status-load-fill {
  height: 100%;
  background: var(--uptime);
  width: 0%;
  transition: width 1.5s ease-in-out;
}

/* ---------- Why Choose Us Grid ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
  margin-top: 20px;
}

.why-item {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  transition: transform 0.2s, border-color 0.2s;
}

.why-item:hover {
  transform: translateY(-4px);
  border-color: var(--line);
}

.why-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.why-item h3 {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--paper);
}

.why-item p {
  color: var(--steel);
  font-size: 14px;
  line-height: 1.5;
}

/* ---------- About Us Section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-content h3 {
  font-family: var(--mono);
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--ink);
}

.about-content p {
  color: var(--steel-dim);
  font-size: 15px;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-stat-item {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
}

.about-stat-num {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 800;
  color: var(--amber-dim);
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 12px;
  color: var(--steel-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.about-illustration {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--line-dark);
  font-family: var(--mono);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.terminal-titlebar {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-dark);
}

.terminal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5a6474;
}

.terminal-dot.red { background: #e04b4b; }
.terminal-dot.yellow { background: #f5a623; }
.terminal-dot.green { background: #49b87e; }

.terminal-body {
  font-size: 13px;
  color: var(--steel);
}

.terminal-line {
  margin-bottom: 10px;
}

.terminal-line .cyan { color: var(--circuit); }
.terminal-line .green { color: var(--uptime); }
.terminal-line .amber { color: var(--amber); }

/* ---------- Contact Section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: var(--radius-lg);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.2s;
}

.contact-info-card:hover {
  transform: translateY(-2px);
}

.contact-info-icon {
  font-size: 24px;
  background: rgba(245, 166, 35, 0.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--amber-dim);
  flex-shrink: 0;
}

.contact-info-details h4 {
  font-family: var(--mono);
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--ink);
}

.contact-info-details p, .contact-info-details a {
  font-size: 13.5px;
  color: var(--steel-dim);
}

.contact-form-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

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

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--mono);
}

.form-group input, .form-group textarea {
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ---------- Shopping Cart Drawer ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 22, 32, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100%;
  background: var(--ink-2);
  color: var(--paper);
  z-index: 1001;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-close-btn {
  background: transparent;
  border: none;
  color: var(--steel);
  font-size: 24px;
  cursor: pointer;
  transition: color 0.15s;
  line-height: 1;
}

.cart-close-btn:hover {
  color: var(--paper);
}

.cart-items-container {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-empty-message {
  text-align: center;
  color: var(--steel-dim);
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cart-empty-icon {
  font-size: 44px;
  opacity: 0.5;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
  gap: 16px;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-name {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--paper);
}

.cart-item-meta {
  font-size: 11px;
  color: var(--steel);
  background: var(--ink-3);
  padding: 2px 6px;
  border-radius: 2px;
  align-self: flex-start;
}

.cart-item-price {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--amber);
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: var(--steel-dim);
  cursor: pointer;
  font-size: 16px;
  transition: color 0.15s;
  padding: 2px;
}

.cart-item-remove:hover {
  color: #e04b4b;
}

.cart-summary {
  padding: 24px;
  background: var(--ink-3);
  border-top: 1px solid var(--line-dark);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--steel);
}

.summary-row.total {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 800;
  color: var(--paper);
  border-top: 1px dashed var(--line-dark);
  padding-top: 12px;
  margin-top: 8px;
}

.summary-row.total .price {
  color: var(--amber);
}

.checkout-btn {
  margin-top: 16px;
}

/* ---------- Modals (Checkout & Server status Console) ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 22, 32, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--ink-2);
  color: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalSlide {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--steel);
  font-size: 20px;
  cursor: pointer;
  transition: color 0.15s;
}

.modal-close-btn:hover {
  color: var(--paper);
}

.modal-body {
  padding: 24px;
}

/* Server Status Dashboard Console Details */
.console-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.console-stat-box {
  background: var(--ink-3);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: var(--radius);
  padding: 16px;
}

.console-stat-label {
  font-size: 11px;
  color: var(--steel-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.console-stat-value {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--paper);
}

.console-stat-value.active {
  color: var(--uptime);
}

.console-stat-value.offline {
  color: #e04b4b;
}

.console-stat-value.rebooting {
  color: var(--amber);
}

.meter-ring-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.meter-bar {
  flex: 1;
  height: 6px;
  background: #0f1620;
  border-radius: 3px;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  background: var(--circuit);
  width: 0%;
  transition: width 0.5s ease-out;
}

.meter-fill.green { background: var(--uptime); }
.meter-fill.blue { background: var(--circuit); }

.console-graph-container {
  grid-column: 1 / -1;
  background: var(--ink-3);
  padding: 16px;
  border-radius: var(--radius);
  height: 120px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.console-graph-title {
  font-size: 11px;
  color: var(--steel-dim);
  font-family: var(--mono);
}

.console-svg-graph {
  flex: 1;
  width: 100%;
  height: 100%;
}

.console-svg-graph path {
  fill: none;
  stroke: var(--circuit);
  stroke-width: 2;
  stroke-linecap: round;
}

.console-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.reboot-progress-bar {
  grid-column: 1 / -1;
  height: 16px;
  background: #0f1620;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: none;
}

.reboot-progress-fill {
  height: 100%;
  background: var(--amber);
  width: 0%;
  transition: width 3s linear;
}

.reboot-progress-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}

/* Multi-Step Checkout Modal */
.checkout-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
}

.checkout-steps::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ink-3);
  z-index: 1;
}

.checkout-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink-3);
  border: 2px solid var(--line-dark);
  color: var(--steel);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 12px;
  display: grid;
  place-items: center;
  z-index: 2;
  position: relative;
  transition: all 0.25s;
}

.checkout-step.active {
  background: var(--ink-2);
  border-color: var(--amber);
  color: var(--amber);
  box-shadow: var(--glow-amber);
}

.checkout-step.completed {
  background: var(--uptime);
  border-color: var(--uptime);
  color: var(--ink);
}

.checkout-pane {
  display: none;
}

.checkout-pane.active {
  display: block;
}

.checkout-grid {
  display: grid;
  gap: 16px;
}

/* Card Preview Section */
.card-preview-wrapper {
  background: linear-gradient(135deg, #1c2635, #111823);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 20px;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--mono);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.card-preview-chip {
  width: 32px;
  height: 24px;
  background: linear-gradient(135deg, #ffd700, #b8860b);
  border-radius: 4px;
}

.card-preview-number {
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #fff;
  word-spacing: 4px;
}

.card-preview-footer {
  display: flex;
  justify-content: space-between;
}

.card-preview-holder {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--steel);
}

.card-preview-holder span, .card-preview-expiry span {
  display: block;
  font-size: 12px;
  color: #fff;
}

.card-preview-expiry {
  font-size: 10px;
  color: var(--steel);
}

.checkout-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

/* Success Confirmation Screen */
.success-screen {
  text-align: center;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(73, 184, 126, 0.15);
  border: 2px solid var(--uptime);
  color: var(--uptime);
  display: grid;
  place-items: center;
  font-size: 28px;
  box-shadow: var(--glow-green);
  animation: scaleUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scaleUp {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-screen h4 {
  font-family: var(--mono);
  font-size: 20px;
  color: var(--paper);
}

.success-screen p {
  color: var(--steel);
  font-size: 14px;
  max-width: 320px;
}

/* Toast Notifications styling */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: var(--ink-2);
  color: var(--paper);
  border: 1px solid var(--line-dark);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 500;
  min-width: 280px;
  max-width: 400px;
  pointer-events: auto;
  transform: translateX(120%);
  animation: toastSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast.success {
  border-left-color: var(--uptime);
}

.toast.error {
  border-left-color: #e04b4b;
}

.toast.info {
  border-left-color: var(--circuit);
}

@keyframes toastSlideIn {
  to { transform: translateX(0); }
}

.toast.fade-out {
  animation: toastSlideOut 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toastSlideOut {
  to { transform: translateX(120%); opacity: 0; }
}

/* Confetti Canvas Overlay */
#confetti-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2500;
  display: none;
}

/* ---------- Footer ---------- */
footer.site {
  background: var(--ink);
  color: var(--steel);
  padding: 56px 0 26px;
  border-top: 1px solid var(--line-dark);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.foot-col h4 {
  font-family: var(--mono);
  color: var(--paper);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.foot-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-col a {
  font-size: 14px;
  color: var(--steel);
  transition: color 0.15s;
}

.foot-col a:hover {
  color: var(--amber);
}

.foot-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--steel-dim);
  font-family: var(--mono);
  flex-wrap: wrap;
  gap: 10px;
}

.social-icons {
  display: flex;
  gap: 12px;
  font-size: 18px;
}

.social-icons a {
  width: 32px;
  height: 32px;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.15s;
}

.social-icons a:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.newsletter-form input {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  color: var(--paper);
  padding: 10px 14px;
  font-size: 13px;
  border-radius: var(--radius);
  outline: none;
  font-family: var(--sans);
  transition: border-color 0.2s;
}

.newsletter-form input:focus {
  border-color: var(--amber);
}

.newsletter-form button {
  padding: 10px;
  font-size: 13px;
  width: 100%;
}

/* ---------- Responsive Layout ---------- */
@media (max-width: 1100px) {
  .rack { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-illustration { justify-content: center; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .navlinks, .nav-actions { display: none; }
  .burger { display: block; }
  
  /* Mobile menu active states */
  .navlinks.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #0F1620;
    padding: 20px 28px;
    border-bottom: 1px solid rgba(245, 243, 236, 0.1);
    gap: 16px;
    z-index: 100;
  }
  
  .nav-actions.active {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: calc(72px + 280px);
    left: 0;
    right: 0;
    background: #0F1620;
    padding: 0 28px 20px;
    z-index: 100;
    border-bottom: 1px solid rgba(245, 243, 236, 0.1);
  }
}

@media (max-width: 650px) {
  .rack { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .form-group-row { grid-template-columns: 1fr; gap: 16px; }
  .status-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .domain-search-form {
    flex-direction: column;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 0;
  }
  .domain-search-form input {
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }
  .domain-select-wrapper {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    height: 48px;
  }
  .domain-search-form button {
    width: 100%;
    justify-content: center;
  }
  .foot-grid { grid-template-columns: 1fr; }
  .status-grid { grid-template-columns: 1fr; }
  .console-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   SUBSCRIPTION LENGTH DROPDOWN SELECTOR
   ========================================== */
.subscription-selector-wrapper {
  max-width: 380px;
  margin: 0 auto 36px;
  text-align: left;
}

.subscription-label {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--steel-dim);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.custom-select-container {
  position: relative;
  user-select: none;
}

.custom-select-trigger {
  background: var(--ink-2);
  border: 1.5px solid rgba(245, 166, 35, 0.4);
  border-radius: 12px;
  padding: 14px 20px;
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--paper);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.custom-select-trigger:hover,
.custom-select-container.open .custom-select-trigger {
  border-color: var(--amber);
  box-shadow: var(--glow-amber);
  background: var(--ink-3);
}

.select-chevron {
  font-size: 12px;
  color: var(--amber);
  transition: transform 0.25s ease;
}

.custom-select-container.open .select-chevron {
  transform: rotate(180deg);
}

.custom-select-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-select-container.open .custom-select-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.select-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--paper);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.select-option:hover {
  background: rgba(245, 166, 35, 0.1);
  color: var(--amber);
}

.select-option.active {
  background: rgba(245, 166, 35, 0.15);
  color: var(--amber);
  font-weight: 700;
}

.option-badge {
  font-size: 11px;
  font-weight: 700;
  color: #4cd964;
  background: rgba(76, 217, 100, 0.12);
  border: 1px solid rgba(76, 217, 100, 0.3);
  padding: 3px 10px;
  border-radius: 20px;
}

.option-badge.best-value {
  color: #b388ff;
  background: rgba(179, 136, 255, 0.15);
  border-color: rgba(179, 136, 255, 0.4);
}

.ru-total-callout {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--amber);
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: var(--radius);
  padding: 8px 12px;
  margin-bottom: 12px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}



