/* =================================================================
   THE DECEMBER 12 GROUP — WEBSITE STYLES
   ================================================================= */

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #161616;
  --mint: #c5f5b8;
  --mint-soft: #a8e09b;
  --mint-rule: rgba(197, 245, 184, 0.45);
  --mint-faint: rgba(197, 245, 184, 0.15);
  --cream: #fff5b8;
  --white: #f0f0ec;
  --soft: #c8c8c4;
  --muted: #888;
  --dim: #555;
  --rule: rgba(255, 255, 255, 0.07);
  --rule-2: rgba(255, 255, 255, 0.04);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--mint); color: var(--bg); }

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.1px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.mint { color: var(--mint); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* =================================================================
   NAV
   ================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule-2);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.nav-logo:hover .nav-logo-img { opacity: 0.85; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--mint); }
.nav-cta {
  border: 1px solid var(--mint-rule);
  padding: 10px 20px !important;
  border-radius: 100px;
  color: var(--mint) !important;
  font-weight: 500 !important;
  transition: all 0.2s !important;
}
.nav-cta:hover {
  background: var(--mint);
  color: var(--bg) !important;
  border-color: var(--mint);
}

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 32px 80px;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197, 245, 184, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 245, 184, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--mint);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 32px;
}
.hero-tag .bar {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--mint);
  opacity: 0.5;
}
.hero-headline {
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 32px;
  color: var(--white);
}
.hero-headline .mint {
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 300;
  color: var(--soft);
  max-width: 760px;
  margin: 0 auto 48px;
  letter-spacing: 0;
  line-height: 1.55;
}
.hero-sub em { color: var(--white); font-style: italic; }

/* Rotator */
.hero-rotator {
  display: inline-block;
  position: relative;
  height: 1.55em;
  vertical-align: bottom;
  overflow: hidden;
  min-width: 220px;
  color: var(--mint);
  font-weight: 500;
  font-style: italic;
}
.rotator-words {
  display: flex;
  flex-direction: column;
  animation: rotate-words 16s infinite;
}
.rotator-words span {
  display: block;
  height: 1.55em;
  white-space: nowrap;
}
@keyframes rotate-words {
  0%, 10% { transform: translateY(0); }
  12.5%, 22.5% { transform: translateY(-1.55em); }
  25%, 35% { transform: translateY(-3.1em); }
  37.5%, 47.5% { transform: translateY(-4.65em); }
  50%, 60% { transform: translateY(-6.2em); }
  62.5%, 72.5% { transform: translateY(-7.75em); }
  75%, 85% { transform: translateY(-9.3em); }
  87.5%, 97.5% { transform: translateY(-10.85em); }
  100% { transform: translateY(0); }
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--mint);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(197, 245, 184, 0.25);
}
.btn-ghost {
  border-color: var(--rule);
  color: var(--white);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--mint-rule);
  color: var(--mint);
  background: rgba(197, 245, 184, 0.04);
}
.btn-lg { padding: 20px 40px; font-size: 16px; }
.btn-block { width: 100%; }

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid var(--rule-2);
  max-width: 720px;
  margin: 0 auto;
}
.meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.meta-item .num {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--mint);
  letter-spacing: 0;
  text-transform: none;
}

/* =================================================================
   SECTION COMMON
   ================================================================= */
section {
  padding: 140px 0;
  position: relative;
}
.section-head {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
}
.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--mint);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.75;
}
.section-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 24px;
}
.section-lead {
  font-size: 18px;
  color: var(--soft);
  line-height: 1.6;
  font-weight: 300;
}

/* =================================================================
   CAPABILITIES
   ================================================================= */
.cap { background: var(--bg-2); }
.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.cap-card {
  background: var(--bg-3);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.cap-card:hover {
  border-color: var(--mint-rule);
  background: rgba(197, 245, 184, 0.02);
  transform: translateY(-4px);
}
.cap-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--mint);
  letter-spacing: 2px;
  margin-bottom: 16px;
  opacity: 0.7;
}
.cap-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
  letter-spacing: -0.2px;
}
.cap-card p {
  font-size: 14px;
  color: var(--soft);
  line-height: 1.55;
  font-weight: 300;
}
.cap-ex {
  margin-top: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--mint);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.6;
}
.cap-card-open {
  background: linear-gradient(135deg, rgba(197, 245, 184, 0.08), rgba(197, 245, 184, 0.02));
  border-color: var(--mint-rule);
}
.cap-card-open .cap-num { font-size: 28px; opacity: 1; }
.cap-card-open h3 { color: var(--mint); }

/* =================================================================
   WORK
   ================================================================= */
.work { background: var(--bg); }
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.work-card-lg { grid-column: span 2; }
.work-card {
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.work-card:hover {
  border-color: var(--mint-rule);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.work-visual {
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  padding: 40px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.work-card-lg .work-visual { min-height: 360px; }
.work-meta { padding: 32px; }
.work-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--mint);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 12px;
}
.work-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
  letter-spacing: -0.5px;
}
.work-card p {
  font-size: 15px;
  color: var(--soft);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 300;
}
.work-live {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--mint);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 8px;
}
.work-live .arrow { transition: transform 0.2s; }
.work-card:hover .work-live .arrow { transform: translateX(4px); }

