/* ==========================================================================
   KRISHH TECHH DIGITAL AGENCY — THE LAUNCH COMPANY EDITORIAL DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Doto:wght@600;800;900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    /* Color Palette */
    --paper: #f6f5f2;
    --paper-alt: #fafaf8;
    --card: #ffffff;
    --ink-surface: #0e0e0d;
    --ink-900: #111110;
    --ink-700: #383734;
    --ink-600: #6b6a66;
    --ink-400: #a3a29d;
    --ink-200: #e2e0d8;
    --ink-on-dark: #f6f5f2;
    --hairline: #eceae4;
    --grid-line: rgba(17, 17, 16, 0.042);
    --status-green: #22c55e;
    --anno-red: #d93a2b;
    --anno-red-bg: rgba(217, 58, 43, 0.08);
    --ember: 224, 96, 62;
    --blue-verified: #0095F6;

    /* Shadows & Elevation */
    --shadow-card: 0 1px 2px rgba(17, 17, 16, 0.04), 0 8px 24px rgba(17, 17, 16, 0.06);
    --shadow-raised: 0 2px 4px rgba(17, 17, 16, 0.06), 0 16px 40px rgba(17, 17, 16, 0.1);
    --shadow-pill: 0 1px 2px rgba(17, 17, 16, 0.2), 0 6px 16px rgba(17, 17, 16, 0.16);

    /* Tactile Buttons Physics */
    --btn-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --btn-dur: 0.2s;
    --btn-dur-press: 0.11s;
    --btn-hover-lift: 2px;
    --btn-press-drop: 1.5px;
    --btn-shadow-hover: 0 2px 8px rgba(17, 17, 16, 0.14), 0 16px 34px rgba(17, 17, 16, 0.2);
    --btn-shadow-press: 0 1px 2px rgba(17, 17, 16, 0.26), 0 3px 8px rgba(17, 17, 16, 0.16);
    --btn-ghost-bg: #f2f0ea;
    --btn-ghost-border: 1px solid rgba(17, 17, 16, 0.08);
    --btn-ghost-border-hover: rgba(17, 17, 16, 0.18);

    /* Radii */
    --radius-card: 20px;
    --radius-tile: 12px;
    --radius-image: 12px;
    --radius-pill: 999px;
    --radius-slab: clamp(28px, 21.9px + 1.56vw, 40px);

    /* Layout Spacing */
    --nav-height: 56px;
    --slab-gap: 12px;
    --viewport-margin: clamp(14px, 12px + 0.6vw, 20px);
    --slab-pad-x: clamp(24px, 14px + 3.8vw, 64px);
    --slab-pad-y: clamp(48px, 32px + 3.5vw, 88px);
    --content-max: 1280px;

    /* Chamfer Edge & Rim-Light Gradients */
    --edge-hi: rgba(255, 255, 255, 0.95);
    --edge-mid: #eceae4;
    --edge-lo: #dedbd3;
    --surface-grad-end: #fcfbf9;
    --surface-grad: linear-gradient(180deg, #ffffff 0%, var(--surface-grad-end) 100%);
    --surface-grad-alt: linear-gradient(180deg, #fafaf8 0%, #f7f6f3 100%);
    --edge-grad: linear-gradient(180deg, var(--edge-hi) 0%, var(--edge-mid) 45%, var(--edge-lo) 100%);
    --rim-light: inset 0 1px 0 rgba(255, 255, 255, 0.8);

    --surface-grad-dark: linear-gradient(180deg, #151514 0%, #0d0d0c 100%);
    --edge-grad-dark: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 100%);
    --rim-light-dark: inset 0 1px 0 rgba(255, 255, 255, 0.12);

    /* Typography Scale */
    --text-display: clamp(2.4rem, 4.8vw, 4.25rem);
    --text-h2: clamp(28px, 22px + 1.6vw, 42px);
    --text-h3: clamp(20px, 18px + 0.5vw, 24px);
    --text-body-lg: 18px;
    --text-body: 16px;
    --text-label: 13px;

    --lh-display: 1.05;
    --lh-h2: 1.15;
    --lh-h3: 1.3;
    --lh-body: 1.6;

    --track-display: -0.028em;
    --track-h2: -0.018em;
    --track-h3: -0.01em;

    /* Fonts */
    --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-caveat: 'Caveat', cursive;
    --font-data: 'Doto', 'JetBrains Mono', ui-monospace, monospace;
}

/* ==========================================================================
   RESET & FOUNDATION
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    color-scheme: light;
}

body {
    background-color: var(--paper);
    background-image: 
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 24px 24px;
    color: var(--ink-900);
    font-family: var(--font-inter);
    font-size: var(--text-body);
    line-height: var(--lh-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

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

button {
    font: inherit;
    color: inherit;
    cursor: pointer;
    background: transparent;
    border: none;
}

ul[role="list"], ol[role="list"] {
    list-style: none;
}

img, svg {
    max-width: 100%;
    display: block;
}

::selection {
    background-color: var(--ink-900);
    color: var(--paper);
}

:focus-visible {
    outline: 2px solid var(--ink-900);
    outline-offset: 2px;
}

/* Quiet Gray Typography Span */
.quiet {
    color: var(--ink-400);
    font-weight: 400;
}

/* Red Handwritten Annotations */
.anno-hand {
    font-family: var(--font-caveat);
    color: var(--anno-red);
    font-size: clamp(1.2rem, 1.4vw, 1.5rem);
    font-weight: 700;
    line-height: 1.1;
    display: inline-block;
    transform: rotate(-2.5deg);
}

/* ==========================================================================
   SURFACE SLABS & CARDS
   ========================================================================== */

main {
    gap: var(--slab-gap);
    padding: var(--slab-gap) var(--viewport-margin) var(--viewport-margin);
    flex-direction: column;
    display: flex;
    max-width: var(--content-max);
    margin: 0 auto;
}

.surface {
    background: var(--surface-grad) padding-box, var(--edge-grad) border-box;
    box-shadow: var(--shadow-card);
    border: 1px solid transparent;
    border-radius: var(--radius-slab);
    position: relative;
    overflow: hidden;
}

.surface::after {
    content: "";
    border-radius: inherit;
    box-shadow: var(--rim-light);
    pointer-events: none;
    z-index: 2;
    position: absolute;
    inset: 0;
}

.surface-alt {
    background: var(--surface-grad-alt) padding-box, var(--edge-grad) border-box;
}

.surface-dark {
    background: var(--surface-grad-dark) padding-box, var(--edge-grad-dark) border-box;
    color: var(--ink-on-dark);
}

.surface-dark::after {
    box-shadow: var(--rim-light-dark);
}

.surface-tile {
    border-radius: var(--radius-card);
    background: #ffffff;
    box-shadow: var(--shadow-raised);
    border: 1px solid var(--hairline);
    position: relative;
}

/* ==========================================================================
   TACTILE CONTROLS & BUTTONS
   ========================================================================== */

.control-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    border-radius: var(--radius-pill);
    padding: 13px 24px;
    cursor: pointer;
    transition: transform var(--btn-dur) var(--btn-ease),
                box-shadow var(--btn-dur) var(--btn-ease),
                background-color var(--btn-dur) var(--btn-ease),
                border-color var(--btn-dur) var(--btn-ease);
    backface-visibility: hidden;
    user-select: none;
}

