:root {
  --bg: #000000;
  --surface: #000000;
  --accent: #FAF7F4; /* Was Orange, now Cream */
  --cream: #FAF7F4;
  --muted: #888888;
  --border: #2A2A2A;
  --font-display: "Times New Roman", "Times", serif;
  --font-main: "Be Vietnam Pro", sans-serif;
  --radius: 12px;
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.serif {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  letter-spacing: 0;
}

.mono {
  font-family: var(--font-main);
  text-transform: none;
}

/* Background Grids & Textures */
.noise {
  display: none;
}

.grid-overlay {
  display: none;
}

.glow-orb {
  display: none;
}

/* Typography Scale */
h1 { font-size: clamp(4rem, 10vw, 8rem); line-height: 0.85; font-weight: 900; }
h2 { font-size: clamp(3rem, 7vw, 5rem); line-height: 1.0; font-weight: 800; }
h3 { font-size: 2.5rem; font-weight: 700; }

.hero-title {
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.section-label {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--bg);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 77, 28, 0.3);
}

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

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

.btn-dark {
  background-color: var(--bg);
  color: var(--cream);
  border: 1px solid var(--border);
}

.btn-dark:hover {
  background-color: var(--surface);
  border-color: var(--accent);
}

/* Layout Blocks */
section {
  padding: 8rem 2rem;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
}

.logo {
  font-size: 1.5rem;
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: baseline;
}

.logo span.shift {
  font-family: var(--font-display);
  font-style: italic;
}

.logo span.lab {
  font-family: 'Inter', sans-serif; /* Fallback for black weight grotesque style */
  font-weight: 900;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 6rem;
}

.hero-content {
  max-width: 900px;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 9999px;
  font-size: 0.75rem;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.hero-title .orange {
  color: var(--accent);
}

.hero-sub {
  color: var(--muted);
  max-width: 500px;
  margin: 2rem auto 3rem;
  font-size: 0.95rem;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Ticker */
.ticker-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
}

.ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  color: var(--accent);
  font-size: 0.8rem;
  padding: 0 2rem;
  font-weight: bold;
  letter-spacing: 0.2em;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Social Proof */
#social-proof {
  padding: 4rem 2rem;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-style: italic;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: lowercase;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background-color: var(--surface);
  padding: 3rem;
  border-top: 3px solid transparent;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-10px) rotateX(4deg) rotateY(2deg);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 77, 28, 0.1);
}

/* 3D Container */
.three-d-wrap {
  perspective: 1000px;
}

/* Floating Animation */
@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.hero-visual {
  display: none;
}

.card.starter { border-top-color: var(--accent); }

.card.build {
  background-color: var(--accent);
  color: var(--bg);
}

.card.build .card-tag, .card.build .card-muted, .card.build ul li::before {
  color: rgba(255, 255, 255, 0.8);
}

.card.operate { border-top-color: #2A2A2A; } /* Default darker border as requested */

.card-tag {
  color: var(--accent);
  font-size: 0.7rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

.card-title {
  font-family: var(--font-main);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.card-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 0.2rem;
}

.card-delivery {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.card-body {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.card ul {
  list-style: none;
  margin-bottom: 3rem;
}

.card ul li {
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
}

.card ul li::before {
  content: "·";
  color: var(--accent);
  font-weight: bold;
  margin-right: 0.8rem;
  font-size: 1.5rem;
}

/* Process Section */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 10%;
  width: 80%;
  height: 1px;
  border-top: 1px dashed var(--accent);
  z-index: 0;
  opacity: 0.3;
}

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

.step-num {
  width: 4rem;
  height: 4rem;
  background-color: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 2rem;
  transition: var(--transition);
}

.step:hover .step-num {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(255, 77, 28, 0.4);
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.step-desc {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Why Us Section */
.why-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-top: 4rem;
}

.why-statement {
  font-size: 2.2rem;
  line-height: 1.3;
}

.why-props {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.prop-item h4 {
  font-family: var(--font-main);
  font-style: normal;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.prop-desc {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Case Studies */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.work-card {
  background-color: var(--surface);
  padding: 4rem;
  border-left: 2px solid var(--accent);
  transition: var(--transition);
}

.work-card:hover {
  background-color: #222;
}

.work-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: block;
}

.work-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.work-desc {
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.stack-pills {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.pill {
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border);
  font-size: 0.7rem;
  border-radius: 9999px;
}

/* Final CTA */
#final-cta {
  background-color: #000000;
  color: var(--cream);
  padding: 10rem 2rem;
  max-width: 100%;
  text-align: center;
  border-top: 1px solid var(--border);
}

#final-cta h2 {
  font-size: 6rem;
  color: var(--cream);
  margin-bottom: 2rem;
}

#final-cta .sub {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  font-weight: 500;
}

/* Footer */
footer {
  padding: 6rem 2rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  margin-bottom: 6rem;
}

.footer-col h5 {
  font-family: var(--font-main);
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.7rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid, .stats-grid, .process-timeline, .why-container, .why-props, .work-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .process-timeline::before { display: none; }
  
  h1 { font-size: 4rem; }
  h2 { font-size: 3rem; }
  
  .nav-links { display: none; }
}
