:root {
  color-scheme: dark;
  --ink: #07111f;
  --ink-soft: #0c1c2e;
  --paper: #e8eef2;
  --muted: #a8b7c4;
  --line: rgba(190, 209, 223, .18);
  --accent: #668baa;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 6%, rgba(57, 91, 121, .17), transparent 34rem),
    var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.8;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .13;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='130' height='130' viewBox='0 0 130 130'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

.hero {
  min-height: 94vh;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.aura {
  position: absolute;
  width: min(80vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(127, 161, 189, .08);
  border-radius: 50%;
  box-shadow: 0 0 120px rgba(61, 103, 137, .08) inset;
}

.logo {
  position: relative;
  width: min(78vw, 560px);
  height: auto;
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, .35));
}

.opening {
  position: relative;
  margin: 1.8rem 0 0;
  color: var(--muted);
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-style: italic;
  line-height: 1.6;
}

main { border-top: 1px solid var(--line); }

.positioning,
.ethos,
footer {
  width: min(100% - 3rem, 950px);
  margin-inline: auto;
}

.positioning { padding: 8rem 0 7rem; }

.kicker,
.footer-label {
  margin: 0 0 1.4rem;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .27em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 6vw, 5.15rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.rule {
  width: 100%;
  height: 1px;
  margin: 4.5rem 0;
  background: var(--line);
}

.rule span { display: block; width: 17%; height: 1px; background: var(--accent); }

.copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 4.5rem;
  color: #c4d0d9;
}

.copy p { margin: 0; }
.copy p:first-child { color: var(--paper); font-size: 1.12rem; }

.ethos {
  padding: 6.5rem clamp(1.5rem, 7vw, 5.5rem);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(25, 52, 75, .6), rgba(8, 19, 33, .5));
  box-shadow: 0 35px 90px rgba(0, 0, 0, .2);
}

blockquote { margin: 0 0 2.5rem; }

blockquote p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4vw, 3.55rem);
  line-height: 1.2;
}

.ethos > p { max-width: 650px; margin: 0; color: var(--muted); }

footer {
  padding: 9rem 0 4rem;
  text-align: center;
}

footer a {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 5vw, 3.9rem);
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: .25em;
}

footer a:hover,
footer a:focus-visible { color: #fff; text-decoration-thickness: 2px; }

.copyright {
  margin: 6rem 0 0;
  color: #617485;
  font-size: .7rem;
  letter-spacing: .18em;
}

@media (max-width: 680px) {
  .hero { min-height: 82vh; padding-top: 3rem; }
  .logo { width: min(94vw, 500px); }
  .positioning { padding: 5rem 0; }
  .copy { grid-template-columns: 1fr; gap: 1.5rem; }
  .rule { margin: 3rem 0; }
  .ethos { padding-block: 4.5rem; }
  footer { padding-top: 6.5rem; }
}

@media (prefers-reduced-motion: no-preference) {
  .logo { animation: reveal .9s cubic-bezier(.2,.8,.2,1) both; }
  .opening { animation: reveal .9s .18s cubic-bezier(.2,.8,.2,1) both; }
  @keyframes reveal { from { opacity: 0; transform: translateY(16px); } }
}
