@font-face {
  font-family: "Fire DM";
  src: url("./assets/fonts/dm-sans-brand.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Fire Nourd";
  src: url("./assets/fonts/nourd-brand.ttf") format("truetype");
  font-weight: 700 900;
  font-display: swap;
}

@font-face {
  font-family: "Fire Stretch";
  src: url("./assets/fonts/stretch-pro-brand.ttf") format("truetype");
  font-display: swap;
}

:root {
  --ink: #09080d;
  --surface: #111017;
  --surface-soft: #191720;
  --paper: #f5f3ee;
  --muted: #aaa3b2;
  --line: rgba(255, 255, 255, 0.13);
  --pink: #ff307a;
  --red: #df0316;
  --orange: #fb8716;
  --yellow: #f8f036;
  --purple: #a413df;
  --violet: #753efe;
  --blue: #4172ef;
  --cyan: #14becd;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--orange) var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 4%, rgba(117, 62, 254, 0.14), transparent 27rem),
    var(--ink);
  font-family: "Fire DM", "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--ink);
  background: var(--orange);
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.78'/%3E%3C/svg%3E");
}

.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-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
  padding: 0 clamp(24px, 5vw, 80px);
  border-bottom: 1px solid transparent;
  transition: height 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.site-header.scrolled {
  height: 74px;
  background: rgba(9, 8, 13, 0.8);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Fire Stretch", "Arial Black", sans-serif;
  font-size: 15px;
  line-height: 0.78;
  letter-spacing: 0.03em;
  transform: scaleX(1.17);
  transform-origin: left;
}

.brand-flame {
  width: 27px;
  height: 39px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  gap: clamp(14px, 2vw, 34px);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

section[id],
#oracao {
  scroll-margin-top: 86px;
}

.desktop-nav a {
  position: relative;
  transition: color 0.25s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--violet), var(--cyan));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--paper);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 0;
  color: inherit;
  background: transparent;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 0.25s ease;
}

.mobile-nav {
  position: fixed;
  top: 74px;
  right: 16px;
  left: 16px;
  z-index: 14;
  padding: 12px;
  background: rgba(20, 18, 27, 0.96);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(20px);
}

.mobile-nav a {
  display: block;
  padding: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.6fr);
  align-items: center;
  gap: 8vw;
  padding: 130px clamp(24px, 8vw, 130px) 82px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 0;
  right: 27%;
  width: 1px;
  height: 100%;
  content: "";
  background: linear-gradient(transparent, var(--line), transparent);
}

.hero-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glow {
  position: absolute;
  top: 11%;
  right: 9%;
  width: 28vw;
  height: 28vw;
  min-width: 290px;
  min-height: 290px;
  background: conic-gradient(from 215deg, var(--pink), var(--yellow), var(--cyan), var(--violet), var(--pink));
  border-radius: 39% 61% 47% 53% / 63% 39% 61% 37%;
  opacity: 0.32;
  filter: blur(76px);
  animation: breathe 8s ease-in-out infinite alternate;
}

.hero-copy,
.hero-spoken {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: #d9d1de;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--red));
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fire Nourd", "Arial Black", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  max-width: 830px;
  font-size: clamp(78px, 11.5vw, 182px);
  line-height: 0.73;
  letter-spacing: -0.055em;
  transform: scaleX(1.04);
  transform-origin: left;
}

h1 em,
h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--paper);
  text-stroke: 1.5px var(--paper);
}

.hero-line {
  margin: 34px 0;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 20px);
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.button svg,
.copy-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.button-primary {
  color: #171018;
  background: linear-gradient(100deg, var(--yellow), var(--orange) 52%, var(--pink));
  box-shadow: 0 14px 40px rgba(255, 70, 35, 0.2);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(255, 70, 35, 0.34);
}

.text-link {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--paper);
}

.text-link span {
  display: inline-block;
  margin-left: 7px;
  color: var(--orange);
  transition: transform 0.25s var(--ease);
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.hero-spoken {
  display: grid;
  justify-items: center;
  justify-self: center;
  width: min(100%, 430px);
  gap: 12px;
}

.hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(190px, 20vw, 290px);
  aspect-ratio: 1;
  isolation: isolate;
  filter: drop-shadow(0 35px 45px rgba(0, 0, 0, 0.5));
}

.hero-mark::before,
.hero-mark::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.hero-mark::before {
  inset: 5%;
  z-index: -2;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 0 70px rgba(255, 255, 255, 0.035),
    0 0 80px rgba(117, 62, 254, 0.13);
}

.hero-mark::after {
  inset: 18%;
  z-index: -1;
  border: 1px solid rgba(251, 135, 22, 0.2);
  transform: rotate(-8deg);
}

.hero-logo-glow {
  position: absolute;
  inset: 18%;
  z-index: -1;
  background: conic-gradient(from 210deg, var(--pink), var(--orange), var(--violet), var(--cyan), var(--pink));
  border-radius: 46% 54% 43% 57% / 55% 42% 58% 45%;
  opacity: 0.42;
  filter: blur(38px);
  animation: breathe 8s ease-in-out infinite alternate;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: clamp(105px, 11vw, 165px);
  height: auto;
  object-fit: contain;
  opacity: 1;
  transform: none;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.42));
}

