:root {
  --bg: #ffffff;
  --paper: #fffaf0;
  --paper-strong: #fff3d0;
  --ink: #18130f;
  --muted: #6f6a63;
  --soft: #f4f1eb;
  --line: #e6dfd4;
  --line-strong: #d8cdbd;
  --amber: #f0b429;
  --amber-deep: #c77b18;
  --green: #54765f;
  --rose: #c97872;
  --shadow: 0 12px 34px rgba(31, 24, 18, 0.07);
  --radius: 16px;
  --max: 1180px;
  color-scheme: light;
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 243, 0.92) 72%, rgba(244, 241, 235, 0.95)),
    radial-gradient(circle at 16% 12%, rgba(240, 180, 41, 0.10), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(84, 118, 95, 0.08), transparent 24%);
  color: var(--ink);
  min-width: 320px;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-underline-offset: 4px;
}

a:hover {
  color: var(--amber-deep);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--amber-deep);
  outline-offset: 3px;
}

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 205, 189, 0.78);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
}

.topbar-inner,
.footer-inner,
.page {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}

.brand-link img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(31, 24, 18, 0.12);
  border: 1px solid rgba(216, 205, 189, 0.85);
}

.brand-link span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3b332b;
}

.nav-pills,
.footer-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.nav-pills a,
.footer-pills a {
  border-radius: 999px;
  color: #615b55;
  font-size: 0.86rem;
  padding: 7px 11px;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.nav-pills a:hover,
.nav-pills a[aria-current="page"] {
  background: #f4f1eb;
  color: var(--ink);
}

.page {
  flex: 1;
  padding: 38px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.16fr) minmax(270px, 0.92fr);
  gap: 40px;
  align-items: start;
}

.main-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.side-column {
  min-width: 0;
  position: sticky;
  top: 92px;
}

.player-card,
.feature-card,
.notes-card,
.wide-band {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.player-card {
  overflow: hidden;
  border-radius: 10px;
}

.player-stage {
  background: #12100e;
}

.player-ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.player-placeholder,
.player-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.player-ratio iframe {
  border: 0;
  background: #12100e;
}

.player-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px) brightness(0.72) saturate(1.1);
  transform: scale(1.08);
}

.player-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 36px);
}

.player-cta {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 20px;
  text-align: center;
}

.player-emblem {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(18, 16, 14, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.46);
  overflow: hidden;
}

.player-emblem img {
  width: 104px;
  height: 104px;
}

.play-button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 14px 42px;
  background: var(--amber);
  color: #19110b;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
  transition: transform 150ms ease, background-color 150ms ease;
}

.play-button:hover {
  background: #f8c745;
  transform: translateY(-1px);
}

.play-button:active {
  transform: translateY(1px) scale(0.99);
}

.player-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 66px;
  padding: 13px 16px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.player-title {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.player-title img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.player-title strong,
.player-title small {
  display: block;
}

.player-title strong {
  font-size: 0.9rem;
}

.player-title small {
  margin-top: 2px;
  color: #7a746d;
  font-size: 0.76rem;
}

.fullscreen-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  color: #3c342d;
  padding: 9px 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fullscreen-button path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tip-text {
  margin: 10px 0 0;
  color: #7a520b;
  font-size: 0.74rem;
  line-height: 1.6;
}

.tip-text span {
  font-weight: 800;
}

.ad-slot {
  min-height: 90px;
}

.intro-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eyebrow,
.mini-label {
  margin: 0;
  color: #837b72;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  font-size: 3rem;
  letter-spacing: 0;
}

h2 {
  font-size: 1rem;
}

h3 {
  font-size: 0.93rem;
}

.lead {
  max-width: 680px;
  margin: 0;
  color: #37312c;
  font-size: 1rem;
  line-height: 1.72;
}

.feature-card,
.wide-band {
  border-radius: var(--radius);
  padding: 22px;
}

.warm-card {
  background: linear-gradient(135deg, rgba(255, 249, 235, 0.98), rgba(255, 255, 255, 0.94) 54%, rgba(248, 237, 211, 0.64));
  border-color: rgba(240, 180, 41, 0.44);
}

.muted-card {
  background: rgba(248, 247, 244, 0.96);
}

.subtle,
.card-note {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.subtle {
  margin: 7px 0 0;
}

.card-note {
  margin: 18px 0 0;
  border-top: 1px solid rgba(230, 223, 212, 0.78);
  padding-top: 14px;
}

.bullet-list {
  margin: 16px 0 0;
  padding-left: 1.1rem;
  color: #4a433c;
  font-size: 0.91rem;
  line-height: 1.7;
}

.bullet-list li + li {
  margin-top: 8px;
}

.glance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 18px 0 0;
}

.glance-grid div {
  min-width: 0;
}

.glance-grid dt {
  color: #91887b;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.glance-grid dd {
  margin: 7px 0 0;
  color: #524b44;
  font-size: 0.9rem;
  line-height: 1.62;
}

.wide-band {
  background: rgba(249, 248, 245, 0.72);
}

.wide-band p {
  max-width: 680px;
  margin: 10px 0 0;
  color: #716a62;
  font-size: 0.9rem;
  line-height: 1.65;
}

.faq-list {
  margin-top: 18px;
  display: grid;
  gap: 16px;
}

.faq-list article + article {
  border-top: 1px solid rgba(230, 223, 212, 0.9);
  padding-top: 16px;
}

.faq-list p {
  margin: 8px 0 0;
  color: #5a534c;
  font-size: 0.9rem;
  line-height: 1.65;
}

.notes-card {
  border-radius: var(--radius);
  padding: 18px;
}

.notes-card h2 {
  font-size: 0.98rem;
}

.rating-box {
  margin-top: 16px;
  border: 1px solid rgba(240, 180, 41, 0.45);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 247, 223, 0.98), rgba(255, 255, 255, 0.84));
  padding: 12px;
  color: #5f410c;
  font-size: 0.82rem;
}

