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

    :root {
      --void: #070707;
      --surface: #111111;
      --surface2: #1A1A1A;
      --surface3: #202020;
      --gold: #C9A84C;
      --gold-light: #E8C96A;
      --gold-dim: #7A6330;
      --white: #F0EDE8;
      --grey: #9A9A9A;
      --muted: #676767;
      --cut-red: #C42B2B;
      --mono: 'JetBrains Mono', monospace;
      --display: 'Bebas Neue', sans-serif;
      --body: 'Inter', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--void);
      color: var(--white);
      font-family: var(--body);
      overflow-x: hidden;
    }

    body.cursor-ready { cursor: none; }
    a, button { cursor: pointer; }
    body.cursor-ready a, body.cursor-ready button { cursor: none; }

    #cursor, #cursor-ring {
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      transform: translate(-50%, -50%);
      z-index: 9999;
      display: none;
    }

    #cursor {
      width: 10px;
      height: 10px;
      background: var(--gold);
      border-radius: 50%;
      transition: width .2s, height .2s, background .2s;
    }

    #cursor-ring {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(201,168,76,.5);
      border-radius: 50%;
      z-index: 9998;
      transition: width .2s, height .2s;
    }

    @media (hover:hover) and (pointer:fine) {
      body.cursor-ready #cursor,
      body.cursor-ready #cursor-ring { display: block; }
    }

    #film-leader {
      position: fixed;
      inset: 0;
      background: var(--void);
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

    #leader-count {
      font-family: var(--display);
      font-size: clamp(150px, 24vw, 320px);
      color: var(--white);
      line-height: 1;
      position: relative;
    }

    #leader-circle {
      width: 90vmin;
      height: 90vmin;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,.12);
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      animation: leaderSpin .8s linear infinite;
    }

    #leader-circle::before,
    #leader-circle::after {
      content: "";
      position: absolute;
      background: rgba(255,255,255,.08);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    #leader-circle::before { width: 6px; height: 100%; }
    #leader-circle::after { width: 100%; height: 6px; }

    #leader-line {
      position: fixed;
      top: 0;
      left: 50%;
      width: 1px;
      height: 100vh;
      background: var(--cut-red);
      opacity: .7;
      transform: translateX(-50%);
    }

    #leader-info,
    #leader-brand {
      position: fixed;
      bottom: 48px;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .12em;
      line-height: 1.8;
    }

    #leader-info { left: 48px; color: rgba(255,255,255,.32); }
    #leader-brand { right: 48px; color: rgba(201,168,76,.55); text-align: right; }

    #leader-flash {
      position: fixed;
      inset: 0;
      background: var(--white);
      opacity: 0;
      pointer-events: none;
      z-index: 10001;
    }

    @keyframes leaderSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

    #noise {
      position: fixed;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      opacity: .025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 128px 128px;
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 28px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(to bottom, rgba(7,7,7,.96), transparent);
      transition: padding .35s, background .35s, border-color .35s;
    }

    nav.scrolled {
      padding: 18px 48px;
      background: rgba(7,7,7,.97);
      border-bottom: 1px solid rgba(201,168,76,.12);
    }

    .nav-logo {
      font-family: var(--display);
      font-size: 22px;
      letter-spacing: .18em;
      color: var(--white);
      text-decoration: none;
    }

    .nav-logo span { color: var(--gold); }

    .nav-links { display: flex; gap: 34px; list-style: none; }

    .nav-links a,
    .nav-cta,
    .btn-primary,
    .btn-ghost {
      font-family: var(--mono);
      text-transform: uppercase;
      text-decoration: none;
      letter-spacing: .15em;
    }

    .nav-links a {
      font-size: 11px;
      color: var(--grey);
      transition: color .2s;
    }

    .nav-links a:hover { color: var(--gold); }

    .nav-cta {
      font-size: 11px;
      padding: 10px 24px;
      border: 1px solid var(--gold);
      color: var(--gold);
      background: transparent;
      transition: background .2s, color .2s;
    }

    .nav-cta:hover { background: var(--gold); color: var(--void); }

    #hero {
      position: relative;
      min-height: 760px;
      height: 100vh;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }

    #heroCanvas,
    #hero-canvas,
    .hero-grid,
    .hero-vignette,
    .hero-scan {
      position: absolute;
      inset: 0;
    }

    #hero-canvas { background: var(--void); }

    .hero-grid {
      background-image:
        linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    }

    .hero-vignette {
      background: radial-gradient(ellipse 100% 100% at 50% 0%, transparent 26%, rgba(7,7,7,.72) 70%, var(--void) 100%);
    }

    .hero-scan {
      background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,.08) 2px, rgba(0,0,0,.08) 4px);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 48px 92px;
      max-width: 1100px;
    }

    .hero-eyebrow,
    .section-label,
    .contact-pre {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .25em;
      color: var(--gold);
      text-transform: uppercase;
    }

    .hero-eyebrow {
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .hero-eyebrow::before {
      content: "";
      width: 40px;
      height: 1px;
      background: var(--gold);
    }

    h1, h2, .contact-h {
      font-family: var(--display);
      color: var(--white);
      letter-spacing: .03em;
    }

    h1 {
      font-size: clamp(68px, 10vw, 160px);
      line-height: .92;
      margin-bottom: 10px;
    }

    h1 .gold,
    h2 .gold,
    .contact-h .gold { color: var(--gold); }

    .outline {
      -webkit-text-stroke: 1px rgba(240,237,232,.55);
      color: transparent;
    }

    .hero-sub {
      font-size: 18px;
      font-weight: 300;
      color: var(--grey);
      max-width: 620px;
      line-height: 1.7;
      margin: 30px 0 44px;
    }

    .hero-actions,
    .contact-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

    .btn-primary,
    .btn-ghost {
      font-size: 12px;
      padding: 16px 34px;
      display: inline-block;
      transition: background .2s, color .2s, border-color .2s, transform .2s;
      border-radius: 0;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--void);
      font-weight: 700;
    }

    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

    .btn-ghost {
      border: 1px solid rgba(201,168,76,.42);
      color: var(--gold);
    }

    .btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

    .hero-counter {
      position: absolute;
      right: 48px;
      bottom: 90px;
      z-index: 2;
      text-align: right;
    }

    .hero-counter-num {
      font-family: var(--display);
      font-size: 64px;
      color: rgba(201,168,76,.16);
      line-height: 1;
    }

    .hero-counter-label {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: .2em;
      color: rgba(201,168,76,.42);
      text-transform: uppercase;
    }

    .hero-scroll-hint {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .hero-scroll-hint span {
      font-family: var(--mono);
      font-size: 9px;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: rgba(255,255,255,.25);
    }

    .scroll-line {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, rgba(201,168,76,.6), transparent);
      animation: scrollPulse 1.8s ease-in-out infinite;
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: .3; transform: scaleY(.8); }
      50% { opacity: 1; transform: scaleY(1); }
    }

    .ticker-wrap {
      border-top: 1px solid rgba(201,168,76,.15);
      border-bottom: 1px solid rgba(201,168,76,.15);
      background: rgba(201,168,76,.04);
      overflow: hidden;
      padding: 14px 0;
      position: relative;
      z-index: 2;
    }

    .ticker {
      display: flex;
      animation: tickerScroll 32s linear infinite;
      white-space: nowrap;
    }

    .ticker-item {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .2em;
      color: var(--gold-dim);
      text-transform: uppercase;
      padding: 0 48px;
      flex-shrink: 0;
    }

    .ticker-item .dot {
      margin: 0 16px;
      color: var(--gold);
      opacity: .45;
    }

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

    section { position: relative; z-index: 2; }
    .section-pad { padding: 120px 48px; }
    .section-inner { max-width: 1280px; margin: 0 auto; }

    .section-label {
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .section-label::after {
      content: "";
      flex: 1;
      max-width: 60px;
      height: 1px;
      background: rgba(201,168,76,.2);
    }

    h2 {
      font-size: clamp(48px, 6vw, 96px);
      line-height: .95;
    }

    p.lead {
      font-size: 17px;
      font-weight: 300;
      color: var(--grey);
      line-height: 1.75;
      max-width: 620px;
    }

    #reel, #indika, #process { background: var(--surface); }
    #services, #stats, #contact, #packages { background: var(--void); }

    .reel-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 360px 360px;
      gap: 2px;
      margin-top: 64px;
    }

    .reel-item {
      position: relative;
      overflow: hidden;
      background: var(--surface2);
    }

    .reel-item.featured { grid-row: 1 / 3; }

    .reel-thumb {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform .6s cubic-bezier(.25,.46,.45,.94), opacity .3s;
    }

    .reel-item:hover .reel-thumb { transform: scale(1.04); }

    .reel-embed {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .reel-embed iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    .reel-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(7,7,7,.9), rgba(7,7,7,.18) 52%, transparent);
      z-index: 2;
      transition: opacity .3s;
    }

    .reel-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 3;
      padding: 32px;
      transition: opacity .3s;
    }

    .reel-category {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: .2em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .reel-title {
      font-family: var(--display);
      font-size: clamp(24px, 3vw, 40px);
      letter-spacing: .05em;
      line-height: 1;
    }

    .reel-play {
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 4;
      transform: translate(-50%, -50%);
      width: 72px;
      height: 72px;
      border: 1px solid rgba(201,168,76,.7);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      background: rgba(7,7,7,.42);
      backdrop-filter: blur(4px);
      transition: opacity .3s, transform .3s;
    }

    .reel-play::before {
      content: "";
      border-left: 20px solid var(--gold);
      border-top: 11px solid transparent;
      border-bottom: 11px solid transparent;
      margin-left: 5px;
    }

    .reel-item:hover .reel-play { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
    .reel-item.playing .reel-embed { pointer-events: all; }
    .reel-item.playing .reel-overlay,
    .reel-item.playing .reel-play,
    .reel-item.playing .reel-info,
    .reel-item.playing .reel-thumb { opacity: 0; pointer-events: none; }

    .services-header,
    .content-header,
    .indika-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: end;
      margin-bottom: 80px;
    }

    .services-grid,
    .package-grid,
    .content-grid {
      display: grid;
      gap: 1px;
      background: rgba(201,168,76,.1);
      border: 1px solid rgba(201,168,76,.1);
    }

    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .content-grid { grid-template-columns: repeat(5, 1fr); }
    .package-grid { grid-template-columns: repeat(3, 1fr); margin-top: 64px; }

    .service-card,
    .content-card,
    .package-card {
      background: var(--void);
      padding: 46px 34px;
      position: relative;
      overflow: hidden;
      transition: background .3s, transform .3s;
    }

    .service-card:hover,
    .content-card:hover,
    .package-card:hover { background: rgba(201,168,76,.045); }

    .service-num,
    .content-num {
      font-family: var(--display);
      font-size: 72px;
      color: rgba(201,168,76,.065);
      line-height: 1;
      position: absolute;
      right: 24px;
      top: 22px;
    }

    .service-icon {
      width: 40px;
      height: 40px;
      margin-bottom: 30px;
    }

    .service-name,
    .content-name,
    .package-name,
    .step-title {
      font-family: var(--display);
      letter-spacing: .05em;
      color: var(--white);
    }

    .service-name { font-size: 28px; margin-bottom: 16px; }
    .content-name { font-size: 25px; margin-bottom: 16px; }
    .package-name { font-size: 34px; margin-bottom: 8px; }

    .service-desc,
    .content-desc,
    .package-desc,
    .step-desc {
      font-size: 14px;
      color: var(--grey);
      line-height: 1.7;
      font-weight: 300;
    }

    .service-tags,
    .package-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 24px;
    }

    .service-tag,
    .package-tag {
      font-family: var(--mono);
      font-size: 9px;
      letter-spacing: .15em;
      text-transform: uppercase;
      padding: 4px 10px;
      border: 1px solid rgba(201,168,76,.22);
      color: var(--gold-dim);
    }

    .content-note {
      margin-top: 34px;
      padding: 26px;
      border: 1px solid rgba(201,168,76,.18);
      background: rgba(201,168,76,.035);
      color: var(--grey);
      line-height: 1.7;
      font-size: 15px;
    }

    .package-card.featured {
      background: linear-gradient(180deg, rgba(201,168,76,.095), rgba(7,7,7,1));
      outline: 1px solid rgba(201,168,76,.38);
    }

    .package-price {
      font-family: var(--display);
      font-size: 56px;
      color: var(--gold);
      line-height: 1;
      margin: 24px 0 14px;
    }

    .package-price span {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--grey);
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .package-list {
      list-style: none;
      margin: 28px 0 32px;
      display: grid;
      gap: 14px;
    }

    .package-list li {
      color: var(--grey);
      font-size: 14px;
      line-height: 1.5;
      padding-left: 22px;
      position: relative;
    }

    .package-list li::before {
      content: "◆";
      color: var(--gold);
      position: absolute;
      left: 0;
      top: 0;
      font-size: 10px;
    }

    #stats {
      border-top: 1px solid rgba(201,168,76,.1);
      border-bottom: 1px solid rgba(201,168,76,.1);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .stat-item {
      padding: 60px 48px;
      border-right: 1px solid rgba(201,168,76,.1);
      position: relative;
    }

    .stat-item:last-child { border-right: 0; }

    .stat-num {
      font-family: var(--display);
      font-size: clamp(48px, 5vw, 80px);
      color: var(--white);
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat-num span { color: var(--gold); }

    .stat-label {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .15em;
      color: var(--grey);
      text-transform: uppercase;
      line-height: 1.5;
    }

    .stat-bar {
      position: absolute;
      bottom: 0;
      left: 48px;
      height: 2px;
      background: var(--gold);
      opacity: .35;
    }

    .indika-inner {
      align-items: center;
      margin-bottom: 0;
    }

    .indika-visual {
      position: relative;
      height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .indika-glow {
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,76,.15), transparent 70%);
      animation: indikaGlow 4s ease-in-out infinite;
    }

    @keyframes indikaGlow {
      0%, 100% { transform: scale(1); opacity: .7; }
      50% { transform: scale(1.15); opacity: 1; }
    }

    .indika-ring {
      position: absolute;
      border: 1px solid rgba(201,168,76,.15);
      border-radius: 50%;
      animation: indikaRing 8s linear infinite;
    }

    .indika-ring:nth-child(2) { width: 460px; height: 460px; }
    .indika-ring:nth-child(3) { width: 360px; height: 360px; animation-direction: reverse; animation-duration: 6s; border-color: rgba(201,168,76,.08); }
    .indika-ring:nth-child(4) { width: 260px; height: 260px; animation-duration: 4s; }
    @keyframes indikaRing { to { transform: rotate(360deg); } }

    .indika-center {
      position: relative;
      z-index: 2;
      width: 170px;
      height: 170px;
      background: var(--surface2);
      border: 1px solid rgba(201,168,76,.3);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

    .indika-center-label {
      font-family: var(--display);
      font-size: 34px;
      letter-spacing: .1em;
      color: var(--gold);
    }

    .indika-center-sub {
      font-family: var(--mono);
      font-size: 9px;
      letter-spacing: .2em;
      color: var(--grey);
      text-transform: uppercase;
      margin-top: 4px;
    }

    .indika-tag {
      position: absolute;
      font-family: var(--mono);
      font-size: 9px;
      letter-spacing: .15em;
      color: rgba(201,168,76,.55);
      text-transform: uppercase;
    }

    .indika-tag::before { content: "◆"; margin-right: 6px; font-size: 6px; }

    .indika-content h2 { margin-bottom: 28px; }
    .indika-content .lead { margin-bottom: 40px; }

    .indika-specs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: rgba(201,168,76,.1);
      margin-bottom: 40px;
    }

    .indika-spec { background: var(--surface); padding: 20px 24px; }

    .indika-spec-label {
      font-family: var(--mono);
      font-size: 9px;
      letter-spacing: .2em;
      color: var(--grey);
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .indika-spec-val {
      font-family: var(--display);
      font-size: 22px;
      letter-spacing: .05em;
      color: var(--gold);
    }

    .process-steps {
      margin-top: 80px;
      display: flex;
      flex-direction: column;
    }

    .process-step {
      display: grid;
      grid-template-columns: 80px 1fr 1fr;
      gap: 48px;
      padding: 48px 0;
      border-bottom: 1px solid rgba(201,168,76,.1);
      align-items: start;
      transition: background .3s, margin .3s, padding .3s;
    }

    .process-step:first-child { border-top: 1px solid rgba(201,168,76,.1); }

    .process-step:hover {
      background: rgba(201,168,76,.025);
      margin: 0 -48px;
      padding: 48px;
    }

    .step-num {
      font-family: var(--display);
      font-size: 56px;
      color: rgba(201,168,76,.2);
      line-height: 1;
    }

    .step-title { font-size: 32px; margin-bottom: 12px; }

    .step-tech {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .tech-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .1em;
      color: var(--grey);
    }

    .tech-dot {
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      opacity: .5;
      flex-shrink: 0;
    }

    #contact {
      overflow: hidden;
      min-height: 80vh;
      display: flex;
      align-items: center;
    }

    .contact-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 120px 48px;
      position: relative;
      z-index: 2;
      text-align: center;
      width: 100%;
    }

    .contact-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 400px;
      background: radial-gradient(ellipse, rgba(201,168,76,.06), transparent 70%);
      pointer-events: none;
    }

    .contact-pre { margin-bottom: 32px; }

    .contact-h {
      font-size: clamp(56px, 9vw, 140px);
      line-height: .9;
      margin-bottom: 40px;
    }

    .contact-sub {
      font-size: 16px;
      color: var(--grey);
      font-weight: 300;
      max-width: 540px;
      margin: 0 auto 56px;
      line-height: 1.7;
    }

    .contact-actions { justify-content: center; }

    .contact-info {
      display: flex;
      justify-content: center;
      gap: 64px;
      margin-top: 80px;
      padding-top: 64px;
      border-top: 1px solid rgba(201,168,76,.1);
    }

    .contact-detail { text-align: left; }

    .contact-detail-label {
      font-family: var(--mono);
      font-size: 9px;
      letter-spacing: .25em;
      color: var(--grey);
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .contact-detail-val {
      font-size: 15px;
      color: var(--white);
      font-weight: 300;
    }

    footer {
      background: var(--surface);
      padding: 40px 48px;
      border-top: 1px solid rgba(201,168,76,.1);
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 2;
      gap: 24px;
    }

    .footer-logo {
      font-family: var(--display);
      font-size: 18px;
      letter-spacing: .15em;
      color: var(--white);
    }

    .footer-logo span { color: var(--gold); }

    .footer-copy,
    .footer-links a {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: .15em;
      color: var(--grey);
    }

    .footer-links { display: flex; gap: 28px; flex-wrap: wrap; }

    .footer-links a {
      text-decoration: none;
      transition: color .2s;
    }

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

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .8s cubic-bezier(.25,.46,.45,.94), transform .8s cubic-bezier(.25,.46,.45,.94);
    }

    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }

    .hud-corner {
      position: absolute;
      width: 20px;
      height: 20px;
      pointer-events: none;
      z-index: 4;
    }

    .hud-corner::before,
    .hud-corner::after {
      content: "";
      position: absolute;
      background: var(--gold);
      opacity: .5;
    }

    .hud-corner.tl::before,
    .hud-corner.tr::before,
    .hud-corner.bl::before,
    .hud-corner.br::before { width: 100%; height: 1px; }

    .hud-corner.tl::after,
    .hud-corner.tr::after,
    .hud-corner.bl::after,
    .hud-corner.br::after { width: 1px; height: 100%; }

    .hud-corner.tl::before { top: 0; left: 0; }
    .hud-corner.tl::after { top: 0; left: 0; }
    .hud-corner.tr::before { top: 0; right: 0; }
    .hud-corner.tr::after { top: 0; right: 0; }
    .hud-corner.bl::before { bottom: 0; left: 0; }
    .hud-corner.bl::after { bottom: 0; left: 0; }
    .hud-corner.br::before { bottom: 0; right: 0; }
    .hud-corner.br::after { bottom: 0; right: 0; }

    ::-webkit-scrollbar { width: 3px; }
    ::-webkit-scrollbar-track { background: var(--void); }
    ::-webkit-scrollbar-thumb { background: var(--gold-dim); }


    /* Merch Section */
    #merch { background: var(--void); }

    .merch-intro {
      margin-top: 34px;
      padding: 32px;
      border: 1px solid rgba(201,168,76,.22);
      background: linear-gradient(135deg, rgba(201,168,76,.065), rgba(7,7,7,1));
      color: var(--grey);
      line-height: 1.75;
      font-size: 16px;
      max-width: 920px;
    }

    .merch-intro strong { color: var(--gold); font-weight: 600; }

    .merch-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(201,168,76,.1);
      border: 1px solid rgba(201,168,76,.1);
      margin-top: 64px;
    }

    .merch-card {
      background: var(--surface);
      padding: 46px 34px;
      position: relative;
      overflow: hidden;
      transition: background .3s;
    }

    .merch-card:hover { background: rgba(201,168,76,.045); }

    .merch-num {
      font-family: var(--display);
      font-size: 72px;
      color: rgba(201,168,76,.065);
      line-height: 1;
      position: absolute;
      right: 24px;
      top: 22px;
    }

    .merch-name {
      font-family: var(--display);
      font-size: 32px;
      letter-spacing: .05em;
      color: var(--white);
      margin-bottom: 16px;
    }

    .merch-desc {
      font-size: 14px;
      color: var(--grey);
      line-height: 1.7;
      font-weight: 300;
    }

    .merch-list {
      list-style: none;
      margin: 28px 0 0;
      display: grid;
      gap: 14px;
    }

    .merch-list li {
      color: var(--grey);
      font-size: 14px;
      line-height: 1.5;
      padding-left: 22px;
      position: relative;
    }

    .merch-list li::before {
      content: "◆";
      color: var(--gold);
      position: absolute;
      left: 0;
      top: 0;
      font-size: 10px;
    }

    .merch-positioning {
      margin-top: 42px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: rgba(201,168,76,.1);
      border: 1px solid rgba(201,168,76,.1);
    }

    .merch-positioning > div {
      background: var(--surface);
      padding: 34px;
    }

    .merch-positioning h3 {
      font-family: var(--display);
      font-size: 32px;
      letter-spacing: .05em;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .merch-positioning p {
      color: var(--grey);
      line-height: 1.75;
      font-size: 15px;
    }

    .merch-steps {
      margin-top: 42px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(201,168,76,.1);
      border: 1px solid rgba(201,168,76,.1);
    }

    .merch-step {
      background: var(--void);
      padding: 28px;
    }

    .merch-step span {
      font-family: var(--display);
      font-size: 42px;
      color: rgba(201,168,76,.35);
      display: block;
      margin-bottom: 12px;
    }

    .merch-step h3 {
      font-family: var(--display);
      font-size: 26px;
      letter-spacing: .05em;
      color: var(--white);
      margin-bottom: 10px;
    }

    .merch-step p {
      color: var(--grey);
      line-height: 1.6;
      font-size: 14px;
    }

    .merch-cta-box {
      margin-top: 42px;
      padding: 36px;
      border: 1px solid rgba(201,168,76,.24);
      background: rgba(201,168,76,.035);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .merch-cta-box p {
      color: var(--grey);
      line-height: 1.7;
      max-width: 700px;
    }


    /* Storefront Builder */
    .storefront-builder {
      margin-top: 42px;
      border: 1px solid rgba(201,168,76,.24);
      background: linear-gradient(135deg, rgba(201,168,76,.07), rgba(7,7,7,1));
      padding: 38px;
    }

    .storefront-builder h3 {
      font-family: var(--display);
      font-size: clamp(34px, 4vw, 58px);
      letter-spacing: .05em;
      color: var(--white);
      line-height: .95;
      margin-bottom: 16px;
    }

    .storefront-builder h3 span { color: var(--gold); }

    .storefront-builder p {
      color: var(--grey);
      line-height: 1.75;
      max-width: 780px;
      font-size: 15px;
      margin-bottom: 30px;
    }

    .storefront-form {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .storefront-field {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .storefront-field label {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .storefront-field input,
    .storefront-field select,
    .storefront-field textarea {
      width: 100%;
      background: rgba(255,255,255,.035);
      border: 1px solid rgba(201,168,76,.2);
      color: var(--white);
      padding: 15px 14px;
      font-family: var(--body);
      font-size: 14px;
      outline: none;
    }

    .storefront-field textarea {
      min-height: 110px;
      resize: vertical;
    }

    .storefront-field input:focus,
    .storefront-field select:focus,
    .storefront-field textarea:focus {
      border-color: var(--gold);
    }

    .storefront-field.full { grid-column: 1 / -1; }

    .storefront-actions {
      grid-column: 1 / -1;
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 8px;
    }

    .storefront-output {
      margin-top: 28px;
      display: none;
      border: 1px solid rgba(201,168,76,.22);
      background: rgba(7,7,7,.75);
      padding: 28px;
    }

    .storefront-output.active { display: block; }

    .storefront-output-title {
      font-family: var(--display);
      font-size: 34px;
      letter-spacing: .05em;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .storefront-link-preview {
      font-family: var(--mono);
      font-size: 13px;
      color: var(--white);
      padding: 16px;
      border: 1px solid rgba(201,168,76,.16);
      background: rgba(201,168,76,.04);
      overflow-wrap: anywhere;
      margin: 16px 0;
    }

    .storefront-summary {
      color: var(--grey);
      line-height: 1.8;
      font-size: 14px;
    }

    .storefront-summary strong { color: var(--white); }

    .storefront-note {
      margin-top: 18px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .storefront-builder { padding: 26px; }
      .storefront-form { grid-template-columns: 1fr; }
    }


    /* Indika Album Spotlight */
    .indika-album-cover {
      width: min(440px, 100%);
      aspect-ratio: 4 / 5;
      border: 1px solid rgba(201,168,76,.28);
      background: var(--surface2);
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(0,0,0,.45);
      position: relative;
    }

    .indika-album-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: contrast(1.05) saturate(1.02);
    }

    .indika-album-cover::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(7,7,7,.35), transparent 45%);
      pointer-events: none;
    }

    .indika-track-list {
      margin: 30px 0;
      display: grid;
      gap: 1px;
      background: rgba(201,168,76,.1);
      border: 1px solid rgba(201,168,76,.1);
    }

    .indika-track {
      display: grid;
      grid-template-columns: 44px 1fr auto;
      gap: 18px;
      align-items: center;
      background: var(--surface);
      padding: 16px 18px;
    }

    .indika-track-num {
      font-family: var(--mono);
      color: var(--gold);
      font-size: 11px;
      letter-spacing: .16em;
    }

    .indika-track-title {
      font-family: var(--display);
      color: var(--white);
      font-size: 24px;
      letter-spacing: .05em;
      line-height: 1;
    }

    .indika-track-tag {
      font-family: var(--mono);
      color: var(--grey);
      font-size: 9px;
      letter-spacing: .15em;
      text-transform: uppercase;
    }

    .stream-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 20px;
    }

    .stream-links a {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: .15em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--gold);
      border: 1px solid rgba(201,168,76,.32);
      padding: 12px 16px;
      transition: background .2s, color .2s, border-color .2s;
    }

    .stream-links a:hover {
      background: var(--gold);
      color: var(--void);
      border-color: var(--gold);
    }

    .indika-copy-block {
      color: var(--grey);
      line-height: 1.75;
      font-size: 15px;
      margin-top: 24px;
      max-width: 680px;
    }

    @media (max-width: 768px) {
      .indika-album-cover { margin: 0 auto; }
      .indika-track { grid-template-columns: 38px 1fr; }
      .indika-track-tag { grid-column: 2; }
    }

    @media (max-width: 1024px) {
      .merch-grid { grid-template-columns: repeat(2, 1fr); }
      .merch-card:last-child { grid-column: span 2; }
      .merch-steps { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .merch-grid, .merch-positioning, .merch-steps { grid-template-columns: 1fr; }
      .merch-card:last-child { grid-column: auto; }
      .merch-cta-box { flex-direction: column; align-items: flex-start; }
    }


    /* Storefront Builder */
    .storefront-builder {
      margin-top: 42px;
      border: 1px solid rgba(201,168,76,.24);
      background: linear-gradient(135deg, rgba(201,168,76,.07), rgba(7,7,7,1));
      padding: 38px;
    }

    .storefront-builder h3 {
      font-family: var(--display);
      font-size: clamp(34px, 4vw, 58px);
      letter-spacing: .05em;
      color: var(--white);
      line-height: .95;
      margin-bottom: 16px;
    }

    .storefront-builder h3 span { color: var(--gold); }

    .storefront-builder p {
      color: var(--grey);
      line-height: 1.75;
      max-width: 780px;
      font-size: 15px;
      margin-bottom: 30px;
    }

    .storefront-form {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .storefront-field {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .storefront-field label {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .storefront-field input,
    .storefront-field select,
    .storefront-field textarea {
      width: 100%;
      background: rgba(255,255,255,.035);
      border: 1px solid rgba(201,168,76,.2);
      color: var(--white);
      padding: 15px 14px;
      font-family: var(--body);
      font-size: 14px;
      outline: none;
    }

    .storefront-field textarea {
      min-height: 110px;
      resize: vertical;
    }

    .storefront-field input:focus,
    .storefront-field select:focus,
    .storefront-field textarea:focus {
      border-color: var(--gold);
    }

    .storefront-field.full { grid-column: 1 / -1; }

    .storefront-actions {
      grid-column: 1 / -1;
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 8px;
    }

    .storefront-output {
      margin-top: 28px;
      display: none;
      border: 1px solid rgba(201,168,76,.22);
      background: rgba(7,7,7,.75);
      padding: 28px;
    }

    .storefront-output.active { display: block; }

    .storefront-output-title {
      font-family: var(--display);
      font-size: 34px;
      letter-spacing: .05em;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .storefront-link-preview {
      font-family: var(--mono);
      font-size: 13px;
      color: var(--white);
      padding: 16px;
      border: 1px solid rgba(201,168,76,.16);
      background: rgba(201,168,76,.04);
      overflow-wrap: anywhere;
      margin: 16px 0;
    }

    .storefront-summary {
      color: var(--grey);
      line-height: 1.8;
      font-size: 14px;
    }

    .storefront-summary strong { color: var(--white); }

    .storefront-note {
      margin-top: 18px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .storefront-builder { padding: 26px; }
      .storefront-form { grid-template-columns: 1fr; }
    }


    /* Indika Album Spotlight */
    .indika-album-cover {
      width: min(440px, 100%);
      aspect-ratio: 4 / 5;
      border: 1px solid rgba(201,168,76,.28);
      background: var(--surface2);
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(0,0,0,.45);
      position: relative;
    }

    .indika-album-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: contrast(1.05) saturate(1.02);
    }

    .indika-album-cover::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(7,7,7,.35), transparent 45%);
      pointer-events: none;
    }

    .indika-track-list {
      margin: 30px 0;
      display: grid;
      gap: 1px;
      background: rgba(201,168,76,.1);
      border: 1px solid rgba(201,168,76,.1);
    }

    .indika-track {
      display: grid;
      grid-template-columns: 44px 1fr auto;
      gap: 18px;
      align-items: center;
      background: var(--surface);
      padding: 16px 18px;
    }

    .indika-track-num {
      font-family: var(--mono);
      color: var(--gold);
      font-size: 11px;
      letter-spacing: .16em;
    }

    .indika-track-title {
      font-family: var(--display);
      color: var(--white);
      font-size: 24px;
      letter-spacing: .05em;
      line-height: 1;
    }

    .indika-track-tag {
      font-family: var(--mono);
      color: var(--grey);
      font-size: 9px;
      letter-spacing: .15em;
      text-transform: uppercase;
    }

    .stream-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 20px;
    }

    .stream-links a {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: .15em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--gold);
      border: 1px solid rgba(201,168,76,.32);
      padding: 12px 16px;
      transition: background .2s, color .2s, border-color .2s;
    }

    .stream-links a:hover {
      background: var(--gold);
      color: var(--void);
      border-color: var(--gold);
    }

    .indika-copy-block {
      color: var(--grey);
      line-height: 1.75;
      font-size: 15px;
      margin-top: 24px;
      max-width: 680px;
    }

    @media (max-width: 768px) {
      .indika-album-cover { margin: 0 auto; }
      .indika-track { grid-template-columns: 38px 1fr; }
      .indika-track-tag { grid-column: 2; }
    }

    @media (max-width: 1024px) {
      .services-grid, .content-grid, .package-grid { grid-template-columns: repeat(2, 1fr); }
      .content-grid .content-card:last-child { grid-column: span 2; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2) { border-right: 0; }
      .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(201,168,76,.1); }
    }

    @media (max-width: 768px) {
      nav { padding: 20px 24px; }
      nav.scrolled { padding: 16px 24px; }
      .nav-links, .nav-cta { display: none; }
      #hero { min-height: 720px; }
      .hero-content { padding: 0 24px 90px; }
      .hero-counter { display: none; }
      .section-pad { padding: 80px 24px; }
      .services-header, .content-header, .indika-inner { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
      .services-grid, .content-grid, .package-grid { grid-template-columns: 1fr; }
      .content-grid .content-card:last-child { grid-column: auto; }
      .reel-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 300px); }
      .reel-item.featured { grid-row: auto; }
      .stats-grid { grid-template-columns: 1fr; }
      .stat-item { border-right: 0; border-bottom: 1px solid rgba(201,168,76,.1); padding: 40px 24px; }
      .stat-item:last-child { border-bottom: 0; }
      .indika-visual { height: 320px; }
      .indika-ring:nth-child(2) { width: 300px; height: 300px; }
      .indika-ring:nth-child(3) { width: 230px; height: 230px; }
      .indika-ring:nth-child(4) { width: 170px; height: 170px; }
      .indika-tag { display: none; }
      .indika-specs { grid-template-columns: 1fr; }
      .process-step { grid-template-columns: 48px 1fr; gap: 24px; }
      .process-step > .step-tech { display: none; }
      .process-step:hover { margin: 0; padding: 48px 0; background: transparent; }
      .contact-inner { padding: 90px 24px; }
      .contact-info { flex-direction: column; gap: 30px; }
      .contact-detail { text-align: center; }
      footer { flex-direction: column; text-align: center; }
      #leader-info, #leader-brand { display: none; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
      }
      #film-leader { display: none; }
      body { overflow: auto !important; }
      .reveal { opacity: 1; transform: none; }
    }
  