.control-btn:hover {
    transform: translateY(calc(-1 * var(--btn-hover-lift)));
    box-shadow: var(--btn-shadow-hover);
}

.control-btn:active {
    transform: translateY(var(--btn-press-drop));
    box-shadow: var(--btn-shadow-press);
    transition-duration: var(--btn-dur-press);
}

.control-dark {
    background: var(--ink-900);
    color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), var(--shadow-pill);
    border: 1px solid rgba(0, 0, 0, 0.4);
}

.control-dark:hover {
    background: #1c1c1a;
}

.control-ghost {
    background: var(--btn-ghost-bg);
    border: var(--btn-ghost-border);
    color: var(--ink-900);
    box-shadow: 0 2px 6px rgba(17, 17, 16, 0.04), 0 6px 16px rgba(17, 17, 16, 0.08);
}

.control-ghost:hover {
    border-color: var(--btn-ghost-border-hover);
    background: #ebe9e2;
}

/* ==========================================================================
   FLOATING HEADER & NAVIGATION PILL
   ========================================================================== */

.nav-wrapper {
    position: sticky;
    top: var(--slab-gap);
    z-index: 100;
    width: 100%;
    display: flex;
    justify-content: center;
    pointer-events: none;
    padding: 0 var(--viewport-margin);
    margin-bottom: clamp(28px, 3.5vw, 44px);
}

.nav-pill {
    pointer-events: auto;
    width: 100%;
    max-width: 860px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px 8px 18px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.88) padding-box, var(--edge-grad) border-box;
    border: 1px solid transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(17, 17, 16, 0.08), 0 1px 3px rgba(17, 17, 16, 0.04);
}

.nav-pill::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: var(--rim-light);
    pointer-events: none;
}

.nav-wordmark {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.015em;
    color: var(--ink-900);
    text-transform: uppercase;
}

.nav-brand-logo {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: var(--ink-900);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.nav-links-list {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-link-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-600);
    transition: color 0.18s ease;
}

.nav-link-item:hover {
    color: var(--ink-900);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-btn-quote {
    padding: 10px 20px;
    font-size: 13.5px;
}

.nav-btn-book {
    padding: 8px 14px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: var(--radius-pill);
    background: var(--btn-ghost-bg);
    border: var(--btn-ghost-border);
    color: var(--ink-800);
    transition: all 0.2s ease;
    cursor: pointer;
}

.nav-btn-book:hover {
    background: #ebe8e0;
    color: var(--ink-900);
    transform: translateY(-1px);
}

.nav-btn-portal {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--btn-ghost-bg);
    border: var(--btn-ghost-border);
    color: var(--ink-700);
    transition: all 0.2s ease;
}

.nav-btn-portal:hover {
    background: #ebe8e0;
    color: var(--ink-900);
    transform: scale(1.05);
}

