:root {
  --black: #000000;
  --white: #ffffff;
  --yellow: #ffd400;
  --line: rgba(255, 255, 255, 0.16);
  --muted: rgba(255, 255, 255, 0.76);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: Inter, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body.is-scroll-locked {
  overflow: hidden;
}

a,
button,
[role="button"],
input,
select,
textarea {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: radial-gradient(circle at 20% 20%, #fff 0.5px, transparent 1px);
  background-size: 3px 3px;
}

.section {
  position: relative;
  z-index: 1;
  padding: 96px 0;
}

.section-dark {
  background: #060606;
}

.welcome-video {
  padding-top: 34px;
  padding-bottom: 18px;
}

.welcome-video-card {
  width: min(1120px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(16px, 2.2vw, 22px);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 212, 0, 0.1), transparent 38%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.welcome-video-card .section-title {
  margin-bottom: 10px;
  font-size: clamp(1.3rem, 2.8vw, 1.7rem);
}

.welcome-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.welcome-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  overflow: hidden;
  background: #080808;
}

.welcome-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5.8vw, 5.1rem);
  line-height: 1.02;
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  margin-bottom: 24px;
}

p {
  color: var(--muted);
}

.text-yellow {
  color: var(--yellow);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1080px;
}

.hero-content > * {
  position: relative;
  z-index: 2;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 34%, rgba(255, 212, 0, 0.07), rgba(0, 0, 0, 0) 35%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.58));
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 82% center;
  display: block;
  z-index: 0;
  filter: brightness(0.48) saturate(0.84) contrast(1.04);
}

.hero-audio-mark {
  position: absolute;
  left: -3%;
  top: 9%;
  width: 106%;
  height: min(52vh, 440px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 260'%3E%3Cpath d='M0 130 C60 44 140 216 210 130 C280 44 360 216 430 130 C500 44 580 216 650 130 C720 44 800 216 870 130 C940 44 1020 216 1090 130 C1140 70 1180 100 1200 130' stroke='rgba(255,212,0,0.42)' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 260'%3E%3Cpath d='M0 150 C80 246 140 54 220 150 C300 246 360 54 440 150 C520 246 580 54 660 150 C740 246 800 54 880 150 C960 246 1020 54 1100 150 C1140 182 1180 170 1200 150' stroke='rgba(255,255,255,0.22)' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 980px 46%, 1160px 46%;
  background-position: 0 28%, 0 72%;
  filter: blur(0.4px);
  animation: watermarkWaveShift 20s linear infinite;
}

.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  margin-bottom: 14px;
}

.eyebrow-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 2px;
}

.eyebrow-link:hover {
  text-decoration-color: rgba(255, 212, 0, 0.9);
}

.trainer {
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 18px;
}

.lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 64ch;
  margin: 22px 0 24px;
}

.hero-subtitle {
  font-size: clamp(1.02rem, 2.15vw, 1.24rem);
  line-height: 1.45;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 12px;
}

.inline-trigger {
  border: 0;
  background: transparent;
  color: var(--yellow);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(255, 212, 0, 0.55);
  text-underline-offset: 2px;
  padding: 0;
}

.inline-trigger:hover {
  text-decoration-color: rgba(255, 212, 0, 0.95);
}

.inline-link {
  color: var(--yellow);
  text-decoration: underline;
  text-decoration-color: rgba(255, 212, 0, 0.55);
  text-underline-offset: 2px;
  font-weight: 600;
}

.inline-link:hover {
  text-decoration-color: rgba(255, 212, 0, 0.95);
}

.hero-price {
  margin-bottom: 10px;
}

.label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.amount {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1;
  color: var(--white);
}

.urgency {
  margin: 0 0 24px;
  color: var(--white);
}

.urgency strong {
  color: var(--yellow);
}

.flash-plazas {
  animation: plazasBlink 1.8s linear infinite;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 212, 0, 0.25);
  background: #ffe14f;
}

.register-wrap {
  max-width: 760px;
}

.register-title {
  font-size: clamp(2rem, 6vw, 3.8rem);
  max-width: 18ch;
}

.register-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-size: 0.92rem;
}

.form-field {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  padding: 12px 13px;
  font: inherit;
}

.form-field:focus {
  outline: none;
  border-color: rgba(255, 212, 0, 0.75);
  box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.14);
}

textarea.form-field {
  resize: vertical;
}

