/* ==========================================================================
   OPTIFEATHER — design system
   Dark, gold-accented, premium tone. Manrope + IBM Plex Mono.
   ========================================================================== */

:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #08080a;
    --accent-gold: #c2a578;
    --accent-gold-bright: #e8d4ac;
    --text-main: #f4f4f4;
    --text-muted: #8a8a8a;
    --text-dim: #55555a;
    --surface: rgba(255, 255, 255, 0.025);
    --surface-hover: rgba(255, 255, 255, 0.045);
    --border-soft: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(194, 165, 120, 0.35);
    --font-main: 'Manrope', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}
img { max-width: 100%; }
a { color: inherit; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

::selection { background: rgba(194, 165, 120, 0.25); color: #fff; }
a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 1px solid var(--accent-gold);
    outline-offset: 3px;
}

/* ---- Fade-up entrance (pure CSS, fires on load — no JS/observer needed) ---- */
@keyframes fadeUpIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUpIn 0.85s var(--ease-premium) forwards; }
.fade-up-1 { animation-delay: 0.05s; }
.fade-up-2 { animation-delay: 0.15s; }
.fade-up-3 { animation-delay: 0.25s; }
.fade-up-4 { animation-delay: 0.35s; }
@media (prefers-reduced-motion: reduce) {
    .fade-up, .pricing-card, .service-card { animation: none !important; opacity: 1 !important; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 80px;
    background: rgba(8, 8, 10, 0.6);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: border-color 1.75s ease, background-color 1.75s ease;
}
.header.is-scrolled { border-bottom: 1px solid var(--border-soft); }

.logo a { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 30px; height: 30px; filter: drop-shadow(0 0 10px rgba(194,165,120,0.25)); }
.logo-text { font-size: 0.92rem; font-weight: 700; letter-spacing: 0.18em; color: var(--text-main); }

.nav-list { display: flex; gap: 2.4rem; }
.nav-list a {
    position: relative;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    padding-bottom: 4px;
    transition: color 1.75s;
}
.nav-list a::after {
    content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
    background: var(--accent-gold); box-shadow: 0 0 0px rgba(194,165,120,0);
    transition: width 2s var(--ease-premium), box-shadow 2s var(--ease-premium);
}
.nav-list a:hover, .nav-list a.active { color: var(--text-main); }
.nav-list a:hover::after, .nav-list a.active::after {
    width: 100%;
    box-shadow: 0 0 10px rgba(194,165,120,0.65), 0 0 2px rgba(232,212,172,0.8);
}

/* ---- Shine sweep on hover ---- */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .nav-list a {
        background-image: linear-gradient(110deg, var(--text-muted) 38%, #fff 47%, var(--accent-gold-bright) 52%, #fff 57%, var(--text-muted) 66%);
        background-size: 260% 100%;
        background-position: 180% 0;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(0 0 0px rgba(232,212,172,0));
        transition: background-position 1.8s var(--ease-premium), filter 1.8s var(--ease-premium);
    }
    .nav-list a:hover {
        background-position: -80% 0;
        filter: drop-shadow(0 0 6px rgba(232,212,172,0.45));
    }
    .nav-list a.active {
        background-position: -80% 0;
        transition: background-position 1.6s var(--ease-premium);
    }
}

/* ---- Shine sweep for header CTA button ---- */
.header .btn-outline {
    position: relative;
    overflow: hidden;
}
.header .btn-outline::before {
    content: "";
    position: absolute;
    top: 0; left: -75%;
    width: 45%; height: 100%;
    background: linear-gradient(115deg, transparent, rgba(255,255,255,0) 30%, rgba(232,212,172,0.65) 50%, rgba(255,255,255,0) 70%, transparent);
    transform: skewX(-22deg);
    transition: left 0.85s var(--ease-premium);
    pointer-events: none;
}
.header .btn-outline:hover::before { left: 135%; }
.header .btn-outline:hover {
    box-shadow: 0 0 18px rgba(194,165,120,0.28);
}

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 12px; z-index: 600;
    margin: -12px; /* keep visual size unchanged while growing the tap target */
}
.nav-toggle span { width: 22px; height: 1px; background: var(--text-main); transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
    .nav-list {
        position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
        background: rgba(8,8,10,0.98); backdrop-filter: blur(20px);
        flex-direction: column; justify-content: center; align-items: flex-start;
        gap: 2rem; padding: 0 44px; transform: translateX(100%);
        transition: transform 0.45s var(--ease-premium);
        border-left: 1px solid var(--border-soft); z-index: 550;
    }
    .nav-list.is-open { transform: translateX(0); }
    .nav-list a { font-size: 1.1rem; }
    .nav-toggle { display: flex; }
    .header .btn-outline { display: none; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    text-decoration: none; font-size: 0.95rem; font-weight: 500;
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 13px 26px; border-radius: 8px;
    transition: all 0.3s var(--ease-premium); font-family: inherit; cursor: pointer; border: 1px solid transparent;
}
.btn-primary { background: var(--accent-gold); color: #050505; border-color: var(--accent-gold); }
.btn-primary:hover { background: transparent; color: var(--accent-gold); transform: translateY(-2px); }
.btn-outline { border-color: #2a2a2a; color: var(--text-main); background: transparent; }
.btn-outline:hover { border-color: var(--accent-gold); color: var(--accent-gold); }
.btn-ghost { background: none; border: 1px solid #2a2a2a; color: var(--text-muted); padding: 13px 26px; }
.btn-ghost:hover { color: var(--accent-gold); border-color: var(--accent-gold); }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-arrow, .icon-arrow { font-size: 1rem; }

/* ==========================================================================
   Section scaffolding
   ========================================================================== */
.section { position: relative; padding: 120px 5%; max-width: 1360px; margin: 0 auto; }
.section-tight { padding-top: 80px; padding-bottom: 80px; }
.section-head { max-width: 640px; margin: 0 0 60px 0; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-gold);
    margin: 0 0 18px 0;
}
.eyebrow::before { content: ""; width: 16px; height: 1px; background: var(--accent-gold); }
.eyebrow.center { justify-content: center; }

.section-title { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 400; line-height: 1.15; letter-spacing: -0.02em; color: #fff; margin: 0 0 18px 0; }
.section-desc { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; margin: 0; }

@media (max-width: 860px) { .section { padding: 80px 6%; } }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative; min-height: 88vh; display: flex; align-items: center;
    padding: 90px 5% 70px 5%; overflow: hidden;
    background:
        radial-gradient(ellipse 60% 50% at 78% 30%, rgba(194,165,120,0.10), transparent 60%),
        var(--bg-dark);
}
.hero-grid { position: relative; z-index: 2; width: 100%; max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 40px; }
.hero-copy .eyebrow { margin-bottom: 26px; }
.hero-title { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 400; line-height: 1.25; letter-spacing: -0.02em; color: #fff; margin: 0 0 24px 0; padding-bottom: 4px; }
.hero-desc { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; max-width: 480px; margin: 0 0 40px 0; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-bottom: 56px; flex-wrap: wrap; }
.hero-stats { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; gap: 6px; }
.stat-number { color: #fff; font-size: 2.1rem; font-weight: 400; line-height: 1; }
.stat-label { color: var(--text-dim); font-size: 0.78rem; letter-spacing: 0.02em; }

.hero-visual { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; height: 700px; }
.hero-visual-stage { position: relative; width: 680px; height: 680px; display: flex; align-items: center; justify-content: center; }
.hero-visual-glow { position: absolute; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(194,165,120,0.26), transparent 70%); filter: blur(14px); animation: glowPulse 5.5s ease-in-out infinite; pointer-events: none; }
@keyframes glowPulse { 0%, 100% { opacity: 0.75; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } }
.hero-visual img { position: relative; z-index: 3; width: 86%; max-width: 620px; filter: drop-shadow(0 0 50px rgba(194,165,120,0.2)); animation: featherFloat 8s ease-in-out infinite; transform-origin: 50% 60%; pointer-events: none; }
@keyframes featherFloat {
    0%   { transform: translateY(0) rotate(-2deg) scale(1); }
    28%  { transform: translateY(-18px) rotate(2deg) scale(1.02); }
    55%  { transform: translateY(-4px) rotate(-1deg) scale(0.99); }
    80%  { transform: translateY(-12px) rotate(1.4deg) scale(1.01); }
    100% { transform: translateY(0) rotate(-2deg) scale(1); }
}
.hero-visual-ring { position: absolute; border: 1px solid rgba(194,165,120,0.25); border-radius: 50%; pointer-events: none; }
.hero-visual-ring.r2 { width: 640px; height: 640px; border-color: rgba(194,165,120,0.15); animation-duration: 23s; animation-delay: -6s; }
.hero-visual-ring.r1 { width: 740px; height: 740px; animation-duration: 17s; animation-delay: -2s; }
.hero-visual-ring.r3 { width: 860px; height: 860px; border-color: rgba(194,165,120,0.08); animation-duration: 31s; animation-delay: -11s; }

@media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-copy { display: flex; flex-direction: column; align-items: center; }
    .hero-actions, .hero-stats { justify-content: center; }
    .hero-visual { height: clamp(340px, 70vw, 500px); margin-top: 10px; }
    .hero-visual-stage { width: clamp(260px, 55vw, 440px); height: clamp(260px, 55vw, 440px); }
    .hero-visual-ring.r2 { width: 420px; height: 420px; }
    .hero-visual-ring.r1 { width: 480px; height: 480px; }
    .hero-visual-ring.r3 { width: 540px; height: 540px; }
    /* The two large decorative orbit rings are sized in raw px for their
       planet-position math; scale the whole pair down together so they stay
       proportional to the shrunk stage instead of overflowing it. */
    .hero-orbit-outer { transform: scale(0.42); }
}
@media (max-width: 640px) {
    .hero-visual-ring.r2 { width: 300px; height: 300px; }
    .hero-visual-ring.r1 { width: 340px; height: 340px; }
    .hero-visual-ring.r3 { width: 380px; height: 380px; }
    .hero-orbit-outer { transform: scale(0.3); }
}

/* ---- Decorative orbit clusters on page-hero / CTA sections (pricing,
   contact, portfolio, about) — scale the whole cluster down together on
   narrow screens so it stays proportional instead of being clipped by
   the section's overflow. ---- */
@media (max-width: 640px) {
    .orbit-field { transform: scale(0.6); transform-origin: 50% 0; }
}

/* ---- Orbit ring system: planets that travel their ring (pure CSS) ---- */
.orbit-field { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: visible; }
.orbit-ring { position: absolute; border: 1px solid rgba(194,165,120,0.13); border-radius: 50%; pointer-events: none; }
.orbit-planet {
    position: absolute; border-radius: 50%; pointer-events: none;
    background: radial-gradient(circle at 32% 28%, var(--accent-gold-bright), var(--accent-gold) 55%, #5f4d33 100%);
    box-shadow: 0 0 16px 2px rgba(194,165,120,0.5), inset -2px -2px 4px rgba(0,0,0,0.35);
}
.orbit-planet::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 1px solid rgba(194,165,120,0.18); }
.spin-slow { animation: ringDriftCW 20s ease-in-out infinite; }
.spin-slow-rev { animation: ringDriftCCW 26s ease-in-out infinite; }
.spin-med { animation: ringDriftCW 14s ease-in-out infinite; }
.orbit-ring.spin-slow { animation-duration: 19s; animation-delay: -3s; }
.orbit-ring.spin-slow-rev { animation-duration: 36s; animation-delay: -9s; }
@keyframes ringDriftCW {
    0%   { transform: rotate(0deg) scale(1); }
    25%  { transform: rotate(90deg) scale(1.035); }
    50%  { transform: rotate(180deg) scale(0.975); }
    75%  { transform: rotate(270deg) scale(1.02); }
    100% { transform: rotate(360deg) scale(1); }
}
@keyframes ringDriftCCW {
    0%   { transform: rotate(0deg) scale(1); }
    25%  { transform: rotate(-90deg) scale(0.975); }
    50%  { transform: rotate(-180deg) scale(1.035); }
    75%  { transform: rotate(-270deg) scale(0.99); }
    100% { transform: rotate(-360deg) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
    .orbit-ring.spin-slow, .orbit-ring.spin-slow-rev, .orbit-ring.spin-med,
    .hero-visual-ring.spin-slow, .hero-visual-ring.spin-slow-rev,
    .hero-visual img { animation: none; }
}

/* ==========================================================================
   3D model-viewer showcase (mars.glb / victory.glb)
   ========================================================================== */
.model-stage {
    position: relative;
    border-radius: 22px;
    border: 1px solid var(--border-soft);
    background: radial-gradient(circle at 50% 40%, rgba(194,165,120,0.08), transparent 65%), #0c0c0e;
    overflow: hidden;
}
.model-stage model-viewer { width: 100%; height: 100%; min-height: 0; --poster-color: transparent; }
.model-caption {
    position: absolute; left: 20px; bottom: 18px;
    font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--text-dim); display: flex; align-items: center; gap: 8px; pointer-events: none;
}
.model-caption::before { content: "◈"; color: var(--accent-gold); }
.model-hint {
    position: absolute; right: 18px; top: 16px;
    font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.06em;
    color: var(--text-dim); border: 1px solid var(--border-soft); border-radius: 20px;
    padding: 5px 12px; pointer-events: none;
}
.model-stage-plain {
    border: none;
    background: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible; /* never let the container clip the model on any screen size */
}
.model-stage-plain model-viewer {
    border: none;
    box-shadow: none;
    outline: none;
    --poster-color: transparent;
}

/* ---- Split section: text one side, 3D model the other ----
   The model stage uses aspect-ratio instead of a fixed pixel height so the
   3D viewport grows and shrinks fluidly with its column width at any screen
   size, rather than snapping between two hard-coded heights. min-height is
   a floor only, not a ceiling, so the model always keeps generous breathing
   room around it and is never squeezed tighter than it can render fully. */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-grid .model-stage {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 300px;
}
@media (max-width: 992px) {
    .split-grid { grid-template-columns: 1fr; gap: 40px; }
    /* Stacked layout: a touch taller relative to width so a portrait phone
       viewport still has room to frame the full model without cropping. */
    .split-grid .model-stage { aspect-ratio: 1 / 1; min-height: 280px; max-height: 60vh; }
}
@media (max-width: 480px) {
    .split-grid .model-stage { aspect-ratio: 4 / 5; min-height: 260px; }
}
@media (orientation: landscape) and (max-width: 900px) and (max-height: 500px) {
    /* Short mobile-landscape viewports: cap height by the viewport itself
       instead of by width, so the model never grows taller than the screen. */
    .split-grid .model-stage { aspect-ratio: 16 / 9; max-height: 70vh; min-height: 220px; }
}
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }

/* ==========================================================================
   Marquee / trust strip
   ========================================================================== */
.marquee-section { padding: 40px 0; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); overflow: hidden; }
.marquee-label { text-align: center; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); margin: 0 0 24px 0; }
.marquee-track { display: flex; white-space: nowrap; width: max-content; transform: translateX(0); }
.marquee-track.is-animating { animation: marqueeScroll var(--marquee-duration, 22s) linear infinite; }
.marquee-set { display: flex; gap: 64px; padding-right: 64px; }
.marquee-track span { font-size: 1.3rem; color: var(--text-dim); font-weight: 500; letter-spacing: 0.02em; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(calc(-1 * var(--marquee-distance, 0px))); } }

