/* ============================================================
   RenderBlueprint — premium dark single-page styles
   ============================================================ */

:root {
  --bg: #06070a;
  --bg-1: #0a0c12;
  --bg-2: #10131c;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --ink: #f4f6fb;
  --ink-2: #c8ccd6;
  --ink-3: #8a90a0;
  --ink-4: #5a6072;
  --cyan: #00d9ff;
  --cyan-2: #5ce8ff;
  --amber: #ffb86b;
  --amber-2: #ffd9a8;
  --maxw: 1240px;
  --rad: 18px;
  --rad-sm: 10px;
  --shadow-1: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 30px 80px -30px rgba(0, 0, 0, 0.6);
  --shadow-2: 0 30px 100px -20px rgba(0, 217, 255, 0.18);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--cyan-2); }
button { font-family: inherit; }
img { max-width: 100%; display: block; }

::selection { background: rgba(0, 217, 255, 0.3); color: white; }

/* ====== Background blueprint grid ====== */
.grid-bg {
  position: fixed; inset: 0; z-index: -1; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(0, 217, 255, 0.08), transparent 60%),
    radial-gradient(900px 500px at 0% 30%, rgba(255, 184, 107, 0.06), transparent 60%),
    linear-gradient(180deg, #06070a 0%, #08090e 100%);
}
.grid-lines {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 80%);
  animation: drift 60s linear infinite;
}
.grid-glow {
  position: absolute;
  top: -10%; left: 50%;
  width: 60vw; height: 60vw; max-width: 900px; max-height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 217, 255, 0.18), transparent 60%);
  filter: blur(40px);
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}
.noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5; mix-blend-mode: overlay; pointer-events: none;
}
@keyframes drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(48px, 48px); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.85; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

/* ====== NAV ====== */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(8, 10, 16, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav.scrolled {
  background: rgba(8, 10, 16, 0.85);
  border-bottom-color: var(--line);
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 19px; letter-spacing: -0.02em;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-name span { color: var(--cyan); }
.brand-logo {
  height: 48px; width: auto;
  display: block;
}
.foot-brand .brand-logo { height: 40px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px; color: var(--ink-2); font-weight: 500;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

.primary-btn, .ghost-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 40px; padding: 0 18px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.primary-btn {
  background: linear-gradient(180deg, #00d9ff 0%, #00a6c8 100%);
  color: #04141a;
  box-shadow: 0 0 0 1px rgba(0, 217, 255, 0.4), 0 10px 30px -10px rgba(0, 217, 255, 0.6);
}
.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(0, 217, 255, 0.6), 0 16px 40px -8px rgba(0, 217, 255, 0.7);
  color: #04141a;
}
.ghost-btn {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-2);
}
.ghost-btn:hover {
  background: var(--surface-2);
  border-color: var(--cyan);
  color: var(--ink);
}
.primary-btn.lg, .ghost-btn.lg { height: 52px; padding: 0 26px; font-size: 15px; }
.full { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  width: 40px; height: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column; gap: 4px;
  align-items: center; justify-content: center;
}
.hamburger span {
  display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 75px; left: 0; right: 0; z-index: 49;
  background: rgba(8, 10, 16, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 20px clamp(20px, 4vw, 56px);
  display: none; flex-direction: column; gap: 14px;
  transform: translateY(-10px); opacity: 0;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; }
.mobile-menu a { color: var(--ink-2); padding: 8px 0; font-size: 16px; }
.mobile-menu a.primary-btn { color: #04141a; padding: 0 24px; height: 48px; }

/* ====== HERO ====== */
.hero {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 4vw, 56px) clamp(60px, 8vw, 100px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: 80vh;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  font-size: 13px; font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #25e081; box-shadow: 0 0 0 4px rgba(37, 224, 129, 0.18);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37, 224, 129, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(37, 224, 129, 0.08); }
}
h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
  color: var(--ink);
}
h1 .grad {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--amber) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 500;
}
.lead {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-2);
  max-width: 580px;
  margin: 0 0 36px;
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-meta {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.hero-meta > div {
  display: flex; flex-direction: column; gap: 2px;
}
.hero-meta strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-meta span { font-size: 12px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; }

/* Hero render mock */
.hero-art { position: relative; }
.render-card {
  position: relative;
  border-radius: var(--rad);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line-2);
  overflow: hidden;
  box-shadow: var(--shadow-1), var(--shadow-2);
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transition: transform .8s var(--ease);
}
.render-card:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }
.render-chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--ink-3);
}
.render-chrome span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line-2);
}
.render-chrome span:first-child { background: #ff5f56; }
.render-chrome span:nth-child(2) { background: #ffbd2e; }
.render-chrome span:nth-child(3) { background: #27c93f; }
.render-chrome em { font-style: normal; margin-left: 12px; }

.render-stage {
  position: relative;
  aspect-ratio: 5/3;
  overflow: hidden;
  background: #0a0c12;
}
.render-svg { width: 100%; height: 100%; display: block; }
.bp-overlay {
  position: absolute; inset: 0;
  clip-path: inset(0 50% 0 0);
  transition: clip-path .25s var(--ease);
}
.bp-overlay svg { width: 100%; height: 100%; display: block; }
.slider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--cyan) 20%, var(--cyan) 80%, transparent);
  cursor: ew-resize;
  transform: translateX(-1px);
  transition: left .25s var(--ease);
}
.slider-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(0, 217, 255, 0.2), 0 10px 30px rgba(0, 217, 255, 0.4);
  display: flex; align-items: center; justify-content: center;
}
.slider-handle span {
  width: 14px; height: 14px;
  border-left: 2px solid #04141a;
  border-right: 2px solid #04141a;
}
.render-labels {
  position: absolute; top: 14px; left: 14px; right: 14px;
  display: flex; justify-content: space-between;
  pointer-events: none;
}
.lbl {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  padding: 4px 10px; border-radius: 4px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.lbl-render { background: rgba(255, 184, 107, 0.15); color: var(--amber); }
.lbl-bp { background: rgba(0, 217, 255, 0.15); color: var(--cyan); }
.render-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--line);
}
.pill {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(0, 217, 255, 0.1);
  color: var(--cyan);
}
.pill.ghost { background: transparent; color: var(--ink-3); }