/* -------- Multipage Agency Architecture Additions -------- */
body.no-film-leader #film-leader { display: none !important; }

.page-hero {
  position: relative;
  z-index: 2;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 48px 90px;
  background:
    radial-gradient(circle at 75% 15%, rgba(201,168,76,.14), transparent 32%),
    radial-gradient(circle at 15% 80%, rgba(196,43,43,.08), transparent 28%),
    var(--void);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}

.page-hero .lead {
  margin-top: 28px;
}

.home-overview {
  background: var(--void);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.1);
  margin-top: 64px;
}

.overview-card {
  background: var(--surface);
  padding: 42px 34px;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .3s, transform .3s;
}

.overview-card:hover {
  background: rgba(201,168,76,.045);
  transform: translateY(-2px);
}

.overview-card h3 {
  font-family: var(--display);
  color: var(--white);
  font-size: 32px;
  letter-spacing: .05em;
  line-height: 1;
  margin-bottom: 16px;
}

.overview-card p {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

.mini-link {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,.45);
  width: max-content;
}

.web-brief-output,
.storefront-output {
  white-space: normal;
}

.work-categories {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(201,168,76,.1);
  background: rgba(201,168,76,.1);
}

.work-category {
  background: var(--void);
  padding: 30px;
}

.work-category h3 {
  font-family: var(--display);
  color: var(--gold);
  font-size: 28px;
  letter-spacing: .05em;
  margin-bottom: 10px;
}