.nav-mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 9px;
    align-items: center;
    justify-content: center;
    background: rgba(17, 17, 16, 0.05);
    border: 1px solid rgba(17, 17, 16, 0.12);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.22s var(--btn-ease);
}

.nav-mobile-toggle:hover {
    background: rgba(17, 17, 16, 0.09);
    border-color: rgba(17, 17, 16, 0.25);
    transform: translateY(-1px);
}

.tech-toggle-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    width: 18px;
    height: 18px;
    position: relative;
}

.tech-hud-line {
    display: block;
    height: 2px;
    background: var(--ink-900);
    border-radius: 1px;
    transition: transform 0.24s cubic-bezier(0.2, 0.9, 0.3, 1.2), opacity 0.18s ease, width 0.2s ease, background-color 0.2s ease;
    transform-origin: center;
}

.tech-hud-line-1 {
    width: 18px;
}

.tech-hud-line-2 {
    width: 13px;
    display: flex;
    align-items: center;
    position: relative;
}

.tech-hud-dot {
    position: absolute;
    right: -5px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--ink-900);
    opacity: 0.85;
    transition: all 0.2s ease;
}

.tech-hud-line-3 {
    width: 16px;
}

/* Corner HUD Brackets for high-tech look */
.tech-corner {
    position: absolute;
    width: 4px;
    height: 4px;
    border-color: rgba(17, 17, 16, 0.35);
    pointer-events: none;
    transition: all 0.2s ease;
}

.tech-corner-tl {
    top: 3px;
    left: 3px;
    border-top: 1px solid;
    border-left: 1px solid;
}

.tech-corner-br {
    bottom: 3px;
    right: 3px;
    border-bottom: 1px solid;
    border-right: 1px solid;
}

/* Active State: Morphs into Tech Crosshair / Close Icon */
.nav-mobile-toggle.active {
    background: #111110;
    border-color: #111110;
    box-shadow: 0 2px 10px rgba(17, 17, 16, 0.2);
}

.nav-mobile-toggle.active .tech-hud-line {
    background: #ffffff;
}

.nav-mobile-toggle.active .tech-hud-line-1 {
    width: 18px;
    transform: translateY(6px) rotate(45deg);
}

.nav-mobile-toggle.active .tech-hud-line-2 {
    opacity: 0;
    transform: scaleX(0);
}

.nav-mobile-toggle.active .tech-hud-line-3 {
    width: 18px;
    transform: translateY(-6px) rotate(-45deg);
}

.nav-mobile-toggle.active .tech-corner-tl {
    border-color: rgba(255, 255, 255, 0.6);
}

.nav-mobile-toggle.active .tech-corner-br {
    border-color: rgba(255, 255, 255, 0.6);
}

.mobile-nav-panel {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: var(--viewport-margin);
    right: var(--viewport-margin);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-card);
    border: 1px solid var(--hairline);
    box-shadow: var(--shadow-raised);
    padding: 20px;
    z-index: 99;
}

.mobile-nav-panel.open {
    display: block;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
}

.mobile-nav-list a {
    font-size: 16px;
    font-weight: 500;
    color: var(--ink-900);
    padding: 8px 0;
    display: block;
}

/* ==========================================================================
   HERO SLAB SECTION
   ========================================================================== */

.hero-slab {
    padding: var(--slab-pad-y) var(--slab-pad-x);
    min-height: clamp(520px, 78vh, 740px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 5;
}

.hero-headline {
    font-size: var(--text-display);
    font-weight: 600;
    line-height: var(--lh-display);
    letter-spacing: var(--track-display);
    color: var(--ink-900);
    text-wrap: balance;
    margin-bottom: 24px;
}

.hero-subhead {
    font-size: clamp(17px, 1.25vw, 20px);
    line-height: 1.5;
    color: var(--ink-600);
    max-width: 52ch;
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero Background Graphics */
.hero-grid-halo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(ellipse 70% 60% at 75% 45%, rgba(224, 96, 62, 0.08) 0%, transparent 70%);
}

.hero-cast-light {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle at 75% 35%, rgba(255, 255, 255, 0.8) 0%, transparent 60%);
}

.hero-image-clip {
    position: absolute;
    right: -20px;
    bottom: -30px;
    width: clamp(320px, 46vw, 680px);
    height: 100%;
    pointer-events: none;
    z-index: 2;
    mask-image: radial-gradient(ellipse 90% 80% at 65% 55%, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 65% 55%, black 40%, transparent 80%);
    opacity: 0.88;
}

.hero-image-clip img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
}

/* Red Handwritten Joke Annotation Next to Rocket (Desktop) */
.hero-rocket-anno {
    position: absolute;
    right: clamp(180px, 17vw, 240px);
    top: clamp(190px, 27%, 230px);
    bottom: auto;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: rotate(-3deg);
    pointer-events: none;
    user-select: none;
}

.hero-rocket-anno .anno-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.hero-rocket-anno .anno-hand-line {
    font-family: var(--font-caveat), cursive;
    font-size: clamp(16px, 1.25vw, 20px);
    font-weight: 700;
    color: var(--anno-red);
    line-height: 1.15;
    white-space: nowrap;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.95), 0 2px 10px rgba(246, 245, 242, 0.9);
}