.verse-drawer {
  width: 100%;
  padding: 22px;
  background: linear-gradient(145deg, rgba(24, 21, 31, 0.93), rgba(10, 9, 14, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.verse-kicker {
  margin: 0;
  font-family: "Arial Black", "Fire DM", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.verse-result {
  min-height: 92px;
  margin: 17px 0;
  padding: 16px 4px 0;
  border-top: 1px solid var(--line);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.verse-result.refreshing {
  opacity: 0;
  transform: translateY(5px);
}

.verse-result p {
  margin: 0;
  color: #f6f0f7;
  font-size: 15px;
  line-height: 1.48;
}

.verse-result cite {
  display: block;
  margin-top: 9px;
  color: var(--orange);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.verse-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 0 20px;
  color: #100c13;
  background: linear-gradient(100deg, var(--yellow), var(--orange) 48%, var(--pink));
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 13px 35px rgba(255, 70, 35, 0.2);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.verse-button span {
  margin-left: 11px;
}

.verse-button:hover,
.verse-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(255, 70, 35, 0.34);
}

.hero-mantra {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-family: "Arial Black", "Fire DM", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.hero-mantra i {
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: clamp(24px, 5vw, 80px);
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0;
  color: #726c78;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.scroll-cue span {
  color: var(--orange);
  animation: bob 1.8s ease-in-out infinite;
}

.fire-ticker {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 16px 0 14px;
  color: #08070b;
  background: linear-gradient(90deg, var(--pink), var(--red), var(--orange), var(--yellow), var(--purple), var(--violet), var(--blue), var(--cyan));
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
  gap: 27px;
  min-width: 100vw;
  padding-inline: 14px;
  font-family: "Arial Black", "Fire DM", sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.fire-ticker b {
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.meeting-section,
.purpose-section,
.spotify-section,
.coming-section,
.connect-section,
.brazito-section {
  padding: clamp(96px, 12vw, 180px) clamp(24px, 8vw, 130px);
}

.meeting-section {
  position: relative;
  background:
    radial-gradient(circle at 88% 20%, rgba(164, 19, 223, 0.13), transparent 24rem),
    #07070a;
  color: var(--paper);
  overflow: hidden;
}

.meeting-logo {
  position: absolute;
  top: 8%;
  right: 4%;
  width: clamp(100px, 15vw, 220px);
  height: auto;
  opacity: 0.055;
  transform: rotate(8deg);
  pointer-events: none;
}

.section-heading {
  display: grid;
  justify-items: start;
  gap: clamp(22px, 3vw, 34px);
  margin-bottom: clamp(46px, 6vw, 72px);
}

.section-heading .eyebrow {
  position: static;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  transform: none;
}

h2 {
  font-size: clamp(58px, 8vw, 118px);
  line-height: 0.82;
  letter-spacing: -0.035em;
  transform: scaleX(1.05);
  transform-origin: left;
}

.meeting-section h2 em {
  -webkit-text-stroke-color: var(--paper);
  text-stroke-color: var(--paper);
}

.meeting-section .section-heading h2 {
  line-height: 0.9;
  transform: none;
}

.fire-lettering {
  display: inline-block;
  margin-top: 0.1em;
  font-family: "Fire Stretch", "Fire Nourd", "Arial Black", sans-serif;
  letter-spacing: 0.015em;
  transform: skewX(-7deg) scaleX(1.08) rotate(-1deg);
  transform-origin: left center;
  filter:
    drop-shadow(2px 0 0 rgba(255, 48, 122, 0.78))
    drop-shadow(-2px 1px 0 rgba(65, 114, 239, 0.68));
}

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

.meeting-card {
  display: grid;
  grid-template-columns: minmax(124px, 0.32fr) minmax(0, 1fr);
  min-height: 360px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.date-block,
.meeting-info {
  padding: clamp(26px, 3vw, 42px);
}

.date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--pink), var(--red) 28%, var(--orange) 72%, var(--yellow));
  color: #09080d;
}

.meeting-card-cult .date-block {
  color: var(--paper);
  background: linear-gradient(145deg, var(--purple), var(--violet) 52%, var(--blue), var(--cyan));
}

.meeting-card-cult .date-month {
  color: var(--paper);
}

.date-day {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(68px, 7vw, 102px);
  line-height: 0.8;
  letter-spacing: -0.04em;
}

.date-month {
  margin-top: 18px;
  color: #09080d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.3em;
}

.meeting-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.live-pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 106, 26, 0.14);
  animation: pulse 1.8s ease-out infinite;
}

.meeting-info h3 {
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.meeting-info .meeting-lettering {
  display: inline-block;
  align-self: flex-start;
  font-family: "Fire Stretch", "Fire Nourd", "Arial Black", sans-serif;
  letter-spacing: 0.02em;
  transform: skewX(-7deg) scaleX(1.06) rotate(-1deg);
  transform-origin: left center;
  filter:
    drop-shadow(2px 0 0 rgba(255, 48, 122, 0.72))
    drop-shadow(-2px 1px 0 rgba(65, 114, 239, 0.62));
}

.meeting-info p {
  margin: 16px 0 0;
  color: #c6bfca;
  font-size: 15px;
  font-weight: 700;
}

.meeting-info .meeting-place {
  margin-top: 5px;
  color: #827c89;
  font-size: 12px;
}

.meeting-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.85fr);
  align-items: center;
  gap: 22px;
  padding: 26px 30px;
  border-top: 1px solid var(--line);
}

.countdown strong,
.countdown span {
  display: block;
}

.countdown strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.countdown span {
  margin-top: 7px;
  color: #827c89;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  color: var(--paper);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s var(--ease);
}

.copy-button:hover,
.copy-button:focus-visible {
  color: #09080d;
  background: var(--orange);
  transform: translateY(-2px);
}

.copy-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.event-explorer {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: end;
  margin-top: 52px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.event-explorer-copy .eyebrow {
  margin-bottom: 18px;
}

.event-explorer-copy > p:last-child {
  max-width: 430px;
  min-height: 48px;
  margin: 0;
  color: #aaa3b0;
  font-size: 14px;
  line-height: 1.55;
}

.event-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.event-tabs button {
  --event-color: var(--pink);
  --event-ink: #09080d;
  min-height: 46px;
  padding: 10px 12px;
  color: #817a86;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s var(--ease);
}

.event-tabs button:nth-child(2) { --event-color: var(--red); --event-ink: white; }
.event-tabs button:nth-child(3) { --event-color: var(--orange); }
.event-tabs button:nth-child(4) { --event-color: var(--yellow); }

.event-lettering {
  display: inline-block;
  font-family: "Fire Stretch", "Fire Nourd", "Arial Black", sans-serif;
  font-size: 1.2em;
  letter-spacing: 0.04em;
  transform: skewX(-8deg) scaleX(1.12) rotate(-1deg);
  transform-origin: center;
  filter: drop-shadow(1px 0 0 rgba(117, 62, 254, 0.55));
}

.event-tabs button:hover,
.event-tabs button:focus-visible {
  color: var(--paper);
  border-color: var(--event-color);
  transform: translateY(-2px);
}

.event-tabs button[aria-selected="true"] {
  color: var(--event-ink);
  border-color: var(--event-color);
  background: var(--event-color);
}

.spotify-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(29, 185, 84, 0.16), transparent 27rem),
    radial-gradient(circle at 92% 90%, rgba(117, 62, 254, 0.14), transparent 25rem),
    #08090b;
}

.spotify-section::before {
  position: absolute;
  inset: 11% auto 11% 50%;
  width: 1px;
  content: "";
  background: linear-gradient(transparent, rgba(29, 185, 84, 0.44), transparent);
}

.spotify-copy,
.spotify-player {
  position: relative;
  z-index: 1;
}

.spotify-copy h2 {
  font-size: clamp(58px, 7.4vw, 108px);
  line-height: 0.88;
  transform: none;
}

.spotify-copy h2 em {
  -webkit-text-stroke-color: #1ed760;
  text-stroke-color: #1ed760;
}

.spotify-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 32px 0 0;
  color: #aaaeb0;
  font-size: 17px;
  line-height: 1.6;
}

.spotify-link {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  margin-top: 28px;
  padding: 0 22px;
  color: #07120b;
  border-radius: 100px;
  background: #1ed760;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.spotify-link:hover,
.spotify-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(29, 185, 84, 0.23);
}

.spotify-player {
  padding: 12px;
  border: 1px solid rgba(29, 185, 84, 0.25);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
}

.spotify-player iframe {
  display: block;
  border-radius: 18px;
}

.purpose-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 9vw;
  min-height: 880px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 48, 122, 0.12), transparent 28rem),
    linear-gradient(130deg, rgba(117, 62, 254, 0.09), transparent 46%),
    #0b0a0f;
}