.work-category p {
  color: var(--grey);
  line-height: 1.7;
  font-size: 14px;
}

.site-note {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(201,168,76,.18);
  background: rgba(201,168,76,.035);
  color: var(--grey);
  line-height: 1.7;
  font-size: 15px;
}

.web-design-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.1);
  margin-top: 64px;
}

.web-card {
  background: var(--void);
  padding: 46px 34px;
  position: relative;
  overflow: hidden;
}

.web-card:hover {
  background: rgba(201,168,76,.045);
}

.web-num {
  font-family: var(--display);
  font-size: 72px;
  color: rgba(201,168,76,.065);
  line-height: 1;
  position: absolute;
  right: 24px;
  top: 22px;
}

.web-name {
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: .05em;
  color: var(--white);
  margin-bottom: 16px;
}

.web-desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
  font-weight: 300;
}

.web-list {
  list-style: none;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.web-list li {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}

.web-list li::before {
  content: "◆";
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 10px;
}

.web-builder {
  margin-top: 42px;
  border: 1px solid rgba(201,168,76,.24);
  background: linear-gradient(135deg, rgba(201,168,76,.07), rgba(7,7,7,1));
  padding: 38px;
}

.web-builder h3 {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: .05em;
  color: var(--white);
  line-height: .95;
  margin-bottom: 16px;
}

.web-builder h3 span { color: var(--gold); }

.web-builder p {
  color: var(--grey);
  line-height: 1.75;
  max-width: 780px;
  font-size: 15px;
  margin-bottom: 30px;
}

.web-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.web-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.web-field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.web-field input,
.web-field select,
.web-field textarea {
  width: 100%;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(201,168,76,.2);
  color: var(--white);
  padding: 15px 14px;
  font-family: var(--body);
  font-size: 14px;
  outline: none;
}

.web-field textarea {
  min-height: 110px;
  resize: vertical;
}

.web-field.full { grid-column: 1 / -1; }

.web-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.web-output {
  margin-top: 28px;
  display: none;
  border: 1px solid rgba(201,168,76,.22);
  background: rgba(7,7,7,.75);
  padding: 28px;
}

.web-output.active { display: block; }

.web-output-title {
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: .05em;
  color: var(--gold);
  margin-bottom: 12px;
}

.web-summary {
  color: var(--grey);
  line-height: 1.8;
  font-size: 14px;
}

.web-summary strong { color: var(--white); }

.footer-links a[href="#"] {
  pointer-events: none;
  opacity: .5;
}

@media (max-width: 1024px) {
  .overview-grid,
  .web-design-grid,
  .work-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero { padding: 130px 24px 72px; }
  .overview-grid,
  .web-design-grid,
  .work-categories,
  .web-form { grid-template-columns: 1fr; }
  .web-builder { padding: 26px; }
}



/* -------- Living Studio Hero -------- */
.living-hero {
  position: relative;
  min-height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #050505;
  isolation: isolate;
}

.living-bg {
  position: absolute;
  inset: -3%;
  background-image: url("../img/razincain-living-studio-hero.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: translate3d(0,0,0) scale(1.03);
  will-change: transform;
  transition: transform .15s linear;
  z-index: 0;
}

.living-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,5,5,.18) 0%, rgba(5,5,5,.05) 34%, rgba(5,5,5,.08) 60%, rgba(5,5,5,.34) 100%),
    radial-gradient(ellipse 80% 90% at 28% 48%, rgba(5,5,5,.04), rgba(5,5,5,.48) 74%, rgba(5,5,5,.86) 100%),
    linear-gradient(180deg, rgba(5,5,5,.16), rgba(5,5,5,.18) 58%, rgba(5,5,5,.68));
  pointer-events: none;
}