.rating-box span {
  font-weight: 900;
}

.rating-box small {
  color: #866525;
}

.published-notes {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfaf8;
  padding: 12px;
}

.published-notes ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  max-height: 440px;
  overflow: auto;
}

.published-notes li {
  padding: 13px 0;
}

.published-notes li + li {
  border-top: 1px solid var(--line);
}

.published-notes li:first-child {
  padding-top: 0;
}

.published-notes li div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.published-notes strong {
  min-width: 0;
  color: #221b16;
  font-size: 0.86rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.published-notes span {
  flex: 0 0 auto;
  color: var(--amber-deep);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.published-notes p {
  margin: 9px 0 0;
  border-left: 2px solid rgba(240, 180, 41, 0.55);
  padding-left: 10px;
  color: #625a52;
  font-size: 0.79rem;
  line-height: 1.55;
}

.published-notes time {
  display: block;
  margin-top: 9px;
  color: #9a9187;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.note-form {
  margin-top: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #ffffff;
  padding: 14px;
}

.note-form h3 {
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.note-form label {
  display: block;
  margin-top: 12px;
}

.note-form label span {
  display: block;
  color: #81786f;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.note-form input,
.note-form select,
.note-form textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf8;
  color: #27211c;
  padding: 9px 10px;
  font-size: 0.84rem;
}

.note-form textarea {
  resize: vertical;
  min-height: 82px;
}

.note-form button {
  width: 100%;
  min-height: 40px;
  margin-top: 12px;
  border: 0;
  border-radius: 8px;
  background: #19130f;
  color: #fffaf0;
  font-size: 0.78rem;
  font-weight: 800;
}

.form-status {
  min-height: 20px;
  margin: 9px 0 0;
  color: var(--green);
  font-size: 0.75rem;
  line-height: 1.45;
}

.content-page {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.content-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content-header p,
.content-page > p,
.site-note p,
.contact-card p,
.feature-card p {
  color: #514a43;
  font-size: 0.94rem;
  line-height: 1.72;
}

.content-header p,
.content-page > p,
.feature-card p,
.site-note p,
.contact-card p {
  margin: 0;
}

.two-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.site-note {
  padding-top: 2px;
}

.site-note h2 {
  font-size: 0.96rem;
  margin-bottom: 8px;
}

.contact-card {
  max-width: 600px;
}

.contact-email {
  margin-top: 10px;
  font-family: "Menlo", "Consolas", monospace;
  font-size: 0.88rem;
}

.site-footer {
  border-top: 1px solid rgba(216, 205, 189, 0.78);
  background: #ffffff;
}

.footer-inner {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-pills {
  justify-content: flex-start;
}

.footer-pills a {
  border: 1px solid var(--line);
  font-size: 0.74rem;
  padding: 6px 10px;
}

.footer-pills a:hover {
  border-color: #221b16;
}

.site-footer p {
  max-width: 760px;
  margin: 0;
  color: #756d65;
  font-size: 0.78rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-pills {
    justify-content: flex-start;
  }

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

  .side-column {
    position: static;
  }
}

@media (max-width: 640px) {
  .topbar-inner,
  .footer-inner,
  .page {
    width: min(100% - 24px, var(--max));
  }

  .page {
    padding-top: 24px;
  }

  .brand-link span {
    font-size: 0.76rem;
  }

  .nav-pills a {
    font-size: 0.78rem;
    padding: 6px 8px;
  }

  h1 {
    font-size: 2.28rem;
  }

  .player-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .fullscreen-button {
    width: 100%;
    justify-content: center;
  }

  .play-button {
    width: min(260px, 88%);
    padding-left: 20px;
    padding-right: 20px;
  }

  .player-emblem {
    width: 112px;
    height: 112px;
  }

  .player-emblem img {
    width: 88px;
    height: 88px;
  }

  .glance-grid,
  .two-card-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .wide-band,
  .notes-card {
    padding: 18px;
  }
}
