:root {
  --bg: #070a10;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: rgba(246, 248, 252, 0.95);
  --muted: rgba(214, 220, 232, 0.72);
  --faint: rgba(214, 220, 232, 0.58);
  --gold: #c9a447;
  --slate: #8ea0c0;
  --max: 1160px;

  --sans: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --serif: "Newsreader", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.4;
}

a {
  color: inherit;
  text-decoration: none;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 540px at 12% -10%, rgba(142, 160, 192, 0.2), transparent 66%),
    radial-gradient(900px 540px at 90% 0%, rgba(201, 164, 71, 0.13), transparent 62%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 58px 58px, 58px 58px, auto;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.mono {
  font-family: var(--mono);
  letter-spacing: -0.01em;
}

.top {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(7, 10, 16, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

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

.brand-mark {
  width: 18px;
  height: 18px;
}

.brand-name {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav {
  display: none;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--text);
}

.top-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  border-radius: 999px;
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-quiet {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}

.btn-quiet:hover {
  background: rgba(255, 255, 255, 0.09);
}

.btn-solid {
  background: linear-gradient(135deg, rgba(201, 164, 71, 0.98) 0%, rgba(142, 160, 192, 0.92) 100%);
  border-color: rgba(255, 255, 255, 0.22);
  color: #0b1220;
  font-weight: 600;
}

.btn-solid:hover {
  filter: brightness(1.06);
}

main {
  padding-bottom: 40px;
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  gap: 22px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid var(--stroke);
  background: var(--panel);
  color: var(--muted);
  font-size: 12px;
}

.kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin: 0;
}

.hero h1 {
  margin-top: 16px;
  font-family: var(--serif);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 0.97;
  font-size: clamp(2.3rem, 6vw, 4.5rem);
  max-width: 14ch;
}

.hero p {
  margin-top: 16px;
  color: var(--muted);
  max-width: 60ch;
  font-size: 1.14rem;
  line-height: 1.5;
}

.hero-type {
  margin-top: 12px;
  font-size: 0.98rem;
  color: var(--faint);
}

.rot-word {
  color: var(--text);
  position: relative;
}

.rot-word::after {
  content: "";
  border-right: 1.5px solid rgba(255, 255, 255, 0.65);
  margin-left: 2px;
  animation: caret 900ms steps(1, end) infinite;
}

@keyframes caret {
  0%,
  48% {
    opacity: 1;
  }
  49%,
  100% {
    opacity: 0;
  }
}

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

.tags {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tags span {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--faint);
  border: 1px solid var(--stroke);
  background: var(--panel);
  border-radius: 12px;
  padding: 8px 10px;
}

.shot {
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(100% 140% at 100% 0%, rgba(201, 164, 71, 0.15), transparent 70%),
    radial-gradient(100% 140% at 0% 0%, rgba(142, 160, 192, 0.18), transparent 70%),
    rgba(11, 15, 23, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 40px rgba(0, 0, 0, 0.35);
}

.shot-lg {
  min-height: 360px;
  padding: 22px;
}

.shot-wide {
  min-height: 250px;
  padding: 20px;
}

.shot {
  min-height: 190px;
  padding: 16px;
}

.shot-k {
  color: var(--faint);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shot h3 {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  letter-spacing: -0.02em;
}

.shot p {
  margin-top: 8px;
  font-size: 0.97rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 56ch;
}

.shot-media {
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.15);
  aspect-ratio: var(--ratio, 16 / 9);
}

.shot-media.has-media {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.08);
}

.shot-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.section-head {
  max-width: 72ch;
}

.eyebrow {
  color: var(--faint);
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.section-head h2 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.5;
}

.inline-link {
  text-decoration: underline;
  text-decoration-color: rgba(201, 164, 71, 0.45);
  text-underline-offset: 2px;
}

.inline-link:hover {
  text-decoration-color: rgba(201, 164, 71, 0.9);
}

.plane {
  margin-top: 20px;
}

.surface-grid {
  margin-top: 14px;
  display: grid;
  gap: 14px;
}

.steps {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: var(--panel);
  padding: 14px;
}

.step-n {
  color: var(--faint);
  font-size: 0.86rem;
  min-width: 28px;
}

.steps h3,
.cards h3 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.steps p,
.cards p {
  color: var(--muted);
  font-size: 0.95rem;
}

.cards {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.cards article {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: var(--panel);
  padding: 14px;
}

.page-hero {
  padding: 72px 0 36px;
}

.page-hero h1 {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.page-hero p {
  margin-top: 14px;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.now-grid {
  display: grid;
  gap: 14px;
}

.now-card {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: var(--panel);
  padding: 16px;
}

.now-meta {
  color: var(--faint);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.now-card h2 {
  margin-top: 9px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  letter-spacing: -0.02em;
}

.now-card p {
  margin-top: 8px;
  color: var(--muted);
}

.now-link {
  margin-top: 10px;
  font-size: 0.92rem;
}

.post-list {
  display: grid;
  gap: 14px;
}

.post-item {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: var(--panel);
  padding: 16px;
}

.post-meta {
  color: var(--faint);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.post-item h2 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -0.02em;
}

.post-item p {
  margin-top: 10px;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 14px;
}

.entry {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: var(--panel);
  padding: 16px;
}

.entry-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.entry-date {
  color: var(--faint);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pill {
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.pill-ship {
  background: rgba(201, 164, 71, 0.2);
}

.pill-prog {
  background: rgba(142, 160, 192, 0.2);
}

.entry h2 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  letter-spacing: -0.02em;
}

.entry ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.entry li + li {
  margin-top: 5px;
}

.impact {
  margin-top: 10px;
  color: var(--muted);
}

.price-row {
  display: grid;
  gap: 16px;
}

.price-row h2 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.price-row p {
  margin-top: 10px;
  color: var(--muted);
}

.meter {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: var(--panel);
  padding: 10px 14px;
}

.meter div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.meter div:last-child {
  border-bottom: 0;
}

.meter span {
  color: var(--muted);
}

.meter strong {
  font-family: var(--mono);
  font-size: 0.84rem;
  color: var(--text);
}

.cta {
  padding-bottom: 18px;
}

.cta-inner {
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  padding: 18px;
  display: grid;
  gap: 14px;
}

.cta h2 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.cta p {
  margin-top: 8px;
  color: var(--muted);
}

.foot {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.foot-inner {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.foot-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--faint);
  font-size: 0.77rem;
}

@media (min-width: 860px) {
  .nav {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: start;
  }

  .surface-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .now-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-row {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
  }

  .cta-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 24px;
  }
}

@media (min-width: 1120px) {
  .cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .rot-word::after {
    animation: none;
  }
}