.living-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.living-particles span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: rgba(232,201,106,.65);
  box-shadow: 0 0 12px rgba(232,201,106,.45);
  animation: dustFloat var(--d) linear infinite;
  opacity: .55;
}

@keyframes dustFloat {
  0% { transform: translate3d(0, 0, 0); opacity: 0; }
  12% { opacity: .58; }
  50% { transform: translate3d(18px, -44px, 0); opacity: .42; }
  100% { transform: translate3d(-24px, -88px, 0); opacity: 0; }
}

.living-glow {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(20px);
  opacity: .45;
  mix-blend-mode: screen;
}

.glow-one {
  width: 260px;
  height: 260px;
  right: 24%;
  top: 10%;
  background: radial-gradient(circle, rgba(232,201,106,.22), transparent 70%);
  animation: studioPulse 9s ease-in-out infinite;
}

.glow-two {
  width: 180px;
  height: 180px;
  right: 8%;
  top: 34%;
  background: radial-gradient(circle, rgba(201,168,76,.18), transparent 70%);
  animation: studioPulse 13s ease-in-out infinite reverse;
}

@keyframes studioPulse {
  0%, 100% { opacity: .28; transform: scale(.94); }
  50% { opacity: .58; transform: scale(1.08); }
}

.living-copy {
  z-index: 5;
  padding-bottom: clamp(118px, 13vh, 160px);
  max-width: 790px;
}

.living-copy h1 {
  font-size: clamp(58px, 8vw, 132px);
  text-shadow: 0 6px 22px rgba(0,0,0,.4);
}

.living-copy .hero-sub {
  max-width: 540px;
  color: rgba(240,237,232,.82);
}

.living-service-bar {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 28px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(201,168,76,.23);
  border-bottom: 1px solid rgba(201,168,76,.14);
  background: linear-gradient(90deg, rgba(7,7,7,.3), rgba(7,7,7,.68));
  backdrop-filter: blur(5px);
}

.living-service-bar a {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .13em;
  color: rgba(240,237,232,.72);
  font-size: 10px;
  padding: 18px 18px;
  border-right: 1px solid rgba(201,168,76,.18);
  text-decoration: none;
  transition: color .2s, background .2s;
}

.living-service-bar a:last-child { border-right: 0; }

.living-service-bar a:hover {
  color: var(--gold);
  background: rgba(201,168,76,.06);
}

.living-hotspot {
  position: absolute;
  z-index: 6;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
}

.hotspot-monitor { left: 82%; top: 22%; }
.hotspot-chair { left: 55%; top: 72%; }
.hotspot-screens { left: 77%; top: 47%; }

.hotspot-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(232,201,106,.75);
  background: rgba(201,168,76,.12);
  box-shadow: 0 0 20px rgba(232,201,106,.45);
  animation: hotspotPulse 2.4s ease-in-out infinite;
}

.hotspot-pulse::after {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(232,201,106,.28);
  border-radius: 50%;
  animation: hotspotRing 2.4s ease-in-out infinite;
}

@keyframes hotspotPulse {
  0%,100% { transform: scale(.8); opacity: .45; }
  50% { transform: scale(1); opacity: .92; }
}

@keyframes hotspotRing {
  0% { transform: scale(.6); opacity: .8; }
  100% { transform: scale(1.9); opacity: 0; }
}

.hotspot-card {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 16px);
  min-width: 210px;
  padding: 14px 16px;
  background: rgba(7,7,7,.86);
  border: 1px solid rgba(201,168,76,.35);
  color: var(--grey);
  font-size: 12px;
  line-height: 1.55;
  opacity: 0;
  transform: translate(-50%, 10px);
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  backdrop-filter: blur(8px);
}

.hotspot-card strong {
  display: block;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.living-hotspot:hover .hotspot-card,
.living-hotspot:focus-within .hotspot-card {
  opacity: 1;
  transform: translate(-50%, 0);
}

.studio-status {
  position: absolute;
  right: 48px;
  top: 110px;
  z-index: 5;
  width: min(340px, 35vw);
  padding: 18px 20px;
  border: 1px solid rgba(201,168,76,.25);
  background: rgba(7,7,7,.56);
  backdrop-filter: blur(7px);
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}

.studio-status-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.studio-status-title {
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: .05em;
  color: var(--white);
  line-height: 1;
  transition: opacity .2s;
}

.studio-status-meta {
  margin-top: 8px;
  font-size: 12px;
  color: var(--grey);
  line-height: 1.5;
  transition: opacity .2s;
}

.studio-audio-toggle {
  position: absolute;
  right: 48px;
  bottom: 98px;
  z-index: 6;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.32);
  background: rgba(7,7,7,.55);
  padding: 10px 14px;
  backdrop-filter: blur(7px);
}

.studio-audio-toggle:hover { background: rgba(201,168,76,.08); }

@media (max-width: 1024px) {
  .studio-status { display: none; }
}

@media (max-width: 768px) {
  .living-hero { min-height: 92svh; height: 92svh; }
  .living-bg {
    inset: 0;
    background-size: cover;
    background-position: 58% center;
    transform: none !important;
  }
  .living-overlay {
    background:
      linear-gradient(180deg, rgba(5,5,5,.14), rgba(5,5,5,.38) 42%, rgba(5,5,5,.88) 100%),
      linear-gradient(90deg, rgba(5,5,5,.18), rgba(5,5,5,.35));
  }
  .living-copy {
    padding: 0 24px 132px;
    max-width: 100%;
  }
  .living-copy h1 { font-size: clamp(54px, 15vw, 76px); }
  .living-copy .hero-sub { font-size: 15px; max-width: 92vw; }
  .living-service-bar {
    left: 24px;
    right: 24px;
    bottom: 18px;
    grid-template-columns: 1fr 1fr;
  }
  .living-service-bar a { font-size: 9px; padding: 12px; }
  .living-service-bar a:last-child {
    grid-column: 1 / -1;
    text-align: center;
    border-top: 1px solid rgba(201,168,76,.14);
  }
  .living-hotspot, .studio-audio-toggle { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .living-particles span,
  .living-glow,
  .hotspot-pulse,
  .hotspot-pulse::after {
    animation: none !important;
  }
}



/* -------- Visible Animated Atmosphere Upgrade -------- */
.atmosphere-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: .72;
}

