:root {
  --radius: 0px;
  --radius-small: 0px;
  --glow: rgba(255, 90, 0, .2);
}

body {
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 90, 0, .055), transparent 28rem),
    #070707;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .13;
  background-image: linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: min(8vw, 112px) 100%;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 82%);
}

/* Header: typography first, not a floating pill bar. */
.site-header {
  background: rgba(7, 7, 7, .84);
  border-bottom: 1px solid rgba(255,255,255,.1);
  box-shadow: none;
}
.header-inner { min-height: 82px; }
.nav { gap: clamp(.7rem, 1.8vw, 1.5rem); }
.nav a {
  position: relative;
  border: 0;
  border-radius: 0;
  padding: .45rem .05rem;
  color: #c6c6c1;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: .08rem;
  height: 2px;
  background: var(--orange);
  transition: right .2s ease;
}
.nav a:hover,
.nav a[aria-current="page"] {
  background: transparent;
  color: var(--white);
  transform: none;
}
.nav a:hover::after,
.nav a[aria-current="page"]::after { right: 0; }
.menu-toggle { border-radius: 0; }

/* Buttons keep an automotive / fabricated feel rather than app-style pills. */
.button {
  position: relative;
  border-radius: 0;
  padding-inline: 1.35rem 1.65rem;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { box-shadow: none; }
.button.primary:hover { box-shadow: none; }
.button.secondary,
.button.ghost { background: rgba(255,255,255,.015); }

/* Hero: asymmetrical editorial composition, no enclosing panel. */
.hero {
  min-height: max(780px, calc(100svh - 82px));
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7,7,7,.98) 0%, rgba(7,7,7,.95) 48%, rgba(7,7,7,.46) 72%, rgba(7,7,7,.86) 100%),
    radial-gradient(circle at 79% 34%, rgba(255,90,0,.3), transparent 17rem),
    linear-gradient(145deg, #111 0%, #070707 72%);
}
.hero::before {
  inset: 11% -18% auto 62%;
  height: 74%;
  border: 1px solid rgba(255,90,0,.32);
  border-radius: 50%;
  transform: rotate(-18deg) skewX(-8deg);
  box-shadow:
    0 0 0 52px rgba(255,90,0,.018),
    0 0 0 132px rgba(255,90,0,.008);
}
.hero::after {
  width: 52vw;
  min-width: 620px;
  height: 25%;
  right: -9vw;
  bottom: 9%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,90,0,.34) 74%, rgba(255,90,0,.12));
  clip-path: polygon(0 76%, 18% 38%, 50% 15%, 100% 0, 91% 47%, 58% 66%, 22% 100%);
  filter: none;
  opacity: .75;
}
.hero-content {
  width: min(calc(100% - 2rem), 1380px);
  max-width: none;
  padding-block: clamp(7rem, 11vw, 10rem) clamp(6rem, 9vw, 8.5rem);
}
.hero .eyebrow { margin-left: .12rem; }
.hero-brand {
  width: min(700px, 74vw);
  margin: 1.6rem 0 2.1rem;
}
.hero-brand-logo {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 24px 45px rgba(0,0,0,.46));
}
.hero h1 {
  max-width: 850px;
  margin: 0 0 1.6rem;
  font-size: clamp(4.2rem, 8.4vw, 8.4rem);
  line-height: .88;
  letter-spacing: -.028em;
}
.hero-copy {
  max-width: 750px;
  margin-left: clamp(0rem, 7vw, 7rem);
  padding-left: 1.4rem;
  border-left: 2px solid var(--orange);
  font-size: clamp(1rem, 1.55vw, 1.24rem);
  line-height: 1.72;
}
.hero .actions,
.hero-meta { margin-left: clamp(0rem, 7vw, 7rem); }
.hero-meta {
  width: auto;
  margin-top: 2rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #8f8f8a;
  font-size: .68rem;
  letter-spacing: .16em;
}
.hero-meta::before {
  width: 1.8rem;
  height: 2px;
  border-radius: 0;
  box-shadow: none;
}

/* Moving motto remains the one intentionally loud interruption. */
.motto-band {
  position: relative;
  z-index: 4;
  width: 104vw;
  margin-left: -2vw;
  margin-block: -1.25rem 0;
  border: 0;
  background: var(--orange);
  color: #080808;
  transform: rotate(-1deg);
  box-shadow: 0 16px 48px rgba(255,90,0,.13);
}
.motto-track {
  gap: 2.4rem;
  padding-block: .95rem 1.05rem;
  animation-duration: 19s;
}
.motto-track span {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  letter-spacing: .08em;
}
.motto-track i { opacity: .42; }

