:root {
  color-scheme: light;
  --ink: #1d1d1b;
  --muted: #66645e;
  --paper: #f3f1eb;
  --paper-bright: #faf9f5;
  --line: rgba(29, 29, 27, 0.16);
  --accent: #ff5c35;
  --accent-soft: rgba(255, 92, 53, 0.13);
  --cycle: 6s;
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, var(--paper-bright) 0 18%, transparent 42%),
    radial-gradient(circle at 91% 85%, var(--accent-soft) 0, transparent 28%),
    var(--paper);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.34;
  background-image: linear-gradient(
    90deg,
    transparent 0,
    transparent calc(100% - 1px),
    rgba(29, 29, 27, 0.035) calc(100% - 1px)
  );
  background-size: 8.333vw 100%;
}

.landing {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
  width: min(100% - 64px, 1280px);
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: 56px 0;
}

.brand-panel,
.content-panel {
  min-width: 0;
}

.brand-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px clamp(44px, 6vw, 92px) 32px 0;
  border-right: 1px solid var(--line);
}

.mark-stage {
  display: grid;
  width: min(100%, 310px);
  aspect-ratio: 0.84;
  place-items: center;
}

.brand-mark {
  display: block;
  width: min(100%, 260px);
  height: auto;
  overflow: visible;
  color: var(--ink);
}

.mark-o,
.mark-bar {
  fill: currentColor;
}

.mark-o,
.mark-bar,
.mark-shadow,
.eye-white {
  transform-box: view-box;
}

.mark-o {
  transform-origin: 14.01px 24.7px;
}

.mark-bar {
  transform-origin: 14.08px 2.68px;
}

.eye-white {
  fill: var(--paper-bright);
  opacity: 0;
  transform-origin: 14.01px 24.7px;
}

.mark-shadow {
  fill: var(--ink);
  opacity: 0;
  transform-origin: 14.01px 40.35px;
}

.is-ready[data-motion="full"] .mark-o {
  animation: o-sequence var(--cycle) linear infinite both;
}

.is-ready[data-motion="full"] .mark-bar {
  animation: bar-sequence var(--cycle) linear infinite both;
}

.is-ready[data-motion="full"] .eye-white {
  animation: eye-white-sequence var(--cycle) ease-in-out infinite both;
}

.is-ready[data-motion="full"] .mark-shadow {
  animation: shadow-sequence var(--cycle) linear infinite both;
}

.is-visibility-paused .mark-o,
.is-visibility-paused .mark-bar,
.is-visibility-paused .eye-white,
.is-visibility-paused .mark-shadow {
  animation-play-state: paused !important;
}

.brand-lockup {
  margin-top: 8px;
  text-align: center;
}

.wordmark {
  margin: 0;
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  font-weight: 720;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.brand-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
