:root {
  --scv-bg-primary: #080c16;
  --scv-bg-secondary: #0d1322;
  --scv-text-main: #f1f5f9;
  --scv-text-muted: #94a3b8;
  --scv-gold: #d4af37;
  --scv-gold-dark: #aa8c2c;
  --scv-border: rgba(212, 175, 55, 0.15);
  --scv-card-bg: rgba(13, 19, 34, 0.7);
  --scv-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --scv-font-display: 'Playfair Display', serif;
  --scv-font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--scv-font-body);
  background-color: var(--scv-bg-primary);
  color: var(--scv-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--scv-font-display);
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--scv-transition);
}

.scv-page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
.scv-top-masthead {
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(8, 12, 22, 0.95);
  border-bottom: 1px solid var(--scv-border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.scv-brand-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.scv-logo-abbr {
  font-family: var(--scv-font-display);
  font-size: 2.5rem;
  color: var(--scv-gold);
  line-height: 1;
}

.scv-brand-text {
  display: flex;
  flex-direction: column;
}

.scv-brand-name {
  font-size: 1.25rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--scv-text-main);
}

.scv-brand-sub {
  font-size: 0.75rem;
  color: var(--scv-text-muted);
  letter-spacing: 1px;
}

.scv-header-badge {
  padding: 0.5rem 1rem;
  border: 1px solid var(--scv-gold);
  border-radius: 4px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--scv-gold);
  text-transform: uppercase;
}

/* Hero Section */
.scv-showcase-area {
  padding: 8rem 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, var(--scv-bg-secondary) 0%, var(--scv-bg-primary) 100%);
}

.scv-showcase-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(212, 175, 55, 0.02) 10px,
    rgba(212, 175, 55, 0.02) 20px
  );
  pointer-events: none;
}

.scv-hero-label {
  color: var(--scv-gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.scv-hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--scv-text-main);
  max-width: 1000px;
  position: relative;
  z-index: 2;
}

.scv-hero-desc {
  font-size: 1.2rem;
  color: var(--scv-text-muted);
  max-width: 700px;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.scv-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.scv-stat-box {
  background: var(--scv-card-bg);
  border: 1px solid var(--scv-border);
  padding: 2rem;
  border-radius: 8px;
  transition: var(--scv-transition);
}

.scv-stat-box:hover {
  border-color: var(--scv-gold);
  transform: translateY(-5px);
}

.scv-stat-val {
  font-family: var(--scv-font-display);
  font-size: 1.5rem;
  color: var(--scv-gold);
  margin-bottom: 0.5rem;
}

.scv-stat-lbl {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--scv-text-muted);
}

/* Common Section Styles */
.scv-content-block {
  padding: 6rem 5%;
}

.scv-block-alt {
  background-color: var(--scv-bg-secondary);
  border-top: 1px solid var(--scv-border);
  border-bottom: 1px solid var(--scv-border);
}

.scv-section-heading {
  text-align: center;
  margin-bottom: 4rem;
}

.scv-section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.scv-section-intro {
  color: var(--scv-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.scv-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.scv-feature-panel {
  background: var(--scv-bg-primary);
  border: 1px solid var(--scv-border);
  padding: 2.5rem;
  border-radius: 8px;
  transition: var(--scv-transition);
}

.scv-block-alt .scv-feature-panel {
  background: var(--scv-card-bg);
}

.scv-feature-panel:hover {
  border-color: var(--scv-gold);
}

.scv-panel-kicker {
  color: var(--scv-gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.scv-panel-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.scv-panel-text {
  color: var(--scv-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.scv-panel-list {
  list-style: none;
}

.scv-panel-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--scv-text-main);
}

.scv-panel-list li::before {
  content: '♦';
  position: absolute;
  left: 0;
  color: var(--scv-gold);
  font-size: 0.8rem;
  top: 2px;
}

/* Footer */
.scv-bottom-footer {
  background-color: var(--scv-bg-primary);
  padding: 5rem 5% 2rem;
  border-top: 1px solid var(--scv-border);
  margin-top: auto;
}

.scv-footer-slogan {
  text-align: center;
  font-size: 2rem;
  font-family: var(--scv-font-display);
  color: var(--scv-gold);
  margin-bottom: 4rem;
}

.scv-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.scv-footer-col h4 {
  font-family: var(--scv-font-body);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: var(--scv-text-main);
}

.scv-footer-text {
  color: var(--scv-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.scv-contact-list {
  list-style: none;
}

.scv-contact-list li {
  margin-bottom: 1rem;
  color: var(--scv-text-muted);
  font-size: 0.95rem;
}

.scv-contact-list strong {
  color: var(--scv-gold);
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.scv-footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--scv-border);
}

.scv-footer-nav a {
  color: var(--scv-text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scv-footer-nav a:hover {
  color: var(--scv-gold);
}

/* Responsive */
@media (max-width: 992px) {
  .scv-hero-stats, .scv-grid-layout, .scv-footer-grid {
    grid-template-columns: 1fr;
  }
  
  .scv-hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .scv-brand-container {
    gap: 1rem;
  }
  
  .scv-logo-abbr {
    font-size: 2rem;
  }
  
  .scv-header-badge {
    display: none;
  }
  
  .scv-footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
