/* ==========================================================================
   GCK LAB - 3D ANIMATED & HYPER-INTERACTIVE STYLESHEET
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-dark: #050811;
  --bg-primary: #070B19;
  --bg-secondary: #0D1427;
  --panel-bg: rgba(15, 23, 42, 0.65);
  --panel-border: rgba(255, 255, 255, 0.08);
  
  --saffron: #F2A65A;
  --saffron-hover: #FFC080;
  --saffron-dim: #B87F42;
  --saffron-glow: rgba(242, 166, 90, 0.3);

  --green: #34D399;
  --green-glow: rgba(52, 211, 153, 0.35);

  --cyan: #38BDF8;
  --cyan-glow: rgba(56, 189, 248, 0.35);

  --text-main: #F1F5F9;
  --text-dim: #94A3B8;
  --text-faint: #64748B;
  --line-color: rgba(255, 255, 255, 0.07);

  /* Typography */
  --font-display: 'Sora', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Layout */
  --max-width: 1200px;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
}

/* RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* WEBGL CANVAS */
#webgl-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* DYNAMIC CURSOR GLOW */
#cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 166, 90, 0.12) 0%, rgba(56, 189, 248, 0.06) 45%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity 0.3s ease;
  mix-blend-mode: screen;
}

/* LAYOUT CONTAINER */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }
}

/* TYPOGRAPHY HELPERS */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.gradient-text-3d {
  background: linear-gradient(135deg, #FFF 0%, var(--saffron) 50%, #FFD79A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0 0 30px var(--saffron-glow);
}

.eyebrow-3d {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.eyebrow-3d::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

/* BUTTONS & MAGNETIC INTERACTION */
.magnetic {
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  display: inline-block;
}

.btn-primary-3d {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  color: #070B19;
  background: linear-gradient(135deg, var(--saffron), #FFB86C);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(242, 166, 90, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary-3d:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 35px rgba(242, 166, 90, 0.5);
  color: #070B19;
}

.btn-ghost-3d {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-ghost-3d:hover {
  border-color: var(--saffron);
  background: rgba(242, 166, 90, 0.08);
  color: var(--saffron);
  transform: translateY(-2px);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.5s;
}

.btn-primary-3d:hover .btn-shine {
  left: 100%;
}

/* NAVBAR */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(7, 11, 25, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-color);
  transition: all 0.3s ease;
}

nav.scrolled {
  background: rgba(5, 8, 17, 0.92);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark-3d {
  position: relative;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, rgba(242, 166, 90, 0.2), rgba(242, 166, 90, 0.05));
  border: 1px solid var(--saffron);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  box-shadow: 0 0 15px var(--saffron-glow);
}

.mark-inner {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--saffron);
}

.logo-text {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.logo-text b {
  color: var(--saffron);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--font-mono);
  font-size: 13.5px;
}

.nav-link {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--saffron);
  transition: width 0.2s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--saffron);
  color: var(--bg-dark);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 20px var(--saffron-glow);
  transition: all 0.25s ease;
}

.nav-cta:hover {
  background: var(--saffron-hover);
  transform: translateY(-1px);
}

/* MOBILE TOGGLE */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle .bar {
  width: 22px;
  height: 2px;
  background-color: var(--text-main);
  transition: 0.3s;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

.mobile-menu {
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  z-index: 99;
  display: none;
  padding: 32px;
  backdrop-filter: blur(20px);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 18px;
}

.mobile-link {
  color: var(--text-main);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-color);
}

.btn-mobile-cta {
  color: var(--saffron);
  border-bottom: none;
  font-weight: 600;
}

/* HERO SECTION */
.hero {
  min-height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 140px 0 80px;
}

.hero-bg-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.4;
}

.orb-1 {
  width: 450px;
  height: 450px;
  background: var(--saffron);
  top: 10%;
  right: 5%;
}

.orb-2 {
  width: 380px;
  height: 380px;
  background: var(--cyan);
  bottom: 10%;
  left: 5%;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--green);
  top: 40%;
  left: 35%;
}

.hero-inner {
  text-align: center;
  max-width: 900px;
}

.badge-3d {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--green);
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.25);
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 28px;
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.15);
  backdrop-filter: blur(10px);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 680px;
  margin: 0 auto 36px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* 3D HERO MOCKUPS SHOWCASE */
.hero-mockups-3d {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  perspective: 1200px;
}

@media (max-width: 900px) {
  .hero-mockups-3d {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto 60px;
  }
}