.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.consent-row input {
  margin-top: 3px;
}

.register-btn {
  width: fit-content;
}

.form-status {
  margin-top: 12px;
  color: var(--muted);
}

.register-note {
  margin-top: 18px;
  margin-bottom: 0;
}

.back-link-wrap {
  margin-top: 18px;
}

.back-link {
  color: var(--yellow);
  text-decoration: none;
}

.wavefield {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0.16;
  z-index: 1;
}

.wavefield span {
  width: 3px;
  border-radius: 999px;
  background: var(--yellow);
  animation: wave 2.1s ease-in-out infinite;
}

.wavefield span:nth-child(1) { height: 42px; }
.wavefield span:nth-child(2) { height: 86px; animation-delay: 0.12s; }
.wavefield span:nth-child(3) { height: 140px; animation-delay: 0.24s; }
.wavefield span:nth-child(4) { height: 190px; animation-delay: 0.36s; }
.wavefield span:nth-child(5) { height: 140px; animation-delay: 0.48s; }
.wavefield span:nth-child(6) { height: 86px; animation-delay: 0.6s; }
.wavefield span:nth-child(7) { height: 42px; animation-delay: 0.72s; }

.value-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

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

.strip-link {
  color: var(--white);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 8px 10px;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.strip-link:hover {
  border-color: rgba(255, 212, 0, 0.55);
  color: var(--yellow);
  background: rgba(255, 212, 0, 0.05);
}

.strip-link-btn {
  appearance: none;
  background: transparent;
  font: inherit;
  cursor: pointer;
  width: 100%;
}

.ai-stack {
  padding-top: 30px;
  padding-bottom: 12px;
}

.ai-stack-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(18px, 3vw, 30px);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 212, 0, 0.1), transparent 38%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

.ai-stack-card .section-title {
  margin-bottom: 12px;
}

.ai-stack-card .lead {
  margin-top: 0;
  margin-bottom: 18px;
  max-width: 76ch;
}

.ai-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ai-tool-item {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.ai-tool-icon-wrap {
  width: 78px;
  height: 78px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 12px;
  padding: 8px;
}

.ai-tool-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: none;
}

.ai-tool-item h3 {
  margin-bottom: 6px;
}

.ai-tool-item p {
  color: var(--muted);
}

.ai-tool-item--eleven .ai-tool-icon-wrap,
.ai-tool-item--chatgpt .ai-tool-icon-wrap {
  background: #f2f2f2;
  border-color: rgba(255, 255, 255, 0.42);
}

.ai-tool-item--vocolia .ai-tool-icon-wrap {
  background: #030303;
}

.brand-links {
  padding: 32px 0 18px;
}

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

.brand-links-title {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.brand-link-card {
  position: relative;
  display: grid;
  gap: 10px;
  width: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 212, 0, 0.12), transparent 44%),
    linear-gradient(170deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.brand-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 212, 0, 0.55);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.brand-link-card h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.brand-link-card p {
  color: var(--muted);
}

.brand-link-card .kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow);
}

.brand-link-card span {
  margin-top: 2px;
  color: var(--yellow);
  font-weight: 700;
}

.map-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #0a0a0a;
  display: grid;
}

.map-card iframe {
  width: 100%;
  min-height: 318px;
  border: 0;
  display: block;
  filter: grayscale(0.08) saturate(0.88) contrast(1.02);
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  color: var(--yellow);
  text-decoration: none;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.02);
}

.map-link:hover {
  background: rgba(255, 212, 0, 0.08);
}

.streaming-live-card {
  grid-column: 1 / -1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: clamp(16px, 2.6vw, 24px);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 51, 51, 0.14), transparent 40%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.streaming-live-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ff4d4d;
  font-weight: 800;
}

.streaming-live-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff2d2d;
  box-shadow: 0 0 10px rgba(255, 45, 45, 0.75);
}

.streaming-live-card h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  margin-bottom: 8px;
}

.streaming-live-card p {
  color: var(--muted);
}

.streaming-live-note {
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 212, 0, 0.38);
  border-radius: 12px;
  background: rgba(255, 212, 0, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

.streaming-live-note strong {
  color: var(--yellow);
}

.podcast-showcase {
  padding-top: 24px;
}

.podcast-showcase-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(18px, 3vw, 28px);
  background:
    radial-gradient(circle at 95% 0%, rgba(255, 212, 0, 0.09), transparent 40%),
    linear-gradient(170deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018));
}

