:root {
  --bg0: #010104;
  --bg1: #06070d;
  --bg2: #0d111b;

  --fg0: #f7fbff;
  --fg1: rgba(247, 251, 255, 0.84);
  --fg2: rgba(247, 251, 255, 0.64);

  --edge: rgba(247, 251, 255, 0.18);
  --edge-strong: rgba(255, 64, 102, 0.36);

  --surface: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  --surface-heavy: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));

  --accent: #ff1e49;
  --accent-2: #ff5c7c;
  --accent-deep: #8f0a22;
  --accent-glow: rgba(255, 30, 73, 0.42);

  --shadow-soft: 0 18px 42px rgba(0, 0, 0, 0.34);
  --shadow-hard: 0 30px 90px rgba(0, 0, 0, 0.55);

  --radius: 18px;
  --radius-lg: 28px;
  --container: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--fg0);
  font-family: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
  background:
    radial-gradient(1200px 680px at 8% -12%, rgba(255, 30, 73, 0.34), transparent 62%),
    radial-gradient(980px 560px at 110% 12%, rgba(143, 10, 34, 0.56), transparent 64%),
    radial-gradient(880px 540px at 50% 115%, rgba(255, 52, 96, 0.2), transparent 70%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 52%, #05070f 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -1;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.018) 0,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 88px
    ),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.014) 0,
      rgba(255, 255, 255, 0.014) 1px,
      transparent 1px,
      transparent 88px
    );
  opacity: 0.34;
}

body::after {
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
  opacity: 0.08;
}

a {
  color: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: 12px;
  top: -50px;
  padding: 8px 10px;
  background: rgba(3, 4, 8, 0.94);
  border: 1px solid var(--edge);
  border-radius: 10px;
  text-decoration: none;
  z-index: 1200;
}

.skip:focus {
  top: 12px;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 30, 73, 0.34);
}

.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

main {
  position: relative;
  isolation: isolate;
}

main::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(118deg, transparent 24%, rgba(255, 30, 73, 0.06) 46%, transparent 68%);
  animation: sweep 18s linear infinite;
  opacity: 0.75;
}

.top {
  position: sticky;
  top: 0;
  z-index: 300;
  backdrop-filter: blur(18px) saturate(140%);
  background: linear-gradient(180deg, rgba(4, 5, 9, 0.9), rgba(4, 5, 9, 0.72));
  border-bottom: 1px solid rgba(255, 84, 120, 0.24);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.35);
}

.top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 54, 94, 0.84), transparent);
}

.top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.top__identity {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.brand__letters {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #000000;
  text-transform: uppercase;
  display: inline-block;
}

.brand__logo {
  display: none !important;
}

.top__owner {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 88, 123, 0.98);
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 56, 96, 0.5);
  background: linear-gradient(180deg, rgba(48, 4, 13, 0.68), rgba(24, 3, 9, 0.68));
  box-shadow: 0 10px 26px rgba(255, 35, 77, 0.2);
  white-space: nowrap;
}

.brand__mark {
  display: inline-block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1;
}

.brand__name {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav__link {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg1);
  padding: 8px 11px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav__link:hover {
  color: var(--fg0);
  border-color: rgba(255, 96, 130, 0.36);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  transform: translateY(-1px);
}

.masthead {
  display: none !important;
}

.masthead--compact {
  display: none !important;
}

.masthead__inner {
  display: none !important;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 74, 112, 0.34);
  padding: 20px 18px;
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.86), rgba(18, 2, 7, 0.86)),
    url("https://substack-post-media.s3.amazonaws.com/public/images/5a1d7263-0ab5-4f99-9481-3559c1b88604_1280x571.png") center / cover no-repeat;
  box-shadow: var(--shadow-hard);
}

.masthead__inner::before,
.masthead__inner::after {
  display: none !important;
  content: "";
  position: absolute;
  pointer-events: none;
}

.masthead__inner::before {
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 30, 73, 0.24), rgba(255, 30, 73, 0.07));
}

.masthead__inner::after {
  inset: 0;
  background:
    repeating-linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.07) 0,
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px,
      transparent 16px
    );
  opacity: 0.14;
}

.masthead__inner > * {
  position: relative;
  z-index: 1;
}

.masthead__wordmark {
  display: none !important;
  width: min(100%, 560px);
  height: auto;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.44));
}

.masthead__tagline {
  display: none !important;
  margin: 11px 0 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 86, 121, 0.98);
}

.masthead__meta {
  display: none !important;
  margin: 7px 0 0;
  font-size: 13px;
  color: rgba(247, 251, 255, 0.92);
}

.hero {
  padding: 30px 0 16px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 14px;
  align-items: stretch;
}

