:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --soft: #64748b;
  --line: #e5e7eb;
  --line-soft: #f1f5f9;
  --brand: #b45309;
  --brand-dark: #78350f;
  --panel: rgba(255, 255, 255, 0.86);
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

a:focus-visible {
  outline: 3px solid #92400e;
  outline-offset: 4px;
  border-radius: 8px;
}

[hidden] {
  display: none !important;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dot-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(15, 23, 42, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.72) 48%, transparent 100%);
}

.site-header {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 24px clamp(20px, 5vw, 64px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  transition: opacity 180ms ease, color 180ms ease;
}

.brand-mark:hover {
  color: var(--brand-dark);
}

.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.site-main {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  flex: 1;
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 84px 20px 140px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  color: var(--brand);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: clamp(68px, 14vw, 144px);
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.92;
  text-shadow: 0 24px 70px rgba(180, 83, 9, 0.2);
}

.hero-headline {
  max-width: 620px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.75;
}

.hero-watermark {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 1;
  width: max-content;
  color: rgba(15, 23, 42, 0.025);
  font-size: clamp(140px, 24vw, 310px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.8;
  white-space: nowrap;
  user-select: none;
}

.company-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--panel);
  backdrop-filter: blur(18px);
}

.company-strip-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px 0;
}

.company-primary {
  min-width: 220px;
}

.company-label,
.company-detail dt {
  color: var(--soft);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.8;
  white-space: nowrap;
}

.company-value,
.company-detail dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.company-value {
  display: block;
  color: var(--text);
  font-weight: 650;
}

.company-details {
  margin: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 10px;
  max-width: 620px;
}

.company-detail {
  display: contents;
}

.site-footer {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.92);
}

.footer-inner {
  width: min(1120px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.8;
}

.footer-brand,
.filing-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  min-width: 0;
}

.footer-logo {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  opacity: 0.68;
}

.filing-links a {
  color: var(--soft);
  transition: color 180ms ease;
  overflow-wrap: anywhere;
}

.filing-links a:hover {
  color: var(--muted);
}

@media (max-width: 760px) {
  .site-header {
    padding: 18px 20px;
  }

  .hero {
    min-height: 560px;
    padding: 72px 20px 104px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .company-strip-inner,
  .footer-inner {
    width: min(100% - 32px, 1120px);
  }

  .company-strip-inner {
    flex-direction: column;
    gap: 14px;
    padding: 20px 0;
  }

  .company-details {
    grid-template-columns: auto minmax(0, 1fr);
    max-width: 100%;
  }

  .footer-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