.purpose-section::after {
  position: absolute;
  inset: auto -10% -55% 35%;
  width: 700px;
  height: 700px;
  content: "";
  background: radial-gradient(circle, rgba(20, 190, 205, 0.14), transparent 67%);
  pointer-events: none;
}

.purpose-copy,
.purpose-explorer,
.purpose-goal {
  position: relative;
  z-index: 2;
}

.purpose-copy h2 {
  max-width: 730px;
}

.purpose-copy .slogan-heading {
  font-size: clamp(48px, 6.4vw, 94px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  transform: none;
}

.about-manifesto {
  max-width: 560px;
  margin: 34px 0 0;
  color: #b7b0bc;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.58;
}

blockquote {
  max-width: 540px;
  margin: 50px 0 0;
  padding-left: 25px;
  color: #aca5b2;
  border-left: 2px solid var(--orange);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.55;
}

blockquote cite {
  display: block;
  margin-top: 15px;
  color: var(--paper);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.history-trigger {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 0;
  color: var(--paper);
  border: 0;
  background: transparent;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.history-trigger span {
  padding: 9px 12px;
  color: #09080d;
  background: var(--yellow);
  border-radius: 100px;
}

.history-trigger:hover,
.history-trigger:focus-visible {
  color: var(--orange);
}

.purpose-explorer {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.explorer-label {
  margin: 0;
  padding: 18px 0;
  color: #6f6975;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.purpose-tabs button {
  display: block;
  width: 100%;
  padding: 24px 0;
  color: #69636f;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: "Fire Nourd", "Arial Black", sans-serif;
  font-size: clamp(21px, 2.2vw, 32px);
  text-align: left;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s ease, padding-left 0.3s var(--ease);
}

.purpose-tabs button:hover,
.purpose-tabs button:focus-visible,
.purpose-tabs button[aria-selected="true"] {
  padding-left: 20px;
  color: var(--paper);
}

.purpose-tabs button[aria-selected="true"]::after {
  float: right;
  color: var(--orange);
  content: "↗";
}

.pillar-panel {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 152px;
  padding: 28px 0;
}

.pillar-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--orange), var(--red));
  border-radius: 50%;
  font-size: 25px;
  font-weight: 900;
}

.pillar-panel p {
  margin: 0;
  color: #b3acb7;
  font-size: 15px;
  line-height: 1.6;
}

.purpose-goal {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 60px);
  margin-top: 8px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.goal-year {
  color: transparent;
  font-family: "Fire Nourd", "Arial Black", sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.05em;
  -webkit-text-stroke: 1px var(--violet);
}

.purpose-goal p {
  max-width: 800px;
  margin: 0;
  color: #aaa3b0;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.55;
}

.purpose-goal strong {
  display: block;
  margin-bottom: 5px;
  color: var(--paper);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.goal-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #09080d;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  border-radius: 50%;
  font-weight: 900;
}

.history-dialog {
  width: min(1080px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  overflow: auto;
  padding: clamp(28px, 5vw, 72px);
  color: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 48, 122, 0.18), transparent 22rem),
    radial-gradient(circle at 10% 90%, rgba(20, 190, 205, 0.13), transparent 25rem),
    #0c0b10;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
}