.hero-rocket-anno .rocket-anno-arrow {
    filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.9));
    flex-shrink: 0;
}

.hero-rocket-anno .arrow-desktop {
    width: 44px;
    height: 32px;
    display: block;
    transform: none;
}

.hero-rocket-anno .arrow-mobile {
    display: none;
    transform: none;
}

/* ==========================================================================
   SELECTED WORK SECTION (12-COL BENTO GRID)
   ========================================================================== */

.work-slab {
    padding: clamp(48px, 5vw, 80px) var(--slab-pad-x);
}

.section-title {
    font-size: var(--text-h2);
    font-weight: 600;
    line-height: var(--lh-h2);
    letter-spacing: var(--track-h2);
    margin-bottom: clamp(24px, 3.2vw, 44px);
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
}

/* Work Slots */
.slot-col-3 {
    grid-column: span 3;
}

.slot-col-6 {
    grid-column: span 6;
}

/* Standard Work Card */
.work-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-card);
    background: #ffffff;
    border: 1px solid var(--hairline);
    box-shadow: var(--shadow-raised);
    overflow: hidden;
    cursor: default;
    text-decoration: none;
    color: inherit;
    transition: transform 0.28s var(--btn-ease), box-shadow 0.28s var(--btn-ease);
    position: relative;
}

.work-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--btn-shadow-hover);
}

.work-frame {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eceae4;
}

.work-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s var(--btn-ease);
}

.work-card:hover .work-frame img {
    transform: scale(1.03);
}

/* Hover Glass Tag */
.work-glass-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 17, 16, 0.15);
    opacity: 0;
    transition: opacity 0.25s var(--btn-ease);
    z-index: 3;
}

.work-card:hover .work-glass-overlay {
    opacity: 1;
}

.work-glass-chip {
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-900);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transform: translateY(6px);
    transition: transform 0.25s var(--btn-ease);
}

.work-card:hover .work-glass-chip {
    transform: translateY(0);
}

.work-url-chip {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    font-family: var(--font-data);
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-700);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.work-caption {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #ffffff;
}

.work-title-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink-900);
}

.verified-badge {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.work-outcome {
    font-size: 13.5px;
    color: var(--ink-600);
    line-height: 1.45;
}

/* ==========================================================================
   BENTO ROW 2: SERVICES + FEATURED REEL + WINS/KPIS
   ========================================================================== */

/* Slot Services / Capabilities (Col 1-3) */
.slot-services-card {
    border-radius: var(--radius-card);
    background: #ffffff;
    border: 1px solid var(--hairline);
    box-shadow: var(--shadow-raised);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
    transition: transform 0.25s var(--btn-ease), box-shadow 0.25s var(--btn-ease);
}

.slot-services-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--btn-shadow-hover);
}

.services-top-tag {
    font-family: var(--font-data);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-400);
}

.services-main-content {
    margin: 20px 0;
}

.services-main-content h3 {
    font-size: 21px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.015em;
    margin-bottom: 12px;
    color: var(--ink-900);
}

.services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13.5px;
    color: var(--ink-600);
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-list li::before {
    content: "•";
    color: var(--anno-red);
    font-weight: bold;
}

.services-foot-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--hairline);
}

/* Slot Featured Showcase (Col 4-9) */
.slot-featured-card {
    border-radius: var(--radius-card);
    background: #ffffff;
    border: 1px solid var(--hairline);
    box-shadow: var(--shadow-raised);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: default;
    transition: transform 0.25s var(--btn-ease), box-shadow 0.25s var(--btn-ease);
}

.slot-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--btn-shadow-hover);
}

.featured-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #111110;
    overflow: hidden;
}

.featured-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.4s var(--btn-ease);
}

.slot-featured-card:hover .featured-frame img {
    transform: scale(1.02);
}

.featured-live-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 2;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    background: rgba(17, 17, 16, 0.75);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pulse-green-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--status-green);
    box-shadow: 0 0 6px var(--status-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

/* Slot KPIs & Wins (Col 10-12) */
.slot-kpis-card {
    border-radius: var(--radius-card);
    background: #ffffff;
    border: 1px solid var(--hairline);
    box-shadow: var(--shadow-raised);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    position: relative;
    cursor: pointer;
    transition: transform 0.25s var(--btn-ease), box-shadow 0.25s var(--btn-ease);
}

.slot-kpis-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--btn-shadow-hover);
}

.kpi-row {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-bottom: 1px solid var(--hairline);
}

.kpi-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.kpi-value {
    font-family: var(--font-data);
    font-size: clamp(28px, 2.4vw, 36px);
    font-weight: 900;
    line-height: 1;
    color: var(--ink-900);
    letter-spacing: -0.02em;
}

.kpi-label {
    font-size: 13px;
    color: var(--ink-600);
    margin-top: 4px;
}

/* Laurel Box Overlay */
.kpi-laurel-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 60px;
    margin: 4px 0;
}

.kpi-laurel-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.kpi-laurel-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-data);
    font-size: 28px;
    font-weight: 900;
    color: var(--ink-900);
}

