:root {
  --cream: #fff7e9;
  --paper: #fffdf6;
  --paper-deep: #f8ead1;
  --ink: #2f261d;
  --muted: #746350;
  --blue: #54add1;
  --blue-dark: #2f7fa0;
  --gold: #f3b653;
  --green: #7abf68;
  --red: #e76f51;
  --twine: #c89558;
  --twine-dark: #996739;
  --line: rgba(79, 54, 30, 0.16);
  --shadow: 0 22px 60px rgba(129, 88, 44, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at 15% 8%, rgba(243, 182, 83, 0.28), transparent 25%),
    radial-gradient(circle at 90% 18%, rgba(84, 173, 209, 0.22), transparent 28%),
    radial-gradient(circle at 72% 70%, rgba(122, 191, 104, 0.15), transparent 24%),
    linear-gradient(180deg, #fff8eb 0%, #f9edd7 100%);
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 60px);
  background: rgba(255, 248, 235, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(79, 54, 30, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  font-weight: 750;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  transition: color 180ms ease;
}

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

.nav-group {
  position: relative;
  padding: 10px 0;
}

.dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: -14px;
  display: grid;
  gap: 7px;
  min-width: 230px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 246, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 170ms ease;
}

.nav-group:hover .dropdown,
.nav-group:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

main {
  position: relative;
  overflow: hidden;
}

.site-string {
  position: absolute;
  top: 0;
  left: clamp(-20px, 1.4vw, 10px);
  width: 250px;
  height: calc(100% - 60px);
  z-index: 0;
  pointer-events: none;
}

.site-string path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.string-base {
  stroke: var(--twine);
  stroke-width: 15;
}

.string-twist {
  stroke: var(--twine-dark);
  stroke-width: 6;
  stroke-dasharray: 1 18;
  opacity: 0.85;
}

.string-highlight {
  stroke: rgba(255, 249, 231, 0.86);
  stroke-width: 3;
  stroke-dasharray: 12 26;
}


.section {
  position: relative;
  z-index: 1;
  padding: clamp(76px, 10vw, 126px) clamp(18px, 5vw, 62px) clamp(76px, 10vw, 126px) clamp(104px, 11vw, 170px);
  border-bottom: 1px solid rgba(79, 54, 30, 0.08);
}

.knot {
  position: absolute;
  top: clamp(80px, 10vw, 132px);
  left: clamp(46px, 5.2vw, 88px);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, #ffecc9 0 22%, #d6a66d 23% 68%, #a56d39 69% 100%);
  border: 3px solid #fff3dc;
  box-shadow: 0 10px 25px rgba(130, 84, 38, 0.17);
}

.knot::after {
  content: "";
  position: absolute;
  left: 38px;
  width: clamp(30px, 4vw, 55px);
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--twine), rgba(200, 149, 88, 0));
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.45fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.copy {
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
}

h1,
h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 850px;
  font-size: clamp(3rem, 7.4vw, 6.5rem);
}

h2 {
  font-size: clamp(2.25rem, 4.8vw, 4.9rem);
}

p {
  font-size: 1.06rem;
}

.lead {
  max-width: 830px;
  color: var(--muted);
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
}

.primary {
  background: linear-gradient(135deg, #7dcced, var(--blue));
  color: #1f211a;
}

.secondary {
  background: var(--paper);
  border-color: var(--line);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.tag-card,
.card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 253, 246, 0.96), rgba(255, 247, 232, 0.96));
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.card {
  padding: clamp(24px, 3vw, 36px);
}

.tag-card {
  padding: 30px;
  transform: rotate(1.2deg);
}

.tag-card::before,
.card::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(84, 173, 209, 0.45), transparent);
}