.history-dialog::backdrop {
  background: rgba(3, 3, 5, 0.82);
  backdrop-filter: blur(12px);
}

.dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.dialog-head h2 {
  font-size: clamp(47px, 6vw, 82px);
}

.dialog-close {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0 0 5px;
  color: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  font-size: 28px;
  cursor: pointer;
}

.dialog-close:hover,
.dialog-close:focus-visible {
  color: #09080d;
  background: var(--yellow);
}

.history-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  border-top: 1px solid var(--line);
}

.history-track article {
  position: relative;
  min-height: 290px;
  padding: 32px 28px 22px 0;
}

.history-track article:not(:last-child) {
  border-right: 1px solid var(--line);
}

.history-track article:not(:first-child) {
  padding-left: 24px;
}

.history-track article::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 48, 122, 0.12);
}

.history-track article:nth-child(2)::before { background: var(--orange); }
.history-track article:nth-child(3)::before { background: var(--violet); }
.history-track article:nth-child(4)::before { background: var(--cyan); }

.history-track article span {
  color: #77717d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.history-track article h3 {
  margin-top: 20px;
  font-size: clamp(22px, 2vw, 30px);
}

.history-track article p {
  margin: 13px 0 0;
  color: #9d96a2;
  font-size: 14px;
  line-height: 1.68;
}

.verse-watermark {
  position: absolute;
  right: -3vw;
  bottom: -0.1em;
  color: transparent;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(240px, 32vw, 520px);
  line-height: 0.8;
  letter-spacing: -0.08em;
  opacity: 0.04;
  -webkit-text-stroke: 2px white;
  text-stroke: 2px white;
  pointer-events: none;
}

.coming-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(50px, 9vw, 140px);
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 34%, rgba(117, 62, 254, 0.2), transparent 25rem),
    radial-gradient(circle at 22% 78%, rgba(255, 48, 122, 0.12), transparent 22rem),
    #07070a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.coming-copy,
.coming-card {
  position: relative;
  z-index: 1;
}

.coming-copy h2 {
  line-height: 0.82;
}