/* ====== TRUST STRIP ====== */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
}
.trust-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 28px clamp(20px, 4vw, 56px);
  display: flex; flex-direction: column; gap: 18px; align-items: center;
  text-align: center;
}
.trust-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-4);
}
.trust-marks {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 56px); justify-content: center;
}
.trust-marks span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500; font-size: 17px;
  color: var(--ink-3);
  opacity: 0.7;
  transition: opacity .2s var(--ease), color .2s var(--ease);
}
.trust-marks span:hover { opacity: 1; color: var(--ink); }

/* ====== SECTIONS ====== */
.section {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 56px);
}
.section-head {
  max-width: 760px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center;
}
.section-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.section-head h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 18px;
}
.section-sub {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--ink-2);
  max-width: 620px;
  margin: 0 auto;
}

/* ====== SERVICES CARDS ====== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  position: relative;
  padding: 36px 32px 32px;
  border-radius: var(--rad);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
  overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at var(--mx, 50%) var(--my, 0%), rgba(0, 217, 255, 0.1), transparent 60%);
  opacity: 0; transition: opacity .3s var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}
.card:hover::before { opacity: 1; }
.card.featured {
  border-color: rgba(0, 217, 255, 0.35);
  background: linear-gradient(180deg, rgba(0, 217, 255, 0.06), rgba(255, 255, 255, 0.015));
}
.card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-4);
  margin-bottom: 22px;
}
.card-ribbon {
  position: absolute; top: 18px; right: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(0, 217, 255, 0.15);
  color: var(--cyan);
}
.card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px; font-weight: 600; letter-spacing: -0.02em;
  margin: 0 0 12px; color: var(--ink);
}
.card > p { color: var(--ink-2); margin: 0 0 20px; }
.card ul {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.card ul li {
  position: relative; padding-left: 22px;
  color: var(--ink-2); font-size: 14px;
}
.card ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 12px; height: 2px; background: var(--cyan);
}
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--cyan); font-weight: 600; font-size: 14px;
  transition: gap .2s var(--ease);
}
.card-link:hover { gap: 12px; color: var(--cyan-2); }

/* ====== PROCESS ====== */
.process { position: relative; }
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--rad);
  background: var(--surface);
  border: 1px solid var(--line);
}
.step-no {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(0, 217, 255, 0.18), rgba(0, 217, 255, 0.04));
  border: 1px solid rgba(0, 217, 255, 0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-size: 14px; font-weight: 600;
  color: var(--cyan);
  margin-bottom: 18px;
}
.step h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px; font-weight: 600;
  margin: 0 0 8px; letter-spacing: -0.02em;
}
.step p { color: var(--ink-2); margin: 0; font-size: 14.5px; }
.step p a { color: var(--cyan); border-bottom: 1px dashed var(--cyan); }
.step p a:hover { color: var(--cyan-2); }