/* ==========================================================================
   Services grid
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: #090909; border: 1px solid #161616; border-radius: 16px; padding: 36px 30px; display: flex; flex-direction: column; transition: border-color 0.35s ease, transform 0.35s ease; }
.service-card:hover { border-color: #2c2c2c; transform: translateY(-4px); }
.service-index { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-dim); letter-spacing: 0.1em; margin-bottom: 24px; }
.service-icon { width: 42px; height: 42px; border-radius: 11px; background: rgba(194,165,120,0.08); border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--accent-gold); }
.service-icon svg { width: 19px; height: 19px; }
.service-card h3 { font-size: 1.3rem; font-weight: 500; color: #fff; margin: 0 0 10px 0; letter-spacing: -0.01em; }
.service-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; margin: 0 0 24px 0; }
.service-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; border-top: 1px solid var(--border-soft); padding-top: 20px; }
.service-list li { font-size: 0.86rem; color: #b9b9bd; display: flex; align-items: center; gap: 10px; }
.service-list li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-gold); flex-shrink: 0; }
@media (max-width: 992px) { .services-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Why choose us
   ========================================================================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-soft); border: 1px solid var(--border-soft); border-radius: 20px; overflow: hidden; }
.why-item { background: var(--bg-dark); padding: 40px 34px; transition: background-color 0.35s ease; }
.why-item:hover { background: var(--surface); }
.why-item .why-num { font-family: var(--font-mono); font-size: 0.72rem; color: var(--accent-gold); letter-spacing: 0.15em; margin-bottom: 20px; display: block; }
.why-item h4 { font-size: 1.1rem; font-weight: 500; color: #fff; margin: 0 0 10px 0; }
.why-item p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin: 0; }
@media (max-width: 992px) { .why-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Process
   ========================================================================== */