.coming-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.coming-card {
  display: grid;
  justify-items: start;
  padding: clamp(34px, 5vw, 64px);
  background: linear-gradient(145deg, rgba(29, 25, 39, 0.86), rgba(13, 11, 18, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.36);
}

.coming-card img {
  width: 58px;
  height: auto;
  margin-bottom: 42px;
}

.coming-card > span {
  display: inline-flex;
  padding: 9px 13px;
  color: #140d16;
  background: linear-gradient(95deg, var(--yellow), var(--orange), var(--pink));
  border-radius: 999px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.coming-card strong {
  display: block;
  margin-top: 26px;
  font-family: "Fire Stretch", "Fire Nourd", "Arial Black", sans-serif;
  font-size: clamp(38px, 5vw, 74px);
  line-height: 0.92;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  transform: skewX(-6deg) scaleX(1.05);
  transform-origin: left;
}

.coming-card p {
  max-width: 410px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.brazito-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  gap: 7vw;
  min-height: 850px;
  color: #17131e;
  background:
    radial-gradient(circle at 5% 12%, rgba(255, 48, 122, 0.2), transparent 22rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.5), transparent 60%),
    #ddd7e5;
}

.brazito-section .eyebrow {
  color: #5f5868;
}

.brazito-section h2 em {
  -webkit-text-stroke-color: #17131e;
  text-stroke-color: #17131e;
}

.brazito-subtitle {
  max-width: 410px;
  margin: 30px 0 40px;
  color: #655e6c;
  font-size: 17px;
  line-height: 1.6;
}

.mood-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.mood-button {
  padding: 12px 15px;
  color: #5b5562;
  border: 1px solid rgba(23, 19, 30, 0.18);
  border-radius: 100px;
  background: transparent;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.mood-button:hover,
.mood-button:focus-visible,
.mood-button.active {
  color: var(--paper);
  border-color: #17131e;
  background: #17131e;
}

.brazito-stage {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  place-items: center;
  width: min(100%, 590px);
  min-height: 600px;
  justify-self: end;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--pink), var(--red), var(--orange), var(--yellow), var(--purple), var(--violet), var(--blue), var(--cyan)) border-box;
  border: 2px solid transparent;
  border-radius: 44px;
  box-shadow: 0 50px 100px rgba(34, 20, 41, 0.25);
  overflow: hidden;
  isolation: isolate;
}

.brazito-stage::before {
  position: absolute;
  inset: -15%;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 106, 26, 0.1), transparent 30%),
    radial-gradient(circle at 75% 65%, rgba(139, 77, 255, 0.1), transparent 30%);
}

.brazito-frame {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: white;
}

.brazito {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: opacity 0.22s ease, transform 0.45s var(--ease);
}

.brazito.changing {
  opacity: 0;
  transform: translateY(10px) scale(0.96);
}

.brazito-arrow {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #17131e;
  border: 1px solid rgba(23, 19, 30, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.25s var(--ease);
}

.brazito-arrow:hover,
.brazito-arrow:focus-visible {
  color: white;
  background: #17131e;
  transform: scale(1.08);
}

.stage-stamp {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
  color: rgba(23, 19, 30, 0.14);
  font-family: "Fire Stretch", "Arial Black", sans-serif;
  font-size: 12px;
  line-height: 0.8;
  letter-spacing: 0.05em;
  transform: scaleX(1.08);
  transform-origin: right;
}

.palette-dots {
  position: absolute;
  top: 32px;
  left: 30px;
  z-index: 2;
  display: flex;
  gap: 5px;
}

.palette-dots i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.palette-dots i:nth-child(1) { background: var(--pink); }
.palette-dots i:nth-child(2) { background: var(--red); }
.palette-dots i:nth-child(3) { background: var(--orange); }
.palette-dots i:nth-child(4) { background: var(--yellow); }
.palette-dots i:nth-child(5) { background: var(--purple); }
.palette-dots i:nth-child(6) { background: var(--violet); }
.palette-dots i:nth-child(7) { background: var(--blue); }
.palette-dots i:nth-child(8) { background: var(--cyan); }

.mood-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0;
  padding: 19px;
  color: rgba(23, 19, 30, 0.62);
  border-top: 1px solid rgba(23, 19, 30, 0.08);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mood-label span:first-child {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #67ef9a;
  box-shadow: 0 0 12px rgba(103, 239, 154, 0.75);
}

.connect-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 48, 122, 0.15), transparent 27rem),
    radial-gradient(circle at 8% 92%, rgba(20, 190, 205, 0.11), transparent 28rem),
    #08070b;
}

.connect-heading {
  display: grid;
  gap: 26px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.connect-heading .eyebrow {
  margin: 0;
}

.connect-heading h2 {
  line-height: 0.88;
  transform: none;
}

.connect-heading h2 em,
.prayer-copy h2 em {
  -webkit-text-stroke-color: var(--orange);
  text-stroke-color: var(--orange);
}

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

.connect-card-featured {
  grid-column: 1 / -1;
  background:
    linear-gradient(110deg, rgba(248, 240, 54, 0.08), rgba(251, 135, 22, 0.1), rgba(255, 48, 122, 0.08)),
    rgba(255, 255, 255, 0.035);
}

.connect-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 142px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease);
}

.connect-card:hover,
.connect-card:focus-visible {
  color: #09080d;
  border-color: var(--orange);
  background: linear-gradient(110deg, var(--yellow), var(--orange), var(--pink));
  transform: translateY(-4px);
}

.connect-number {
  color: var(--orange);
  font-family: "Fire Nourd", "Arial Black", sans-serif;
  font-size: 18px;
}

.connect-card:hover .connect-number,
.connect-card:focus-visible .connect-number {
  color: #09080d;
}