/* Stats become a typographic rule, not a giant rounded container. */
.feature-band {
  padding: clamp(4.2rem, 7vw, 6.5rem) 0 clamp(2rem, 4vw, 3rem);
  background: transparent;
  color: var(--white);
}
.feature-band .shell {
  width: min(calc(100% - 2rem), 1160px);
  grid-template-columns: repeat(3, 1fr);
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
.stat {
  position: relative;
  padding: 1.6rem clamp(1rem, 3vw, 2.4rem) 1.4rem;
  border-top: 1px solid rgba(255,255,255,.2);
  border-right: 0;
  text-align: left;
}
.stat::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 3.5rem;
  height: 3px;
  background: var(--orange);
}
.stat + .stat { margin-left: 1.4rem; }
.stat strong {
  color: var(--white);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  letter-spacing: .015em;
}
.stat span {
  display: block;
  margin-top: .3rem;
  color: #8d8d88;
  font-size: .64rem;
  letter-spacing: .16em;
}

/* Sections are open canvases with rhythm and alignment lines. */
.section {
  position: relative;
  overflow: clip;
  padding-block: clamp(6rem, 10vw, 10rem);
  border-top: 0 !important;
}
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(1rem, calc((100vw - var(--max)) / 2));
  width: min(22rem, 38vw);
  height: 1px;
  transform: none;
  background: linear-gradient(90deg, var(--orange), rgba(255,255,255,.13) 18%, transparent);
}
.section.alt {
  background:
    linear-gradient(116deg, rgba(255,255,255,.018) 0 1px, transparent 1px) 0 0 / 104px 104px,
    #0b0b0b;
}
.manifesto-section {
  min-height: 70vh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 8% 32%, rgba(255,90,0,.07), transparent 25rem),
    #080808;
}
.manifesto-section::after {
  content: "BLACKLINE";
  position: absolute;
  right: -3vw;
  bottom: -1.2rem;
  color: rgba(255,255,255,.018);
  font: 900 clamp(7rem, 19vw, 18rem)/.8 Impact, "Arial Narrow", sans-serif;
  letter-spacing: -.025em;
  white-space: nowrap;
  pointer-events: none;
}
.manifesto-grid {
  align-items: center;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
}
.display-heading,
.section-head h2 {
  line-height: .96;
  letter-spacing: -.015em;
}
.section-head {
  grid-template-columns: 1.05fr .65fr;
  gap: clamp(2.5rem, 8vw, 8rem);
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
  align-items: end;
}
.section-head p {
  padding-left: 1.1rem;
  border-left: 1px solid rgba(255,255,255,.18);
}

/* Principles: strong editorial rows. */
.principles-flow {
  display: grid;
  gap: 0;
  margin-top: 1rem;
}
.principle {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px,.28fr) minmax(220px,.72fr) minmax(260px,1fr);
  gap: clamp(1.2rem, 4vw, 4.5rem);
  align-items: baseline;
  padding: clamp(2rem, 3.6vw, 3rem) 0;
  border-top: 1px solid rgba(255,255,255,.15);
  transition: padding-left .25s ease, border-color .25s ease;
}
.principle:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.principle::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, rgba(255,90,0,.09), transparent);
  transition: width .25s ease;
  pointer-events: none;
}
.principle:hover { padding-left: 1rem; border-color: rgba(255,90,0,.46); }
.principle:hover::before { width: 38%; }
.principle > * { position: relative; z-index: 1; }
.principle .number {
  color: var(--orange);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .15em;
}
.principle h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -.025em;
}
.principle p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Generic cards on the rest of the site are no longer rounded UI tiles. */
.cards,
.grid-2,
.grid-3 { gap: clamp(1.5rem, 3vw, 3rem); }
.card {
  min-height: 250px;
  padding: 1.6rem 0 1.8rem;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 3.4rem;
  height: 2px;
  background: var(--orange);
}
.card::after { display: none; }
.card:nth-child(even) { border-radius: 0; }
.card h3 { margin-top: 4rem; }

