:root {
  --bg: #030a13;
  --bg-deep: #01060c;
  --panel: rgba(8, 19, 31, 0.82);
  --blue: #234d76;
  --blue-soft: #3b678f;
  --title: #d8d6cf;
  --binary: #a8c3da;
  --tagline: #c7d1da;
  --muted: #8295a7;
  --border: rgba(168, 195, 218, 0.18);
  --shadow: rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--tagline);
  background:
    radial-gradient(circle at 82% 18%, rgba(35, 77, 118, 0.26), transparent 34rem),
    radial-gradient(circle at 18% 74%, rgba(12, 28, 49, 0.34), transparent 38rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.hero::after {
  content: "01000001 01010010 01010100 01001001 01000110 01001001 01000011 01001001 01000001 01001100";
  position: absolute;
  right: -1rem;
  bottom: 1.5rem;
  max-width: 38rem;
  color: rgba(168, 195, 218, 0.04);
  font-family: "Courier New", monospace;
  font-size: clamp(1rem, 2.2vw, 2rem);
  letter-spacing: 0.34em;
  line-height: 1.6;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 34rem;
  height: 34rem;
  top: 16%;
  right: 3%;
  border-radius: 50%;
  background: rgba(35, 77, 118, 0.18);
  filter: blur(80px);
  pointer-events: none;
}

.hero-inner {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0;
  display: grid;
  grid-template-columns: minmax(300px, 560px) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 84px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.cover-wrap {
  position: relative;
}

.cover-wrap::before {
  content: "";
  position: absolute;
  inset: 8% -3% -2% 10%;
  background: rgba(35, 77, 118, 0.16);
  filter: blur(55px);
  border-radius: 40%;
  z-index: -1;
}

.cover {
  display: block;
  width: min(100%, 560px);
  margin: 0 auto;
  height: auto;
  box-shadow: 0 28px 70px var(--shadow);
}

.hero-copy {
  width: 100%;
  min-width: 0;
  max-width: 620px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--binary);
  text-transform: uppercase;
  letter-spacing: 0.19em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2 {
  color: var(--title);
  margin: 0;
  line-height: 1.06;
}

h1 {
  text-transform: uppercase;
  font-size: clamp(3.5rem, 5.4vw, 5.55rem);
  letter-spacing: -0.055em;
  font-weight: 800;
  white-space: nowrap;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  margin-bottom: 26px;
}

.lead {
  margin: 28px 0 26px;
  color: var(--tagline);
  font-size: clamp(1.1rem, 2.1vw, 1.45rem);
  line-height: 1.6;
}

.lead strong {
  color: var(--title);
}

.quiet-link {
  display: inline-flex;
  padding: 10px 0;
  color: var(--binary);
  text-decoration: none;
  border-bottom: 1px solid rgba(168, 195, 218, 0.42);
  transition: color 160ms ease, border-color 160ms ease;
}

.quiet-link:hover,
.quiet-link:focus-visible {
  color: #ffffff;
  border-color: var(--binary);
}

.about-section {
  padding: 110px 20px;
  border-bottom: 1px solid var(--border);
}

.content-shell {
  width: min(860px, 100%);
  margin: 0 auto;
}

.about-copy {
  color: var(--tagline);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
}

.about-copy p {
  margin: 0 0 24px;
}

.studio-section {
  padding: 100px 20px;
}

.studio-shell {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 86px);
  align-items: center;
}

.studio-logo-link {
  display: block;
  border-radius: 24px;
  transition: transform 180ms ease, filter 180ms ease;
}

.studio-logo-link:hover,
.studio-logo-link:focus-visible {
  transform: translateY(-4px);
  filter: drop-shadow(0 0 22px rgba(168, 195, 218, 0.15));
}

.studio-logo {
  display: block;
  width: 100%;
  max-width: 290px;
  margin: 0 auto;
  height: auto;
}

.studio-copy p:not(.section-label) {
  max-width: 610px;
  color: var(--muted);
  margin: 0 0 28px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-link {
  min-width: 116px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--tagline);
  background: rgba(168, 195, 218, 0.025);
  text-decoration: none;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: #ffffff;
  border-color: rgba(168, 195, 218, 0.42);
  background: rgba(35, 77, 118, 0.15);
  transform: translateY(-2px);
}

.social-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link .fill-icon {
  fill: currentColor;
  stroke: none;
}

footer {
  padding: 28px 20px 34px;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.84rem;
}

footer p {
  margin: 2px 0;
}

.footer-domain {
  color: rgba(168, 195, 218, 0.48);
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

@media (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: minmax(280px, 500px) minmax(0, 1fr);
    gap: 38px;
  }

  h1 {
    font-size: clamp(3.2rem, 5.1vw, 4.8rem);
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: min(680px, calc(100% - 28px));
    padding: 28px 0 70px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .cover {
    width: min(100%, 520px);
  }

  .hero-copy {
    text-align: center;
    margin: 0 auto;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 5.5rem);
    white-space: normal;
  }

  .studio-shell {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .studio-copy p:not(.section-label) {
    margin-left: auto;
    margin-right: auto;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .about-section,
  .studio-section {
    padding: 76px 18px;
  }

  .hero-inner {
    width: calc(100% - 20px);
  }

  .cover {
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
  }

  .lead {
    font-size: 1.05rem;
  }

  .about-copy {
    font-size: 1rem;
  }

  .social-link {
    min-width: 0;
    flex: 1 1 44%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