.connect-card strong {
  display: block;
  font-family: "Fire Nourd", "Arial Black", sans-serif;
  font-size: clamp(23px, 2.1vw, 32px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.connect-card p {
  margin: 8px 0 0;
  color: #99929f;
  font-size: 15px;
}

.connect-card:hover p,
.connect-card:focus-visible p {
  color: rgba(9, 8, 13, 0.72);
}

.connect-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 20px;
}

.prayer-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(48px, 8vw, 120px);
  margin-top: clamp(72px, 10vw, 130px);
  padding-top: clamp(62px, 8vw, 100px);
  border-top: 1px solid var(--line);
}

.prayer-copy h2 {
  font-size: clamp(58px, 7vw, 104px);
  line-height: 0.88;
  transform: none;
}

.prayer-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 30px 0 0;
  color: #aaa3b0;
  font-size: 16px;
  line-height: 1.62;
}

.prayer-form {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.prayer-form label {
  margin-top: 8px;
  color: #d9d2dd;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prayer-form label:first-child {
  margin-top: 0;
}

.prayer-form label span {
  color: #77717d;
  font-size: 12px;
}

.prayer-form input,
.prayer-form textarea {
  width: 100%;
  padding: 16px 17px;
  color: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: rgba(5, 5, 8, 0.62);
  font: 16px/1.5 "Fire DM", Arial, sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.prayer-form textarea {
  min-height: 150px;
  resize: vertical;
}

.prayer-form input:focus,
.prayer-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(251, 135, 22, 0.13);
}

.prayer-form ::placeholder {
  color: #6f6875;
}

.prayer-button {
  width: 100%;
  margin-top: 8px;
  border: 0;
  cursor: pointer;
}

.prayer-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 130px;
  padding: 30px clamp(24px, 5vw, 80px);
  color: #736d79;
  border-top: 1px solid var(--line);
  background: #09080d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand {
  color: var(--paper);
  font-size: 17px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes breathe {
  to { transform: translate(-5%, 7%) scale(1.16) rotate(14deg); }
}

@keyframes bob {
  50% { transform: translateY(5px); }
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(255, 106, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 106, 26, 0); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.brazito-assistant {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  justify-items: end;
}

.chat-launcher {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 7px 18px 7px 7px;
  color: #130e17;
  background: linear-gradient(100deg, var(--yellow), var(--orange) 48%, var(--pink));
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42), 0 8px 28px rgba(255, 48, 122, 0.22);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.chat-launcher:hover,
.chat-launcher:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.48), 0 12px 34px rgba(255, 48, 122, 0.3);
}

.chat-launcher-image {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  overflow: visible;
}

.chat-launcher-crop {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f5f3ee;
  border-radius: 50%;
}

.chat-launcher-crop img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  transform: scale(2.75);
  transform-origin: 53% 52%;
}

.chat-launcher-image i {
  position: absolute;
  right: -1px;
  bottom: 1px;
  z-index: 3;
  width: 14px;
  height: 14px;
  background: #20d36b;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.chat-launcher-label {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 82px;
  display: grid;
  grid-template-rows: auto minmax(170px, 1fr) auto auto auto;
  width: min(390px, calc(100vw - 32px));
  height: min(630px, calc(100svh - 125px));
  overflow: hidden;
  color: var(--paper);
  background: rgba(11, 9, 15, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(24px);
  transform-origin: bottom right;
  animation: chat-in 0.34s var(--ease) both;
}

.chat-panel[hidden] {
  display: none;
}

@keyframes chat-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
}

.chat-head {
  display: grid;
  grid-template-columns: 50px 1fr 42px;
  align-items: center;
  gap: 12px;
  min-height: 80px;
  padding: 13px 14px;
  background: linear-gradient(105deg, rgba(248, 240, 54, 0.12), rgba(251, 135, 22, 0.16), rgba(255, 48, 122, 0.15));
  border-bottom: 1px solid var(--line);
}

.chat-avatar {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  overflow: hidden;
  background: #eee9f1;
  border-radius: 16px;
}

.chat-avatar img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  transform: scale(2.75);
  transform-origin: 53% 52%;
}

.chat-head strong {
  display: block;
  font-family: "Fire Stretch", "Fire Nourd", "Arial Black", sans-serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transform: skewX(-5deg) scaleX(1.04);
  transform-origin: left;
}

.chat-head > div:nth-child(2) > span {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-head span i {
  width: 7px;
  height: 7px;
  background: #20d36b;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(32, 211, 107, 0.1);
}

.chat-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 16px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}

.chat-message {
  max-width: 86%;
  padding: 13px 15px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.48;
}

.chat-message p {
  margin: 0;
}

.chat-message-bot {
  align-self: flex-start;
  color: #e9e2eb;
  background: #211d28;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 5px;
}

.chat-message-user {
  align-self: flex-end;
  color: #140e16;
  background: linear-gradient(105deg, var(--yellow), var(--orange));
  border-bottom-right-radius: 5px;
  font-weight: 700;
}

.chat-message-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 62px;
}