/* ==========================================================================
   PARTNERS BAND (TESTIMONIALS SLIDER)
   ========================================================================== */

.partners-band {
    border-radius: var(--radius-card);
    background: var(--surface-grad-dark) padding-box, var(--edge-grad-dark) border-box;
    border: 1px solid transparent;
    color: var(--ink-on-dark);
    padding: clamp(48px, 6vw, 84px) var(--slab-pad-x);
    position: relative;
    overflow: hidden;
}

.partners-band::after {
    box-shadow: var(--rim-light-dark);
}

.partners-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}

.partners-headline {
    font-size: var(--text-h2);
    font-weight: 600;
    letter-spacing: var(--track-h2);
    color: #ffffff;
}

.partners-headline .quiet {
    color: #6b6a66;
}

.partners-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.partners-progress-bar {
    width: 120px;
    height: 3px;
    background: rgba(246, 245, 242, 0.16);
    border-radius: var(--radius-pill);
    position: relative;
    overflow: hidden;
}

.partners-progress-thumb {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 25%;
    background: var(--ink-on-dark);
    border-radius: var(--radius-pill);
    transition: left 0.3s ease;
}

.partners-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.partners-arrow-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(1.06);
}

.partners-carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.partners-carousel-track::-webkit-scrollbar {
    display: none;
}

.partner-card {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: start;
    padding: 32px;
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.partner-quote {
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: 1.45;
    font-weight: 400;
    color: #eae9e5;
    margin-bottom: 28px;
}

.partner-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 18px;
}

.partner-author {
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
}

.partner-role {
    font-size: 13px;
    color: #8e8d88;
}

.partner-brand-pill {
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

/* Spot Reserved Partner Card (TheLaunchCompany inspired) */
.partner-card-reserved {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(224, 96, 62, 0.08) 100%);
    border: 1px dashed rgba(255, 255, 255, 0.28);
    transition: all 0.3s ease;
}

.partner-card-reserved:hover {
    border-color: rgba(224, 96, 62, 0.7);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(224, 96, 62, 0.12) 100%);
    transform: translateY(-2px);
}

.partner-reserved-header {
    margin-bottom: 14px;
}

.partner-reserved-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    background: rgba(46, 213, 115, 0.12);
    border: 1px solid rgba(46, 213, 115, 0.3);
    font-family: var(--font-data);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #2ed573;
}

.partner-quote-reserved {
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.partner-reserved-sub {
    font-size: 15px;
    line-height: 1.55;
    color: #b5b4ad;
    margin-bottom: 24px;
    max-width: 52ch;
}

.partner-claim-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    background: #ffffff;
    color: #111110;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.partner-claim-btn:hover {
    background: #e0603e;
    color: #ffffff;
    transform: translateX(3px);
}

/* ==========================================================================
   MANIFESTO / ABOUT SLAB & EASTER EGG PEDESTAL
   ========================================================================== */

.manifesto-slab {
    padding: var(--slab-pad-y) var(--slab-pad-x);
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 58fr 38fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.manifesto-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.manifesto-statement {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: var(--track-h2);
    color: var(--ink-900);
}

.weight-hover {
    font-style: italic;
    color: var(--anno-red);
    transition: all 0.2s ease;
    cursor: default;
}

.weight-hover:hover {
    letter-spacing: 0.02em;
}

.manifesto-description {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-600);
    max-width: 50ch;
}

.manifesto-right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

.manifesto-altar-grid {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at center, rgba(17, 17, 16, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
    pointer-events: none;
}

.pedestal-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.pedestal-dome-hit {
    position: relative;
    width: 190px;
    height: 190px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.12s var(--btn-ease);
}

.pedestal-dome-hit:hover {
    transform: scale(1.03);
}

.pedestal-dome-hit:active {
    transform: scale(0.96) translateY(4px);
}

.pedestal-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(17, 17, 16, 0.2));
}

.pedestal-halo {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--ember), 0.6) 0%, rgba(var(--ember), 0) 70%);
    opacity: 0.35;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.pedestal-dome-hit:hover .pedestal-halo {
    opacity: 0.75;
    transform: scale(1.2);
}

.pedestal-anno {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pedestal-anno .anno-hand {
    font-size: 18px;
    font-weight: 700;
    color: var(--anno-red);
}

.pedestal-arrow {
    width: 28px;
    height: 28px;
    transform: rotate(20deg);
}

/* ==========================================================================
   DIRECT INQUIRY & CONTACT SLAB
   ========================================================================== */

.contact-slab {
    padding: var(--slab-pad-y) var(--slab-pad-x);
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 42fr 58fr;
    gap: clamp(32px, 5vw, 64px);
}

.contact-left-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-desc {
    font-size: 16.5px;
    color: var(--ink-600);
    line-height: 1.55;
    margin-top: 12px;
}

.contact-card-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.contact-appointment-card {
    padding: 24px;
    border-radius: var(--radius-card);
    background: var(--paper-alt);
    border: 1px solid var(--hairline);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-appointment-card:hover {
    border-color: #dcd8cf;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.appointment-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.appointment-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-data);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-700);
}

.status-dot-green {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    animation: statusPulse 2s infinite ease-in-out;
}

.appointment-time-tag {
    font-family: var(--font-data);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    background: var(--btn-ghost-bg);
    border: var(--btn-ghost-border);
    color: var(--ink-900);
}

.appointment-card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--ink-900);
    letter-spacing: -0.01em;
}

