:root {
  --bg: #000000;
  --surface: #0d0f10;
  --surface-raised: #131516;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(197, 150, 114, 0.48);
  --text: #f7f5f1;
  --text-soft: #b7b8b5;
  --text-dim: #7d8285;
  --accent: #ff632e;
  --copper: #c59672;
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: #000;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

svg,
img {
  display: block;
}

.shell {
  width: min(calc(100% - 40px), 1180px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  border-radius: 9px;
  background: var(--accent);
  font-weight: 800;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button):focus-visible {
  outline: 3px solid #ff8154;
  outline-offset: 3px;
}

.content-header {
  position: relative;
  z-index: 20;
  inset: auto;
  background: rgba(0, 0, 0, 0.96);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: max(9px, env(safe-area-inset-top)) 9px;
}

.content-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 99, 46, 0.44);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 99, 46, 0.16), rgba(255, 99, 46, 0.03));
}

.brand-mark svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.brand-copy small {
  overflow: hidden;
  color: var(--copper);
  letter-spacing: 0.13em;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 8px;
  font-weight: 850;
}

.brand-copy strong {
  overflow: hidden;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12px;
  font-weight: 850;
}

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

.header-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  color: #fff;
  border: 1px solid rgba(255, 99, 46, 0.48);
  border-radius: 999px;
  background: #111315;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 780;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.header-link:hover {
  border-color: rgba(255, 129, 84, 0.82);
  background: linear-gradient(145deg, rgba(255, 99, 46, 0.12), #171a1d);
  transform: translateY(-1px);
}

.header-link svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.content-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 10vw, 132px) 0 clamp(66px, 8vw, 102px);
}

.content-hero::before { display: none; content: none; }

.hero-layout {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  color: var(--copper);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 850;
}

.hero-copy h1 {
  max-width: 850px;
  margin: 18px 0 22px;
  letter-spacing: -0.055em;
  text-wrap: balance;
  font-size: clamp(50px, 7vw, 86px);
  line-height: 0.98;
}

.hero-copy p {
  max-width: 650px;
  margin: 0;
  color: var(--text-soft);
  text-wrap: pretty;
  font-size: 17px;
  line-height: 1.72;
}

.content-section {
  padding: clamp(70px, 9vw, 112px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: clamp(36px, 6vw, 84px);
  margin-bottom: 44px;
}

.section-heading h2 {
  max-width: 700px;
  margin: 13px 0 0;
  letter-spacing: -0.045em;
  text-wrap: balance;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
}

.section-heading > p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.72;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 46%), var(--surface);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38), inset 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.content-card:hover {
  border-color: rgba(255, 99, 46, 0.48);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(255, 99, 46, 0.05);
  transform: translateY(-3px);
}

.content-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: #08090a;
}

.content-card h3 {
  display: flex;
  min-height: 76px;
  align-items: center;
  margin: 0;
  padding: 18px 20px;
  color: var(--text);
  text-wrap: balance;
  font-size: 17px;
  font-weight: 760;
  line-height: 1.35;
}

.content-footer {
  background: #000;
  border-top: 0 !important;
  box-shadow: none !important;
}

.footer-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--text-dim);
  font-size: 12px;
}

.footer-inner strong {
  color: var(--text);
  letter-spacing: 0.11em;
  font-size: 11px;
}

@media (max-width: 900px) {
  .section-heading {
    grid-template-columns: 1fr;
  }

  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 28px), 1180px);
  }

  .header-inner {
    min-height: 66px;
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .brand-mark svg {
    width: 27px;
    height: 27px;
  }

  .brand-copy small {
    max-width: 145px;
    font-size: 6.5px;
  }

  .brand-copy strong {
    max-width: 145px;
    font-size: 9px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-link {
    width: 38px;
    min-height: 38px;
    padding: 0;
  }

  .header-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .content-hero {
    padding: 62px 0 58px;
  }

  .hero-copy h1 {
    margin-block: 15px 18px;
    font-size: clamp(43px, 13vw, 59px);
  }

  .hero-copy p,
  .section-heading > p {
    font-size: 14px;
  }

  .content-section {
    padding: 58px 0 68px;
  }

  .section-heading {
    gap: 20px;
    margin-bottom: 30px;
  }

  .section-heading h2 {
    font-size: clamp(34px, 10.8vw, 47px);
  }

  .content-grid {
    gap: 10px;
  }

  .content-card {
    border-radius: 12px;
  }

  .content-card h3 {
    min-height: 66px;
    padding: 13px 12px;
    font-size: 13px;
    line-height: 1.32;
  }

  .footer-inner {
    min-height: 70px;
  }
}

@media (max-width: 360px) {
  .brand-copy {
    display: none;
  }

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

  .content-card h3 {
    min-height: 62px;
    padding: 16px;
    font-size: 15px;
  }
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .content-card,
  .header-link {
    transition: none;
  }

  .content-card:hover,
  .header-link:hover {
    transform: none;
  }
}


body, main, .content-hero, .content-section, .content-footer { background-color: #000 !important; background-image: none !important; }
body,body :not(input):not(textarea):not(select):not(option):not([contenteditable=true]),html{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important;-webkit-touch-callout:none!important}body :not(input):not(textarea):not(select):not(option):not([contenteditable=true])::selection,body::selection{color:inherit;background:0 0}[contenteditable=true],input,option,select,textarea{-webkit-user-select:text!important;-moz-user-select:text!important;user-select:text!important}canvas,img,svg,video{-webkit-user-drag:none}
html,body,img,picture,video,canvas{touch-action: pan-x pan-y;}html.journal-page,html.journal-page body{touch-action: pan-y;}
