:root {
  --ost-orange: #e94413;
  --ost-ink: #0a0a0a;
  --ost-muted: #5d6068;
  --ost-cream: #faf7f2;
  --ost-warm: #f6efe6;
  --ost-surface: #ffffff;
  --ost-line: #ece5dd;
  --ost-dark-top: #14110d;
  --ost-dark-bottom: #1a1612;
  --ost-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(250, 247, 242, 0) 34%),
    repeating-linear-gradient(
      135deg,
      rgba(20, 17, 13, 0.028) 0,
      rgba(20, 17, 13, 0.028) 1px,
      transparent 1px,
      transparent 18px
    ),
    var(--ost-cream);
  color: var(--ost-ink);
  font-family:
    Inter,
    Manrope,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-feature-settings: "ss01", "cv11";
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  display: flex;
  flex-direction: column;
  width: min(100%, 1320px);
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: 30px clamp(20px, 4vw, 64px) 24px;
}

.brand-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.brand-logo {
  width: 300px;
  height: auto;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 54px;
  flex: 1;
  padding: 58px 0 42px;
}

.hero-copy,
.status-panel,
.site-footer {
  animation: enter 700ms var(--ost-ease) both;
}

.status-panel {
  animation-delay: 120ms;
}

.site-footer {
  animation-delay: 220ms;
}

.eyebrow,
.status-panel__top {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0 0 20px;
  border: 1px solid rgba(233, 68, 19, 0.24);
  border-radius: 999px;
  background: rgba(233, 68, 19, 0.06);
  color: var(--ost-orange);
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before,
.signal {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ost-orange);
  content: "";
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: 84px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

.headline-line {
  display: block;
}

.marker {
  position: relative;
  display: inline-block;
}

.marker::after {
  position: absolute;
  right: -0.04em;
  bottom: -0.1em;
  left: -0.04em;
  height: 0.08em;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0, var(--ost-orange) 7%, var(--ost-orange) 93%, transparent 100%);
  pointer-events: none;
  transform: rotate(-1.4deg);
  transform-origin: left center;
}

.lede {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--ost-muted);
  font-size: 18px;
  line-height: 1.62;
  text-wrap: pretty;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 14px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-wrap: balance;
  transition:
    transform 220ms var(--ost-ease),
    box-shadow 220ms var(--ost-ease),
    background-color 220ms var(--ost-ease),
    color 220ms var(--ost-ease);
}

.button:focus-visible,
.contact-list a:focus-visible {
  outline: 3px solid rgba(233, 68, 19, 0.32);
  outline-offset: 4px;
}

.button-primary {
  border: 1px solid var(--ost-orange);
  background: var(--ost-orange);
  box-shadow: 0 12px 28px rgba(233, 68, 19, 0.28);
  color: #ffffff;
}

.button-secondary {
  border: 1px solid var(--ost-line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ost-ink);
}

.button:hover {
  transform: translateY(-2px);
}

.status-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(155deg, var(--ost-dark-top), var(--ost-dark-bottom));
  box-shadow: 0 28px 70px rgba(20, 14, 8, 0.25);
  color: #f3ece1;
  padding: 30px;
}

.status-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(120deg, transparent 0, rgba(255, 255, 255, 0.08) 44%, transparent 54%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.045) 0,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px,
      transparent 44px
    );
  opacity: 0.5;
  pointer-events: none;
}

.status-panel > * {
  position: relative;
}

.status-panel__top {
  border-color: rgba(233, 68, 19, 0.42);
  background: rgba(233, 68, 19, 0.14);
  color: #ffffff;
}

.status-panel h2 {
  margin: 8px 0 24px;
  font-size: 32px;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

.status-beam {
  position: relative;
  height: 12px;
  margin: 2px 0 26px;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.12),
    rgba(233, 68, 19, 0.22),
    rgba(255, 255, 255, 0.12)
  );
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 10px 24px rgba(233, 68, 19, 0.14);
}

.status-beam span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -56%;
  width: 56%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent 0, rgba(233, 68, 19, 0.72) 34%, #ffffff 72%, transparent 100%);
  animation: rail-sweep 2.4s var(--ost-ease) infinite;
}

.contact-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-list div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-list dt {
  color: rgba(243, 236, 225, 0.62);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-list dd {
  min-width: 0;
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 750;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.contact-list a {
  text-decoration-color: rgba(233, 68, 19, 0.7);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 20px;
  padding-top: 20px;
  color: rgba(10, 10, 10, 0.58);
  font-size: 13px;
  font-weight: 700;
  text-wrap: balance;
}

@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rail-sweep {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(390%);
  }
}

@media (max-width: 980px) {
  .site-shell {
    padding-top: 24px;
  }

  .brand-logo {
    width: 250px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
    padding: 44px 0 32px;
  }

  h1 {
    font-size: 64px;
  }
}

@media (max-width: 680px) {
  .brand-logo {
    width: 216px;
  }

  .hero-layout {
    padding-top: 36px;
  }

  .eyebrow,
  .status-panel__top {
    font-size: 12px;
  }

  h1 {
    font-size: 44px;
    line-height: 1.03;
  }

  .lede {
    font-size: 16px;
  }

  .actions,
  .button {
    width: 100%;
  }

  .status-panel {
    border-radius: 22px;
    padding: 24px;
  }

  .status-panel h2 {
    font-size: 26px;
  }

  .contact-list div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

}

@media (max-width: 420px) {
  .site-shell {
    padding-right: 16px;
    padding-left: 16px;
  }

  h1 {
    font-size: 38px;
  }

  .button {
    padding-right: 14px;
    padding-left: 14px;
  }
}

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