.hero-card-3d {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: left;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform-style: preserve-3d;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-card-3d:hover {
  border-color: var(--saffron-dim);
  box-shadow: 0 30px 60px rgba(242, 166, 90, 0.15);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

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

.card-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--saffron);
  letter-spacing: 0.08em;
}

.hero-card-3d h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.hero-card-3d p {
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.hero-card-stat {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-faint);
  border-top: 1px solid var(--line-color);
  padding-top: 10px;
}

.hero-card-stat strong {
  color: var(--green);
}

/* HERO STATS BAR */
.hero-stats-3d {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line-color);
  padding-top: 36px;
}

@media (max-width: 640px) {
  .hero-stats-3d {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--saffron);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-box span {
  font-family: var(--font-mono);
  font-size: 0.725rem;
  color: var(--text-faint);
  letter-spacing: 0.08em;
}

/* MARQUEE BAND */
.marquee-band-3d {
  border-top: 1px solid var(--line-color);
  border-bottom: 1px solid var(--line-color);
  background: rgba(13, 20, 39, 0.7);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 30s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
}

.marquee-group span {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-dim);
}

.marquee-group span b {
  color: var(--saffron);
}

.marquee-group .divider {
  color: var(--saffron-dim);
  font-size: 0.7rem;
}

@keyframes scrollMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTIONS COMMON */
section {
  padding: 110px 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  section {
    padding: 70px 0;
  }
}

.section-head {
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-top: 8px;
}

.section-title em {
  font-style: normal;
  color: var(--saffron);
}

.section-desc {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-top: 14px;
}

/* REVEAL ON SCROLL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* 3D TILT CARDS & SHINE EFFECT */
.tilt-card {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  will-change: transform;
}

.card-shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.15), transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.tilt-card:hover .card-shine {
  opacity: 1;
}

/* PRODUCTS GRID */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .tools-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
}

.tool-card-3d {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.tool-card-3d:hover {
  border-color: var(--saffron);
  box-shadow: 0 30px 60px rgba(242, 166, 90, 0.2);
}

.card-depth-content {
  transform: translateZ(30px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tool-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.tool-icon-3d {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(242, 166, 90, 0.1);
  border: 1px solid rgba(242, 166, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 0 20px var(--saffron-glow);
}

.tool-status-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--green);
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 4px 10px;
  border-radius: 20px;
}

.tool-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.tool-desc {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.tool-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.tool-tags span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--saffron);
  background: rgba(242, 166, 90, 0.08);
  border: 1px solid rgba(242, 166, 90, 0.2);
  padding: 4px 10px;
  border-radius: 20px;
}

.tool-footer {
  margin-top: auto;
}

.tool-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  transition: all 0.25s ease;
}

.tool-link-btn:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  background: rgba(242, 166, 90, 0.08);
}

.link-arrow {
  transition: transform 0.2s ease;
}

.tool-link-btn:hover .link-arrow {
  transform: translate(3px, -3px);
}

/* CUSTOM WORK & TERMINAL SECTION */
.section-custom-work {
  background: rgba(13, 20, 39, 0.5);
  border-top: 1px solid var(--line-color);
  border-bottom: 1px solid var(--line-color);
}

.custom-work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .custom-work-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.custom-work-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.custom-work-info p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.feature-bullets-3d {
  list-style: none;
  margin-bottom: 36px;
}

.feature-bullets-3d li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-color);
  font-size: 0.95rem;
  color: var(--text-dim);
}

.bullet-icon {
  font-size: 1.1rem;
}

/* 3D TERMINAL CONTAINER */
.terminal-container-3d {
  background: var(--bg-primary);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
  font-family: var(--font-mono);
}

.terminal-header {
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-color);
}

.window-buttons {
  display: flex;
  gap: 8px;
}

.window-buttons span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.btn-close { background: #FF5F56; }
.btn-minimize { background: #FFBD2E; }
.btn-maximize { background: #27C93F; }

.terminal-tabs {
  display: flex;
  gap: 6px;
}

.tab-btn {
  background: none;
  border: 1px solid transparent;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn.active, .tab-btn:hover {
  color: var(--text-main);
  background: rgba(255,255,255,0.06);
  border-color: var(--line-color);
}

.terminal-body {
  padding: 24px;
  min-height: 240px;
  font-size: 0.85rem;
  line-height: 1.7;
}

.t-prompt { color: var(--green); }
.t-cmd { color: var(--text-main); }
.t-highlight { color: var(--saffron); }
.t-dim { color: var(--text-dim); }
.t-success { color: var(--green); }

.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: var(--saffron);
  vertical-align: -2px;
  margin-left: 2px;
  animation: blinkCursor 1s infinite;
}

@keyframes blinkCursor {
  50% { opacity: 0; }
}

.terminal-controls {
  padding: 12px 24px;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--line-color);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.term-action-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-color);
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.term-action-btn:hover {
  background: var(--saffron);
  color: var(--bg-dark);
  border-color: var(--saffron);
}

/* PRICING SECTION */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}

.price-card-3d {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.price-card-3d.featured {
  border-color: var(--saffron);
  background: linear-gradient(180deg, rgba(242, 166, 90, 0.08), var(--panel-bg));
  box-shadow: 0 25px 60px rgba(242, 166, 90, 0.2);
}

.featured-ribbon-3d {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--saffron);
  color: var(--bg-dark);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 4px;
  box-shadow: 0 4px 15px var(--saffron-glow);
}

.price-tier-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  display: block;
  margin-bottom: 6px;
}

