:root {
  /* Colors */
  --t-bg: #0a0b10;
  --t-card: #13141a;
  --t-surface: #1a1d24;
  --t-highlight: rgba(37, 99, 235, 0.1);
  
  /* Accents */
  --t-primary: #2563eb;
  --t-primary-dark: #1d4ed8;
  --t-glow: rgba(37, 99, 235, 0.2);
  
  /* Text */
  --t-text: #f1f5f9;
  --t-text-soft: #94a3b8;
  --t-text-muted: #64748b;
  
  /* Borders */
  --t-border: rgba(148, 163, 184, 0.1);
  --t-border-active: rgba(37, 99, 235, 0.4);
}

/* Base Styles */
.t-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Hero Section */
.t-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.t-hero-icon {
  color: var(--t-primary);
  margin-bottom: 1.5rem;
}

.t-shield-icon {
  filter: drop-shadow(0 0 12px var(--t-glow));
}

.t-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--t-text);
  margin-bottom: 0.5rem;
}

.t-hero-subtitle {
  font-size: 1.25rem;
  color: var(--t-primary);
  margin-bottom: 1.5rem;
}

.t-hero-text {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--t-text-soft);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.t-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.t-feature {
  background: var(--t-card);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--t-text-soft);
}

/* Metrics */
.t-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.t-metric-card {
  background: var(--t-card);
  padding: 1.25rem;
  border-radius: 8px;
  border: 1px solid var(--t-border);
  text-align: center;
}

.t-metric-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.t-metric-value {
  color: var(--t-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.t-metric-label {
  color: var(--t-text-soft);
  font-size: 0.75rem;
}

/* Configuration Box */
.t-box {
  background: var(--t-card);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--t-border);
}

/* Pricing Rates */
.t-rates {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.t-rate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  border-bottom: 1px solid var(--t-border);
}

.t-rate.t-highlight {
  background: var(--t-highlight);
  border-radius: 8px;
  border: 1px solid var(--t-border-active);
  position: relative;
  padding: 1rem 0.75rem;
}

.t-rate-badge {
  position: absolute;
  top: -0.75rem;
  left: 1rem;
  background: var(--t-primary);
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
}

.t-rate-label {
  color: var(--t-text-soft);
  font-size: 0.9375rem;
}

.t-rate-price {
  font-weight: 500;
  color: var(--t-text);
}

/* Selectors */
.t-select {
  margin-bottom: 1.5rem;
}

.t-label {
  display: block;
  color: var(--t-text-soft);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.t-ip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  gap: 0.5rem;
}

.t-btn {
  background: var(--t-surface);
  border: 1px solid var(--t-border);
  color: var(--t-text);
  padding: 0.5rem;
  border-radius: 6px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.t-btn:hover {
  background: var(--t-highlight);
  border-color: var(--t-primary);
}

.t-btn.active {
  background: var(--t-primary);
  border-color: var(--t-primary);
  color: white;
}

.t-duration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.t-duration {
  background: var(--t-surface);
  border: 1px solid var(--t-border);
  padding: 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
}

.t-duration:hover {
  background: var(--t-highlight);
  border-color: var(--t-primary);
}

.t-duration.active {
  background: var(--t-primary);
  border-color: var(--t-primary);
  color: white;
}

.t-duration span {
  display: block;
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

/* Order Section */
.t-order {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--t-border);
}

.t-total {
  color: var(--t-text-soft);
  font-size: 0.875rem;
}

.t-amount {
  display: block;
  color: var(--t-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

.t-cta {
  background: var(--t-primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.15s ease;
}

.t-cta:hover {
  background: var(--t-primary-dark);
  transform: translateY(-1px);
}

.t-cta-arrow {
  transition: transform 0.15s ease;
}

.t-cta:hover .t-cta-arrow {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .t-metrics {
    grid-template-columns: 1fr;
  }
  
  .t-duration-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .t-order {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .t-cta {
    width: 100%;
    justify-content: center;
  }
}