.process-list { display: flex; flex-direction: column; }
.process-step { display: grid; grid-template-columns: 100px 1fr; gap: 32px; padding: 40px 0; border-top: 1px solid var(--border-soft); align-items: start; transition: padding-left 0.4s var(--ease-premium); }
.process-step:last-child { border-bottom: 1px solid var(--border-soft); }
.process-step:hover { padding-left: 12px; }
.process-num { font-family: var(--font-mono); font-size: 0.95rem; color: var(--accent-gold); padding-top: 4px; }
.process-body h4 { font-size: 1.3rem; font-weight: 500; color: #fff; margin: 0 0 10px 0; }
.process-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; max-width: 640px; margin: 0; }
@media (max-width: 640px) { .process-step { grid-template-columns: 1fr; gap: 12px; } }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing-subhead { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin: 0 0 26px 0; flex-wrap: wrap; }
.pricing-subhead h3 { font-size: 1.25rem; font-weight: 500; color: #fff; margin: 0; letter-spacing: -0.01em; }
.pricing-subhead span { font-family: var(--font-mono); font-size: 0.76rem; color: var(--text-dim); letter-spacing: 0.05em; }
.pricing-block + .pricing-block { margin-top: 60px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; width: 100%; }
.pricing-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; width: 100%; }