.price-tier-tag.saffron {
  color: var(--saffron);
}

.price-header h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.price-tagline {
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.price-amount-box {
  display: flex;
  align-items: baseline;
  margin-bottom: 4px;
}

.price-amount-box .currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--saffron);
  margin-right: 2px;
}

.price-amount-box .amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.price-amount-box .period {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-left: 8px;
}

.delivery-time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-bottom: 28px;
}

.saffron-text {
  color: var(--saffron);
}

.price-features-list {
  list-style: none;
  flex-grow: 1;
  margin-bottom: 32px;
}

.price-features-list li {
  font-size: 0.9rem;
  color: var(--text-dim);
  padding: 10px 0;
  border-bottom: 1px solid var(--line-color);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.price-features-list li::before {
  content: '✓';
  color: var(--green);
  font-family: var(--font-mono);
  font-weight: 700;
}

.btn-price-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--panel-border);
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-price-cta:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  background: rgba(242, 166, 90, 0.08);
}

.featured-btn {
  background: var(--saffron);
  color: var(--bg-dark);
  border-color: var(--saffron);
  position: relative;
  overflow: hidden;
}

.featured-btn:hover {
  background: var(--saffron-hover);
  color: var(--bg-dark);
  box-shadow: 0 0 25px var(--saffron-glow);
}

.pricing-footnote {
  margin-top: 36px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-faint);
  text-align: center;
}

/* ABOUT SECTION */
.section-about {
  background: rgba(13, 20, 39, 0.5);
  border-top: 1px solid var(--line-color);
  border-bottom: 1px solid var(--line-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-text {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.about-tags-3d {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag-pill-3d {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-color);
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.about-interactive-card {
  background: var(--bg-primary);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.studio-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--saffron);
  margin-bottom: 20px;
}

.studio-code-box {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line-color);
  border-radius: var(--radius-md);
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.8;
}

.c-key { color: #F472B6; }
.c-prop { color: var(--cyan); }
.c-str { color: var(--green); }

.studio-footer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-faint);
}

.pulse-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

/* FAQ SECTION */
.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card-3d {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(15px);
  transition: border-color 0.25s ease;
}

.faq-card-3d.open {
  border-color: var(--saffron);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-family: var(--font-mono);
  color: var(--saffron);
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.faq-card-3d.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* CONTACT SECTION */
.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card-3d {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  text-decoration: none;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card-3d:hover {
  border-color: var(--saffron);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(242, 166, 90, 0.15);
}

.contact-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--saffron);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.contact-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.contact-sub {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-faint);
}

/* FOOTER */
.footer-3d {
  border-top: 1px solid var(--line-color);
  padding: 60px 0 32px;
  background: var(--bg-primary);
  position: relative;
  z-index: 2;
}

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-desc {
  color: var(--text-dim);
  font-size: 0.875rem;
  margin-top: 12px;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--saffron);
}

.footer-bottom-3d {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line-color);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-faint);
}

.footer-legal-links {
  display: flex;
  gap: 16px;
}

.footer-legal-links a {
  color: var(--text-faint);
  text-decoration: none;
}

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

/* MODALS */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 17, 0.85);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open {
  display: flex;
}

.modal-card-3d {
  background: var(--bg-primary);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.modal-card-3d h2 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.modal-date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-bottom: 20px;
}

.modal-card-3d h4 {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--saffron);
  margin: 18px 0 8px;
}

.modal-card-3d p, .modal-card-3d li {
  color: var(--text-dim);
  font-size: 0.875rem;
  margin-bottom: 10px;
}

.modal-card-3d ul {
  padding-left: 20px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1px solid var(--line-color);
  color: var(--text-dim);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close:hover {
  border-color: var(--saffron);
  color: var(--saffron);
}