.moving-light-beam {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  transform-origin: top center;
  mix-blend-mode: screen;
  filter: blur(1px);
}

.beam-one {
  left: 42%;
  top: -4%;
  width: 220px;
  height: 62vh;
  background: linear-gradient(
    180deg,
    rgba(232,201,106,.25) 0%,
    rgba(232,201,106,.13) 28%,
    rgba(232,201,106,.035) 76%,
    transparent 100%
  );
  clip-path: polygon(43% 0, 58% 0, 100% 100%, 0 100%);
  animation: beamDriftOne 12s ease-in-out infinite;
  opacity: .58;
}

.beam-two {
  right: 8%;
  top: 2%;
  width: 170px;
  height: 44vh;
  background: linear-gradient(
    180deg,
    rgba(232,201,106,.18) 0%,
    rgba(232,201,106,.07) 55%,
    transparent 100%
  );
  clip-path: polygon(38% 0, 60% 0, 100% 100%, 0 100%);
  animation: beamDriftTwo 15s ease-in-out infinite;
  opacity: .38;
}

@keyframes beamDriftOne {
  0%, 100% { transform: translateX(-12px) rotate(-4deg) scaleY(.96); opacity: .42; }
  45% { transform: translateX(18px) rotate(3deg) scaleY(1.08); opacity: .7; }
  70% { transform: translateX(4px) rotate(1deg) scaleY(1.02); opacity: .55; }
}

@keyframes beamDriftTwo {
  0%, 100% { transform: translateX(10px) rotate(3deg); opacity: .24; }
  50% { transform: translateX(-16px) rotate(-3deg); opacity: .48; }
}

.studio-haze {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  width: 52vw;
  height: 52vh;
  border-radius: 50%;
  filter: blur(48px);
  mix-blend-mode: screen;
  opacity: .22;
}

.haze-one {
  left: 30%;
  top: 14%;
  background: radial-gradient(circle, rgba(232,201,106,.22), rgba(201,168,76,.08) 35%, transparent 70%);
  animation: hazeRollOne 18s ease-in-out infinite;
}

.haze-two {
  right: -8%;
  top: 18%;
  background: radial-gradient(circle, rgba(232,201,106,.15), rgba(201,168,76,.06) 42%, transparent 72%);
  animation: hazeRollTwo 22s ease-in-out infinite;
}

@keyframes hazeRollOne {
  0%, 100% { transform: translate3d(-28px, 10px, 0) scale(.92); opacity: .16; }
  40% { transform: translate3d(38px, -24px, 0) scale(1.12); opacity: .32; }
  75% { transform: translate3d(8px, 18px, 0) scale(1.02); opacity: .24; }
}

@keyframes hazeRollTwo {
  0%, 100% { transform: translate3d(30px, -8px, 0) scale(.94); opacity: .14; }
  50% { transform: translate3d(-42px, 20px, 0) scale(1.16); opacity: .28; }
}

.living-particles span {
  animation:
    dustFloat var(--d) linear infinite,
    dustTwinkle calc(var(--d) / 2) ease-in-out infinite !important;
}

@keyframes dustTwinkle {
  0%, 100% { box-shadow: 0 0 8px rgba(232,201,106,.22); filter: brightness(.8); }
  50% { box-shadow: 0 0 18px rgba(232,201,106,.7); filter: brightness(1.4); }
}

@media (max-width: 768px) {
  .atmosphere-canvas { opacity: .42; }
  .beam-one { left: 48%; height: 50vh; opacity: .36; }
  .beam-two { display: none; }
  .studio-haze { opacity: .16; }
}

@media (prefers-reduced-motion: reduce) {
  .atmosphere-canvas,
  .moving-light-beam,
  .studio-haze {
    animation: none !important;
  }
}



/* -------- No-Crop Hero Composition Fix -------- */
.living-bg {
  inset: 0 !important;
  background-size: contain !important;
  background-position: center top !important;
  background-color: #050505 !important;
  transform: translate3d(0,0,0) scale(1) !important;
}

.living-hero {
  min-height: auto !important;
  height: auto !important;
  aspect-ratio: 16 / 9;
  max-height: 100svh;
  align-items: flex-end;
}

.living-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 35%, rgba(201,168,76,.08), transparent 45%),
    #050505;
}

.living-copy {
  padding-bottom: clamp(96px, 10vh, 128px) !important;
}

.living-service-bar {
  bottom: 18px !important;
}

.studio-audio-toggle {
  bottom: 88px !important;
}

@media (min-width: 1600px) {
  .living-hero {
    max-height: 980px;
  }
}

@media (max-width: 900px) {
  .living-hero {
    min-height: 92svh !important;
    height: 92svh !important;
    aspect-ratio: auto;
  }

  .living-bg {
    background-size: cover !important;
    background-position: center center !important;
  }
}

@media (max-width: 768px) {
  .living-bg {
    background-position: 58% center !important;
  }
}



/* -------- Premium Agency Brand System -------- */
:root {
  --brand-shadow: rgba(0,0,0,.72);
  --spotlight-core: rgba(232,201,106,.24);
  --spotlight-soft: rgba(201,168,76,.08);
}

.premium-page-visual {
  position: relative;
  margin-top: 54px;
  min-height: 360px;
  border: 1px solid rgba(201,168,76,.16);
  background:
    radial-gradient(circle at 50% 0%, var(--spotlight-core), transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(201,168,76,.09), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.025), rgba(7,7,7,1));
  overflow: hidden;
  box-shadow: inset 0 0 80px rgba(0,0,0,.55);
}

.premium-page-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
  opacity: .7;
}

.premium-page-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -12%;
  width: 280px;
  height: 120%;
  transform: translateX(-50%) rotate(7deg);
  background: linear-gradient(180deg, rgba(232,201,106,.18), rgba(232,201,106,.045) 55%, transparent);
  clip-path: polygon(38% 0, 62% 0, 100% 100%, 0% 100%);
  opacity: .55;
  animation: brandSpotlightDrift 14s ease-in-out infinite;
}

@keyframes brandSpotlightDrift {
  0%, 100% { transform: translateX(-52%) rotate(4deg); opacity: .38; }
  50% { transform: translateX(-46%) rotate(9deg); opacity: .72; }
}

.visual-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 34px;
}

.visual-title {
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 130px);
  letter-spacing: .04em;
  line-height: .88;
  color: rgba(240,237,232,.08);
  text-align: center;
  text-transform: uppercase;
}

.visual-device-row,
.visual-product-row,
.visual-process-row,
.visual-package-row {
  position: absolute;
  z-index: 3;
  left: 8%;
  right: 8%;
  bottom: 46px;
  display: grid;
  gap: 18px;
}

.visual-device-row { grid-template-columns: 1.2fr .8fr .55fr; align-items: end; }
.visual-product-row { grid-template-columns: repeat(4, 1fr); align-items: end; }
.visual-process-row { grid-template-columns: repeat(5, 1fr); align-items: stretch; }
.visual-package-row { grid-template-columns: repeat(3, 1fr); align-items: end; }

.visual-device,
.visual-product,
.visual-step,
.visual-package,
.visual-frame {
  border: 1px solid rgba(201,168,76,.22);
  background: rgba(7,7,7,.62);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 60px rgba(0,0,0,.38);
}

.visual-device {
  min-height: 165px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.visual-device:nth-child(2) { min-height: 210px; }
.visual-device:nth-child(3) { min-height: 128px; }

.visual-device .bar {
  height: 6px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: .7;
  margin-bottom: 10px;
}

.visual-device .line {
  height: 8px;
  background: rgba(240,237,232,.12);
  margin: 8px 0;
}

.visual-product {
  min-height: 150px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  color: var(--gold);
  font-size: 28px;
  letter-spacing: .06em;
}

.visual-product:nth-child(2) { min-height: 190px; }
.visual-product:nth-child(3) { min-height: 170px; }

.visual-step {
  padding: 22px 18px;
  min-height: 135px;
}

.visual-step span,
.visual-package span {
  display: block;
  font-family: var(--mono);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .18em;
  margin-bottom: 14px;
}

.visual-step strong,
.visual-package strong {
  font-family: var(--display);
  color: var(--white);
  font-size: 25px;
  letter-spacing: .05em;
  line-height: 1;
}

.visual-package {
  padding: 24px;
  min-height: 150px;
}

.visual-package:nth-child(2) {
  min-height: 210px;
  border-color: rgba(201,168,76,.5);
  background: linear-gradient(180deg, rgba(201,168,76,.16), rgba(7,7,7,.72));
}

.visual-frame {
  width: min(520px, 72vw);
  min-height: 250px;
  padding: 26px;
  display: grid;
  place-items: center;
  text-align: center;
}

.visual-frame strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(42px, 7vw, 84px);
  color: var(--gold);
  letter-spacing: .06em;
}

.visual-frame span {
  color: var(--grey);
  line-height: 1.7;
  max-width: 420px;
  margin-top: 10px;
}

.page-hero {
  min-height: 68vh;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 18%;
  width: 280px;
  height: 420px;
  background: radial-gradient(circle at top, rgba(232,201,106,.14), transparent 70%);
  filter: blur(18px);
  opacity: .75;
  pointer-events: none;
}

/* Home hero cleanup */
@media (max-width: 768px) {
  .living-service-bar {
    display: none !important;
  }

  .living-copy {
    padding-bottom: 54px !important;
  }

  .living-copy .hero-actions {
    gap: 12px;
  }

  .living-copy .btn-primary,
  .living-copy .btn-ghost {
    padding: 14px 20px;
    font-size: 10px;
  }

  .ticker-wrap {
    margin-top: 0;
  }

  .premium-page-visual {
    min-height: 320px;
    margin-top: 36px;
  }

  .visual-device-row,
  .visual-product-row,
  .visual-process-row,
  .visual-package-row {
    left: 24px;
    right: 24px;
    bottom: 28px;
    grid-template-columns: 1fr 1fr;
  }

  .visual-process-row {
    grid-template-columns: 1fr;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 90px 24px 24px;
  }

  .visual-step {
    min-height: auto;
  }

  .visual-package-row {
    grid-template-columns: 1fr;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 110px 24px 24px;
  }

  .visual-device:nth-child(3),
  .visual-product:nth-child(4) {
    display: none;
  }

  .visual-title {
    font-size: clamp(44px, 16vw, 78px);
  }
}



/* -------- Next-Level Scroll Experience -------- */
.living-service-bar,
.studio-audio-toggle {
  display: none !important;
}

.living-copy {
  max-width: 720px;
  padding-bottom: clamp(72px, 9vh, 120px) !important;
}

.living-copy h1 {
  font-size: clamp(62px, 9vw, 142px);
}

.living-copy .hero-sub {
  max-width: 600px;
  font-size: 17px;
}

.proof-section,
.ecosystem-section,
.process-cinema,
.ip-preview,
.final-chair-cta {
  position: relative;
  z-index: 2;
  background: var(--void);
  padding: 110px 48px;
}

.proof-header,
.ecosystem-header,
.ip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 56px;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr 1fr;
  gap: 18px;
  min-height: 620px;
}

.proof-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.18);
  background: var(--surface);
  text-decoration: none;
  min-height: 520px;
  transform-origin: center;
  transition: transform .45s cubic-bezier(.19,1,.22,1), border-color .45s;
}

.proof-card:nth-child(2) {
  margin-top: 70px;
}

.proof-card:nth-child(3) {
  margin-top: 28px;
}

.proof-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(201,168,76,.5);
}

.proof-media,
.proof-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(.19,1,.22,1), filter .45s;
  filter: saturate(.92) contrast(1.05) brightness(.78);
}