.hero-tag {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.tag-number {
  margin: 18px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.05;
  font-weight: 950;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.sub-section {
  background: rgba(255, 255, 255, 0.18);
}

.pull-quote {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.25;
  font-weight: 900;
  color: #2b4b63;
}

blockquote {
  margin: 28px 0;
  padding: 24px;
  border-left: 6px solid var(--gold);
  border-radius: 18px;
  background: rgba(243, 182, 83, 0.16);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.25;
  font-weight: 900;
}

.music-card {
  overflow: hidden;
}

.music-card::after,
.clouds-card::after {
  content: "✦";
  position: absolute;
  right: 26px;
  bottom: 10px;
  color: var(--gold);
  font-size: 4rem;
  opacity: 0.75;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 28px;
}

.social-grid a,
.contact-list a {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(84, 173, 209, 0.12);
  border: 1px solid rgba(84, 173, 209, 0.18);
  text-decoration: none;
  font-weight: 850;
}

.signup {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.signup label {
  font-weight: 800;
}

.signup div {
  display: flex;
  gap: 10px;
}

.signup input {
  flex: 1;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.signup button {
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: linear-gradient(135deg, #ffd285, var(--gold));
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.final-section {
  border-bottom: 0;
}

.support-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.support-modal.open {
  display: flex;
}

.support-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(47, 38, 29, 0.38);
  backdrop-filter: blur(5px);
}

.support-modal-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: clamp(26px, 4vw, 42px);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(47, 38, 29, 0.25);
  border: 1px solid var(--line);
}

.support-modal-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.payment-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.payment-list p {
  margin: 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(243, 182, 83, 0.16);
  border: 1px solid rgba(243, 182, 83, 0.22);
  font-size: 1.15rem;
}

.footer {
  position: relative;
  z-index: 1;
  padding: 28px clamp(18px, 5vw, 62px);
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(79, 54, 30, 0.1);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 74px;
    left: 18px;
    right: 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 18px;
    background: rgba(255, 253, 246, 0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav-group {
    padding: 0;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin-top: 10px;
    background: rgba(248, 234, 209, 0.5);
  }

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

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

  .site-string {
    left: -42px;
    width: 190px;
  }

  .section {
    padding-left: 92px;
  }

  .knot {
    left: 30px;
  }
}

@media (max-width: 620px) {
  .site-string {
    display: none;
  }

  .section {
    padding: 64px 18px;
  }

  .knot {
    position: static;
    margin-bottom: 18px;
    width: 36px;
    height: 36px;
  }

  .knot::after {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  .signup div {
    flex-direction: column;
  }

  .signup button {
    min-height: 50px;
  }

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


/* Connected signup form */
.form-row {
  display: flex;
  gap: 10px;
  width: 100%;
}

.signup input,
.signup select {
  flex: 1;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.signup select {
  cursor: pointer;
}

.signup button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.form-message {
  margin: 0;
  font-weight: 800;
}

.form-message.success {
  color: #2f7a47;
}

.form-message.error {
  color: #9a4c2f;
}

@media (max-width: 620px) {
  .form-row {
    flex-direction: column;
  }
}


.music-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.music-modal.open {
  display: flex;
}

.music-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(47, 38, 29, 0.38);
  backdrop-filter: blur(5px);
}

.music-modal-card {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: clamp(26px, 4vw, 42px);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(47, 38, 29, 0.25);
  border: 1px solid var(--line);
}

.music-modal-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.platform-grid a {
  display: block;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(84, 173, 209, 0.12);
  border: 1px solid rgba(84, 173, 209, 0.18);
  text-decoration: none;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease;
}

.platform-grid a:hover {
  transform: translateY(-2px);
  background: rgba(84, 173, 209, 0.2);
}

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


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

.presave-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.presave-modal.open {
  display: flex;
}

.presave-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(47, 38, 29, 0.38);
  backdrop-filter: blur(5px);
}

.presave-modal-card {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  padding: clamp(26px, 4vw, 42px);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(47, 38, 29, 0.25);
  border: 1px solid var(--line);
}

.presave-modal-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.presave-date {
  display: inline-block;
  margin: 18px 0 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(243, 182, 83, 0.18);
  border: 1px solid rgba(243, 182, 83, 0.24);
  font-weight: 900;
}

.presave-description {
  color: var(--muted);
  font-size: 1.08rem;
}

.presave-link {
  margin-top: 12px;
}


.gavi-listen-copy {
  margin-top: 22px;
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.35;
}

.card-eyebrow {
  margin-bottom: 18px;
}

.section-grid > div:first-child .music-actions {
  margin-top: 22px;
}


.hero h2 {
  font-size: clamp(2.35rem, 5.2vw, 5.25rem);
}

.section-grid > div:first-child h2 {
  font-size: clamp(2.15rem, 4.5vw, 4.7rem);
}


/* Strong final text sizing override */
.eyebrow,
.card-eyebrow {
  font-size: 0.82rem !important;
  line-height: 1.15 !important;
  letter-spacing: 0.14em !important;
  font-weight: 900 !important;
}

.hero h2 {
  font-size: clamp(1.95rem, 3.9vw, 3.85rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
}

.section-grid > div:first-child h2 {
  font-size: clamp(1.85rem, 3.5vw, 3.45rem) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.035em !important;
}

@media (max-width: 620px) {
  .eyebrow,
  .card-eyebrow {
    font-size: 0.78rem !important;
  }

  .hero h2,
  .section-grid > div:first-child h2 {
    font-size: 2rem !important;
  }
}