.appointment-card-sub {
    font-size: 13.5px;
    color: var(--ink-600);
    line-height: 1.5;
}

.btn-contact-book {
    margin-top: 6px;
    padding: 11px 18px;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
}

.contact-direct-card {
    padding: 24px;
    border-radius: var(--radius-card);
    background: var(--paper-alt);
    border: 1px solid var(--hairline);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.direct-label {
    font-family: var(--font-data);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--ink-400);
    text-transform: uppercase;
}

.direct-email {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink-900);
    text-decoration: none;
    transition: color 0.2s ease;
}

.direct-email:hover {
    color: #e0603e;
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.input-field-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.input-field-group label {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-700);
}

.input-field-group input,
.input-field-group textarea {
    width: 100%;
    padding: 13px 16px;
    border-radius: var(--radius-tile);
    border: 1px solid var(--ink-200);
    background: #ffffff;
    font-family: var(--font-inter);
    font-size: 15px;
    color: var(--ink-900);
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.input-field-group input:focus,
.input-field-group textarea:focus {
    outline: none;
    border-color: var(--ink-900);
    box-shadow: 0 0 0 3px rgba(17, 17, 16, 0.08);
}

.btn-submit-inquiry {
    align-self: flex-start;
    margin-top: 8px;
}

.contact-status-banner {
    padding: 14px 18px;
    border-radius: var(--radius-tile);
    font-size: 14.5px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.contact-status-banner.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.32);
    color: #14532d;
}

.contact-status-banner.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.32);
    color: #991b1b;
}

.contact-status-banner a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}

.spinner-inline {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

/* ==========================================================================
   FOOTER SCENE SLAB
   ========================================================================== */

.footer-scene-slab {
    min-height: clamp(680px, 90vh, 880px);
    position: relative;
    overflow: hidden;
    background: var(--surface-grad-end);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-scene-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    aspect-ratio: 3840 / 1648;
    z-index: 1;
    pointer-events: none;
}

.footer-scene-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.footer-scene-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(180deg, var(--surface-grad-end) 0%, transparent 100%);
    pointer-events: none;
}

.footer-cta-block {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: clamp(64px, 8vw, 110px) var(--slab-pad-x) 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-headline {
    font-size: var(--text-display);
    font-weight: 600;
    line-height: var(--lh-display);
    letter-spacing: var(--track-display);
    color: var(--ink-900);
    max-width: 15ch;
    text-wrap: balance;
    margin-bottom: 18px;
}

.footer-status-pill {
    font-family: var(--font-data);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--ink-900);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 28px;
}

.footer-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.status-dot-red {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--anno-red);
    box-shadow: 0 0 6px var(--anno-red);
    animation: statusPulse 2s infinite ease-in-out;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.8); }
}

.footer-utility-bar {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px var(--slab-pad-x);
    background: linear-gradient(to top, rgba(14, 14, 13, 0.94) 0%, rgba(14, 14, 13, 0.6) 70%, transparent 100%);
    color: rgba(246, 245, 242, 0.75);
    font-size: 13px;
}

.footer-legal-copy {
    color: rgba(246, 245, 242, 0.75);
}

.btn-portal-login-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: all 0.2s ease;
}

.btn-portal-login-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* ==========================================================================
   INTERACTIVE MODAL BACKDROPS & CONTAINERS
   ========================================================================== */

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(14, 14, 13, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: opacity 0.25s ease;
}

.modal-backdrop.hidden {
    display: none !important;
}

.modal-card {
    background: #ffffff;
    border-radius: var(--radius-card);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--hairline);
    width: 100%;
    max-width: 520px;
    max-height: calc(100dvh - 40px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: auto;
    animation: modalAppear 0.25s var(--btn-ease);
}

.modal-large {
    max-width: 860px;
}

@keyframes modalAppear {
    from { opacity: 0; transform: scale(0.96) translateY(8px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--hairline);
    flex-shrink: 0;
    background: #ffffff;
    z-index: 2;
}

.modal-brand-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    color: var(--ink-900);
}

.btn-close-modal {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    border-radius: 50%;
    background: var(--btn-ghost-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--ink-700);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-close-modal:hover {
    background: #e2dfd5;
    color: var(--ink-900);
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    flex: 1 1 auto;
}

/* ==========================================================================
   QUOTE ESTIMATOR MODAL STYLING
   ========================================================================== */

.quote-calculator-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
}

.quote-step-block {
    margin-bottom: 22px;
}

.quote-step-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-900);
    margin-bottom: 12px;
}

.quote-step-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--ink-900);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quote-pill-btn {
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    background: var(--btn-ghost-bg);
    border: 1px solid var(--hairline);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-700);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.18s ease;
}

.quote-pill-btn:hover {
    border-color: var(--ink-400);
    color: var(--ink-900);
}