.proof-card:hover .proof-media,
.proof-card:hover .proof-video {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.1) brightness(.86);
}

.shirt-media {
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #050505;
}

.proof-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,7,.08), rgba(7,7,7,.35) 42%, rgba(7,7,7,.92)),
    radial-gradient(circle at 50% 16%, rgba(201,168,76,.16), transparent 36%);
  z-index: 1;
}

.proof-content {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.proof-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.proof-content h3 {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
  color: var(--white);
  line-height: .92;
  letter-spacing: .04em;
  margin-bottom: 14px;
}

.proof-content p {
  color: var(--grey);
  line-height: 1.65;
  font-size: 14px;
}

.movement-cinema {
  position: relative;
  z-index: 2;
  min-height: 520vh;
  background:
    radial-gradient(circle at 72% 26%, rgba(201,168,76,.11), transparent 34%),
    linear-gradient(180deg, var(--void), #030303);
}

.movement-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  padding: 120px 48px 70px;
  max-width: 1380px;
  margin: 0 auto;
  overflow: hidden;
}

.movement-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(201,168,76,.16);
  background:
    radial-gradient(circle at 50% 50%, rgba(201,168,76,.13), transparent 42%),
    rgba(255,255,255,.018);
  overflow: hidden;
}

.movement-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .6;
}

.movement-orbit {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(201,168,76,.16);
  border-radius: 50%;
  animation: movementOrbit 18s linear infinite;
}

.movement-orbit::before,
.movement-orbit::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(201,168,76,.65);
}

.movement-orbit::before { left: 8%; top: 18%; }
.movement-orbit::after { right: 14%; bottom: 10%; }

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

.movement-screen {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(420px, 80%);
  min-height: 220px;
  transform: translate(-50%, -50%) scale(.88);
  opacity: 0;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(201,168,76,.2);
  background: rgba(7,7,7,.72);
  backdrop-filter: blur(8px);
  transition: opacity .45s, transform .45s, border-color .45s;
}

.movement-screen.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  border-color: rgba(201,168,76,.55);
}

.movement-screen span {
  font-family: var(--mono);
  color: var(--gold);
  letter-spacing: .2em;
  font-size: 10px;
}

.movement-screen strong {
  font-family: var(--display);
  color: var(--white);
  font-size: clamp(54px, 6vw, 86px);
  letter-spacing: .04em;
  line-height: .9;
}

.movement-screen em {
  color: var(--grey);
  font-style: normal;
  font-size: 14px;
}

/* ==================== PROOF CAROUSEL ==================== */
.proof-carousel-container {
  position: relative;
  overflow: hidden;
  margin: 40px 0 20px;
  border-radius: 6px;
}

.proof-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 24px;
}

.proof-carousel-container .proof-safe-card {
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(7,7,7,0.9);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.5);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  user-select: none;
}

.carousel-nav:hover {
  background: var(--gold);
  color: var(--void);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev { left: 24px; }
.carousel-nav.next { right: 24px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  padding-bottom: 20px;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(201,168,76,0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.5);
}

/* Desktop: show 2 cards */
@media (min-width: 1025px) {
  .proof-carousel-track {
    gap: 22px;
  }
  .proof-carousel-container .proof-safe-card {
    flex: 0 0 calc(50% - 11px);
    min-width: calc(50% - 11px);
  }
}

@media (max-width: 768px) {
  .carousel-nav {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  .carousel-nav.prev { left: 12px; }
  .carousel-nav.next { right: 12px; }
}

.movement-copy h2 {
  font-size: clamp(58px, 8vw, 120px);
  line-height: .88;
}

.movement-copy p {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.8;
  max-width: 560px;
  margin-top: 28px;
}

.movement-rail {
  margin-top: 34px;
  display: grid;
  gap: 10px;
  max-width: 520px;
}

.movement-rail button {
  text-align: left;
  background: rgba(7,7,7,.45);
  border: 1px solid rgba(201,168,76,.16);
  color: var(--grey);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 14px 16px;
  transition: color .2s, border-color .2s, background .2s, transform .2s;
}

.movement-rail button.active {
  color: var(--gold);
  border-color: rgba(201,168,76,.55);
  background: rgba(201,168,76,.065);
  transform: translateX(10px);
}

.ecosystem-map {
  position: relative;
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  border: 1px solid rgba(201,168,76,.12);
  background: rgba(201,168,76,.12);
}

.ecosystem-map::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.5), transparent);
  z-index: -1;
}

.eco-node {
  min-height: 240px;
  background:
    radial-gradient(circle at 50% 0%, rgba(201,168,76,.09), transparent 36%),
    var(--surface);
  padding: 30px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .35s, background .35s;
}

.eco-node:hover {
  transform: translateY(-8px);
  background:
    radial-gradient(circle at 50% 0%, rgba(201,168,76,.16), transparent 42%),
    var(--surface2);
}

.eco-node span {
  font-family: var(--mono);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .18em;
  margin-bottom: auto;
}

.eco-node strong {
  font-family: var(--display);
  color: var(--white);
  font-size: 38px;
  letter-spacing: .05em;
}

.eco-node p {
  color: var(--grey);
  font-size: 14px;
  margin-top: 6px;
}

.process-cinema {
  background: var(--surface);
}

.process-filmstrip {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.film-frame {
  min-height: 220px;
  border: 1px solid rgba(201,168,76,.18);
  background:
    linear-gradient(180deg, rgba(201,168,76,.05), rgba(7,7,7,.85)),
    var(--void);
  text-decoration: none;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.film-frame span {
  font-family: var(--mono);
  color: var(--gold);
  letter-spacing: .18em;
}

.film-frame strong {
  font-family: var(--display);
  color: var(--white);
  font-size: 34px;
  letter-spacing: .05em;
}

.ip-preview {
  background: var(--void);
}

.ip-inner {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 70px;
  align-items: center;
}

.ip-card {
  border: 1px solid rgba(201,168,76,.24);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0,0,0,.38);
}

.ip-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.final-chair-cta {
  min-height: 78vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 12%, rgba(201,168,76,.14), transparent 32%),
    var(--void);
}

.final-chair-box {
  text-align: center;
  border: 1px solid rgba(201,168,76,.18);
  padding: 70px 48px;
  background: rgba(7,7,7,.68);
}

.final-chair-box .section-label {
  justify-content: center;
}

.final-chair-box .lead {
  margin: 26px auto 0;
}

.final-chair-box .hero-actions {
  justify-content: center;
  margin-top: 38px;
}

.cinema-block {
  opacity: 0;
  transform: translate3d(0, 44px, 0) scale(.98);
  filter: blur(7px);
  transition: opacity .85s cubic-bezier(.19,1,.22,1), transform .85s cubic-bezier(.19,1,.22,1), filter .85s cubic-bezier(.19,1,.22,1);
}

.cinema-block.in-view {
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
  filter: blur(0);
}

@media (max-width: 1024px) {
  .proof-grid,
  .proof-header,
  .ecosystem-header,
  .ip-inner,
  .movement-pin {
    grid-template-columns: 1fr;
  }

  .movement-cinema {
    min-height: auto;
  }

  .movement-pin {
    position: relative;
    height: auto;
    padding: 90px 48px;
  }

  .ecosystem-map,
  .process-filmstrip {
    grid-template-columns: repeat(2, 1fr);
  }

  .eco-node:last-child,
  .film-frame:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .proof-section,
  .ecosystem-section,
  .process-cinema,
  .ip-preview,
  .final-chair-cta {
    padding: 80px 24px;
  }

  .proof-grid {
    gap: 18px;
    min-height: auto;
  }

  .proof-card,
  .proof-card:nth-child(2),
  .proof-card:nth-child(3) {
    min-height: 430px;
    margin-top: 0;
  }

  .movement-pin {
    padding: 80px 24px;
    gap: 34px;
  }

  .movement-visual {
    min-height: 360px;
  }

  .movement-screen {
    min-height: 180px;
  }

  .movement-rail button.active {
    transform: none;
  }

  .ecosystem-map,
  .process-filmstrip {
    grid-template-columns: 1fr;
  }

  .eco-node,
  .film-frame {
    min-height: 170px;
  }

  .final-chair-box {
    padding: 46px 26px;
  }

  .living-copy {
    padding-bottom: 54px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinema-block,
  .cinema-block.in-view,
  .movement-orbit {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }
}



/* -------- Campaign Library + Level 2 Blueprint Builder -------- */
.campaign-library { background: var(--void); }

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.12);
  margin-top: 64px;
}

.campaign-card {
  background:
    radial-gradient(circle at 75% 0%, rgba(201,168,76,.08), transparent 34%),
    var(--surface);
  padding: 38px 30px;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.campaign-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.campaign-card h3 {
  font-family: var(--display);
  font-size: 36px;
  line-height: .95;
  letter-spacing: .05em;
  color: var(--white);
  margin-bottom: 18px;
}

.campaign-card p {
  color: var(--grey);
  line-height: 1.7;
  font-size: 14px;
}

.campaign-card ul {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.campaign-card li {
  color: var(--grey);
  font-size: 13px;
  padding-left: 20px;
  position: relative;
}

.campaign-card li::before {
  content: "◆";
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: 9px;
}

.indika-brief { background: var(--void); }

.indika-brief-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.12);
  margin-top: 64px;
}

.indika-brief-card {
  background: var(--surface);
  padding: 34px 28px;
  min-height: 260px;
}

.indika-brief-card span {
  font-family: var(--mono);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .18em;
}

.indika-brief-card h3 {
  font-family: var(--display);
  color: var(--white);
  font-size: 34px;
  letter-spacing: .05em;
  margin: 26px 0 14px;
}

.indika-brief-card p {
  color: var(--grey);
  line-height: 1.7;
  font-size: 14px;
}

.blueprint-builder-section { background: var(--surface); }

.blueprint-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  border: 1px solid rgba(201,168,76,.22);
  background:
    radial-gradient(circle at 80% 0%, rgba(201,168,76,.09), transparent 35%),
    rgba(7,7,7,.72);
  padding: 38px;
  margin-top: 48px;
}

.blueprint-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blueprint-field.full { grid-column: 1 / -1; }

.blueprint-field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.blueprint-field input,
.blueprint-field select,
.blueprint-field textarea {
  width: 100%;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(201,168,76,.2);
  color: var(--white);
  padding: 15px 14px;
  font-family: var(--body);
  font-size: 14px;
  outline: none;
}

.blueprint-field textarea {
  min-height: 112px;
  resize: vertical;
}

.blueprint-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.blueprint-output {
  display: none;
  margin-top: 30px;
  border: 1px solid rgba(201,168,76,.25);
  background: rgba(7,7,7,.76);
  padding: 32px;
}

.blueprint-output.active { display: block; }

.blueprint-output-title {
  font-family: var(--display);
  font-size: 38px;
  letter-spacing: .05em;
  color: var(--gold);
  margin-bottom: 18px;
}

.blueprint-summary {
  color: var(--grey);
  line-height: 1.8;
  font-size: 14px;
}

.blueprint-summary strong {
  color: var(--white);
}

.blueprint-summary h3 {
  font-family: var(--display);
  color: var(--gold);
  font-size: 28px;
  letter-spacing: .05em;
  margin: 24px 0 10px;
}

.blueprint-summary ul {
  margin: 10px 0 20px 20px;
}

@media (max-width: 1024px) {
  .campaign-grid { grid-template-columns: repeat(2, 1fr); }
  .indika-brief-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .campaign-grid,
  .indika-brief-grid,
  .blueprint-form {
    grid-template-columns: 1fr;
  }
  .blueprint-form { padding: 26px; }
}