/* ====== PORTFOLIO ====== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}
.tile {
  position: relative;
  margin: 0;
  border-radius: var(--rad);
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .35s var(--ease);
}
.tile:nth-child(1) { grid-row: span 2; }
.tile:nth-child(6) { grid-column: span 2; }
.tile:hover { transform: translateY(-2px); }
.tile-art {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform .8s var(--ease), filter .35s var(--ease);
}
.tile:hover .tile-art { transform: scale(1.06); filter: brightness(1.05); }

/* Procedural SVG backgrounds for tiles */
.tile-art[data-art="pool"] {
  background: linear-gradient(135deg, #0d2d4a 0%, #0a1830 100%);
  position: relative;
}
.tile-art[data-art="pool"]::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(27, 182, 255, 0.55), transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 184, 107, 0.3), transparent 50%),
    linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5));
}
.tile-art[data-art="paver"] {
  background:
    repeating-linear-gradient(45deg, #2a241e, #2a241e 30px, #1a1612 30px, #1a1612 32px),
    #2a241e;
  position: relative;
}
.tile-art[data-art="paver"]::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255, 184, 107, 0.2), transparent 60%), linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4));
}
.tile-art[data-art="garden"] {
  background: linear-gradient(180deg, #1b2a16 0%, #0c1a10 100%);
  position: relative;
}
.tile-art[data-art="garden"]::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 70%, rgba(80, 160, 90, 0.5), transparent 30%),
    radial-gradient(circle at 50% 60%, rgba(110, 180, 100, 0.45), transparent 35%),
    radial-gradient(circle at 80% 75%, rgba(70, 140, 80, 0.5), transparent 30%),
    radial-gradient(ellipse at 50% 10%, rgba(255, 184, 107, 0.2), transparent 60%);
}
.tile-art[data-art="outdoor"] {
  background: linear-gradient(180deg, #1a1715 0%, #0e0d0c 100%);
  position: relative;
}
.tile-art[data-art="outdoor"]::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 30%, rgba(255, 130, 60, 0.4) 50%, transparent 70%),
    radial-gradient(ellipse at 50% 80%, rgba(0,0,0,0.6), transparent 60%);
}
.tile-art[data-art="commercial"] {
  background: linear-gradient(180deg, #142028 0%, #0a1015 100%);
  position: relative;
}
.tile-art[data-art="commercial"]::after {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 60px, rgba(255,255,255,0.04) 60px, rgba(255,255,255,0.04) 61px),
    radial-gradient(ellipse at 50% 20%, rgba(0, 217, 255, 0.15), transparent 60%);
}
.tile-art[data-art="firepit"] {
  background: radial-gradient(circle at 50% 60%, #ff6a1a 0%, #b53b08 25%, #2a0e04 60%, #0c0604 100%);
  position: relative;
}
.tile-art[data-art="firepit"]::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(255, 200, 100, 0.4), transparent 30%);
  mix-blend-mode: screen;
}

.tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  display: flex; flex-direction: column; gap: 2px;
  color: var(--ink);
}
.tile figcaption strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600; font-size: 17px;
}
.tile figcaption span { font-size: 13px; color: var(--ink-2); }

/* ====== PRICING ====== */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.tier {
  position: relative;
  padding: 36px 32px;
  border-radius: var(--rad);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.tier:hover { transform: translateY(-4px); border-color: var(--line-2); }
.tier.featured {
  background: linear-gradient(180deg, rgba(0, 217, 255, 0.08), rgba(255, 184, 107, 0.04));
  border-color: rgba(0, 217, 255, 0.4);
  box-shadow: 0 30px 80px -30px rgba(0, 217, 255, 0.25);
}
.tier-ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cyan), var(--amber));
  color: #04141a;
  padding: 6px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.tier header { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.tier h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px; font-weight: 600;
  margin: 0 0 14px; color: var(--ink);
}
.price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 10px; }
.price .num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 46px; font-weight: 700; letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.price .per { color: var(--ink-3); font-size: 14px; }
.tier-sub { color: var(--ink-2); font-size: 14px; margin: 0; }
.tier ul {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.tier ul li {
  position: relative; padding-left: 26px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.tier ul li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--cyan); font-weight: 700;
}
.tier.featured ul li::before { color: var(--amber); }
.pricing-foot {
  text-align: center; color: var(--ink-3); font-size: 13px;
  margin: 32px 0 0;
}