.chat-message-typing i {
  width: 6px;
  height: 6px;
  background: var(--muted);
  border-radius: 50%;
  animation: chat-dot 0.85s ease-in-out infinite alternate;
}

.chat-message-typing i:nth-child(2) { animation-delay: 0.14s; }
.chat-message-typing i:nth-child(3) { animation-delay: 0.28s; }

@keyframes chat-dot {
  to { opacity: 0.25; transform: translateY(-3px); }
}

.chat-response-actions,
.chat-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-response-actions {
  align-self: flex-start;
  max-width: 92%;
  margin-top: -4px;
}

.chat-quick-actions {
  padding: 0 16px 14px;
}

.chat-response-actions a,
.chat-response-actions button,
.chat-quick-actions button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: #ddd6e1;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.chat-response-actions a:hover,
.chat-response-actions a:focus-visible,
.chat-response-actions button:hover,
.chat-response-actions button:focus-visible,
.chat-quick-actions button:hover,
.chat-quick-actions button:focus-visible {
  color: #130e17;
  background: var(--orange);
  border-color: var(--orange);
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 8px;
  padding: 12px 12px 8px;
  border-top: 1px solid var(--line);
}

.chat-form input {
  min-width: 0;
  min-height: 48px;
  padding: 0 16px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  outline: 0;
  font-size: 16px;
}

.chat-form input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(251, 135, 22, 0.12);
}

.chat-form button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: #130e17;
  background: linear-gradient(135deg, var(--yellow), var(--orange), var(--pink));
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
}

.chat-form input:disabled,
.chat-form button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.chat-privacy {
  margin: 0;
  padding: 0 14px 11px;
  color: #706978;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    top: 86px;
  }

  .menu-button {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 58px;
    padding-top: 132px;
  }

  .hero::before {
    display: none;
  }

  .hero-spoken {
    justify-self: start;
    width: min(100%, 430px);
  }

  .meeting-card {
    grid-template-columns: 145px 1fr;
  }

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

  .meeting-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    border-top: 1px solid var(--line);
  }

  .purpose-section,
  .spotify-section,
  .coming-section,
  .brazito-section {
    grid-template-columns: 1fr;
  }

  .spotify-section,
  .prayer-panel {
    grid-template-columns: 1fr;
  }

  .spotify-section::before {
    display: none;
  }

  .event-explorer {
    grid-template-columns: 1fr;
  }

  .purpose-section {
    gap: 80px;
  }

  .coming-section {
    gap: 70px;
  }

  .history-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .history-track article:nth-child(2) {
    border-right: 0;
  }

  .history-track article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .brazito-stage {
    justify-self: center;
  }
}

