:root {
  --orange: #f47a00;
  --orange-light: #ff9d2e;
  --charcoal: #202124;
  --charcoal-2: #2b2d31;
  --cream: #fff8ed;
  --white: #ffffff;
  --ink: #151515;
  --muted: #c9c9c9;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% -5%, rgba(244, 122, 0, 0.26), transparent 34rem),
    radial-gradient(circle at 100% 28%, rgba(244, 122, 0, 0.15), transparent 30rem),
    linear-gradient(145deg, #18191b 0%, #26282c 58%, #151617 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

a { color: inherit; }

.page-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 660px;
  padding: 68px 0 50px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(30px, 6vw, 84px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--orange-light);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  max-width: 720px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: .91;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

h1 span { color: var(--orange); }

.intro {
  max-width: 650px;
  color: #eeeeee;
  font-size: clamp(1.06rem, 2vw, 1.3rem);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(244, 122, 0, .42);
  border-radius: 999px;
  color: #ffe6c7;
  background: rgba(244, 122, 0, .1);
  font-size: .9rem;
  font-weight: 800;
}

.status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(244, 122, 0, .16);
}

.logo-wrap {
  position: relative;
  width: min(100%, 520px);
  justify-self: end;
}

.logo-wrap::before {
  content: "";
  position: absolute;
  inset: 8% -7% -10% 13%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(244, 122, 0, .27);
  filter: blur(55px);
}

.logo-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.panel {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.about {
  padding: clamp(28px, 5vw, 58px);
}

.about h2,
.section-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.about h2 em {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.about p {
  max-width: 900px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: #e6e6e6;
}

.about .email-copy {
  margin-bottom: 0;
  font-weight: 800;
}

.email-copy a {
  color: var(--orange-light);
  text-underline-offset: 4px;
}

.links-section { padding: 100px 0 80px; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .58fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading h2 { margin-bottom: 0; }

.section-heading > p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.link-card {
  min-height: 102px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,.07);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(244,122,0,.85);
  background: rgba(255,255,255,.11);
  outline: none;
}

.link-card.featured {
  background: linear-gradient(135deg, rgba(244,122,0,.18), rgba(255,255,255,.075));
  border-color: rgba(244,122,0,.35);
}

.link-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 16px;
}

.link-card span { min-width: 0; }

.link-card strong,
.link-card small {
  display: block;
}

.link-card strong {
  font-size: 1.15rem;
  line-height: 1.25;
}

.link-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .9rem;
}

.link-card b {
  color: var(--orange-light);
  font-size: 1.5rem;
  font-weight: 500;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 0 44px;
  border-top: 1px solid var(--border);
  color: #dadada;
}

footer p { margin: 0; }
.fine-print { max-width: 440px; color: #9f9f9f; text-align: right; }



.site-credit {
  padding: 0 0 28px;
  color: #9f9f9f;
  font-size: .78rem;
  text-align: center;
}

.site-credit a {
  color: #d7d7d7;
  text-decoration: underline;
  text-decoration-color: rgba(244, 122, 0, .7);
  text-underline-offset: 3px;
  transition: color .18s ease, text-decoration-color .18s ease;
}

.site-credit a:hover,
.site-credit a:focus-visible {
  color: var(--orange-light);
  text-decoration-color: var(--orange-light);
  outline: none;
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding-top: 42px;
    grid-template-columns: 1fr;
  }

  .hero-copy { order: 2; }
  .logo-wrap { order: 1; justify-self: center; width: min(78vw, 460px); }
  .logo-wrap img { transform: none; }
  h1 { font-size: clamp(3rem, 13vw, 5.8rem); }
  .section-heading { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  .page-shell { width: min(100% - 22px, 1160px); }
  .hero { gap: 34px; padding-bottom: 38px; }
  .about { border-radius: 22px; }
  .links-section { padding: 72px 0 60px; }
  .link-grid { grid-template-columns: 1fr; }
  .link-card { min-height: 90px; grid-template-columns: 56px minmax(0,1fr) auto; }
  .link-card img { width: 56px; height: 56px; border-radius: 14px; }
  footer { display: block; }
  .fine-print { margin-top: 16px; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