/* -------- Campaign Live Link Chips -------- */
.campaign-links,
.proof-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.campaign-links a,
.proof-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.32);
  background: rgba(7,7,7,.52);
  padding: 10px 12px;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s;
}

.campaign-links a:hover,
.proof-links a:hover {
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.65);
  transform: translateY(-2px);
}

.proof-links {
  margin-top: 16px;
}

.proof-links a {
  font-size: 8px;
  padding: 8px 10px;
}



/* -------- Clean Hero / Reduced Crowding Fix -------- */
.living-service-bar,
.hero-services,
.studio-audio-toggle {
  display: none !important;
}

.living-hero {
  min-height: min(100svh, 920px);
}

.living-copy {
  max-width: 680px !important;
  padding-bottom: clamp(58px, 8vh, 96px) !important;
}

.living-copy h1 {
  font-size: clamp(64px, 8.5vw, 132px) !important;
  line-height: .86 !important;
  max-width: 700px;
}

.living-copy .hero-sub {
  max-width: 540px !important;
  font-size: clamp(15px, 1.25vw, 18px) !important;
  line-height: 1.58 !important;
  margin-top: 22px !important;
}

.living-copy .hero-eyebrow {
  max-width: 520px;
  letter-spacing: .20em !important;
  line-height: 1.5;
}

.living-copy .hero-actions {
  margin-top: 28px !important;
}

.ticker-wrap {
  margin-top: 0 !important;
}

.proof-section {
  padding-top: clamp(72px, 8vw, 100px) !important;
}

.proof-header {
  margin-bottom: 36px !important;
  align-items: start !important;
}

.proof-header .lead {
  margin-top: 0 !important;
  max-width: 560px;
}

.proof-grid {
  margin-top: 0 !important;
}

.proof-card {
  min-height: 480px !important;
}

.proof-card:nth-child(2) {
  margin-top: 42px !important;
}

.proof-card:nth-child(3) {
  margin-top: 18px !important;
}

/* Desktop nav still full, but visually tightened */
.nav-links {
  gap: clamp(14px, 2vw, 26px) !important;
}

.nav-links a {
  font-size: 9px !important;
}

.nav-logo {
  white-space: nowrap;
}

/* Mobile: stop trying to show everything in the header */
@media (max-width: 900px) {
  nav {
    padding: 15px 24px !important;
  }

  .nav-links {
    display: none !important;
  }

  .nav-cta {
    display: inline-flex !important;
    padding: 9px 13px !important;
    font-size: 8px !important;
    letter-spacing: .12em !important;
  }

  .nav-logo {
    font-size: 20px !important;
  }

  .living-hero {
    min-height: 76svh !important;
    height: auto !important;
    aspect-ratio: auto !important;
  }

  .living-bg {
    background-position: 58% center !important;
    opacity: .72;
  }

  .living-overlay {
    background:
      linear-gradient(180deg, rgba(5,5,5,.18), rgba(5,5,5,.34) 42%, rgba(5,5,5,.86) 100%),
      linear-gradient(90deg, rgba(5,5,5,.24), rgba(5,5,5,.42)) !important;
  }

  .living-copy {
    padding: 120px 24px 46px !important;
    max-width: 100% !important;
  }

  .living-copy .hero-eyebrow {
    font-size: 9px !important;
    letter-spacing: .18em !important;
    max-width: 340px;
    margin-bottom: 16px !important;
  }

  .living-copy h1 {
    font-size: clamp(56px, 17vw, 92px) !important;
    line-height: .82 !important;
    max-width: 360px;
  }

  .living-copy .hero-sub {
    font-size: 14px !important;
    line-height: 1.55 !important;
    max-width: 350px !important;
    margin-top: 20px !important;
  }

  .living-copy .hero-actions {
    gap: 12px !important;
    margin-top: 24px !important;
  }

  .living-copy .btn-primary,
  .living-copy .btn-ghost {
    padding: 13px 18px !important;
    font-size: 9px !important;
    letter-spacing: .12em !important;
  }

  .ticker-wrap {
    display: none !important;
  }

  .proof-section {
    padding: 72px 24px !important;
  }

  .proof-header {
    display: block !important;
    margin-bottom: 28px !important;
  }

  .proof-header h2 {
    font-size: clamp(48px, 13vw, 72px) !important;
  }

  .proof-header .lead {
    margin-top: 20px !important;
    font-size: 14px !important;
  }

  .proof-grid {
    gap: 22px !important;
  }

  .proof-card,
  .proof-card:nth-child(2),
  .proof-card:nth-child(3) {
    min-height: 390px !important;
    margin-top: 0 !important;
  }

  .proof-content {
    left: 22px !important;
    right: 22px !important;
    bottom: 22px !important;
  }

  .proof-content h3 {
    font-size: clamp(32px, 9vw, 46px) !important;
  }
}

@media (max-width: 430px) {
  .nav-cta {
    display: none !important;
  }

  nav {
    justify-content: center !important;
  }

  .living-copy {
    padding-top: 108px !important;
  }

  .living-copy h1 {
    font-size: clamp(52px, 17vw, 78px) !important;
  }

  .living-copy .hero-sub {
    max-width: 315px !important;
  }
}



/* -------- Final Proof Layout / Credit-Safe Polish -------- */
.proof-section {
  padding-top: clamp(64px, 7vw, 92px) !important;
  padding-bottom: clamp(76px, 8vw, 110px) !important;
}

.proof-header {
  display: grid !important;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .75fr) !important;
  gap: clamp(28px, 5vw, 64px) !important;
  align-items: end !important;
  margin-bottom: 34px !important;
}

.proof-header h2 {
  max-width: 620px;
}

.proof-header .lead {
  max-width: 560px;
  margin-top: 0 !important;
}

.proof-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  min-height: auto !important;
  margin-top: 0 !important;
}

.proof-card,
.proof-card:nth-child(2),
.proof-card:nth-child(3) {
  margin-top: 0 !important;
  min-height: clamp(390px, 36vw, 520px) !important;
}

.proof-card:nth-child(3) {
  grid-column: 1 / -1;
  min-height: clamp(360px, 30vw, 480px) !important;
}

.proof-media,
.proof-video {
  filter: saturate(.94) contrast(1.06) brightness(.76) !important;
}

.proof-artist .proof-media {
  background-size: cover !important;
  background-position: center 42% !important;
}

.proof-community {
  background:
    radial-gradient(circle at 50% 16%, rgba(201,168,76,.14), transparent 30%),
    #050505 !important;
}

.proof-community .shirt-media {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center 28% !important;
  transform: scale(.92);
}

.proof-community:hover .shirt-media {
  transform: scale(.97) !important;
}

.proof-experience .proof-video {
  object-position: center center;
}

.proof-content {
  left: clamp(22px, 3vw, 34px) !important;
  right: clamp(22px, 3vw, 34px) !important;
  bottom: clamp(22px, 3vw, 34px) !important;
}

.proof-content h3 {
  max-width: 760px;
}

.proof-links a {
  background: rgba(7,7,7,.72) !important;
}

/* Give desktop proof cards a more intentional magazine spread feel */
@media (min-width: 1025px) {
  .proof-card:nth-child(1) {
    min-height: 560px !important;
  }

  .proof-card:nth-child(2) {
    min-height: 560px !important;
  }

  .proof-card:nth-child(3) {
    min-height: 430px !important;
  }
}

/* Tablet: remove all asymmetry */
@media (max-width: 1024px) {
  .proof-header {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .proof-grid {
    grid-template-columns: 1fr !important;
  }

  .proof-card:nth-child(3) {
    grid-column: auto !important;
  }
}

/* Mobile: clean, readable, no dead zones */
@media (max-width: 768px) {
  .proof-section {
    padding: 64px 24px 78px !important;
  }

  .proof-header {
    margin-bottom: 26px !important;
  }

  .proof-header h2 {
    font-size: clamp(46px, 13vw, 68px) !important;
    line-height: .92 !important;
  }

  .proof-header .lead {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  .proof-grid {
    gap: 20px !important;
  }

  .proof-card,
  .proof-card:nth-child(1),
  .proof-card:nth-child(2),
  .proof-card:nth-child(3) {
    min-height: 390px !important;
  }

  .proof-artist .proof-media {
    background-position: center 38% !important;
  }

  .proof-community .shirt-media {
    background-size: 72% auto !important;
    background-position: center 20% !important;
    transform: none !important;
  }

  .proof-shade {
    background:
      linear-gradient(180deg, rgba(7,7,7,.05), rgba(7,7,7,.30) 42%, rgba(7,7,7,.94)),
      radial-gradient(circle at 50% 18%, rgba(201,168,76,.14), transparent 38%) !important;
  }

  .proof-content h3 {
    font-size: clamp(30px, 8.8vw, 44px) !important;
    line-height: .96 !important;
  }

  .proof-content p {
    font-size: 13px !important;
  }
}

@media (max-width: 430px) {
  .proof-card,
  .proof-card:nth-child(1),
  .proof-card:nth-child(2),
  .proof-card:nth-child(3) {
    min-height: 365px !important;
  }

  .proof-community .shirt-media {
    background-size: 78% auto !important;
  }
}



/* -------- Bulletproof Proof Section Rebuild -------- */
.proof-safe {
  position: relative;
  background: var(--void);
  padding: clamp(72px, 8vw, 110px) 48px !important;
  overflow: visible !important;
}

.proof-safe .section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.proof-safe-header {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .75fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  margin-bottom: 42px;
}

.proof-safe-header h2 {
  max-width: 620px;
}

.proof-safe-header .lead {
  max-width: 570px;
  margin: 0;
}

.proof-safe-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  width: 100%;
}

.proof-safe-card {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  min-height: auto !important;
  margin: 0 !important;
  border: 1px solid rgba(201,168,76,.2);
  background:
    radial-gradient(circle at 50% 0%, rgba(201,168,76,.06), transparent 36%),
    var(--surface);
  text-decoration: none;
  transform: none;
}

.proof-safe-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,.46);
}

.proof-safe-media {
  position: relative !important;
  inset: auto !important;
  width: 100%;
  height: clamp(260px, 28vw, 390px);
  flex: 0 0 auto;
  background-color: #050505;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(201,168,76,.12);
}

.proof-safe-image {
  background-size: cover;
  background-position: center center;
}

.proof-safe-card:nth-child(1) .proof-safe-image {
  background-position: center 42%;
}

.proof-safe-shirt {
  background-size: contain !important;
  background-position: center 22% !important;
}

.proof-safe-video-wrap {
  overflow: hidden;
}

.proof-safe-video {
  position: static !important;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.05) brightness(.82);
}

.proof-safe-poster {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(201,168,76,.15), transparent 34%),
    linear-gradient(135deg, rgba(7,7,7,1), rgba(27,21,11,1));
}

.proof-safe-poster span {
  font-family: var(--display);
  color: var(--gold);
  font-size: clamp(48px, 7vw, 96px);
  line-height: .82;
  letter-spacing: .05em;
  text-align: center;
  opacity: .92;
}

.proof-safe-body {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 2;
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.proof-safe-body .proof-kicker {
  margin-bottom: 14px;
}

.proof-safe-body h3 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 54px);
  line-height: .94;
  color: var(--white);
  letter-spacing: .04em;
  margin: 0 0 16px;
}

.proof-safe-body p {
  color: var(--grey);
  line-height: 1.65;
  font-size: 14px;
  margin: 0;
  max-width: 560px;
}