@media (max-width: 600px) {
  .site-header {
    height: 74px;
    padding-inline: 20px;
  }

  .mobile-nav {
    top: 74px;
  }

  .hero {
    min-height: 820px;
    padding: 110px 24px 75px;
  }

  h1 {
    font-size: clamp(68px, 23vw, 105px);
    line-height: 0.76;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-spoken {
    justify-self: stretch;
    width: 100%;
  }

  .hero-mark {
    width: min(62vw, 235px);
  }

  .verse-drawer {
    padding: 20px;
  }

  .scroll-cue {
    display: none;
  }

  .meeting-section,
  .purpose-section,
  .spotify-section,
  .coming-section,
  .connect-section,
  .brazito-section {
    padding: 100px 24px;
  }

  .section-heading {
    gap: 20px;
    margin-bottom: 42px;
  }

  .meeting-section .section-heading h2 {
    font-size: clamp(52px, 16.5vw, 72px);
    line-height: 0.94;
  }

  .fire-lettering {
    margin-top: 0.14em;
    transform: skewX(-5deg) scaleX(1.03) rotate(-1deg);
  }

  .meeting-card {
    grid-template-columns: 104px 1fr;
  }

  .date-block,
  .meeting-info,
  .meeting-actions {
    padding: 25px 20px;
  }

  .date-day {
    font-size: 59px;
  }

  .meeting-info h3 {
    font-size: 31px;
  }

  .meeting-actions {
    grid-template-columns: 1fr;
  }

  .event-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .spotify-copy h2,
  .connect-heading h2,
  .prayer-copy h2 {
    font-size: clamp(52px, 16vw, 72px);
    line-height: 0.94;
  }

  .spotify-player {
    padding: 8px;
    border-radius: 20px;
  }

  .spotify-player iframe {
    height: 352px;
    border-radius: 14px;
  }

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

  .connect-card {
    gap: 16px;
    min-height: 128px;
    padding: 24px 20px;
  }

  .connect-arrow {
    width: 40px;
    height: 40px;
  }

  .prayer-panel {
    gap: 42px;
    margin-top: 80px;
    padding-top: 70px;
  }

  .prayer-form {
    padding: 24px 20px;
  }

  .purpose-section {
    min-height: auto;
  }

  .purpose-goal {
    grid-template-columns: 1fr auto;
  }

  .goal-year {
    grid-column: 1 / -1;
  }

  .history-track {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .history-track article,
  .history-track article:not(:first-child) {
    min-height: 0;
    padding: 27px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .history-track article:first-child {
    border-top: 0;
  }

  .brazito-stage {
    min-height: 470px;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    border-radius: 28px;
  }

  .brazito {
    width: 100%;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
}

@media (max-width: 600px) {
  .brazito-assistant {
    right: 12px;
    bottom: 12px;
  }

  .chat-panel {
    right: 0;
    bottom: 76px;
    width: calc(100vw - 24px);
    height: min(620px, calc(100svh - 100px));
    border-radius: 24px;
  }

  .chat-launcher {
    min-height: 62px;
    padding: 5px;
  }

  .chat-launcher-image {
    width: 52px;
    height: 52px;
  }

  .chat-launcher-label {
    display: none;
  }

  .chat-message {
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  .hero {
    justify-items: center;
    gap: 48px;
    min-height: auto;
    padding: 112px 20px 76px;
    text-align: center;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
    width: 100%;
    min-width: 0;
  }

  .hero-copy .eyebrow,
  .section-heading .eyebrow,
  .spotify-copy .eyebrow,
  .purpose-copy .eyebrow,
  .coming-copy .eyebrow,
  .brazito-copy .eyebrow,
  .connect-heading .eyebrow,
  .prayer-copy .eyebrow {
    justify-content: center;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(58px, 20vw, 86px);
    line-height: 0.84;
    text-align: center;
    transform: none;
    transform-origin: center;
  }

  .hero-line {
    max-width: 320px;
    margin: 28px auto;
    line-height: 1.5;
  }

  .hero-actions {
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 22px;
  }

  .hero-actions .button {
    width: min(100%, 320px);
  }

  .hero-mantra {
    justify-content: center;
    max-width: 310px;
    margin: 26px auto 0;
    line-height: 1.5;
    text-align: center;
  }

  .hero-spoken {
    justify-self: center;
    width: min(100%, 430px);
    min-width: 0;
  }

  .hero-mark {
    width: min(58vw, 218px);
    margin-inline: auto;
  }

  .hero-logo {
    width: min(31vw, 124px);
  }

  .verse-drawer {
    width: min(100%, 420px);
    margin-inline: auto;
    padding: 20px 18px;
    text-align: center;
  }

  .verse-result {
    display: grid;
    align-content: center;
    min-height: 104px;
  }

  .verse-button {
    min-height: 56px;
    padding-inline: 16px;
    line-height: 1.3;
    white-space: normal;
  }

  .section-heading,
  .spotify-copy,
  .purpose-copy,
  .coming-copy,
  .brazito-copy,
  .connect-heading,
  .prayer-copy {
    justify-items: center;
    text-align: center;
  }

  h2,
  .purpose-copy .slogan-heading,
  .coming-copy h2 {
    max-width: 100%;
    text-align: center;
    transform: none;
    transform-origin: center;
  }

  .spotify-copy > p:not(.eyebrow),
  .about-manifesto,
  .coming-copy > p:not(.eyebrow),
  .brazito-subtitle,
  .prayer-copy > p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .spotify-link,
  .history-trigger {
    margin-right: auto;
    margin-left: auto;
  }

  blockquote {
    margin-right: auto;
    margin-left: auto;
    padding: 22px 0 0;
    border-top: 2px solid var(--orange);
    border-left: 0;
    text-align: center;
  }

  .coming-card {
    justify-items: center;
    padding: 32px 24px;
    text-align: center;
  }

  .coming-card img {
    margin-bottom: 32px;
  }

  .coming-card strong {
    max-width: 100%;
    font-size: clamp(36px, 12vw, 52px);
    transform: skewX(-3deg) scaleX(0.98);
    transform-origin: center;
  }

  .mood-controls {
    justify-content: center;
  }

  .meeting-section,
  .purpose-section,
  .spotify-section,
  .coming-section,
  .connect-section,
  .brazito-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .meeting-card,
  .event-explorer,
  .spotify-player,
  .purpose-explorer,
  .purpose-goal,
  .coming-card,
  .brazito-stage,
  .connect-grid,
  .prayer-panel {
    width: 100%;
    min-width: 0;
  }

  .connect-card {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .connect-card strong {
    font-size: clamp(20px, 6.5vw, 26px);
  }

  footer {
    align-items: center;
    padding-right: 20px;
    padding-left: 20px;
    text-align: center;
  }

  .footer-brand {
    transform-origin: center;
  }
}

@media (max-width: 420px) {
  .meeting-card {
    grid-template-columns: 1fr;
  }

  .date-block {
    min-height: 112px;
    flex-direction: row;
    gap: 18px;
  }

  .date-month {
    margin-top: 0;
  }

  .meeting-info {
    align-items: center;
    text-align: center;
  }

  .live-pill {
    align-self: center;
  }

  .meeting-actions,
  .countdown {
    text-align: center;
  }

  .copy-button {
    width: 100%;
  }

  .event-tabs {
    grid-template-columns: 1fr;
  }

  .connect-card {
    gap: 12px;
    padding: 22px 16px;
  }

  .connect-arrow {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