.quote-pill-btn.active {
    background: var(--ink-900);
    color: #ffffff;
    border-color: var(--ink-900);
}

.quote-pill-btn.active .price-tag {
    color: rgba(255, 255, 255, 0.7);
}

.price-tag {
    font-family: var(--font-data);
    font-size: 11.5px;
    color: var(--ink-600);
}

.quote-checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.quote-check-card {
    padding: 12px;
    border-radius: var(--radius-tile);
    border: 1px solid var(--hairline);
    background: var(--paper-alt);
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: all 0.18s ease;
}

.quote-check-card:hover {
    border-color: var(--ink-400);
}

.quote-check-card.active {
    border-color: var(--ink-900);
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.quote-check-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.quote-check-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-900);
}

.quote-check-price {
    font-family: var(--font-data);
    font-size: 11.5px;
    color: var(--anno-red);
    font-weight: 600;
}

/* Quote Summary Box */
.quote-summary-card {
    border-radius: var(--radius-card);
    background: var(--paper-alt);
    border: 1px solid var(--hairline);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.summary-header {
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid var(--hairline);
    padding-bottom: 16px;
}

.summary-tag {
    font-family: var(--font-data);
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-400);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.summary-amount {
    font-family: var(--font-data);
    font-size: 36px;
    font-weight: 900;
    color: var(--ink-900);
    margin-top: 6px;
}

.summary-items-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    color: var(--ink-700);
}

.summary-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-cost {
    font-family: var(--font-data);
    font-weight: 600;
    color: var(--ink-900);
}

.quote-summary-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.btn-lock-quote {
    width: 100%;
    padding: 14px;
    background: var(--ink-900);
    color: #ffffff;
    font-weight: 600;
    font-size: 14.5px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-pill);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-lock-quote:hover {
    background: #1c1c1a;
    transform: translateY(-2px);
}

.btn-quote-cal {
    width: 100%;
    padding: 12px;
    background: var(--paper-alt);
    border: 1px solid var(--hairline);
    color: var(--ink-800);
    font-weight: 600;
    font-size: 13px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-quote-cal:hover {
    background: #e8e5dc;
    color: var(--ink-900);
    transform: translateY(-1px);
}

/* ==========================================================================
   CLIENT PORTAL LOGIN MODAL
   ========================================================================== */

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    width: 100%;
    padding-right: 42px;
}

.btn-toggle-pw {
    position: absolute;
    right: 12px;
    color: var(--ink-400);
    cursor: pointer;
}

.input-hint {
    font-size: 12px;
    color: var(--ink-600);
    margin-top: 4px;
}

.login-error-msg {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-tile);
    background: var(--anno-red-bg);
    color: var(--anno-red);
    font-size: 13px;
    font-weight: 500;
}

.login-error-msg.hidden {
    display: none;
}

/* ==========================================================================
   WORK SHOWCASE BROWSER MODAL (SAFARI WINDOW CHROME)
   ========================================================================== */