.proof-safe-body .proof-links {
  margin-top: auto;
  padding-top: 24px;
}

/* Neutralize older proof-card absolute/stagger rules when proof-safe is present */
.proof-safe .proof-card,
.proof-safe .proof-card:nth-child(2),
.proof-safe .proof-card:nth-child(3) {
  position: relative !important;
  margin: 0 !important;
  min-height: auto !important;
  grid-column: auto !important;
}

.proof-safe .proof-media,
.proof-safe .proof-video,
.proof-safe .proof-content {
  position: relative !important;
  inset: auto !important;
}

/* Tablet */
@media (max-width: 1024px) {
  .proof-safe {
    padding: 82px 32px !important;
  }

  .proof-safe-header {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 32px;
  }

  .proof-safe-grid {
    grid-template-columns: 1fr;
  }

  .proof-safe-media {
    height: clamp(250px, 48vw, 380px);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .proof-safe {
    padding: 66px 24px 80px !important;
  }

  .proof-safe-header h2 {
    font-size: clamp(46px, 13vw, 68px) !important;
    line-height: .92 !important;
  }

  .proof-safe-header .lead {
    font-size: 14px;
    line-height: 1.65;
  }

  .proof-safe-grid {
    gap: 22px;
  }

  .proof-safe-media {
    height: 260px;
  }

  .proof-safe-card:nth-child(1) .proof-safe-image {
    background-position: center 38%;
  }

  .proof-safe-shirt {
    background-size: 72% auto !important;
    background-position: center 18% !important;
  }

  .proof-safe-body {
    min-height: auto;
    padding: 24px 22px 26px;
  }

  .proof-safe-body h3 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .proof-safe-body p {
    font-size: 13px;
  }

  .proof-safe-body .proof-links {
    margin-top: 22px;
    padding-top: 0;
  }
}

@media (max-width: 430px) {
  .proof-safe-media {
    height: 235px;
  }

  .proof-safe-shirt {
    background-size: 78% auto !important;
  }
}

/* -------- MOWPOSSIBLE Campaign Showcase -------- */
.campaign-card-showcase {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .85fr);
  gap: 0;
  padding: 0;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.22);
  background:
    linear-gradient(135deg, rgba(201,168,76,.08), transparent 42%),
    var(--surface);
}

.campaign-showcase-image {
  min-height: 520px;
  background-size: cover;
  background-position: center;
  border-right: 1px solid rgba(201,168,76,.18);
}

.campaign-showcase-content {
  padding: 48px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.campaign-card-showcase h3 {
  font-size: clamp(44px, 5vw, 76px);
  line-height: .9;
  max-width: 520px;
}

.campaign-card-showcase p {
  font-size: 15px;
  max-width: 560px;
}

.campaign-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(201,168,76,.22);
  margin-top: 28px;
}

.campaign-metrics span {
  padding: 18px 14px;
  color: var(--grey);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-right: 1px solid rgba(201,168,76,.16);
}

.campaign-metrics span:last-child { border-right: 0; }

.campaign-metrics strong {
  display: block;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: .04em;
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .campaign-card-showcase {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .campaign-showcase-image {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid rgba(201,168,76,.18);
  }

  .campaign-showcase-content { padding: 34px 26px; }

  .campaign-metrics { grid-template-columns: 1fr; }
  .campaign-metrics span {
    border-right: 0;
    border-bottom: 1px solid rgba(201,168,76,.16);
  }
  .campaign-metrics span:last-child { border-bottom: 0; }
}


/* -------- Filled hero proof panels: campaigns + merch -------- */
.campaign-proof-strip,
.merch-proof-strip { padding-top: 72px; }

.campaign-proof-visual,
.merch-proof-visual {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: stretch;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(201,168,76,.2);
  background:
    radial-gradient(circle at 50% 0%, rgba(201,168,76,.16), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.025), rgba(7,7,7,1));
  box-shadow: inset 0 0 80px rgba(0,0,0,.55);
  overflow: hidden;
}

.campaign-proof-copy,
.merch-proof-copy { align-self: center; }

.campaign-proof-copy h2,
.merch-proof-copy h2 {
  margin-top: 18px;
  max-width: 720px;
}

.campaign-proof-copy p,
.merch-proof-copy p {
  color: var(--grey);
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.55;
  max-width: 610px;
  margin-top: 20px;
}

.proof-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.proof-pill-row span {
  border: 1px solid rgba(201,168,76,.22);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 12px 14px;
  background: rgba(7,7,7,.55);
}

.proof-mini-grid,
.merch-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.proof-mini-grid article,
.merch-product-grid article {
  min-height: 172px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(201,168,76,.22);
  background:
    linear-gradient(180deg, rgba(201,168,76,.08), transparent 48%),
    rgba(7,7,7,.68);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.proof-mini-grid strong,
.merch-product-grid strong {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 58px);
  line-height: .9;
  letter-spacing: .04em;
  color: var(--gold);
}

.proof-mini-grid p,
.merch-product-grid p {
  margin-top: 12px;
  color: var(--bone);
  font-size: 14px;
  line-height: 1.5;
}

.merch-product-grid span {
  font-family: var(--mono);
  color: rgba(201,168,76,.7);
  font-size: 11px;
  letter-spacing: .16em;
  margin-bottom: 14px;
}

.campaign-card-showcase ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--grey);
  font-size: 14px;
}

.campaign-card-showcase li {
  position: relative;
  padding-left: 22px;
}

.campaign-card-showcase li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}

@media (max-width: 900px) {
  .campaign-proof-strip,
  .merch-proof-strip { padding-top: 44px; }

  .campaign-proof-visual,
  .merch-proof-visual {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .proof-mini-grid,
  .merch-product-grid { grid-template-columns: 1fr; }

  .proof-mini-grid article,
  .merch-product-grid article { min-height: 132px; }
}


/* ==================== PAGE VISUAL LAYOUT ==================== */
.premium-page-visual-compact .premium-page-visual {
  min-height: auto;
  padding: clamp(22px, 4vw, 44px);
}
.premium-page-visual-compact .premium-page-visual::after { opacity: .28; }
.premium-page-visual-compact h2 {
  margin: 10px 0 16px;
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 88px);
  line-height: .9;
  letter-spacing: .035em;
}
.premium-page-visual-compact p { color: var(--muted); line-height: 1.65; }
.showcase-split,
.ecosystem-wrap,
.web-proof-layout,
.indika-proof-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}
.showcase-media,
.showcase-copy,
.ecosystem-copy,
.web-proof-copy,
.contact-visual-card {
  position: relative;
  z-index: 3;
}
.showcase-media img,
.indika-proof-layout img {
  width: 100%;
  display: block;
  border: 1px solid rgba(201,168,76,.28);
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
}
.showcase-copy,
.web-proof-copy,
.contact-visual-card {
  border: 1px solid rgba(201,168,76,.22);
  background: rgba(7,7,7,.68);
  padding: clamp(22px, 3vw, 38px);
}
.proof-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 28px;
}
.proof-mini-grid span {
  border: 1px solid rgba(201,168,76,.22);
  background: rgba(201,168,76,.07);
  color: var(--white);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  padding: 12px;
  text-transform: uppercase;
}
.ecosystem-flow {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 12px;
}
.ecosystem-flow div,
.process-map-steps div,
.package-proof-card {
  border: 1px solid rgba(201,168,76,.24);
  background: rgba(7,7,7,.68);
  padding: 20px;
}
.ecosystem-flow strong,
.process-map-steps strong,
.package-proof-card strong,
.merch-proof-card strong {
  display: block;
  color: var(--white);
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: .05em;
  line-height: 1;
  text-transform: uppercase;
}
.ecosystem-flow span,
.merch-proof-card em,
.package-proof-card p,
.package-proof-card em,
.process-map-steps p {
  color: var(--muted);
  font-style: normal;
}
.web-screen {
  position: relative;
  z-index: 3;
  border: 1px solid rgba(201,168,76,.28);
  background: linear-gradient(135deg, rgba(201,168,76,.1), rgba(7,7,7,.88));
  padding: clamp(24px, 4vw, 46px);
  min-height: 360px;
  box-shadow: 0 28px 90px rgba(0,0,0,.55);
}
.screen-top { display:flex; gap:8px; margin-bottom:40px; }
.screen-top span { width:10px; height:10px; border-radius:50%; background:rgba(201,168,76,.55); }
.web-screen h3 {
  font-family: var(--display);
  font-size: clamp(44px, 8vw, 92px);
  line-height: .88;
  letter-spacing: .04em;
  color: var(--white);
}
.screen-cta {
  display:inline-block;
  margin-top: 22px;
  padding: 12px 18px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 700;
}
.merch-proof-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.merch-proof-intro {
  grid-column: span 2;
  border: 1px solid rgba(201,168,76,.22);
  background: rgba(7,7,7,.68);
  padding: clamp(22px, 3vw, 36px);
}
.merch-proof-card {
  min-height: 230px;
  border: 1px solid rgba(201,168,76,.25);
  background:
    radial-gradient(circle at 50% 30%, rgba(201,168,76,.16), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(7,7,7,.86));
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.merch-proof-card span {
  color: var(--gold);
  font-family: var(--mono);
  letter-spacing: .2em;
  font-size: 11px;
  margin-bottom: auto;
}
.merch-proof-card.tee::before,
.merch-proof-card.hoodie::before,
.merch-proof-card.tote::before,
.merch-proof-card.hat::before {
  content: "";
  display: block;
  height: 86px;
  margin-bottom: 16px;
  border: 1px solid rgba(201,168,76,.16);
  background: rgba(0,0,0,.26);
}
.process-map { position:relative; z-index:3; }
.process-map-head { max-width: 650px; margin-bottom: 26px; }
.process-map-steps {
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.process-map-steps span,
.package-proof-card span {
  display: block;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  margin-bottom: 14px;
}
.package-proof-grid {
  position:relative;
  z-index:3;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.package-proof-card.featured {
  background: linear-gradient(180deg, rgba(201,168,76,.18), rgba(7,7,7,.7));
  border-color: rgba(201,168,76,.5);
  transform: translateY(-14px);
}
.package-proof-card em { display:block; margin-top: 18px; color: var(--gold); font-family: var(--mono); text-transform:uppercase; letter-spacing:.1em; font-size:11px; }
.contact-visual-card { max-width: 780px; margin: 0 auto; text-align: center; }
.contact-proof-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-top:28px; }
.indika-proof-layout { grid-template-columns: 360px 1fr; }
.indika-proof-layout img { aspect-ratio: 1 / 1; object-fit: cover; }
@media (max-width: 900px) {
  .showcase-split,
  .ecosystem-wrap,
  .web-proof-layout,
  .indika-proof-layout { grid-template-columns: 1fr; }
  .merch-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .merch-proof-intro { grid-column: 1 / -1; }
  .process-map-steps,
  .package-proof-grid { grid-template-columns: 1fr; }
  .package-proof-card.featured { transform: none; }
}
@media (max-width: 560px) {
  .premium-page-visual-compact .premium-page-visual { padding: 18px; }
  .proof-mini-grid,
  .merch-proof-grid { grid-template-columns: 1fr; }
  .showcase-copy,
  .web-proof-copy,
  .contact-visual-card { padding: 20px; }
  .web-screen { min-height: 280px; }
  .merch-proof-card { min-height: 190px; }
}

/* -------- Proof Framework Labels (ATTENTION / TRUST / BELONGING / MOMENTUM) -------- */
.proof-framework-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
  margin-bottom: 6px;
}