.hero__copy,
.panel,
.feature,
.social__panel,
.subscribe,
.card {
  position: relative;
}

.hero__copy,
.panel,
.feature,
.social__panel,
.subscribe,
.card,
.subscribe__embed,
.now__card {
  border: 1px solid var(--edge);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero__copy,
.panel,
.feature,
.social__panel,
.subscribe {
  border-radius: var(--radius-lg);
}

.hero__copy {
  padding: 30px 26px;
  overflow: hidden;
}

.hero__copy::before,
.panel::before,
.feature::before,
.social__panel::before,
.subscribe::before,
.card::before,
.subscribe__embed::before,
.now__card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 112, 143, 0.88), transparent);
  opacity: 0.82;
  pointer-events: none;
}

.hero__copy::after {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(680px 230px at 18% 0%, rgba(255, 30, 73, 0.26), transparent 56%),
    radial-gradient(700px 220px at 110% 18%, rgba(255, 255, 255, 0.11), transparent 54%);
  pointer-events: none;
}

.hero__copy > * {
  position: relative;
}

.kicker {
  margin: 0 0 12px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  color: rgba(255, 95, 129, 0.94);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.hero__title {
  margin: 0 0 14px;
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-size: clamp(44px, 6vw, 78px);
  text-wrap: balance;
}

.hero__quote-top {
  margin: 0 0 6px;
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-weight: 700;
  color: rgba(247, 251, 255, 0.96);
  letter-spacing: -0.01em;
  line-height: 1.1;
  font-size: clamp(16px, 2.2vw, 24px);
}

.lede {
  margin: 0;
  color: var(--fg1);
  font-size: 16px;
  max-width: 60ch;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid rgba(247, 251, 255, 0.18);
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
  user-select: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn:disabled {
  opacity: 0.66;
  cursor: not-allowed;
  transform: none;
}

.btn--primary {
  border-color: rgba(255, 58, 97, 0.72);
  color: #ffffff;
  background: linear-gradient(180deg, rgba(255, 30, 73, 0.86), rgba(153, 12, 37, 0.82));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 20px 54px rgba(255, 24, 69, 0.26);
}

.btn--primary:hover {
  border-color: rgba(255, 107, 138, 0.76);
  background: linear-gradient(180deg, rgba(255, 72, 109, 0.9), rgba(168, 14, 43, 0.84));
}

.btn--ghost {
  border-color: rgba(247, 251, 255, 0.3);
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.2), rgba(247, 251, 255, 0.12));
}

.btn--ghost:hover {
  border-color: rgba(255, 92, 128, 0.5);
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.28), rgba(247, 251, 255, 0.16));
}

.btn--tiny {
  padding: 8px 10px;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 700;
}

.statusbar {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(247, 251, 255, 0.12);
}

.status {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  color: var(--fg2);
  font-size: 12px;
}

