:root {
  --bg-left: #262c32;
  --bg-right: #262c32;
  --text-main: #f1f1f1;
  --text-muted: #c8ced5;
  --text-soft: #adb4bb;
  --button: #55d8f4;
  --button-hover: #38c4e2;
  --focus: #8ce7ff;
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-main);
  background: var(--bg-left);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  color: #000;
  background: var(--focus);
}

.page-shell {
  width: min(100% - 3rem, var(--max-width));
  margin: 0 auto;
  padding: 1.75rem 0 2rem;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3.9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

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

.contact-icons {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.contact-icons a {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 0 0 auto;
  line-height: 0;
  border-radius: 0.5rem;
}

.contact-icons img {
  display: block;
  height: 25px;
  width: 25px;
  min-width: 25px;
  min-height: 25px;
  object-fit: contain;
  vertical-align: top;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.90fr;
  gap: 1.2rem;
  align-items: center;
}

.eyebrow {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1 {
  margin: 1.15rem 0 1.4rem;
  max-width: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.7vw, 2.8rem);
  font-weight: 600;
  line-height: 1.03;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.lead {
  max-width: 72ch;
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-size: 0.93rem;
}

.cta {
  display: inline-block;
  padding: 0.62rem 1rem;
  border-radius: 0.35rem;
  background: var(--button);
  color: #0c1116;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
}

.cta:hover,
.cta:focus-visible {
  background: var(--button-hover);
}

.sub-note {
  margin: 0.8rem 0 0;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.hero-visual {
  justify-self: end;
  width: min(100%, 660px);
}

.matrix-img {
  width: 100%;
  max-width: 660px;
  opacity: 0.98;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .hero-visual {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 1.5rem, var(--max-width));
    padding-top: 1rem;
  }

  .top-bar {
    margin-bottom: 2rem;
  }

  .hero-visual {
    display: flex;
    justify-content: flex-start;
    justify-self: center;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .matrix-img {
    display: block;
    width: min(92vw, 560px);
    max-width: 92vw;
    margin: 0;
  }

  h1 {
    font-size: clamp(1.8rem, 7.5vw, 2.35rem);
  }

  .hero-title-line {
    white-space: normal;
  }

  .lead,
  .sub-note {
    font-size: 0.97rem;
  }

  .cta {
    font-size: 1rem;
  }
}