/* Event feature: one strong graphic plane, deliberately allowed to bleed. */
.split {
  grid-template-columns: minmax(0, .78fr) minmax(360px, 1.22fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}
.split .prose {
  position: relative;
  z-index: 2;
  padding-block: 2rem;
}
.split .prose h3 {
  margin-top: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: .95;
  text-transform: uppercase;
}
.media-card,
.placeholder {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.media-card {
  min-height: 410px;
  background:
    radial-gradient(circle at 73% 28%, rgba(255,90,0,.38), transparent 23%),
    linear-gradient(135deg, #202020, #0b0b0b 64%);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  transition: transform .35s ease;
}
.media-card::before {
  content: "BLACKLINE";
  position: absolute;
  right: -1rem;
  top: 8%;
  color: rgba(255,255,255,.045);
  font: 900 clamp(4rem, 9vw, 8rem)/.8 Impact, "Arial Narrow", sans-serif;
  letter-spacing: -.03em;
  transform: rotate(90deg) translateX(74%);
  transform-origin: right top;
  white-space: nowrap;
}
.media-card::after {
  inset: auto -8% 12% 16%;
  height: 32%;
  border: 1px solid rgba(255,90,0,.5);
  border-radius: 0;
  transform: skewX(-20deg);
}
.media-card:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: none;
}
.media-card .media-label {
  inset: auto 2rem 1.6rem 2rem;
  color: #d8d8d3;
  font-weight: 800;
  letter-spacing: .12em;
}

/* Gallery / Journal links read like magazine covers, not app cards. */
.grid-2 .editorial-card {
  min-height: clamp(360px, 42vw, 540px);
  clip-path: none;
  border-top: 1px solid rgba(255,255,255,.19);
  background: transparent;
  overflow: hidden;
}
.grid-2 .editorial-card::before {
  content: "01";
  position: absolute;
  top: 1.5rem;
  right: 0;
  color: rgba(255,255,255,.07);
  font: 900 clamp(6rem, 13vw, 11rem)/.8 Impact, "Arial Narrow", sans-serif;
  transform: none;
}
.grid-2 .editorial-card:nth-child(2)::before { content: "02"; }
.grid-2 .editorial-card::after {
  inset: auto 0 0 0;
  height: 46%;
  border: 0;
  background: linear-gradient(0deg, rgba(255,90,0,.13), transparent);
  transform: none;
}
.grid-2 .editorial-card .media-label {
  left: 0;
  right: auto;
  bottom: 1.5rem;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
}

/* Secondary page heroes stay bold, but lose the decorative rounded-loop aesthetic. */
.page-hero {
  position: relative;
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(90deg, #0a0a0a 0%, #0a0a0a 56%, rgba(10,10,10,.72)),
    radial-gradient(circle at 82% 18%, rgba(255,90,0,.2), transparent 24rem),
    #0a0a0a;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 52vw;
  min-width: 480px;
  height: 22rem;
  right: -10vw;
  bottom: -7rem;
  border: 0;
  border-top: 1px solid rgba(255,90,0,.35);
  border-bottom: 1px solid rgba(255,90,0,.14);
  border-radius: 0;
  transform: skewY(-8deg);
}
.page-hero h1 { line-height: .92; letter-spacing: -.018em; }

.notice,
.quote,
.metric {
  border-radius: 0;
  background: rgba(255,255,255,.018);
}
.notice { border-left: 2px solid var(--orange); border-top: 0; }

/* Final brand statement acts like a poster, not another section card. */
.brand-future {
  min-height: 78vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(98deg, rgba(7,7,7,.96) 0%, rgba(7,7,7,.88) 55%, rgba(255,90,0,.05)),
    #070707;
}
.brand-future::after {
  content: "//";
  position: absolute;
  right: 3vw;
  bottom: 1vw;
  color: rgba(255,90,0,.12);
  font: 900 clamp(12rem, 30vw, 30rem)/.7 Impact, "Arial Narrow", sans-serif;
  pointer-events: none;
}
.future-kicker {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--orange);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(4.2rem, 11vw, 10rem);
  font-weight: 900;
  line-height: .76;
  letter-spacing: -.035em;
  text-transform: uppercase;
  opacity: .96;
}
.brand-future .manifesto-copy {
  padding-top: 5rem;
  border-top: 1px solid rgba(255,255,255,.14);
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,.1);
  background: #050505;
}
.footer-grid { padding-top: 1rem; }

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-content { padding-top: 7rem; }
  .hero h1 { line-height: .9; }
  .hero-copy,
  .hero .actions,
  .hero-meta { margin-left: 0; }
  .feature-band .shell { grid-template-columns: 1fr; }
  .stat + .stat { margin-left: 0; }
  .stat { padding-inline: 0; }
  .manifesto-grid,
  .section-head,
  .split { grid-template-columns: 1fr; }
  .manifesto-grid { align-items: start; }
  .section-head p { max-width: 760px; }
  .principle { grid-template-columns: 90px 1fr; }
  .principle p { grid-column: 2; }
  .split { gap: 2rem; }
  .media-card { min-height: 360px; }
  .brand-future .manifesto-copy { padding-top: 2rem; }
  .motto-band { transform: rotate(-.5deg); }
}

@media (max-width: 620px) {
  body::before { background-size: 72px 100%; }
  .hero-brand { width: min(94vw, 620px); margin-bottom: 1.5rem; }
  .hero h1 {
    font-size: clamp(3.3rem, 17vw, 5.4rem);
    line-height: .88;
  }
  .hero-copy { padding-left: 1rem; }
  .feature-band { padding-top: 3.6rem; }
  .principle { grid-template-columns: 1fr; gap: .7rem; }
  .principle p { grid-column: 1; }
  .principle:hover { padding-left: 0; }
  .grid-2,
  .grid-3,
  .cards { grid-template-columns: 1fr; }
  .media-card { min-height: 310px; clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%); }
  .grid-2 .editorial-card { min-height: 300px; }
  .future-kicker { font-size: clamp(3.8rem, 20vw, 6.2rem); }
}

@media (prefers-reduced-motion: reduce) {
  .motto-track { animation: none !important; }
  .button:hover,
  .media-card:hover,
  .nav a:hover { transform: none; }
  .principle:hover { padding-left: 0; }
}