.hero__fineprint {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.pill {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  color: rgba(247, 251, 255, 0.84);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(247, 251, 255, 0.15);
  background: rgba(0, 0, 0, 0.22);
}

.hero__panel {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 12px;
}

.panel {
  padding: 18px;
  overflow: hidden;
}

.panel__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.panel__title {
  margin: 0;
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-weight: 850;
  letter-spacing: -0.01em;
  font-size: 18px;
}

.panel__link {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  color: rgba(255, 98, 132, 0.96);
  font-size: 12px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.panel__link:hover {
  border-bottom-color: rgba(255, 108, 140, 0.72);
}

.panel--small {
  padding: 16px 18px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  text-decoration: none;
  padding: 9px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(247, 251, 255, 0.9);
  border: 1px solid rgba(247, 251, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.chip:hover {
  border-color: rgba(255, 56, 96, 0.44);
}

.muted {
  color: var(--fg1);
}

.section {
  padding: 24px 0 38px;
}

.section__head {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.section__title {
  margin: 0 0 6px;
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-weight: 850;
  letter-spacing: -0.02em;
  font-size: 28px;
  line-height: 1.06;
}

.controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.search {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.search input {
  width: min(350px, 72vw);
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(247, 251, 255, 0.16);
  background: rgba(0, 0, 0, 0.3);
  color: var(--fg0);
  outline: none;
}

.search input::placeholder {
  color: rgba(247, 251, 255, 0.5);
}

.search input:focus {
  border-color: rgba(255, 68, 107, 0.58);
  box-shadow: 0 0 0 3px rgba(255, 30, 73, 0.24);
}

.filters {
  display: inline-flex;
  border-radius: 14px;
  border: 1px solid rgba(247, 251, 255, 0.26);
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.14), rgba(247, 251, 255, 0.08));
  overflow: hidden;
}

.filter {
  appearance: none;
  background: transparent;
  color: rgba(247, 251, 255, 0.94);
  border: 0;
  padding: 10px 12px;
  cursor: pointer;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter:hover {
  color: var(--fg0);
}

.filter.is-active {
  color: rgba(7, 8, 13, 0.95);
  background: linear-gradient(180deg, rgba(255, 92, 124, 0.96), rgba(255, 36, 78, 0.9));
  box-shadow: inset 0 -10px 24px rgba(130, 5, 29, 0.28);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.card {
  grid-column: span 4;
  border-radius: var(--radius);
  overflow: hidden;
  transform: translateY(0) rotateX(0deg);
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
  animation: fadeUp 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.card:hover {
  transform: translateY(-4px) rotateX(1.2deg);
  border-color: rgba(255, 62, 103, 0.44);
  background: var(--surface-heavy);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.card:nth-child(1) { animation-delay: 0ms; }
.card:nth-child(2) { animation-delay: 40ms; }
.card:nth-child(3) { animation-delay: 80ms; }
.card:nth-child(4) { animation-delay: 120ms; }
.card:nth-child(5) { animation-delay: 160ms; }
.card:nth-child(6) { animation-delay: 200ms; }
.card:nth-child(7) { animation-delay: 240ms; }
.card:nth-child(8) { animation-delay: 280ms; }
.card:nth-child(9) { animation-delay: 320ms; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { background-position: 0% 0; opacity: 0.56; }
  50% { opacity: 0.82; }
  100% { background-position: 100% 0; opacity: 0.56; }
}

@keyframes sweep {
  0% { transform: translateX(-24%); opacity: 0; }
  15% { opacity: 0.6; }
  70% { opacity: 0.55; }
  100% { transform: translateX(22%); opacity: 0; }
}

.card__media {
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(247, 251, 255, 0.11);
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.06);
}

.card__body {
  padding: 14px 14px 12px;
}

.tagrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.tag {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(247, 251, 255, 0.16);
  background: rgba(0, 0, 0, 0.2);
  color: rgba(247, 251, 255, 0.86);
}

.tag--accent {
  border-color: rgba(255, 58, 99, 0.44);
  color: rgba(255, 104, 138, 0.98);
}

.date {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  color: rgba(247, 251, 255, 0.66);
}

.card__title {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-weight: 850;
  letter-spacing: -0.01em;
  line-height: 1.08;
  font-size: 18px;
  margin: 0 0 8px;
}

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

.card__title a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(255, 72, 110, 0.62);
}

.card__excerpt {
  margin: 0;
  color: var(--fg1);
  font-size: 14px;
  line-height: 1.45;
}

.card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.card--skeleton {
  min-height: 245px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  background-size: 240% 100%;
  animation: shimmer 1100ms ease-in-out infinite;
}

.card--skeleton:hover {
  transform: none;
  border-color: rgba(247, 251, 255, 0.16);
}

.section__foot {
  margin-top: 14px;
}

.section--feature,
.section--subscribe {
  padding-top: 32px;
}

.section--field-guides {
  padding-top: 28px;
}

.feature,
.social__panel,
.subscribe {
  padding: 18px;
}

.feature {
  background:
    linear-gradient(180deg, rgba(255, 30, 73, 0.14), rgba(255, 255, 255, 0.03)),
    radial-gradient(600px 220px at 20% 0%, rgba(255, 74, 110, 0.22), transparent 58%);
}

.social__panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    radial-gradient(600px 200px at 80% 0%, rgba(255, 56, 95, 0.14), transparent 64%);
}

.x-feed {
  min-height: 180px;
}

.x-feed > .twitter-timeline {
  display: block;
}

.x-feed iframe {
  width: 100% !important;
  border-radius: var(--radius);
  border: 1px solid rgba(247, 251, 255, 0.16);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.subscribe {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  align-items: stretch;
  background:
    linear-gradient(180deg, rgba(255, 56, 95, 0.12), rgba(255, 255, 255, 0.03)),
    radial-gradient(500px 180px at 15% 0%, rgba(255, 101, 131, 0.2), transparent 62%);
}

.bullets {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(247, 251, 255, 0.84);
}

.subscribe__embed {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  background: rgba(0, 0, 0, 0.2);
}

.subscribe__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.field-guides {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 14px;
}

.field-guides__offer,
.field-guides__form {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--edge);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.field-guides__offer::before,
.field-guides__form::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 112, 143, 0.88), transparent);
  opacity: 0.82;
  pointer-events: none;
}

.field-guides__offer {
  background:
    linear-gradient(180deg, rgba(255, 56, 95, 0.14), rgba(255, 255, 255, 0.03)),
    radial-gradient(500px 180px at 15% 0%, rgba(255, 101, 131, 0.2), transparent 62%);
}

.field-guides__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field-guides__label {
  display: grid;
  gap: 7px;
}

.field-guides__label--full {
  grid-column: 1 / -1;
}

.field-guides__label span {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 251, 255, 0.78);
}

.field-guides__hint {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(247, 251, 255, 0.64);
}

.field-guides__label input,
.field-guides__label select,
.field-guides__label textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(247, 251, 255, 0.16);
  background: rgba(0, 0, 0, 0.3);
  color: var(--fg0);
  padding: 10px 12px;
  font-family: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  outline: none;
}

.field-guides__label textarea {
  resize: vertical;
  min-height: 100px;
}

.field-guides__label input:focus,
.field-guides__label select:focus,
.field-guides__label textarea:focus {
  border-color: rgba(255, 68, 107, 0.58);
  box-shadow: 0 0 0 3px rgba(255, 30, 73, 0.24);
}

.field-guides__check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--fg1);
}

