/* © 2026 MediaBoxEnt Digital Studio LLC. All rights reserved. */
/* MediaBoxEnt Technologies — mediaboxent.tech */

:root {
  --bg: #05060d;
  --bg-2: #080a15;
  --panel: #0c0f1f;
  --panel-2: #10142a;
  --line: rgba(160, 175, 255, .11);
  --line-2: rgba(160, 175, 255, .22);
  --text: #eef1fb;
  --muted: #a3abc7;
  --dim: #6f7894;
  --cyan: #1fd5f7;
  --blue: #3b7cff;
  --violet: #a14dff;
  --pink: #e04ce8;
  --grad: linear-gradient(90deg, var(--cyan), var(--blue) 50%, var(--violet));
  --radius: 18px;
  --max: 1180px;
  --display: "Sora", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }

.defs { position: absolute; }  /* no inline style: the CSP forbids it */
.skip { position: absolute; left: -9999px; top: 0; }
.skip:focus { left: 16px; top: 12px; z-index: 100; background: var(--panel-2); padding: 8px 14px; border-radius: 10px; }
.wrap { width: min(var(--max), 100% - 40px); margin-inline: auto; }

/* Header */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5, 6, 13, .74);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.head-in { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 30px; width: auto; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name b { font: 700 17px/1 var(--display); letter-spacing: .01em; }
.brand-name small { font: 600 9px/1 var(--body); letter-spacing: .46em; color: var(--muted); margin-top: 6px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  text-decoration: none; color: var(--muted); font-weight: 500; font-size: 14.5px;
  padding: 8px 12px; border-radius: 10px; transition: color .15s, background .15s;
}
.nav a:hover { color: var(--text); background: rgba(255, 255, 255, .05); }
.nav .gh { display: inline-flex; align-items: center; gap: 8px; color: var(--text); border: 1px solid var(--line-2); margin-left: 6px; }
.gh svg { width: 17px; height: 17px; fill: currentColor; }

/* Hero */
.hero { position: relative; isolation: isolate; padding: 92px 0 84px; }
.bg-grid {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    radial-gradient(40% 50% at 78% 40%, rgba(161, 77, 255, .16), transparent 70%),
    radial-gradient(35% 45% at 12% 20%, rgba(31, 213, 247, .10), transparent 70%),
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: auto, auto, 56px 56px, 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 30%, #000 35%, transparent 80%);
  mask-image: radial-gradient(ellipse 75% 70% at 50% 30%, #000 35%, transparent 80%);
}
.hero-in { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin: 0;
  font: 600 12px/1 var(--body); letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
  padding: 9px 14px; border: 1px solid var(--line-2); border-radius: 999px; background: rgba(255, 255, 255, .02);
}
.eyebrow i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
h1 { font: 800 clamp(38px, 5.4vw, 64px)/1.05 var(--display); letter-spacing: -.025em; margin: 24px 0 20px; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: clamp(17px, 1.5vw, 19px); color: var(--muted); max-width: 35em; margin: 0 0 34px; }
.cta { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px; min-height: 48px; padding: 0 22px;
  border-radius: 12px; font-weight: 600; font-size: 15.5px; text-decoration: none; white-space: nowrap;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px -10px rgba(80, 110, 255, .7); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 36px -10px rgba(140, 90, 255, .85); }
.btn-ghost { border: 1px solid var(--line-2); color: var(--text); background: rgba(255, 255, 255, .02); }
.btn-ghost:hover { background: rgba(255, 255, 255, .06); border-color: rgba(160, 175, 255, .35); }
.hero-art { position: relative; justify-self: center; width: min(440px, 100%); }
.hero-art::before {
  content: ""; position: absolute; inset: 10%; border-radius: 50%; z-index: -1;
  background:
    radial-gradient(circle at 30% 30%, rgba(31, 213, 247, .55), transparent 60%),
    radial-gradient(circle at 70% 72%, rgba(161, 77, 255, .6), transparent 60%);
  filter: blur(56px);
}
.hero-art img { width: 100%; border-radius: 50%; }

/* Sections */
.sec { padding: 96px 0; scroll-margin-top: 68px; }
.sec-alt { background: linear-gradient(180deg, transparent, var(--bg-2) 18%, var(--bg-2) 82%, transparent); }
.sec-head { max-width: 720px; margin-bottom: 44px; }
.kicker { margin: 0; font: 600 12px/1 var(--body); letter-spacing: .3em; text-transform: uppercase; color: var(--cyan); }
h2 { font: 700 clamp(30px, 3.6vw, 44px)/1.1 var(--display); letter-spacing: -.02em; margin: 14px 0; }
.sec-head p:not(.kicker) { color: var(--muted); font-size: 18px; margin: 0; }

/* Products */
.products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card {
  display: flex; flex-direction: column; overflow: hidden;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.card:hover { border-color: var(--line-2); transform: translateY(-3px); box-shadow: 0 24px 50px -30px rgba(90, 110, 255, .5); }
.plate { height: 168px; display: grid; place-items: center; padding: 24px 32px; border-bottom: 1px solid var(--line); }
.plate img { height: 60px; width: auto; max-width: 100%; object-fit: contain; }
.plate-flow { background: radial-gradient(130% 150% at 0% 0%, #0f1d3a, #070a16 62%); }
.plate-artists { background: #000; }
.plate-reach { background: #fff; }
.plate-lox { background: #edf2f5; }
/* Lockups with a tagline or a tall icon read small at the shared height. */
.plate-reach img { height: 76px; }
.plate-lox img { height: 84px; }
.card-body { display: flex; flex-direction: column; gap: 12px; flex: 1; padding: 26px 28px 28px; }
.card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.card h3 { font: 700 22px/1.2 var(--display); margin: 0; }
.chip {
  font: 600 11px/1 var(--body); letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
  padding: 7px 10px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--muted);
}
.chip-cyan { color: var(--cyan); border-color: rgba(31, 213, 247, .38); }
.chip-pink { color: #f08af5; border-color: rgba(224, 76, 232, .4); }
.tagline { margin: 0; font-weight: 600; }
.desc { margin: 0; color: var(--muted); }
.feats { list-style: none; padding: 0; margin: 4px 0 0; display: grid; gap: 9px; }
.feats li { position: relative; padding-left: 26px; color: #cfd5ea; font-size: 15px; }
.feats li::before {
  content: ""; position: absolute; left: 2px; top: .42em; width: 11px; height: 6px;
  border-left: 2px solid var(--cyan); border-bottom: 2px solid var(--cyan); transform: rotate(-45deg);
}
.visit { margin-top: auto; padding-top: 12px; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; text-decoration: none; align-self: flex-start; }
.visit span { transition: transform .15s ease; }
.visit:hover { color: var(--cyan); }
.visit:hover span { transform: translateX(3px); }

.partner {
  margin-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px 28px; flex-wrap: wrap;
  padding: 24px 28px; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(31, 213, 247, .07), rgba(161, 77, 255, .08));
}
.partner h3 { font: 700 18px/1.2 var(--display); margin: 0 0 4px; }
.partner p { margin: 0; color: var(--muted); max-width: 44em; }

/* How we build */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar { padding: 30px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.pillar svg { width: 44px; height: 44px; margin-bottom: 20px; }
.pillar h3 { font: 700 20px/1.2 var(--display); margin: 0 0 6px; }
.pillar .motto { margin: 0 0 14px; font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); }
.pillar p:last-child { margin: 0; color: var(--muted); }

/* Company */
.company { display: grid; grid-template-columns: 1.25fr .75fr; gap: 22px; }
.about { padding: 34px 36px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.about p { margin: 0 0 16px; color: var(--muted); font-size: 17.5px; }
.about .contact { font-size: 16px; }
.about .contact a { color: var(--cyan); text-decoration: none; font-weight: 600; }
.about .contact a:hover { text-decoration: underline; }
.about .legal-note { margin: 0; padding-top: 16px; border-top: 1px solid var(--line); font-size: 14.5px; color: var(--dim); }
.gh-card {
  display: flex; flex-direction: column; justify-content: space-between; gap: 22px;
  padding: 32px; border-radius: var(--radius); border: 1px solid var(--line-2); text-decoration: none;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(161, 77, 255, .2), transparent 55%),
    radial-gradient(120% 120% at 0% 100%, rgba(31, 213, 247, .14), transparent 55%),
    var(--panel);
  transition: border-color .2s ease, transform .2s ease;
}
.gh-card:hover { border-color: rgba(160, 175, 255, .4); transform: translateY(-3px); }
.gh-card > svg { width: 38px; height: 38px; fill: #fff; }
.gh-card h3 { font: 700 21px/1.2 var(--display); margin: 0 0 6px; }
.gh-card p { margin: 0; color: var(--muted); }
.handle { font: 500 13.5px/1.4 ui-monospace, SFMono-Regular, Consolas, monospace; color: var(--cyan); overflow-wrap: anywhere; }

/* Footer */
.site-foot { margin-top: 24px; padding: 56px 0 34px; border-top: 1px solid var(--line); background: var(--bg-2); }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
.foot-brand p { margin: 16px 0 0; color: var(--muted); max-width: 24em; }
.foot-col h4 { margin: 6px 0 14px; font: 600 12px/1 var(--body); letter-spacing: .24em; text-transform: uppercase; color: var(--dim); }
.foot-col a { display: block; width: fit-content; padding: 5px 0; color: var(--muted); text-decoration: none; font-size: 15px; }
.foot-col a:hover { color: var(--text); }
.foot-legal {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 24px;
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--dim); font-size: 13.5px;
}

/* 404 */
.nf { min-height: calc(100vh - 68px); display: grid; place-items: center; text-align: center; padding: 60px 0; position: relative; isolation: isolate; }
.nf .code { font: 800 clamp(72px, 14vw, 140px)/1 var(--display); margin: 0; }
.nf p { color: var(--muted); font-size: 18px; margin: 12px 0 30px; }

/* Responsive */
@media (max-width: 960px) {
  .hero-in { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { order: -1; width: min(280px, 70%); }
  .hero { padding: 48px 0 64px; }
  .products, .pillars, .company { grid-template-columns: 1fr; }
  .sec { padding: 72px 0; }
}
@media (max-width: 720px) {
  .nav .opt { display: none; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .plate { height: 140px; }
  .plate img { height: 50px; }
  .plate-reach img { height: 62px; }
  .plate-lox img { height: 68px; }
  .card-body, .about, .gh-card { padding: 24px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