.podcast-showcase-card .section-title {
  margin-bottom: 16px;
}

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

.podcast-cover {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #090909;
}

.podcast-cover img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.bonus-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
}

.bonus-modal[hidden] {
  display: none;
}

.bonus-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(2px);
}

.bonus-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #090909;
  padding: clamp(20px, 3vw, 32px);
}

.bonus-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 1.75rem;
  min-width: 44px;
  min-height: 44px;
  line-height: 1;
  cursor: pointer;
}

.bonus-modal__kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow);
  margin-bottom: 6px;
}

.bonus-modal__dialog h3 {
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 3.4vw, 2rem);
}

.bonus-modal__small {
  margin-top: 12px;
  font-size: 0.94rem;
  line-height: 1.52;
}

.bonus-modal__cta {
  margin-top: 18px;
}

.studio-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
}

.studio-modal[hidden] {
  display: none;
}

.studio-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.studio-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #090909;
  padding: 22px;
}

.studio-modal__close {
  position: absolute;
  right: 14px;
  top: 10px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 1.7rem;
  min-width: 44px;
  min-height: 44px;
  line-height: 1;
  cursor: pointer;
}

.studio-modal__kicker {
  margin-bottom: 4px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.studio-modal__dialog h3 {
  margin-bottom: 16px;
}

.studio-gallery {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 10px;
  align-items: center;
}

.studio-gallery__frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #030303;
  aspect-ratio: 16 / 10;
}

.studio-gallery__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-gallery__nav {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.45rem;
  cursor: pointer;
}

.studio-gallery__nav:hover {
  border-color: rgba(255, 212, 0, 0.9);
  color: var(--yellow);
}

.studio-gallery__thumbs {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.studio-thumb {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  padding: 0;
}

.studio-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.studio-thumb.is-active {
  border-color: var(--yellow);
  box-shadow: 0 0 0 2px rgba(255, 212, 0, 0.2);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 38px;
  background: #050505;
}

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

.footer-brand {
  color: var(--white);
  font-weight: 800;
  font-size: 1.02rem;
}

.footer-copy {
  margin-top: 8px;
}

.footer-title {
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.74rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 6px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--yellow);
}

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

.legal-card {
  display: grid;
  gap: 14px;
}

.legal-card h2 {
  font-size: clamp(1.15rem, 2.8vw, 1.5rem);
  margin-bottom: 0;
}

.community-card {
  display: grid;
  gap: 18px;
}

.community-intro {
  border: 1px solid rgba(255, 212, 0, 0.85);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 212, 0, 0.08);
}

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

.community-lock-note {
  margin-top: 2px;
  color: var(--yellow);
  font-size: 0.92rem;
}

.community-grid-locked {
  position: relative;
  opacity: 1;
}

.community-grid-locked .community-item {
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 212, 0, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.22);
}

.community-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.community-item h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.community-cta {
  margin-top: 8px;
  width: fit-content;
}

.community-actions {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.community-cta-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.community-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.community-item-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--yellow);
  text-decoration: none;
  font-weight: 700;
}

.community-item-link:hover {
  text-decoration: underline;
}

.guide-card {
  margin-top: 14px;
}

.guide-card > p {
  font-size: 0.95rem;
}

.guide-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

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

.guide-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.guide-item h2 {
  font-size: 0.96rem;
  margin-bottom: 6px;
}

.template-pre {
  margin: 0;
  white-space: pre-wrap;
  font-family: Inter, sans-serif;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--muted);
}

.assistant-card {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.assistant-intro {
  margin-top: -4px;
}

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

.assistant-result {
  border: 1px solid rgba(255, 212, 0, 0.65);
  border-radius: 12px;
  padding: 14px;
  background: rgba(255, 212, 0, 0.08);
}

.assistant-result h3,
.assistant-result h4 {
  margin-bottom: 8px;
}

.assistant-result h4 {
  margin-top: 10px;
  font-size: 1rem;
}

.assistant-list {
  list-style: none;
  display: grid;
  gap: 6px;
}

.assistant-list li {
  position: relative;
  padding-left: 14px;
}

.assistant-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}

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

.prompt-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.prompt-card h2 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

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