/* Visual variants */
.mini-ui {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 20px;
  font-family: 'Inter', sans-serif;
}
.mini-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--rule-2);
}
.mini-row:last-child { border-bottom: none; }
.mini-row .lbl { color: var(--soft); font-weight: 300; }
.mini-row .val { color: var(--white); font-weight: 500; font-feature-settings: "tnum"; }
.mini-row.mini-total .lbl { color: var(--mint); font-weight: 500; }
.mini-row.mini-total .val { color: var(--mint); font-weight: 700; }
.mini-row-tight { padding: 6px 0; font-size: 12px; }

.mini-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}
.cal-day {
  aspect-ratio: 1;
  background: var(--rule);
  border-radius: 4px;
}
.cal-day.filled {
  background: var(--mint);
  opacity: 0.7;
}
.mini-booking {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--mint-rule);
  border-radius: 8px;
  padding: 14px;
  font-size: 14px;
  color: var(--white);
}
.mint-text { color: var(--mint); font-family: 'JetBrains Mono', monospace; font-size: 11px; margin-top: 6px; }

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  margin-bottom: 16px;
}
.mini-chart .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--mint), rgba(197, 245, 184, 0.3));
  border-radius: 4px 4px 0 0;
  min-height: 8px;
}

.work-vis-787 {
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.logo-787-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: auto;
  transform: translate(-50%, -50%);
  display: block;
}

.work-vis-tdg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-vis-tdg img {
  width: 70%;
  max-width: 280px;
}

/* =================================================================
   PROCESS
   ================================================================= */
.process { background: var(--bg-2); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mint-rule), var(--mint-rule), transparent);
}
.process-step {
  position: relative;
  z-index: 2;
}
.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--mint-rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 600;
  color: var(--mint);
  margin-bottom: 24px;
}
.process-step h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
  letter-spacing: -0.3px;
}
.process-step p {
  font-size: 14.5px;
  color: var(--soft);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 16px;
}
.step-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--mint);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
}

/* =================================================================
   PRICING
   ================================================================= */
.pricing { background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  border-color: var(--mint-rule);
  transform: translateY(-6px);
}
.price-card-featured {
  border-color: var(--mint-rule);
  background: linear-gradient(180deg, rgba(197, 245, 184, 0.04), var(--bg-2));
}
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mint);
  color: var(--bg);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.price-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--mint);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.price-build {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}
.price-month {
  font-size: 28px;
  font-weight: 500;
  color: var(--soft);
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}
.dollar {
  font-size: 0.6em;
  vertical-align: top;
  position: relative;
  top: 0.15em;
  margin-right: 2px;
  color: var(--mint);
  font-weight: 400;
}
.price-note {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.3px;
  margin-left: 4px;
}
.price-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.price-features li {
  padding: 10px 0;
  font-size: 14.5px;
  color: var(--soft);
  font-weight: 300;
  border-bottom: 1px solid var(--rule-2);
  position: relative;
  padding-left: 24px;
}
.price-features li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--mint);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
}
.pricing-foot {
  text-align: center;
  margin-top: 48px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* =================================================================
   VERTICALS — Industries cloud
   ================================================================= */
.verticals { background: var(--bg-2); }
.industries-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid var(--rule);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 400;
  color: var(--soft);
  background: var(--bg-3);
  transition: all 0.25s ease;
  cursor: default;
  letter-spacing: 0.1px;
}
.chip:hover {
  border-color: var(--mint-rule);
  color: var(--mint);
  background: rgba(197, 245, 184, 0.05);
  transform: translateY(-2px);
}
.chip-open {
  background: linear-gradient(135deg, rgba(197, 245, 184, 0.12), rgba(197, 245, 184, 0.04));
  border-color: var(--mint-rule);
  color: var(--mint);
  font-weight: 500;
}
.chip-open:hover { background: var(--mint); color: var(--bg); }

.vert-foot {
  text-align: center;
  margin-top: 64px;
  font-size: 17px;
  color: var(--soft);
  font-weight: 300;
  line-height: 1.6;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* =================================================================
   CTA
   ================================================================= */
.cta {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(197, 245, 184, 0.08), transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 900px;
}
.cta-headline {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  margin: 24px 0 32px;
}
.cta-sub {
  font-size: 19px;
  color: var(--soft);
  line-height: 1.55;
  font-weight: 300;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.cta-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid var(--rule-2);
}
.cta-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--soft);
  text-align: left;
  font-weight: 300;
  line-height: 1.4;
}
.cta-k {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--mint-rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--mint);
  flex-shrink: 0;
}

/* =================================================================
   FOOTER
   ================================================================= */
.footer {
  background: var(--bg-2);
  padding: 48px 0;
  border-top: 1px solid var(--rule);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  opacity: 0.92;
}
.footer-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 13px;
  color: var(--soft);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--mint); }
.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* =================================================================
   SCROLL REVEAL
   ================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 900px) {
  .nav-links a:not(.nav-cta) { display: none; }
  section { padding: 100px 0; }
  .section-head { margin-bottom: 56px; }
  .work-grid,
  .pricing-grid,
  .process-grid,
  .cta-contact-grid {
    grid-template-columns: 1fr;
  }
  .process-grid::before { display: none; }
  .work-card-lg { grid-column: span 1; }
  .hero-meta { gap: 32px; }
  .hero { padding-top: 120px; }
  .chip { font-size: 13px; padding: 8px 16px; }
}