@keyframes slideUpElegant { 0% { opacity: 0; transform: translateY(40px) scale(0.98); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
.pricing-card {
    position: relative; overflow: hidden;
    background-color: #090909; border: 1px solid #161616; border-radius: 16px;
    padding: 34px 28px; display: flex; flex-direction: column;
    transition: transform 0.3s var(--ease-premium), border-color 0.3s ease, box-shadow 0.3s ease;
    opacity: 0; animation: slideUpElegant 0.8s var(--ease-premium) forwards;
    animation-delay: calc(var(--card-index) * 0.12s);
}
.pricing-card:hover { border-color: #2c2c2c; transform: translateY(-4px); }
.pricing-card.active { border-color: var(--accent-gold); background-color: #0b0a08; box-shadow: 0 12px 40px rgba(194,165,120,0.05); }
.pricing-card.active:hover { box-shadow: 0 16px 48px rgba(194,165,120,0.09); }

.card-header { margin-bottom: 28px; }
.plan-name { display: block; font-size: 1.05rem; color: #8e8e93; margin-bottom: 14px; }
.pricing-card.active .plan-name { color: var(--accent-gold); }
.plan-price { font-size: 2.5rem; font-weight: 400; color: #fff; margin-bottom: 8px; display: flex; align-items: baseline; }
.plan-price sup { font-size: 1.05rem; margin-right: 2px; font-weight: 400; color: var(--text-muted); }
.plan-period { font-size: 0.95rem; color: #444446; margin-left: 6px; }
.plan-time { font-family: var(--font-mono); font-size: 0.74rem; color: var(--text-dim); letter-spacing: 0.06em; margin-top: 6px; display: block; }
.plan-description { font-size: 0.88rem; color: var(--text-dim); margin: 8px 0 0 0; }

.plan-features { list-style: none; padding: 0; margin: 0 0 32px 0; display: flex; flex-direction: column; gap: 14px; flex-grow: 1; }
.plan-features li { font-size: 0.9rem; color: #a1a1a6; display: flex; align-items: center; gap: 10px; }
.feature-icon { color: var(--accent-gold); font-size: 0.85rem; }

.tier-badge {
    position: absolute; top: 20px; right: -34px; background: var(--accent-gold); color: #050505;
    font-family: var(--font-mono); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 5px 38px; transform: rotate(38deg); box-shadow: 0 4px 14px rgba(0,0,0,0.35); z-index: 2;
}

.pricing-footer { display: flex; justify-content: center; gap: 44px; border-top: 1px solid #121212; padding-top: 30px; width: 100%; flex-wrap: wrap; }
.footer-benefit { color: var(--text-dim); font-size: 0.85rem; display: flex; align-items: center; gap: 8px; }
.benefit-dot { color: var(--accent-gold); }

@media (max-width: 1180px) { .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 992px) { .pricing-grid { grid-template-columns: 1fr; gap: 28px; } }
@media (max-width: 640px) { .pricing-grid-4 { grid-template-columns: 1fr; } }

/* ==========================================================================
   Investment pillars
   ========================================================================== */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-soft); border: 1px solid var(--border-soft); border-radius: 20px; overflow: hidden; }
.pillar { background: var(--bg-dark); padding: 40px 32px; transition: background-color 0.35s ease; }
.pillar:hover { background: var(--surface); }
.pillar-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(194,165,120,0.08); border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; color: var(--accent-gold); margin-bottom: 22px; }
.pillar-icon svg { width: 18px; height: 18px; }
.pillar h4 { font-size: 1.05rem; font-weight: 500; color: #fff; margin: 0 0 9px 0; }
.pillar p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin: 0; }
.pillar-split { margin-top: 18px; display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-dim); letter-spacing: 0.04em; }
.pillar-split .bar { flex: 1; height: 3px; border-radius: 2px; background: var(--border-soft); overflow: hidden; }
.pillar-split .bar span { display: block; height: 100%; background: var(--accent-gold); border-radius: 2px; transform-origin: left center; animation: fillBar 1.3s var(--ease-premium) forwards; animation-delay: 0.3s; }
@keyframes fillBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@media (max-width: 992px) { .pillars-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; max-width: 820px; }
.faq-item { border-top: 1px solid var(--border-soft); }
.faq-item:last-child { border-bottom: 1px solid var(--border-soft); }
.faq-question { width: 100%; background: none; border: none; color: var(--text-main); font-family: var(--font-main); font-size: 1.02rem; font-weight: 500; text-align: left; padding: 24px 4px; display: flex; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; }
.faq-question:hover { color: var(--accent-gold); }
.faq-icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--accent-gold); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::before { width: 12px; height: 1px; }
.faq-icon::after { width: 1px; height: 12px; transition: transform 0.35s var(--ease-premium); }
.faq-item.is-open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-premium); }
.faq-answer p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; padding: 0 4px 24px 4px; margin: 0; max-width: 680px; }

/* ==========================================================================
   Closing CTA
   ========================================================================== */
.cta-section {
    position: relative; margin: 0 5% 120px 5%; max-width: 1360px; margin-left: auto; margin-right: auto;
    border-radius: 24px; border: 1px solid var(--border-soft); padding: 90px 8%; text-align: center; overflow: hidden;
    background: radial-gradient(ellipse 70% 90% at 50% 0%, rgba(194,165,120,0.12), transparent 60%), linear-gradient(180deg, #0c0c0e, #08080a);
}
.cta-section .eyebrow { justify-content: center; }
.cta-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; color: #fff; letter-spacing: -0.02em; margin: 0 0 22px 0; }
.cta-desc { color: var(--text-muted); font-size: 1.02rem; max-width: 520px; margin: 0 auto 40px auto; line-height: 1.7; }
.cta-actions { display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-contact-row { margin-top: 44px; display: flex; justify-content: center; gap: 44px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-dim); }
.cta-contact-row a { color: var(--text-muted); text-decoration: none; }
.cta-contact-row a:hover { color: var(--accent-gold); }

/* ==========================================================================
   About page
   ========================================================================== */
.about-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.about-hero .section-desc { max-width: 560px; }
@media (max-width: 992px) { .about-hero { grid-template-columns: 1fr; text-align: center; } .about-hero .section-desc { margin: 0 auto; } }

/* ---- About page hero visual: fluid sizing via clamp(), no fixed px ---- */
.about-hero-visual { height: clamp(300px, 42vw, 480px); }
.about-hero-visual .hero-visual-stage { width: clamp(240px, 34vw, 460px); height: clamp(240px, 34vw, 460px); }
.about-hero-visual .hero-visual-glow { width: 74%; height: 74%; }
.about-hero-visual .hero-visual-ring.r2 { width: 87%; height: 87%; }
.about-hero-visual .hero-visual-ring.r1 { width: 100%; height: 100%; }
.about-hero-visual img { max-width: 78%; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { background: #090909; border: 1px solid #161616; border-radius: 16px; padding: 32px 28px; transition: border-color 0.3s ease, transform 0.3s ease; }
.value-card:hover { border-color: #2c2c2c; transform: translateY(-4px); }
.value-card.active { border-color: var(--accent-gold); background: #0b0a08; }
.value-card .value-name { display: block; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.85rem; color: var(--text-main); margin-bottom: 14px; }
.value-card.active .value-name { color: var(--accent-gold); }
.value-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; margin: 0; }
@media (max-width: 992px) { .values-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Portfolio — open, editorial layout. No card boxes: the visuals carry the
   weight, a hairline rule and typography carry the structure.
   ========================================================================== */
.portfolio-intro { max-width: 640px; margin: 0 auto 56px auto; text-align: center; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(32px, 4vw, 48px) clamp(20px, 2.5vw, 32px); }
.case { display: flex; flex-direction: column; }
.case-view { width: 100%; border-radius: 14px; overflow: hidden; background-color: #0c0c0e; aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; position: relative; }
.case-view img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease-premium); }
.case:hover .case-view img { transform: scale(1.045); }
.case-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 30% 20%, rgba(194,165,120,0.14), transparent 55%), linear-gradient(155deg, #101012, #0a0a0c); }
.case-placeholder img { width: 30%; opacity: 0.8; filter: drop-shadow(0 10px 24px rgba(0,0,0,0.5)); transition: transform 0.7s var(--ease-premium); }
.case:hover .case-placeholder img { transform: scale(1.06) rotate(-2deg); }
.case-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border-soft); transition: border-color 0.4s ease; }
.case:hover .case-meta { border-color: var(--border-gold); }
.case-meta .case-name { font-size: 1.02rem; font-weight: 500; color: #fff; }
.case-meta .case-tag { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-dim); text-align: right; white-space: nowrap; }
.case-link { margin-top: 10px; }
.portfolio-btn-link {
    background: none; border: none; padding: 4px 0; color: var(--text-muted);
    font-family: var(--font-main); font-size: 0.88rem; font-weight: 500; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: color 0.3s ease, gap 0.3s ease;
}
.portfolio-btn-link::after { content: "↗"; transition: transform 0.3s var(--ease-premium); }
.portfolio-btn-link:hover { color: var(--accent-gold); gap: 11px; }
.portfolio-btn-link:hover::after { transform: translate(2px, -2px); }
.portfolio-note { max-width: 640px; margin: 56px auto 0 auto; text-align: center; color: var(--text-dim); font-size: 0.85rem; line-height: 1.7; }
@media (max-width: 992px) { .case-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
    .case-grid { grid-template-columns: 1fr; gap: 40px; }
    .case-meta { flex-direction: column; align-items: flex-start; gap: 6px; }
    .case-meta .case-tag { text-align: left; }
}

/* ---- Portfolio closing CTA: integrated, not a boxed banner ---- */
.portfolio-cta {
    max-width: 620px; margin: clamp(64px, 10vw, 96px) auto 0 auto; text-align: center;
    padding-top: clamp(40px, 6vw, 56px); border-top: 1px solid var(--border-soft);
}
.portfolio-cta .eyebrow { justify-content: center; }
.portfolio-cta h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 400; color: #fff; letter-spacing: -0.01em; margin: 0 0 14px 0; }
.portfolio-cta p { color: var(--text-muted); font-size: 0.98rem; line-height: 1.7; margin: 0 0 30px 0; }
.portfolio-cta .btn { margin: 0 auto; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: stretch; }
@media (max-width: 992px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form-card, .contact-info-card { background: #090909; border: 1px solid #161616; border-radius: 16px; padding: 40px; }
.contact-form-card h3, .contact-info-card h3 { font-size: 1.15rem; font-weight: 500; color: #fff; margin: 0 0 28px 0; letter-spacing: -0.01em; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 9px; }
.form-input, .form-select, .form-textarea {
    width: 100%; padding: 13px 16px; background-color: #141414; border: 1px solid #222;
    border-radius: 8px; color: var(--text-main); font-size: 0.92rem; font-family: var(--font-main);
    outline: none; transition: border-color 0.3s ease; appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: #4a4a4a; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent-gold); }
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c2a578' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 42px; cursor: pointer;
}
.form-select option { background-color: #141414; color: var(--text-main); }
.form-submit { width: 100%; margin-top: 6px; }
.form-note { font-size: 0.78rem; color: var(--text-dim); margin: 14px 0 0 0; line-height: 1.6; }
.form-status { display: none; margin-top: 18px; padding: 14px 16px; border-radius: 8px; font-size: 0.88rem; line-height: 1.6; }
.form-status.is-visible { display: block; }
.form-status.success { background: rgba(194,165,120,0.08); border: 1px solid var(--border-gold); color: var(--accent-gold-bright); }
.form-status.error { background: rgba(220,90,90,0.08); border: 1px solid rgba(220,90,90,0.35); color: #e29a9a; }

.contact-info-card { display: flex; flex-direction: column; gap: 26px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; }
.info-icon { flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px; background: rgba(194,165,120,0.08); border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; color: var(--accent-gold); }
.info-icon svg { width: 18px; height: 18px; }
.info-row h4 { margin: 0 0 4px 0; font-size: 0.95rem; font-weight: 500; color: #fff; }
.info-row p, .info-row a { margin: 0; color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; text-decoration: none; }
.info-row a:hover { color: var(--accent-gold); }
.contact-info-divider { height: 1px; background: var(--border-soft); margin: 2px 0; }
.contact-socials { display: flex; gap: 10px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background-color: var(--bg-darker); padding: 5rem 5% 2rem 5%; border-top: 1px solid #1a1a1a; }
.footer-container { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr) 1.2fr; gap: 2.5rem; margin-bottom: 4rem; }
.footer-brand { display: flex; flex-direction: column; gap: 1.5rem; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; }
.footer-logo-img { width: 40px; height: 40px; object-fit: contain; }
.footer-logo-text { font-size: 1.05rem; font-weight: 600; letter-spacing: 2px; color: var(--text-main); }
.footer-description { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; max-width: 280px; }
.footer-socials { display: flex; gap: 0.7rem; }
.social-link { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #222; background-color: #141414; color: var(--text-muted); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: all 0.3s ease; }
.social-link:hover { border-color: var(--accent-gold); color: var(--text-main); transform: translateY(-2px); }
.footer-column h3 { color: var(--text-main); font-size: 0.95rem; font-weight: 500; margin-bottom: 1.5rem; }
.footer-column ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin: 0; padding: 0; }
.footer-column ul a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s ease; }
.footer-column ul a:hover { color: var(--accent-gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid #161616; }
.copyright { color: var(--text-muted); font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 2rem; }
.footer-bottom-links a { color: var(--text-muted); text-decoration: none; font-size: 0.8rem; transition: color 0.2s ease; }
.footer-bottom-links a:hover { color: var(--text-main); }

@media (max-width: 992px) {
    .footer-container { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .footer-brand { grid-column: span 2; }
}
@media (max-width: 576px) {
    .footer-container { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand { grid-column: span 1; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ==========================================================================
   Page loader
   ========================================================================== */
.page-loader { position: fixed; inset: 0; background: var(--bg-dark); display: flex; align-items: center; justify-content: center; z-index: 9999; transition: opacity 0.7s var(--ease-premium), visibility 0.7s var(--ease-premium); }
.page-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-ring-wrap { position: relative; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; }
.loader-ring-wrap svg { position: absolute; inset: 0; animation: loaderSpin 2.2s linear infinite; }
.loader-ring-wrap img { width: 20px; height: 20px; opacity: 0; animation: loaderFeatherIn 1.1s var(--ease-premium) 0.25s forwards; }
@keyframes loaderSpin { to { transform: rotate(360deg); } }
@keyframes loaderFeatherIn { to { opacity: 1; } }

/* ==========================================================================
   NEW — extra motion layer
   Scroll progress, scroll-reveal, spotlight cards,
   cursor glow, hero tilt, hero shine text, button ripple, icon pop.
   All additive: nothing above this line is modified.
   ========================================================================== */

/* ---- Scroll progress bar ---- */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 2px; width: 0%;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-bright));
    z-index: 700; box-shadow: 0 0 10px rgba(194,165,120,0.55);
    transition: width 0.12s linear;
}

/* ---- Scroll-triggered reveal (adds to elements with no entrance anim yet) ---- */
.reveal {
    opacity: 0; transform: translateY(26px);
    transition: opacity 0.75s var(--ease-premium), transform 0.75s var(--ease-premium);
    transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---- Spotlight hover glow that follows the cursor on cards ---- */
.spotlight-card { position: relative; }
.spotlight-card::after {
    content: ""; position: absolute; inset: 0; border-radius: inherit;
    background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(194,165,120,0.12), transparent 68%);
    opacity: 0; transition: opacity 0.45s ease; pointer-events: none;
}
.spotlight-card:hover::after { opacity: 1; }

/* ---- Magnetic buttons ---- */
/* (button magnetic-follow effect removed — buttons no longer track the cursor) */

/* ---- Button click ripple ---- */
.btn { position: relative; overflow: hidden; }
.btn-ripple {
    position: absolute; width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.55); transform: translate(-50%, -50%) scale(0);
    pointer-events: none; animation: rippleExpand 0.65s ease-out forwards;
}
.btn-primary .btn-ripple { background: rgba(5,5,5,0.35); }
@keyframes rippleExpand { to { transform: translate(-50%, -50%) scale(26); opacity: 0; } }

/* ---- Hero 3D tilt stage ---- */
.hero-visual { perspective: 1000px; }
#heroStage { transition: transform 0.4s var(--ease-premium); will-change: transform; }

/* ---- Hero title shine sweep ---- */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .hero-title.shine-text {
        background: linear-gradient(100deg, #fff 35%, var(--accent-gold-bright) 50%, #fff 65%);
        background-size: 220% 100%;
        -webkit-background-clip: text; background-clip: text;
        -webkit-text-fill-color: transparent; color: transparent;
        animation: heroShine 7s ease-in-out infinite;
    }
}
@keyframes heroShine {
    0% { background-position: 200% 0; }
    50% { background-position: -20% 0; }
    100% { background-position: 200% 0; }
}

/* ---- Icon pop on card hover ---- */
.service-icon, .pillar-icon, .info-icon {
    transition: transform 0.4s var(--ease-premium), box-shadow 0.4s ease;
}
.service-card:hover .service-icon,
.pillar:hover .pillar-icon,
.info-row:hover .info-icon {
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 0 22px rgba(194,165,120,0.28);
}

/* ---- Marquee pauses on hover so text can be read ---- */
.marquee-section:hover .marquee-track { animation-play-state: paused; }

/* ---- Reduced motion: kill every new effect instantly ---- */
@media (prefers-reduced-motion: reduce) {
    .reveal { transition: none; opacity: 1; transform: none; }
    .hero-title.shine-text { animation: none; background-position: 0 0; }
    .scroll-progress { display: none; }
    #heroStage { transition: none; }
    .btn-ripple { display: none; }
}

/* ==========================================================================
   Portfolio — real project preview mockups (Fieldwork / Steady Hand / AI Lead Agent)
   Small in-CSS recreations of each project's own look, standing in for a
   screenshot, plus a short description line under each case.
   ========================================================================== */
.case-desc { color: var(--text-dim); font-size: 0.86rem; line-height: 1.65; margin: 14px 0 0 0; }
.portfolio-btn-link { text-decoration: none; }

.proj-preview { width: 100%; height: 100%; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.proj-chrome { display: flex; align-items: center; gap: 6px; padding: 12px 16px 0; }
.proj-chrome i { width: 6px; height: 6px; border-radius: 50%; display: block; }
.proj-body { flex: 1; padding: 14px 20px 22px; display: flex; flex-direction: column; justify-content: center; }
.proj-preview .p-word { font-family: Georgia, 'Times New Roman', serif; line-height: 1.15; }
.proj-preview .p-tag { display: block; margin-top: 8px; }

/* Fieldwork — warm stone, landscape architecture */
.proj-preview.fieldwork { background: #ECE6D9; }
.proj-preview.fieldwork .proj-chrome i { background: rgba(21,23,15,0.16); }
.proj-preview.fieldwork .p-word { font-size: 25px; color: #15170F; }
.proj-preview.fieldwork .p-tag { font-family: var(--font-main); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #8E6F45; }
.proj-preview.fieldwork .p-rule { display: block; width: 38px; height: 2px; background: #454B36; margin-top: 18px; }

/* The Steady Hand — dark, copper barbershop */
.proj-preview.steady { background: #15120f; }
.proj-preview.steady .proj-chrome i { background: rgba(237,227,208,0.16); }
.proj-preview.steady .p-stripe { position: absolute; top: 0; right: 0; width: 24px; height: 100%;
    background: repeating-linear-gradient(-45deg, #a6511f 0 9px, #f4eedd 9px 18px, #2f4a50 18px 27px); opacity: 0.92; }
.proj-preview.steady .p-word { font-size: 22px; font-style: italic; color: #f4eedd; }
.proj-preview.steady .p-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #d4813f; }

/* AI Lead Agent — dark, gold SaaS dashboard */
.proj-preview.ai { background: #0B0A09; }
.proj-preview.ai .proj-chrome i { background: rgba(243,238,226,0.14); }
.proj-preview.ai .p-word { font-size: 21px; color: #F3EEE2; }
.proj-preview.ai .p-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: #C6A15B; }
.proj-preview.ai .p-cells { display: flex; gap: 6px; margin-top: 18px; }
.proj-preview.ai .p-cells i { flex: 1; height: 28px; border-radius: 4px; background: rgba(243,238,226,0.05); border: 1px solid rgba(243,238,226,0.09); }
.proj-preview.ai .p-cells i:nth-child(2) { border-color: rgba(198,161,91,0.4); }

/* APEX Auto Detailing — near-black, red accent, bold automotive display */
.proj-preview.apex { background: #0A0C10; }
.proj-preview.apex .proj-chrome i { background: rgba(240,242,246,0.14); }
.proj-preview.apex .p-word { font-family: Arial, sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: 0.01em; font-size: 21px; color: #F0F2F6; }
.proj-preview.apex .p-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #D62839; }
.proj-preview.apex .p-streak { position: absolute; top: 0; right: -10%; width: 46%; height: 100%;
    background: linear-gradient(100deg, transparent 40%, rgba(214,40,57,0.16) 48%, transparent 56%); }

/* Aurelia Dental Studio — ivory & champagne, refined serif */
.proj-preview.aurelia { background: #F6F2EA; }
.proj-preview.aurelia .proj-chrome i { background: rgba(42,38,33,0.14); }
.proj-preview.aurelia .p-word { font-family: Georgia, 'Times New Roman', serif; font-size: 24px; color: #2A2621; }
.proj-preview.aurelia .p-tag { font-family: var(--font-main); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #8B8071; }
.proj-preview.aurelia .p-rule { display: block; width: 32px; height: 2px; background: #C6A472; margin-top: 18px; }

/* Lumière Café — ivory & brass, warm serif with mono accent */
.proj-preview.lumiere { background: #F2ECE1; }
.proj-preview.lumiere .proj-chrome i { background: rgba(23,20,15,0.14); }
.proj-preview.lumiere .p-word { font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-size: 23px; color: #2A1D14; }
.proj-preview.lumiere .p-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: #8A6D3B; }
.proj-preview.lumiere .p-rule { display: block; width: 32px; height: 2px; background: #8A6D3B; margin-top: 18px; }