.field-guides__check input {
  margin-top: 2px;
}

.field-guides__actions {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.footer {
  padding: 36px 0 48px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
  border-top: 1px solid rgba(247, 251, 255, 0.12);
  padding-top: 20px;
}

.footer__brand {
  margin: 0 0 8px;
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-weight: 850;
  letter-spacing: -0.01em;
  font-size: 18px;
}

.footer__meta {
  margin: 8px 0 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 96, 130, 0.9);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  padding-top: 4px;
}

.footer__links a {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  color: rgba(247, 251, 255, 0.8);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer__links a:hover {
  color: rgba(247, 251, 255, 0.96);
  border-bottom-color: rgba(255, 68, 107, 0.66);
}

.noscript {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 1200;
  border-radius: 14px;
  border: 1px solid rgba(255, 56, 96, 0.42);
  background: rgba(4, 4, 8, 0.9);
  padding: 10px 12px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  color: rgba(247, 251, 255, 0.88);
}

.player {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 999;
}

.player__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 10px;
  align-items: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 62, 103, 0.44);
  background: rgba(5, 5, 9, 0.92);
  backdrop-filter: blur(16px) saturate(130%);
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.58);
  padding: 12px;
}

.player__label {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 102, 136, 0.92);
  margin-bottom: 2px;
}

.player__title {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-weight: 850;
  letter-spacing: -0.01em;
  line-height: 1.1;
  font-size: 16px;
}

.player__link {
  display: inline-block;
  margin-top: 4px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  color: rgba(247, 251, 255, 0.76);
  text-decoration: none;
}

.player__link:hover {
  color: rgba(247, 251, 255, 0.96);
  text-decoration: underline;
  text-decoration-color: rgba(255, 66, 104, 0.66);
}

.player__audio {
  width: 100%;
}

.player__close {
  appearance: none;
  border: 1px solid rgba(247, 251, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(247, 251, 255, 0.9);
  padding: 10px 12px;
  border-radius: 14px;
  cursor: pointer;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
}

.player__close:hover {
  border-color: rgba(255, 74, 112, 0.48);
}

.now__card {
  border-radius: 14px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(255, 255, 255, 0.02));
}

.now__title {
  margin: 0 0 8px;
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-weight: 850;
  letter-spacing: -0.01em;
  line-height: 1.1;
  font-size: 16px;
}

.now__title a {
  text-decoration: none;
}

.now__title a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(255, 72, 111, 0.66);
}

.now__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.now__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-top: 10px;
}

.now__platforms-label {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 251, 255, 0.72);
}

.now__platform-link {
  text-decoration: none;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(247, 251, 255, 0.2);
  color: rgba(247, 251, 255, 0.96);
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.16), rgba(247, 251, 255, 0.08));
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.now__platform-link:hover {
  border-color: rgba(255, 90, 126, 0.58);
  background: linear-gradient(180deg, rgba(255, 134, 162, 0.2), rgba(255, 79, 113, 0.12));
}

@media (max-width: 1000px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    grid-template-rows: auto;
  }

  .subscribe {
    grid-template-columns: 1fr;
  }

  .field-guides {
    grid-template-columns: 1fr;
  }

  .card {
    grid-column: span 6;
  }
}

@media (max-width: 700px) {
  .top__inner {
    align-items: flex-start;
  }

  .top__identity {
    flex-wrap: wrap;
  }

  .nav__link {
    padding: 6px 8px;
  }

  .masthead__inner {
    padding: 16px 13px;
  }

  .masthead__tagline {
    font-size: 11px;
  }

  .hero__copy {
    padding: 22px 18px;
  }

  .field-guides__grid {
    grid-template-columns: 1fr;
  }

  .card {
    grid-column: span 12;
  }

  .player__inner {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  main::before,
  .card,
  .card--skeleton,
  .btn {
    animation: none !important;
    transition: none !important;
  }
}