.video-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.video-thumb {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 212, 0, 0.18), transparent 30%),
    linear-gradient(145deg, #171717, #0b0b0b);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.video-thumb span {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.video-item h2 {
  font-size: 1rem;
  margin-top: 10px;
  margin-bottom: 6px;
}

.video-item p {
  font-size: 0.9rem;
}

.custom-templates-list {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.btn-sm {
  margin-top: 10px;
  padding: 8px 14px;
  font-size: 0.84rem;
}

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

.audience-block {
  padding-top: 34px;
  padding-bottom: 34px;
}

.radio-legacy-block {
  padding-top: 24px;
}

.audience-card {
  border: 1px solid rgba(255, 212, 0, 0.9);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--yellow);
  color: #111;
  box-shadow: 0 18px 36px rgba(255, 212, 0, 0.2);
}

.audience-card h2 {
  margin-bottom: 12px;
  color: #111;
}

.audience-card p + p {
  margin-top: 10px;
}

.audience-card p {
  color: rgba(17, 17, 17, 0.86);
}

.audience-list {
  margin-top: 16px;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.audience-list li {
  color: rgba(17, 17, 17, 0.9);
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 212, 0, 0.55);
}

.icon {
  color: var(--yellow);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card-note {
  margin-top: 8px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}

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

.timeline-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.02);
}

.timeline-item h3 {
  margin-bottom: 12px;
}

.timeline-item ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.timeline-item li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
}

.timeline-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.radio-20-section {
  padding-top: 24px;
}

.radio-20-card {
  border: 1px solid rgba(255, 212, 0, 0.3);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 34px);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.03), rgba(255, 212, 0, 0.06));
}

.radio-20-card p {
  max-width: 74ch;
}

.radio-20-list {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 9px;
}

.radio-20-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.radio-20-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.split-top {
  align-items: start;
}

.bio-copy p + p {
  margin-top: 12px;
}

.radio-important-note {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 212, 0, 0.42);
  border-radius: 12px;
  background: rgba(255, 212, 0, 0.08);
  color: rgba(255, 255, 255, 0.94);
}

.radio-important-note strong {
  color: var(--yellow);
  font-weight: 700;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 9px;
  margin: 16px 0;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.highlight {
  color: var(--white);
  font-weight: 700;
}

.photo {
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.62);
}

.studio-carousel {
  position: relative;
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #101010, #050505);
}

.carousel-track {
  position: relative;
  min-height: 340px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

.carousel-slide img[src=""],
.carousel-slide img:not([src]) {
  display: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  font-size: 1.4rem;
  line-height: 1;
}

.carousel-btn.prev {
  left: 12px;
}

.carousel-btn.next {
  right: 12px;
}

.carousel-btn:hover {
  border-color: rgba(255, 212, 0, 0.7);
  color: var(--yellow);
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 2;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.dot.is-active {
  background: var(--yellow);
}

.studio-placeholder {
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 212, 0, 0.2), transparent 34%),
    linear-gradient(135deg, #0f0f0f, #040404);
}

.story-photo {
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 20px;
  margin: 0;
  overflow: hidden;
  position: relative;
  background: #070707;
}

.story-photo img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center 62%;
  filter: brightness(0.58) saturate(0.52) contrast(1.08);
}

.story-photo figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  color: var(--yellow);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.milestone-list {
  list-style: none;
  margin-top: 14px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.milestone-list li {
  color: var(--muted);
  position: relative;
  padding-left: 16px;
}

.milestone-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.career-block {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.career-block h3 {
  margin-bottom: 10px;
}

.price-section {
  text-align: center;
}

.price-card {
  max-width: 470px;
  margin: 22px auto 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 212, 0, 0.08), rgba(255, 255, 255, 0.02));
}

.normal {
  margin-top: 6px;
  text-decoration: line-through;
}

.limited {
  margin-top: 7px;
  color: var(--yellow);
  font-weight: 700;
}

.streaming-note {
  margin-top: 10px;
}

.streaming-note a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
}

.streaming-note a:hover {
  text-decoration: underline;
}

.final-cta {
  text-align: center;
  border-top: 0;
  padding-top: 28px;
  padding-bottom: 28px;
}

.final-cta .container {
  border: 1px solid rgba(255, 212, 0, 0.95);
  border-radius: 20px;
  background: var(--yellow);
  color: #111;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 22px 42px rgba(255, 212, 0, 0.22);
}