/* ====== QUOTES ====== */
.quote-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quote {
  margin: 0;
  padding: 32px 28px;
  border-radius: var(--rad);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 20px;
}
.quote blockquote {
  margin: 0; font-size: 17px; line-height: 1.5;
  color: var(--ink);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500; letter-spacing: -0.01em;
}
.quote figcaption { display: flex; flex-direction: column; gap: 2px; }
.quote figcaption strong { color: var(--ink); font-weight: 600; }
.quote figcaption span { color: var(--ink-3); font-size: 13px; }

/* ====== FAQ ====== */
.faq-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
details {
  padding: 22px 28px;
  border-radius: var(--rad-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
details:hover { border-color: var(--line-2); }
details[open] {
  background: var(--surface-2);
  border-color: rgba(0, 217, 255, 0.25);
}
summary {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px; font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink);
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px; color: var(--cyan);
  font-weight: 400;
  transition: transform .25s var(--ease);
}
details[open] summary::after { transform: rotate(45deg); }
details p { margin: 14px 0 0; color: var(--ink-2); font-size: 15px; line-height: 1.6; }
details a { color: var(--cyan); border-bottom: 1px dashed rgba(0, 217, 255, 0.5); }

/* ====== CTA ====== */
.cta { padding-bottom: clamp(100px, 12vw, 160px); }
.cta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  padding: clamp(40px, 5vw, 64px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(0, 217, 255, 0.08) 0%, rgba(255, 184, 107, 0.06) 100%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 217, 255, 0.3);
  box-shadow: 0 40px 100px -20px rgba(0, 217, 255, 0.25);
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(0, 217, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 217, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 30% 30%, black, transparent 70%);
  pointer-events: none;
}
.cta-copy { position: relative; }
.cta-copy h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(30px, 3.5vw, 44px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.05;
  margin: 14px 0 18px;
}
.cta-copy > p { color: var(--ink-2); margin: 0 0 28px; font-size: 16px; }
.cta-meta {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  color: var(--ink-2); font-size: 14px;
}
.cta-meta span { color: var(--cyan); margin-right: 8px; font-family: 'JetBrains Mono', monospace; }

.cta-actions {
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
}
.cta-action {
  display: flex; flex-direction: column; gap: 4px;
  padding: 22px 26px;
  background: rgba(8, 10, 16, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-2);
  border-radius: var(--rad);
  text-decoration: none;
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.cta-action:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
  background: rgba(0, 217, 255, 0.05);
}
.cta-action.primary {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.15) 0%, rgba(255, 184, 107, 0.08) 100%);
  border-color: rgba(0, 217, 255, 0.4);
}
.cta-action.primary:hover {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.22) 0%, rgba(255, 184, 107, 0.12) 100%);
  border-color: var(--cyan);
}
.cta-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cyan);
}
.cta-action strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--ink);
}
.cta-action small {
  color: var(--ink-3); font-size: 13px;
}

.cta-form {
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
  background: rgba(8, 10, 16, 0.65);
  backdrop-filter: blur(12px);
  padding: 28px;
  border-radius: var(--rad);
  border: 1px solid var(--line-2);
}
.cta-form label {
  display: flex; flex-direction: column; gap: 6px;
}
.cta-form label > span {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-3); font-weight: 500;
}
.cta-form input, .cta-form textarea, .cta-form select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--rad-sm);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.cta-form input:focus, .cta-form textarea:focus, .cta-form select:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.15);
}
.cta-form textarea { resize: vertical; min-height: 100px; }
.cta-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6' fill='%2300d9ff'%3E%3Cpath d='M5 6L0 0h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 10px; padding-right: 36px; }
.form-note {
  margin: 6px 0 0;
  font-size: 13px; color: var(--ink-3); text-align: center;
}
.form-note a { color: var(--cyan); }

/* ====== FOOTER ====== */
.foot {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.3);
}
.foot-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 64px clamp(20px, 4vw, 56px) 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.foot-brand p { color: var(--ink-3); font-size: 14px; max-width: 320px; margin: 16px 0 0; }
.foot-col h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-3);
  margin: 0 0 16px;
}
.foot-col a {
  display: block; color: var(--ink-2); font-size: 14px;
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.foot-col a:hover { color: var(--cyan); }
.foot-bottom {
  max-width: var(--maxw); margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--ink-4);
}

/* ====== Reveal animation ====== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-art { max-width: 600px; margin: 0 auto; }
  .cards, .tiers, .quote-row { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .tile:nth-child(1), .tile:nth-child(6) { grid-row: auto; grid-column: auto; }
  .cta-card { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cards, .tiers, .quote-row, .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .render-card { transform: none; }
  .foot-inner { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }
  h1 { font-size: clamp(38px, 10vw, 56px); }
  .cta-card { padding: 32px 24px; }
  .cta-form { padding: 22px; }
}