.showcase-window {
    width: 92vw;
    height: 88vh;
    max-width: 1400px;
    background: #1e1e1e;
    border-radius: 14px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.browser-chrome {
    height: 48px;
    background: #2b2b2b;
    border-bottom: 1px solid #1a1a1a;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 16px;
    flex-shrink: 0;
    user-select: none;
}

.chrome-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chrome-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

.dot-close { background: #ff5f56; border: 1px solid #e0443e; }
.dot-min { background: #ffbd2e; border: 1px solid #dea123; }
.dot-max { background: #27c93f; border: 1px solid #1aab29; }

.chrome-nav-arrows {
    display: flex;
    align-items: center;
    gap: 4px;
}

.chrome-nav-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    color: #999999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
}

.chrome-nav-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.chrome-address-bar {
    flex: 1;
    max-width: 540px;
    margin: 0 auto;
    height: 30px;
    background: #1c1c1c;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
    font-size: 12.5px;
    color: #cccccc;
    font-family: var(--font-data);
}

.ssl-icon {
    font-size: 11px;
    color: #27c93f;
}

.demo-chip {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    color: #999;
}

.chrome-viewport-tools {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tool-btn {
    width: 32px;
    height: 28px;
    border-radius: 6px;
    color: #888888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.18s ease;
}

.tool-btn.active, .tool-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.btn-close-showcase {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #cccccc;
    padding: 5px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-close-showcase:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.browser-viewport {
    flex: 1;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.showcase-iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: width 0.3s var(--btn-ease);
}

.showcase-iframe.is-tablet {
    width: 768px !important;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
}

.showcase-iframe.is-mobile {
    width: 375px !important;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */

.toast-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 2000;
    background: var(--ink-900);
    color: #ffffff;
    padding: 14px 22px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-raised);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    animation: toastSlideUp 0.3s var(--btn-ease);
}

.toast-notification.hidden {
    display: none;
}

@keyframes toastSlideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   APPOINTMENT BOOKING MODAL (CAL.COM)
   ========================================================================== */

.modal-calendar-card {
    max-width: 980px;
    width: 95vw;
    height: 85vh;
    max-height: 740px;
    display: flex;
    flex-direction: column;
    background: #111110;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
    border-radius: var(--radius-card);
    overflow: hidden;
}

.modal-calendar-card .modal-header {
    background: #181817;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-calendar-card .modal-brand-title {
    color: #f5f5f4;
}

.modal-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-cal-tab-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #a8a29e;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.btn-cal-tab-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

.modal-calendar-card .btn-close-modal {
    background: rgba(255, 255, 255, 0.08);
    color: #f5f5f4;
}

.modal-calendar-card .btn-close-modal:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.modal-calendar-body {
    flex: 1;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #0e0e0d;
}

.cal-booking-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.cal-iframe-loader {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: #0e0e0d;
    color: #a8a29e;
    font-size: 14px;
    font-family: var(--font-data);
    z-index: 2;
    transition: opacity 0.2s ease;
}

.cal-loader-spinner {
    width: 28px;
    height: 28px;
    border: 2.5px solid rgba(255, 255, 255, 0.15);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
    .work-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .slot-col-3 {
        grid-column: span 3;
    }

    .slot-col-6 {
        grid-column: span 6;
    }

    .manifesto-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet & Mid-size screens: prevent headline and rocket annotation overlap */
@media (min-width: 769px) and (max-width: 1180px) {
    .hero-content {
        max-width: 530px;
    }

    .hero-headline {
        font-size: clamp(2.2rem, 3.8vw, 3.2rem);
        line-height: 1.15;
    }

    .hero-rocket-anno {
        right: clamp(160px, 16vw, 200px);
        top: clamp(180px, 26%, 220px);
    }
}

@media (max-width: 768px) {
    .nav-links-list {
        display: none;
    }

    .nav-mobile-toggle {
        display: flex;
    }

    .nav-wrapper {
        margin-bottom: 24px;
    }

    /* Hero Section on Mobile: Place Rocket Below Content */
    .hero-slab {
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding-top: clamp(36px, 7vw, 52px);
        padding-bottom: 24px;
        overflow: hidden;
    }

    .hero-content {
        max-width: 100%;
        order: 1;
        text-align: center;
    }

    .hero-headline {
        text-wrap: balance;
    }

    .hero-subhead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    /* Mobile Hero Rocket Joke Annotation - centered directly between CTAs and Rocket */
    .hero-rocket-anno {
        order: 2;
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        left: auto;
        margin: 20px auto 2px auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        transform: rotate(-1.5deg);
        z-index: 5;
        text-align: center;
        width: 100%;
    }

    .hero-rocket-anno .anno-text-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-rocket-anno .anno-hand-line {
        font-size: clamp(15px, 4.2vw, 18px);
        line-height: 1.2;
        text-shadow: 0 1px 3px rgba(255, 255, 255, 0.95);
    }

    .hero-rocket-anno .arrow-desktop {
        display: none;
    }

    .hero-rocket-anno .arrow-mobile {
        display: block;
        width: 22px;
        height: 22px;
        transform: none;
    }

    .hero-image-clip {
        order: 3;
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 400px;
        height: 280px;
        margin: 4px auto 0 auto;
        mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
        opacity: 0.95;
        pointer-events: none;
    }

    .hero-image-clip img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center bottom;
    }

    .hero-cast-light {
        width: 100%;
        opacity: 0.4;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Hide Tailor Project and Gourmet Project in Mobile View */
    .mobile-hide-project,
    .work-card[data-project="gourmetclub"],
    .work-card[data-project="maryamstailoring"] {
        display: none !important;
    }

    .slot-col-3, .slot-col-6 {
        grid-column: span 1;
    }

    /* Mobile Pedestal Box Alignment */
    .pedestal-box {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .pedestal-anno {
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .pedestal-anno .anno-hand {
        font-size: 16.5px;
    }

    /* Mobile Modal Alignment & Full Responsive Scrollability */
    .modal-backdrop {
        padding: 12px 10px;
        align-items: flex-start;
    }

    .modal-card {
        max-height: calc(100dvh - 24px);
        border-radius: 16px;
        margin: auto;
    }

    .modal-header {
        padding: 14px 16px;
    }

    .modal-brand-title {
        font-size: 13.5px;
    }

    .btn-close-modal {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 22px;
    }

    .modal-body {
        padding: 16px 14px 28px 14px;
    }

    .quote-calculator-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .quote-step-block {
        margin-bottom: 18px;
    }

    .quote-pills-row {
        gap: 6px;
    }

    .quote-pill-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .quote-checkbox-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .quote-check-card {
        padding: 10px 12px;
    }

    .quote-summary-card {
        padding: 18px 14px;
    }

    .summary-amount {
        font-size: 28px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    /* Mobile Footer Scene: Zoom in and focus on right half */
    .footer-scene-slab {
        min-height: 650px;
    }

    .footer-scene-bg {
        aspect-ratio: auto;
        height: 350px;
        bottom: 0;
        left: 0;
        right: 0;
        overflow: hidden;
    }

    .footer-scene-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 88% bottom;
        transform: scale(1.22);
        transform-origin: 88% bottom;
    }

    .footer-utility-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .showcase-window {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
    }

    .chrome-address-bar {
        display: none;
    }
}