.final-cta h2 {
  color: #111;
  margin-bottom: 18px;
}

.final-cta .btn {
  background: #111;
  color: #fff;
}

.final-cta .btn:hover {
  background: #000;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.team-cta {
  text-align: center;
  padding-top: 22px;
  padding-bottom: 30px;
}

.team-cta .container {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: clamp(22px, 4vw, 36px);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.team-cta h2 {
  margin-bottom: 10px;
}

.team-cta p {
  max-width: 66ch;
  margin: 0 auto 18px;
}

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

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

@keyframes wave {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.76;
  }
  50% {
    transform: scaleY(1.15);
    opacity: 1;
  }
}

@keyframes plazasBlink {
  0%,
  100% {
    color: #ffd400;
    text-shadow: 0 0 8px rgba(255, 212, 0, 0.45);
  }
  33% {
    color: #3ddc84;
    text-shadow: 0 0 8px rgba(61, 220, 132, 0.45);
  }
  66% {
    color: #b56bff;
    text-shadow: 0 0 8px rgba(181, 107, 255, 0.45);
  }
}

@keyframes watermarkWaveShift {
  from {
    background-position: 0 28%, 0 72%;
  }
  to {
    background-position: 980px 28%, -1160px 72%;
  }
}

@supports (height: 100dvh) {
  .hero {
    min-height: 100dvh;
  }

  .studio-modal__dialog {
    max-height: min(92dvh, 860px);
  }
}

@media (max-width: 1080px) {
  .learn-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .container {
    width: min(1120px, 92%);
  }

  .section {
    padding: 68px 0;
  }

  .strip-grid,
  .timeline,
  .split {
    grid-template-columns: 1fr;
  }

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

  .brand-links-grid {
    grid-template-columns: 1fr;
  }

  .ai-tools-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

  .strip-link {
    font-size: 0.98rem;
    padding: 10px 8px;
  }

  .hero {
    min-height: auto;
    padding-top: 94px;
    padding-bottom: 86px;
  }

  .hero-audio-mark {
    left: -7%;
    top: 12%;
    width: 114%;
    height: min(38vh, 290px);
    opacity: 0.16;
  }

  .studio-modal__dialog {
    padding: 18px;
  }

  .studio-gallery {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .studio-gallery__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  body {
    font-size: 17px;
  }

  .container {
    width: min(1120px, 94%);
  }

  h1 {
    font-size: clamp(2.45rem, 10.8vw, 3.25rem);
    max-width: 14ch;
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.95rem, 8vw, 2.35rem);
  }

  .hero-content {
    max-width: 100%;
  }

  .lead {
    font-size: 1.08rem;
    max-width: 100%;
  }

  .urgency {
    font-size: 1.02rem;
    line-height: 1.45;
  }

  .strip-link {
    font-size: 1.02rem;
  }

  .card,
  .timeline-item,
  .price-card,
  .brand-link-card {
    padding: 22px;
  }

  .learn-grid,
  .include-grid {
    grid-template-columns: 1fr;
  }

  .assistant-controls {
    grid-template-columns: 1fr;
  }

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

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

  .welcome-video-grid {
    grid-template-columns: 1fr;
  }

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

  .map-card iframe {
    min-height: 240px;
  }

  .btn {
    width: 100%;
    max-width: 360px;
  }

  .story-photo figcaption {
    font-size: 0.62rem;
  }

  .split {
    gap: 16px;
  }

  .story-photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .story-photo img {
    min-height: 0;
    object-position: center 22%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .milestone-list {
    grid-template-columns: 1fr;
  }

  .hero-audio-mark {
    top: 16%;
    height: 210px;
    opacity: 0.13;
  }

  .studio-modal {
    padding: 12px;
  }

  .studio-modal__dialog {
    padding: 14px;
    border-radius: 14px;
  }

  .studio-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .studio-gallery__nav {
    width: 100%;
    border-radius: 10px;
    height: 40px;
  }

  .studio-gallery__nav.prev {
    order: 2;
  }

  .studio-gallery__nav.next {
    order: 3;
  }

  .studio-gallery__frame {
    order: 1;
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero-audio-mark {
    animation: none;
  }

  .hero-bg-video {
    display: none;
  }
}

/* Canva hub */
.canva-hub {
  background: #ececec;
  color: #111;
}

.canva-section {
  padding-top: 34px;
}

.canva-wrap .eyebrow {
  border-color: rgba(0, 0, 0, 0.14);
  color: rgba(0, 0, 0, 0.72);
}

.canva-wrap .register-title,
.canva-wrap h2,
.canva-wrap h3 {
  color: #141414;
}

.canva-wrap p {
  color: rgba(0, 0, 0, 0.7);
}

.canva-lead {
  margin-bottom: 18px;
}

.canva-categories-wrap,
.canva-gallery-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.canva-categories,
.canva-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 1fr);
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.canva-categories::-webkit-scrollbar,
.canva-gallery::-webkit-scrollbar {
  display: none;
}

.canva-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 82px;
  padding: 14px 16px;
  border-radius: 16px;
  text-decoration: none;
  color: #161616;
  font-weight: 700;
  background: #dcc8eb;
}

