:root {
  --bg: #f7f8f5;
  --paper: #ffffff;
  --ink: #232323;
  --muted: #66706b;
  --line: rgba(35, 35, 35, 0.12);
  --teal: #0f766e;
  --teal-dark: #0b4f49;
  --coral: #f06449;
  --gold: #f5b841;
  --plum: #553c67;
  --soft-teal: #dff3ef;
  --soft-coral: #ffe7df;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
div[role="button"] {
  font: inherit;
}

button {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 248, 245, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--teal);
  outline: none;
}

.hero {
  padding: 76px 0 84px;
  background:
    linear-gradient(115deg, rgba(223, 243, 239, 0.95) 0%, rgba(255, 255, 255, 0.96) 48%, rgba(255, 231, 223, 0.92) 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(310px, 0.82fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-showcase,
.feature-card,
.app-links a,
.faq-item {
  border-radius: 8px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 540px;
  padding: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(35, 35, 35, 0.08);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: clamp(4rem, 11vw, 8.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 4vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.22;
}

.hero-text {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
}

.watch-button {
  width: min(100%, 460px);
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 30px;
  border: 1px solid rgba(15, 118, 110, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--gold) 100%);
  color: #10201e;
  cursor: pointer;
  box-shadow: 0 20px 48px rgba(15, 118, 110, 0.2);
  transition: transform 170ms ease, box-shadow 170ms ease, filter 170ms ease;
}

.watch-button:hover,
.watch-button:focus-visible {
  outline: none;
  transform: translateY(-3px);
  filter: saturate(1.08);
  box-shadow: 0 28px 60px rgba(15, 118, 110, 0.28), 0 0 0 4px rgba(15, 118, 110, 0.1);
}

.watch-button span {
  width: 100%;
  text-align: center;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.hero-showcase {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--line);
  background: #183d39;
  color: #f7f8f5;
  box-shadow: 0 24px 70px rgba(35, 35, 35, 0.1);
}

.hero-showcase img {
  width: 190px;
  height: 190px;
  margin-bottom: 28px;
  object-fit: contain;
}

.showcase-label {
  margin-bottom: 8px;
  color: var(--gold);
  font-weight: 900;
}

.hero-showcase p:not(.showcase-label) {
  color: rgba(247, 248, 245, 0.82);
  font-size: 1.02rem;
}

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

.tag-row span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(247, 248, 245, 0.92);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 800;
}

.section {
  padding: 76px 0;
  background: var(--bg);
}

.official-band {
  background: var(--paper);
}

.app-band {
  background: linear-gradient(120deg, var(--soft-teal), #fff7e6);
}

.split-layout,
.app-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 34px;
  align-items: start;
}

.copy-block p,
.section-heading p:not(.eyebrow),
.feature-card p,
.app-copy p,
.faq-answer,
.footer-grid p,
.footer-grid address,
.footer-bottom {
  color: var(--muted);
}

.copy-block p:last-child,
.feature-card p:last-child,
.app-copy p:last-child,
.faq-answer p {
  margin-bottom: 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 30px;
}

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

.feature-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 34px rgba(35, 35, 35, 0.05);
}

.feature-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--coral);
  font-weight: 900;
}

.app-links {
  display: grid;
  gap: 14px;
}

.app-links a {
  display: grid;
  gap: 4px;
  min-height: 92px;
  align-content: center;
  padding: 22px 24px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(35, 35, 35, 0.05);
  transition: transform 160ms ease, border-color 160ms ease;
}

.app-links a:hover,
.app-links a:focus-visible {
  outline: none;
  transform: translateY(-2px);
  border-color: var(--teal);
}

.app-links span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-links strong {
  color: var(--teal-dark);
  font-size: 1.14rem;
  line-height: 1.2;
}

.faq-wrap {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--paper);
}

.faq-question {
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  font-weight: 900;
  font-size: 1rem;
}

.faq-question::after {
  content: "+";
  float: right;
  color: var(--teal);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
}

.faq-item.active .faq-answer {
  display: block;
}

.site-footer {
  padding: 58px 0 26px;
  color: #f7f8f5;
  background: #2d2a32;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 34px;
}

.footer-grid h2 {
  margin-bottom: 16px;
  color: #f7f8f5;
  font-size: 1rem;
}

.footer-grid a:not(.brand) {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  color: rgba(247, 248, 245, 0.72);
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #ffffff;
  outline: none;
}

.footer-brand {
  margin-bottom: 14px;
}

address {
  font-style: normal;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1040px) {
  .hero-layout,
  .split-layout,
  .app-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-copy {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    min-height: 66px;
  }

  .nav-links {
    display: none;
  }

  .brand {
    font-size: 1.16rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding: 48px 0 58px;
  }

  .hero-copy,
  .hero-showcase {
    padding: 22px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  .watch-button {
    min-height: 88px;
    padding: 18px 20px;
  }

  .section {
    padding: 56px 0;
  }

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

  .feature-card {
    min-height: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