.canva-chip:nth-child(2n) {
  background: #e5d2c4;
}

.canva-chip:nth-child(3n) {
  background: #e9dfb9;
}

.canva-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #222;
  font-size: 1.8rem;
  cursor: pointer;
}

.canva-block {
  margin-top: 26px;
}

.canva-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.canva-view-all {
  color: #8756ff;
  text-decoration: none;
  font-weight: 700;
}

.canva-gallery {
  grid-auto-columns: minmax(320px, 1fr);
}

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

.canva-card {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  padding: 10px;
}

.canva-card h3 {
  font-size: 1.02rem;
  margin-top: 10px;
}

.canva-card p {
  font-size: 0.9rem;
  margin-top: 4px;
}

.canva-thumb {
  height: 220px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f8d5cf, #d8b7ee);
}

.canva-thumb.t2 { background: linear-gradient(135deg, #f35e61, #ffc86e); }
.canva-thumb.t3 { background: linear-gradient(135deg, #d8d8d8, #bfbfbf); }
.canva-thumb.t4 { background: linear-gradient(135deg, #b7d2ff, #d6f1ff); }
.canva-thumb.t5 { background: linear-gradient(135deg, #e7bef1, #fff0c7); }
.canva-thumb.t6 { background: linear-gradient(135deg, #bfd3ff, #e4d5ff); }
.canva-thumb.t7 { background: linear-gradient(135deg, #fde7be, #fbc7cc); }

.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;
}

.chat-widget {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 140;
}

.chat-launch {
  border: 1px solid rgba(255, 212, 0, 0.7);
  background: rgba(255, 212, 0, 0.16);
  color: var(--yellow);
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 54px;
  width: min(360px, calc(100vw - 24px));
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #0b0b0b;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.chat-title {
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
}

.chat-subtitle {
  font-size: 0.74rem;
}

.chat-close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.chat-messages {
  padding: 10px;
  display: grid;
  gap: 8px;
  max-height: 230px;
  overflow: auto;
}

.chat-bubble {
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.88rem;
  line-height: 1.4;
}

.chat-bubble--bot {
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
}

.chat-bubble--user {
  background: rgba(255, 212, 0, 0.2);
  color: #fff;
  justify-self: end;
}

.chat-quick-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  padding: 0 10px 10px;
}

.chat-quick-actions button {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 0.72rem;
  padding: 6px 7px;
  cursor: pointer;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 0 10px 10px;
}

.chat-form input {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  padding: 9px 10px;
  font: inherit;
}

.chat-form button {
  border: 1px solid rgba(255, 212, 0, 0.8);
  border-radius: 10px;
  background: var(--yellow);
  color: #111;
  font-weight: 700;
  padding: 9px 11px;
  cursor: pointer;
}

.chat-ctas {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 0 10px 11px;
}

.chat-ctas a {
  font-size: 0.76rem;
  color: var(--yellow);
  text-decoration: none;
}

.chat-ctas a:hover {
  text-decoration: underline;
}

@media (max-width: 820px) {
  .canva-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chat-widget {
    right: 12px;
    bottom: 84px;
  }

  .chat-panel {
    width: min(350px, calc(100vw - 18px));
    bottom: 50px;
  }
}

@media (max-width: 560px) {
  .canva-categories-wrap,
  .canva-gallery-wrap {
    grid-template-columns: 1fr;
  }

  .canva-arrow {
    display: none;
  }

  .canva-gallery {
    grid-auto-columns: minmax(260px, 1fr);
  }

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