:root {
  --bg: #f3edf8;
  --ink: #1d1730;
  --muted: #5f5978;
  --line: #d9cbea;
  --primary: #f20078;
  --primary-2: #8a37ff;
  --header: linear-gradient(120deg, #6a3ea6 0%, #7f4bb8 52%, #945ec7 100%);
  --scrollbar-track: #2f184f;
  --scrollbar-thumb-solid: #a67bd8;
  --scrollbar-thumb-start: #b58ae6;
  --scrollbar-thumb-end: #8d62bf;
  --scrollbar-thumb-hover-start: #c29af0;
  --scrollbar-thumb-hover-end: #9b70cf;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% -8%, #efe2ff 0%, transparent 35%),
    radial-gradient(circle at 85% 8%, #ffe7f5 0%, transparent 28%),
    var(--bg);
}

/* Scrollbar global fino em lilas */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb-solid) var(--scrollbar-track);
}

*::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

*::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--scrollbar-thumb-start) 0%, var(--scrollbar-thumb-end) 100%);
  border-radius: 999px;
  border: 1px solid var(--scrollbar-track);
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--scrollbar-thumb-hover-start) 0%, var(--scrollbar-thumb-hover-end) 100%);
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
}

.site-header,
.utility-bar,
.utility-inner,
.main-nav-wrap,
.main-nav,
.brand,
.brand-logo,
.pill,
.desktop-nav a,
.btn,
.menu-toggle,
.mobile-menu,
.mobile-menu-backdrop {
  transition: min-height .24s ease,
    padding .24s ease,
    gap .24s ease,
    width .24s ease,
    top .24s ease,
    margin .24s ease,
    font-size .24s ease,
    transform .24s ease,
    opacity .24s ease;
}

.utility-bar {
  background: color-mix(in srgb, #5e3995 90%, #ffffff 10%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.utility-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.09);
}

.pill.ghost {
  background: rgba(255, 255, 255, 0.13);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  background: #fff;
  opacity: 0.8;
}

.main-nav-wrap {
  background: var(--header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.main-nav {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  margin: 4px 8px 4px 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(108px, 11vw, 148px);
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
}

.desktop-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.desktop-nav li {
  position: relative;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  color: #f7efff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  min-height: 38px;
  padding: 2px 2px;
}

.desktop-nav a:hover {
  color: #fff;
}

.desktop-nav .submenu {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 240px;
  display: grid;
  gap: 2px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(90, 48, 145, 0.96);
  box-shadow: 0 20px 34px rgba(27, 7, 53, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.desktop-nav .submenu a {
  width: 100%;
  min-height: 34px;
  border-radius: 8px;
  padding: 6px 10px;
  color: #ffffff;
  font-size: 14px;
}

.desktop-nav .submenu a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.desktop-nav li:hover > .submenu,
.desktop-nav li:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  text-decoration: none;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-solid {
  color: #fff;
  background: linear-gradient(120deg, var(--primary) 0%, #ff127f 45%, #ff2e8f 100%);
}

.btn-solid,
.mobile-link-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-solid::before,
.mobile-link-cta::before {
  content: '';
  position: absolute;
  top: -92%;
  left: -62%;
  width: 48%;
  height: 290%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.98) 44%, rgba(255, 255, 255, 0.5) 52%, rgba(255, 255, 255, 0) 100%);
  filter: blur(6px);
  transform: rotate(16deg) translateX(-220%);
  opacity: 0;
  pointer-events: none;
  animation: ctaLightSweep 4.2s cubic-bezier(.22,.61,.36,1) infinite;
}

.mobile-link-cta::before {
  top: 0;
  left: -48%;
  width: 44%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 48%, rgba(255, 255, 255, 0.38) 58%, rgba(255, 255, 255, 0) 100%);
  filter: blur(4px);
  transform: translateX(-180%);
  animation: ctaLightSweepMobile 4.2s cubic-bezier(.22,.61,.36,1) infinite;
}

@keyframes ctaLightSweep {
  0% {
    transform: rotate(16deg) translateX(-220%);
    opacity: 0;
  }

  18% {
    opacity: 0.78;
  }

  56% {
    opacity: 0.44;
  }

  100% {
    transform: rotate(16deg) translateX(390%);
    opacity: 0;
  }
}

@keyframes ctaLightSweepMobile {
  0% {
    transform: translateX(-180%);
    opacity: 0;
  }

  18% {
    opacity: 0.82;
  }

  88% {
    opacity: 0.78;
  }

  98% {
    opacity: 0.18;
  }

  100% {
    transform: translateX(430%);
    opacity: 0;
  }
}

@keyframes ctaLightSweepBtnMobile {
  0% {
    transform: rotate(11deg) translateX(-260%);
    opacity: 0;
  }

  18% {
    opacity: 0.82;
  }

  72% {
    opacity: 0.5;
  }

  100% {
    transform: rotate(11deg) translateX(620%);
    opacity: 0;
  }
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  transform: translateX(-50%);
  transform-origin: center;
  background: #fff;
  transition: top 360ms cubic-bezier(.22,.61,.36,1),
    transform 360ms cubic-bezier(.22,.61,.36,1),
    opacity 220ms ease;
}

.menu-toggle span:nth-child(1) {
  top: 14px;
}

.menu-toggle span:nth-child(2) {
  top: 21px;
}

.menu-toggle span:nth-child(3) {
  top: 28px;
}

body.mobile-menu-open .menu-toggle span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

body.mobile-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0.3);
}

body.mobile-menu-open .menu-toggle span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 168px;
  right: 14px;
  width: min(84vw, 340px);
  z-index: 62;
  opacity: 0;
  transform: translateY(-10px) scale(0.985);
  transition: opacity 360ms cubic-bezier(.22,.61,.36,1),
    transform 360ms cubic-bezier(.22,.61,.36,1);
  pointer-events: none;
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.mobile-menu-inner {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(180deg, rgba(113, 67, 171, 0.98) 0%, rgba(95, 56, 149, 0.98) 100%);
  box-shadow: 0 18px 40px rgba(23, 6, 46, 0.35);
  margin: 0;
  padding: 10px;
  display: grid;
  gap: 8px;
  max-height: min(74vh, 640px);
  overflow-y: auto;
}

.mobile-menu-backdrop {
  position: fixed;
  top: 158px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 52;
  background: rgba(17, 7, 30, 0.35);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 320ms cubic-bezier(.22,.61,.36,1);
  pointer-events: none;
}

body.header-condensed .utility-inner {
  min-height: 32px;
  gap: 8px;
}

body.header-condensed .pill {
  min-height: 25px;
  padding: 0 10px;
  font-size: 12px;
}

body.header-condensed .dot {
  width: 7px;
  height: 7px;
  margin-right: 6px;
}

body.header-condensed .main-nav {
  min-height: 60px;
  gap: 16px;
}

body.header-condensed .brand {
  padding: 4px 8px;
  margin: 2px 6px 2px 0;
}

body.header-condensed .brand-logo {
  width: clamp(96px, 9.8vw, 126px);
}

body.header-condensed .desktop-nav a {
  min-height: 34px;
  font-size: 14px;
}

body.header-condensed .btn {
  min-height: 38px;
  font-size: 13px;
}

body.header-condensed .menu-toggle {
  width: 40px;
  height: 40px;
}

body.header-condensed .mobile-menu {
  top: 146px;
}

body.header-condensed .mobile-menu-backdrop {
  top: 136px;
}

.mobile-menu-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-group {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.mobile-group.is-animating summary {
  pointer-events: none;
}

.mobile-group summary {
  list-style: none;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 12px;
  position: relative;
}

.mobile-group summary::-webkit-details-marker {
  display: none;
}

.mobile-group summary::after {
  content: '\203A';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 16px;
  opacity: 0.9;
  transition: transform 420ms cubic-bezier(.22,.61,.36,1);
}

.mobile-group[open] summary::after {
  transform: translateY(-50%) rotate(-90deg);
}

.mobile-submenu {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform-origin: top;
  transform: translateY(-10px) scaleY(0.92);
  transition: max-height 520ms cubic-bezier(.22,.61,.36,1),
    opacity 420ms cubic-bezier(.22,.61,.36,1),
    transform 420ms cubic-bezier(.22,.61,.36,1);
}

.mobile-group[open] .mobile-submenu {
  max-height: 220px;
  opacity: 1;
  transform: translateY(0) scaleY(1);
}

.mobile-submenu a {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 300ms cubic-bezier(.22,.61,.36,1),
    transform 300ms cubic-bezier(.22,.61,.36,1);
}

.mobile-group[open] .mobile-submenu a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-group[open] .mobile-submenu a:nth-child(1) { transition-delay: 20ms; }
.mobile-group[open] .mobile-submenu a:nth-child(2) { transition-delay: 45ms; }
.mobile-group[open] .mobile-submenu a:nth-child(3) { transition-delay: 70ms; }
.mobile-group[open] .mobile-submenu a:nth-child(4) { transition-delay: 95ms; }
.mobile-group[open] .mobile-submenu a:nth-child(5) { transition-delay: 120ms; }

.mobile-group:not([open]) .mobile-submenu a {
  transition-delay: 0ms;
}

.mobile-submenu a,
.mobile-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-submenu a:last-child,
.mobile-link:last-child {
  border-bottom: none;
}

.mobile-link {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-link-cta {
  margin-top: 4px;
  text-align: center;
  font-weight: 800;
  background: linear-gradient(120deg, #f20078 0%, #ff2f91 100%);
  border: none;
  min-height: 46px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.top-video-hero {
  position: relative;
  min-height: min(82vh, 900px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #3a245e 0%, #6f43ab 48%, #8a50c8 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-mobile {
  display: none;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(30px, 4.2vw, 56px) 0;
  text-align: left;
}

.hero-copy-layer {
  transform-origin: left center;
}

.hero-copy-layer.is-entering {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  filter: blur(4px);
}

.hero-copy-layer.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition: opacity 520ms cubic-bezier(.2,.7,.1,1),
    transform 520ms cubic-bezier(.2,.7,.1,1),
    filter 520ms cubic-bezier(.2,.7,.1,1);
}

.hero-copy-layer.is-leaving {
  opacity: 0;
  transform: translateY(-16px) scale(0.99);
  filter: blur(3px);
  transition: opacity 260ms ease, transform 260ms ease, filter 260ms ease;
}

.hero-content .label {
  color: #ffe3f3;
}

.hero-content h1 {
  max-width: 18ch;
  color: #fff;
  text-shadow: 0 8px 28px rgba(6, 2, 12, 0.45);
}

.hero-content .lead {
  color: #f2e9ff;
  max-width: 56ch;
}

.hero-cta-row {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-outline {
  border-color: rgba(255, 255, 255, 0.82);
  color: #fff;
}

.label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  font-weight: 700;
  margin: 0 0 8px;
}

h1 {
  margin: 0;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: 1.03;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 62ch;
}

.brand-story {
  position: relative;
  padding: clamp(56px, 7vw, 92px) 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(138, 55, 255, 0.17), transparent 30%),
    radial-gradient(circle at 94% 16%, rgba(242, 0, 120, 0.14), transparent 26%),
    linear-gradient(180deg, #f8f1ff 0%, #f3ebfc 100%);
}

.brand-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-areas:
    "about flow"
    "video video";
  gap: 22px;
}

.brand-story-panel,
.brand-video {
  border-radius: 22px;
  border: 1px solid rgba(129, 73, 194, 0.2);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 42px rgba(65, 28, 114, 0.14);
}

.brand-story-panel {
  padding: clamp(22px, 3vw, 34px);
}

.brand-story-panel:nth-child(1) {
  grid-area: about;
}

.brand-story-panel h2 {
  margin: 0;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(28px, 2.7vw, 44px);
  line-height: 1.08;
  color: #28163f;
  max-width: 16ch;
}

.brand-story-panel p {
  margin: 14px 0 0;
  color: #4a3c61;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.58;
}

.story-metrics {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.metric-item {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(129, 73, 194, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(247, 236, 255, 0.86));
}

.metric-item strong {
  display: block;
  color: #5a2f8f;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1;
}

.metric-item span {
  display: block;
  margin-top: 5px;
  color: #65557e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-story-panel.highlight {
  grid-area: flow;
  background: linear-gradient(170deg, #5b2f90 0%, #7f3ec3 62%, #8f4fd1 100%);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  display: flex;
  flex-direction: column;
}

.brand-story-panel.highlight .label,
.brand-story-panel.highlight h3,
.brand-story-panel.highlight li {
  color: #fff;
}

.brand-story-panel.highlight .label {
  color: #ffd8f0;
}

.brand-story-panel.highlight h3 {
  margin: 0;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.14;
}

.flow-list {
  list-style: none;
  margin: 20px 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.flow-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.5;
}

.flow-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff8ac7 0%, #ffc5e7 100%);
  box-shadow: 0 0 0 4px rgba(255, 196, 230, 0.18);
}

.brand-story-panel.highlight .btn {
  margin-top: auto;
  align-self: flex-start;
}

.brand-video {
  grid-area: video;
  padding: clamp(10px, 1.8vw, 16px);
  background: linear-gradient(145deg, #ffffff 0%, #f5e9ff 100%);
}

.video-shell {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(119, 62, 186, 0.26);
  box-shadow: 0 18px 36px rgba(37, 14, 71, 0.18);
  aspect-ratio: 16 / 9;
}

.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.rounds-showcase {
  position: relative;
  padding: clamp(52px, 7vw, 84px) 0;
  overflow: hidden;
  background: linear-gradient(132deg, #2f1247 0%, #4f1d74 44%, #6e2a9f 100%);
}

.rounds-showcase::before,
.rounds-showcase::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.rounds-showcase::before {
  background:
    radial-gradient(circle at 78% 54%, rgba(255, 255, 255, 0.13) 0 2px, transparent 3px) 0 0 / 18px 18px,
    radial-gradient(circle at 24% 34%, rgba(11, 2, 28, 0.28) 0 1px, transparent 2px) 0 0 / 22px 22px;
  opacity: 0.3;
}

.rounds-showcase::after {
  background:
    radial-gradient(circle at 72% 48%, rgba(178, 137, 255, 0.18), transparent 40%),
    linear-gradient(90deg, rgba(18, 3, 38, 0.2), rgba(255, 255, 255, 0));
}

.rounds-showcase-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 360px) 1fr;
  gap: clamp(20px, 2.8vw, 34px);
  align-items: start;
}

.rounds-showcase-head h2 {
  margin: 12px 0 0;
  color: #fff;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.06;
  max-width: 18ch;
}

.rounds-showcase-head p {
  margin: 12px 0 0;
  color: rgba(241, 232, 255, 0.94);
  font-size: 18px;
  line-height: 1.45;
  max-width: 34ch;
}

.rounds-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 10px;
  background: #fff;
  color: #6a2bb8;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.rounds-cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(130deg, #7e55c4 0%, #643ca8 100%);
  box-shadow: 0 10px 22px rgba(23, 7, 55, 0.38);
}

.rounds-slider {
  position: relative;
  min-width: 0;
  padding-top: 4px;
}

.rounds-nav-wrap {
  position: absolute;
  top: -58px;
  right: 0;
  z-index: 7;
  display: inline-flex;
  gap: 10px;
}

.rounds-nav {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #5a2f94;
  cursor: pointer;
  font-size: 40px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgba(16, 5, 36, 0.24);
}

.rounds-nav span {
  transform: translateY(-2px);
}

.rounds-nav:hover {
  background: #fff;
  transform: translateY(-1px);
}

.rounds-viewport {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 2px 0 10px;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rounds-viewport::-webkit-scrollbar {
  display: none;
}

.rounds-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--rounds-card-width, 248px);
  gap: 12px;
  width: 100%;
}

.round-card {
  border-radius: 18px;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 235, 247, 0.9));
  box-shadow: none;
  min-height: 292px;
  display: flex;
  flex-direction: column;
  transition: none;
}

.round-card.is-active {
  transform: none;
  opacity: 1;
}

.round-card.is-inactive {
  transform: none;
  opacity: 1;
}

.round-card.is-leaving {
  transform: none;
  opacity: 1;
}

.round-card-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f8e3f3;
  color: #a12570;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.round-card h3 {
  margin: 12px 0 0;
  color: #38144c;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: 20px;
  line-height: 1.14;
}

.round-card p {
  margin: 10px 0 0;
  color: #5d4668;
  line-height: 1.48;
  font-size: 17px;
}

.round-card-meta {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.round-card-meta strong {
  color: #ab1f89;
  font-size: 20px;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  letter-spacing: 0.03em;
}

.round-card-meta span {
  color: #7d5587;
  font-size: 13px;
  font-weight: 700;
}

.coming-features {
  position: relative;
  padding: clamp(52px, 7vw, 88px) 0 clamp(58px, 8vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.42), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(180deg, #f6f1fb 0%, #ece3f7 100%);
}

.coming-features::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 6% 66%, rgba(180, 145, 232, 0.14), transparent 36%),
    radial-gradient(circle at 93% 72%, rgba(112, 59, 177, 0.1), transparent 38%);
}

.coming-features-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
}

.coming-card {
  position: relative;
  padding: clamp(22px, 2.8vw, 36px);
  border-radius: 20px;
  border: 1px solid rgba(90, 44, 149, 0.2);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 36px rgba(54, 22, 94, 0.16);
  backdrop-filter: blur(5px);
  animation: comingRise 760ms cubic-bezier(.22,.61,.36,1) 60ms both;
}

.coming-card h2 {
  margin: 0;
  display: inline;
  padding: 2px 8px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(110deg, #7f4cc2 0%, #9562d0 100%);
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(25px, 2.4vw, 38px);
  line-height: 1.18;
}

.coming-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.coming-list li {
  position: relative;
  padding-left: 28px;
  color: #35274b;
  font-size: clamp(16px, 1.35vw, 24px);
  line-height: 1.55;
}

.coming-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: linear-gradient(150deg, #7f4cc2 0%, #ab72df 100%);
  box-shadow: 0 0 0 4px rgba(127, 76, 194, 0.16);
}

.coming-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.coming-actions .btn {
  min-height: 44px;
  font-size: 15px;
}

.coming-outline {
  color: #6f40af;
  border-color: rgba(111, 64, 175, 0.56);
  background: rgba(255, 255, 255, 0.84);
}

.coming-outline:hover {
  color: #542c8c;
  border-color: rgba(84, 44, 140, 0.7);
  background: rgba(255, 255, 255, 0.98);
}

.coming-visual {
  margin: 0;
  position: relative;
  display: flex;
  justify-content: center;
  animation: comingRise 760ms cubic-bezier(.22,.61,.36,1) 140ms both;
}

.coming-visual::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: min(72%, 360px);
  height: 30px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(35, 12, 69, 0.38) 0%, rgba(35, 12, 69, 0) 70%);
  filter: blur(5px);
}

.coming-visual img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  filter: drop-shadow(0 22px 30px rgba(27, 10, 52, 0.22));
}

@keyframes comingRise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonials-showcase {
  position: relative;
  padding: clamp(56px, 7vw, 90px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(242, 0, 120, 0.22), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(138, 55, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #2f1247 0%, #4f1d74 52%, #6e2a9f 100%);
}

.testimonials-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 82%, rgba(255, 255, 255, 0.1), transparent 26%),
    radial-gradient(circle at 90% 78%, rgba(255, 255, 255, 0.08), transparent 30%);
}

.testimonials-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
}

.testimonials-head {
  display: grid;
  gap: 8px;
}

.testimonials-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(167, 192, 255, 0.84);
  font-weight: 700;
  font-size: 12px;
}

.testimonials-head h2 {
  margin: 0;
  color: #f6f8ff;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.12;
}

.testimonials-slider {
  min-width: 0;
}

.testimonials-viewport {
  overflow-x: hidden;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-viewport::-webkit-scrollbar {
  display: none;
}

.testimonials-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--testimonial-card-width, 360px);
  gap: 28px;
  width: 100%;
}

.testimonial-card {
  min-height: 372px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(150deg, rgba(56, 24, 90, 0.95) 0%, rgba(40, 16, 66, 0.96) 56%, rgba(31, 11, 52, 0.98) 100%);
  box-shadow: 0 18px 26px rgba(17, 5, 33, 0.22);
  padding: 22px;
  color: #eef2ff;
  display: flex;
  flex-direction: column;
}

.testimonial-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 25px;
  font-weight: 800;
}

.avatar-aqua { background: #3f6b74; }
.avatar-pink { background: #c22990; }
.avatar-gold { background: #d8ab21; }
.avatar-violet { background: #7223c4; }
.avatar-green { background: #2f8f5b; }
.avatar-red { background: #b13d3d; }

.testimonial-person h3 {
  margin: 0;
  color: #f3f6ff;
  font-size: 18px;
  line-height: 1.12;
}

.testimonial-person p {
  margin: 2px 0 0;
  color: rgba(208, 215, 234, 0.66);
  font-size: 14px;
  line-height: 1.3;
}

.google-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: linear-gradient(145deg, #ffffff 0%, #f4f6ff 100%);
  border: 1px solid rgba(255, 255, 255, 0.88);
  color: transparent;
  font-size: 0;
  box-shadow: 0 4px 12px rgba(10, 3, 20, 0.26);
}

.google-g::before {
  content: '';
  width: 22px;
  height: 22px;
  background: url('../img/google-g-modern.svg') center / contain no-repeat;
}

.testimonial-stars {
  margin: 16px 0 0;
  color: #f5ddb0;
  letter-spacing: 0.08em;
  font-size: 17px;
}

.testimonial-text {
  margin: 16px 0 0;
  color: rgba(231, 236, 250, 0.86);
  font-size: 16px;
  line-height: 1.45;
}

.testimonial-time {
  margin: auto 0 0;
  padding-top: 22px;
  color: rgba(193, 201, 221, 0.48);
  font-size: 14px;
}

.premium-plans {
  position: relative;
  padding: clamp(74px, 9vw, 118px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 16%, rgba(203, 165, 255, 0.26), transparent 36%),
    radial-gradient(circle at 84% 12%, rgba(162, 119, 230, 0.24), transparent 34%),
    linear-gradient(156deg, #6a3ea6 0%, #5a328e 46%, #45226f 100%);
}

.premium-plans::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 76%, rgba(35, 12, 68, 0.38), transparent 46%),
    radial-gradient(circle at 16% 80%, rgba(57, 22, 101, 0.34), transparent 42%);
}

.premium-plans .container {
  width: min(1260px, 92vw);
}

.premium-plans-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.premium-head {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
}

.premium-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(120deg, #7d4abc 0%, #6f41b5 100%);
  box-shadow: 0 8px 16px rgba(58, 22, 98, 0.22);
}

.premium-head h2 {
  margin: 0;
  color: #f8f1ff;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(38px, 3.7vw, 58px);
  line-height: 1.07;
  letter-spacing: -0.015em;
  max-width: 18ch;
}

.premium-head p {
  margin: 0;
  color: rgba(243, 230, 255, 0.92);
  font-size: 18px;
  line-height: 1.58;
  max-width: 64ch;
}

.premium-grid {
  margin-top: clamp(26px, 3vw, 38px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  padding: 28px 28px 26px;
  border-radius: 22px;
  border: 1px solid rgba(107, 63, 168, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 242, 255, 0.94));
  box-shadow: 0 20px 34px rgba(40, 18, 67, 0.14);
  display: flex;
  flex-direction: column;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.plan-card::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(125, 74, 188, 0), rgba(125, 74, 188, 0.34), rgba(125, 74, 188, 0));
  pointer-events: none;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 38px rgba(40, 18, 67, 0.2);
}

.plan-card.featured {
  border-color: rgba(242, 0, 120, 0.28);
  background: linear-gradient(180deg, rgba(255, 247, 252, 0.98), rgba(247, 236, 255, 0.97));
  box-shadow: 0 28px 42px rgba(98, 30, 117, 0.2);
  transform: translateY(-10px);
}

.plan-icon {
  width: 54px;
  height: 54px;
  margin: 4px auto 14px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(209, 182, 245, 0.45);
  background: linear-gradient(145deg, #8a53cd 0%, #6f42b5 52%, #5b3296 100%);
  box-shadow: inset 0 1px 0 rgba(250, 241, 255, 0.22), 0 10px 18px rgba(40, 16, 72, 0.36);
}

.plan-icon svg {
  width: 24px;
  height: 24px;
  stroke: #cf9b30;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plan-badge {
  position: absolute;
  right: 16px;
  top: 0;
  transform: translateY(-50%);
  min-height: 25px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(120deg, #f20078 0%, #c80f89 100%);
  box-shadow: 0 8px 14px rgba(176, 15, 117, 0.24);
}

.plan-ribbon {
  position: static;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 10px;
  margin: 0 0 14px;
  color: #fff;
  background: linear-gradient(130deg, #7f4cc2 0%, #8d5fc5 100%);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: none;
}

.plan-cycle {
  margin: 0;
  text-align: left;
  color: #7b58b3;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.plan-price-wrap {
  margin-top: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 8px;
}

.plan-price-box {
  margin-top: 2px;
  padding: 14px 14px 12px;
  border-radius: 16px;
  border: 1px solid rgba(125, 74, 188, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(250, 241, 255, 0.76));
}

.plan-multiplier {
  color: #d20f7c;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-4px);
}

.plan-price {
  color: #e10082;
  font-size: clamp(44px, 3.4vw, 58px);
  font-family: Montserrat, "Nunito Sans", sans-serif;
  line-height: 1;
}

.plan-unit {
  color: #7f4cc2;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-4px);
}

.plan-total {
  margin: 9px 0 0;
  text-align: left;
  color: #e10082;
  font-size: 16px;
  font-weight: 700;
}

.plan-renew {
  margin: 7px 0 0;
  text-align: left;
  color: #5a4f71;
  font-size: 14px;
  font-weight: 700;
}

.plan-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.plan-list li {
  position: relative;
  padding-left: 30px;
  color: #453d59;
  font-size: 17px;
  line-height: 1.45;
}

.plan-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(140deg, #ff5ab2 0%, #d00082 100%);
  box-shadow: 0 0 0 3px rgba(242, 0, 120, 0.12);
}

.plan-list li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.plan-btn {
  margin: auto auto 0;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 12px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(120deg, #f20078 0%, #ce0f8e 100%);
  box-shadow: 0 10px 20px rgba(111, 27, 115, 0.27);
}

.plan-btn:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

/* --- Site Footer --- */

.site-footer {
  position: relative;
  background:
    radial-gradient(circle at 10% 20%, rgba(93, 40, 163, 0.4), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(138, 55, 255, 0.15), transparent 40%),
    linear-gradient(180deg, #2e114a 0%, #1a062e 100%);
  color: #e2d9f3;
  padding-top: clamp(60px, 6vw, 88px);
  margin-top: 0;
  border-top: 1px solid rgba(136, 86, 204, 0.2);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(174, 128, 238, 0.5), transparent);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) minmax(180px, 1fr) minmax(200px, 1fr) minmax(220px, 1.2fr);
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(60px, 6vw, 88px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
  margin: 0 0 24px;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Brand Column */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 22px;
}

.footer-logo {
  height: clamp(52px, 3.8vw, 72px);
  width: auto;
  filter: drop-shadow(0 8px 16px rgba(8, 3, 17, 0.3));
  opacity: 1;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(226, 217, 243, 0.7);
  margin: 0 0 28px;
  max-width: 32ch;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all .2s ease;
}

.social-icon:hover {
  background: #f20078;
  border-color: #f20078;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(242, 0, 120, 0.3);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* Nav Column */
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.footer-nav a {
  color: rgba(226, 217, 243, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: color .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-nav a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-nav a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #f20078;
  opacity: 0;
  transition: opacity .2s ease;
}

.footer-nav a:hover::before {
  opacity: 1;
}

/* Shop Column */
.shop-card {
  display: block;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 18px;
  transition: all .24s ease;
  text-align: center;
}

.shop-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.shop-logo-wrap {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.shop-card img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.shop-card span {
  display: block;
  color: #d8c3ff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* CTA Column */
.footer-cta p {
  font-size: 15px;
  color: rgba(226, 217, 243, 0.7);
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn-glow {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, #f20078 0%, #aa00c2 100%);
  box-shadow: 0 10px 24px rgba(212, 0, 149, 0.25);
  position: relative;
  overflow: hidden;
  transition: transform .2s ease;
}

.btn-glow:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity .3s, transform .3s;
}

.btn-glow:hover::after {
  opacity: 1;
  transform: scale(1);
}

.site-faq {
  position: relative;
  padding: clamp(58px, 7vw, 92px) 0 clamp(44px, 5vw, 66px);
  background:
    radial-gradient(circle at 16% 8%, rgba(137, 73, 221, 0.16), transparent 30%),
    radial-gradient(circle at 84% 16%, rgba(242, 0, 120, 0.11), transparent 24%),
    linear-gradient(180deg, #f4eefb 0%, #ece3f7 100%);
}

.faq-inner {
  display: grid;
  gap: 20px;
}

.faq-head {
  max-width: 760px;
  display: grid;
  gap: 8px;
}

.faq-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  align-self: start;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(120deg, #7e4cc3 0%, #6e43b0 100%);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.faq-head h2 {
  margin: 0;
  color: #2f184b;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(30px, 2.6vw, 42px);
  line-height: 1.12;
}

.faq-head p {
  margin: 0;
  color: #574a70;
  font-size: 17px;
  line-height: 1.52;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(110, 67, 176, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 243, 255, 0.92));
  box-shadow: 0 14px 22px rgba(57, 20, 98, 0.09);
  overflow: hidden;
}

.faq-item.is-animating summary {
  pointer-events: none;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 18px 48px 18px 18px;
  color: #34224f;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.32;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before,
.faq-item summary::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #7a4abd;
  transform: translateY(-50%);
  transition: transform 260ms ease, opacity 260ms ease;
}

.faq-item summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 18px 18px;
}

.faq-answer p {
  margin: 0;
  color: #5a4f70;
  font-size: 16px;
  line-height: 1.56;
}

.about-hero {
  position: relative;
  padding: clamp(58px, 7vw, 96px) 0 clamp(48px, 6vw, 74px);
  background:
    radial-gradient(circle at 12% 14%, rgba(174, 128, 238, 0.24), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(242, 0, 120, 0.15), transparent 30%),
    linear-gradient(140deg, #2f1247 0%, #4a1d72 50%, #6e2a9f 100%);
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  max-width: 860px;
  justify-items: center;
  text-align: center;
  margin: 0 auto;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  align-self: start;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-hero h1 {
  margin: 0;
  color: #fff;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(34px, 4.1vw, 56px);
  line-height: 1.06;
  max-width: 18ch;
}

.about-hero p {
  margin: 0;
  color: rgba(236, 227, 248, 0.94);
  font-size: 19px;
  line-height: 1.48;
  max-width: 56ch;
}

.about-intro {
  position: relative;
  padding: clamp(48px, 5.6vw, 76px) 0 clamp(42px, 5vw, 68px);
  background: linear-gradient(180deg, #f3ecfb 0%, #ede4f8 100%);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(16px, 2.6vw, 28px);
}

.about-card {
  border-radius: 20px;
  border: 1px solid rgba(109, 71, 170, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 239, 255, 0.92));
  box-shadow: 0 18px 28px rgba(45, 18, 75, 0.1);
  padding: clamp(20px, 2.4vw, 30px);
}

.about-story h2 {
  margin: 0;
  color: #341f51;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.1;
}

.about-story p {
  margin: 14px 0 0;
  color: #51456a;
  font-size: 17px;
  line-height: 1.6;
}

.about-metrics h3 {
  margin: 0;
  color: #45256e;
  font-size: 20px;
}

.about-metrics-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-metrics-grid div {
  border-radius: 14px;
  border: 1px solid rgba(125, 80, 191, 0.2);
  background: rgba(255, 255, 255, 0.72);
  padding: 14px;
}

.about-metrics-grid strong {
  display: block;
  color: #9f1570;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.about-metrics-grid span {
  margin-top: 6px;
  display: block;
  color: #5b4a74;
  font-size: 14px;
  line-height: 1.35;
}

.about-pillars {
  position: relative;
  padding: clamp(44px, 5.4vw, 70px) 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(242, 0, 120, 0.16), transparent 26%),
    radial-gradient(circle at 90% 20%, rgba(154, 95, 230, 0.2), transparent 30%),
    linear-gradient(132deg, #2e1147 0%, #47206f 48%, #62318f 100%);
}

.about-pillars-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.about-pillars header span,
.about-journey header span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.about-pillars header span {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.about-pillars header h2 {
  margin: 10px 0 0;
  color: #fff;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.12;
  max-width: 20ch;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pillar-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.12));
  backdrop-filter: blur(6px);
  padding: 18px;
}

.pillar-card h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}

.pillar-card p {
  margin: 10px 0 0;
  color: rgba(241, 229, 255, 0.92);
  line-height: 1.5;
}

.about-journey {
  position: relative;
  padding: clamp(46px, 5.5vw, 74px) 0;
  background: linear-gradient(180deg, #f6f0fc 0%, #ece3f7 100%);
}

.about-journey-inner {
  display: grid;
  gap: 18px;
}

.about-journey header span {
  background: linear-gradient(120deg, #7c48bf 0%, #683ead 100%);
  color: #fff;
}

.about-journey header h2 {
  margin: 10px 0 0;
  color: #311e4d;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.12;
  max-width: 22ch;
}

.journey-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.journey-list li {
  border-radius: 16px;
  border: 1px solid rgba(110, 67, 176, 0.2);
  background: rgba(255, 255, 255, 0.86);
  padding: 16px;
}

.journey-list strong {
  display: block;
  color: #4a286f;
  font-size: 16px;
}

.journey-list p {
  margin: 8px 0 0;
  color: #5a4f70;
  line-height: 1.52;
}

.about-cta {
  position: relative;
  padding: clamp(46px, 5.5vw, 74px) 0 clamp(40px, 5vw, 64px);
  background:
    radial-gradient(circle at 20% 18%, rgba(189, 138, 255, 0.22), transparent 32%),
    linear-gradient(140deg, #3c145d 0%, #5a2388 56%, #a6207e 100%);
}

.about-cta-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.about-cta h2 {
  margin: 0;
  color: #fff;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.1;
}

.about-cta p {
  margin: 0;
  color: rgba(244, 234, 255, 0.9);
  font-size: 18px;
  line-height: 1.48;
}

.about-cta-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reviews-hero {
  position: relative;
  padding: clamp(56px, 7vw, 90px) 0 clamp(48px, 6vw, 72px);
  background:
    radial-gradient(circle at 14% 12%, rgba(242, 0, 120, 0.18), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(138, 55, 255, 0.2), transparent 34%),
    linear-gradient(132deg, #2f1247 0%, #4f1d74 52%, #6e2a9f 100%);
}

.reviews-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.reviews-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.reviews-hero h1,
.review-detail-hero h1 {
  margin: 0;
  color: #fff;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.08;
  max-width: 20ch;
}

.reviews-hero p {
  margin: 0;
  color: rgba(240, 230, 252, 0.92);
  font-size: 18px;
  line-height: 1.5;
  max-width: 58ch;
}

.reviews-grid-section {
  position: relative;
  padding: clamp(42px, 5vw, 68px) 0 clamp(58px, 7vw, 90px);
  background: linear-gradient(180deg, #f5effb 0%, #ede4f8 100%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.review-card-link .testimonial-card {
  min-height: 100%;
  transition: transform .22s ease, box-shadow .22s ease;
}

.review-card-link:hover .testimonial-card {
  transform: translateY(-4px);
  box-shadow: 0 24px 30px rgba(17, 5, 33, 0.28);
}

.review-detail-hero {
  position: relative;
  padding: clamp(54px, 6.8vw, 84px) 0 clamp(38px, 4.6vw, 56px);
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(132deg, #321253 0%, #51207f 55%, #7a2ea7 100%);
}

.review-detail-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.review-detail-body {
  padding: clamp(34px, 4.2vw, 56px) 0 clamp(56px, 6.6vw, 84px);
  background: linear-gradient(180deg, #f6f0fc 0%, #ece3f7 100%);
}

.review-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.55fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
}

.review-detail-card {
  border-radius: 20px;
  border: 1px solid rgba(103, 60, 163, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 237, 255, 0.93));
  box-shadow: 0 16px 24px rgba(43, 16, 75, 0.12);
  padding: clamp(20px, 2.4vw, 28px);
}

.review-detail-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.review-detail-head h2 {
  margin: 0;
  color: #2f1a4f;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
}

.review-detail-head p {
  margin: 4px 0 0;
  color: #76628d;
  font-size: 15px;
}

.review-detail-card .testimonial-stars {
  margin: 16px 0 0;
  font-size: 20px;
}

.review-detail-text {
  margin: 14px 0 0;
  color: #4f4465;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.55;
}

.review-detail-time {
  margin: 14px 0 0;
  color: #847092;
  font-size: 15px;
  font-weight: 700;
}

.review-back-link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid rgba(104, 61, 166, 0.25);
  text-decoration: none;
  color: #4b2c74;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.74);
}

.review-related {
  border-radius: 20px;
  border: 1px solid rgba(103, 60, 163, 0.15);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 20px rgba(43, 16, 75, 0.08);
  padding: 18px;
}

.review-related h3 {
  margin: 0;
  color: #422263;
  font-size: 19px;
}

.review-related-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.review-related-grid a {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #56357e;
  font-weight: 700;
  border: 1px solid rgba(108, 66, 169, 0.2);
  background: rgba(255, 255, 255, 0.82);
}

.review-related-grid a:hover {
  color: #fff;
  background: linear-gradient(120deg, #7c4bc2 0%, #5f349f 100%);
  border-color: transparent;
}

.plans-hero {
  position: relative;
  padding: clamp(56px, 7vw, 90px) 0 clamp(46px, 5.8vw, 70px);
  background:
    radial-gradient(circle at 12% 12%, rgba(242, 0, 120, 0.16), transparent 30%),
    radial-gradient(circle at 84% 22%, rgba(168, 100, 255, 0.22), transparent 34%),
    linear-gradient(132deg, #2f1247 0%, #4f1d74 52%, #6e2a9f 100%);
}

.plans-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.plans-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.plans-hero h1 {
  margin: 0;
  color: #fff;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.08;
  max-width: 20ch;
}

.plans-hero p {
  margin: 0;
  color: rgba(238, 228, 250, 0.93);
  font-size: 18px;
  line-height: 1.5;
  max-width: 58ch;
}

.plans-benefits {
  position: relative;
  padding: clamp(34px, 4.4vw, 56px) 0;
  background: linear-gradient(180deg, #f6f0fc 0%, #ece3f7 100%);
}

.plans-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.plans-benefits-grid article {
  border-radius: 16px;
  border: 1px solid rgba(104, 63, 165, 0.18);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 20px rgba(46, 17, 78, 0.08);
  padding: 18px;
}

.plans-benefits-grid h3 {
  margin: 0;
  color: #432268;
  font-size: 20px;
  line-height: 1.2;
}

.plans-benefits-grid p {
  margin: 10px 0 0;
  color: #5a4f71;
  line-height: 1.5;
}

.plans-compare {
  position: relative;
  padding: clamp(20px, 3vw, 34px) 0 clamp(56px, 7vw, 88px);
  background: linear-gradient(180deg, #f2ebfb 0%, #ebe2f8 100%);
}

.plans-table-wrap {
  border-radius: 18px;
  border: 1px solid rgba(106, 64, 168, 0.2);
  background: rgba(255, 255, 255, 0.92);
  overflow: auto;
  box-shadow: 0 16px 24px rgba(45, 17, 77, 0.1);
}

.plans-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.plans-table th,
.plans-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(105, 61, 168, 0.12);
  text-align: left;
}

.plans-table th {
  color: #3f1e63;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(234, 219, 252, 0.7);
}

.plans-table td {
  color: #57496f;
  font-size: 15px;
  font-weight: 700;
}

.rounds-page-hero {
  position: relative;
  padding: clamp(56px, 7vw, 90px) 0 clamp(46px, 5.8vw, 70px);
  background:
    radial-gradient(circle at 14% 12%, rgba(242, 0, 120, 0.18), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(138, 55, 255, 0.2), transparent 34%),
    linear-gradient(132deg, #2f1247 0%, #4f1d74 52%, #6e2a9f 100%);
}

.rounds-page-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.rounds-page-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.rounds-page-hero h1 {
  margin: 0;
  color: #fff;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.08;
  max-width: 20ch;
}

.rounds-page-hero p {
  margin: 0;
  color: rgba(241, 232, 255, 0.92);
  font-size: 18px;
  line-height: 1.5;
  max-width: 56ch;
}

.rounds-page-summary {
  padding: clamp(26px, 3.8vw, 42px) 0;
  background: linear-gradient(180deg, #f4edfb 0%, #ebe2f8 100%);
}

.rounds-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.rounds-summary-grid article {
  border-radius: 16px;
  border: 1px solid rgba(104, 63, 165, 0.2);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 20px rgba(46, 17, 78, 0.08);
  padding: 16px;
  text-align: center;
}

.rounds-summary-grid strong {
  display: block;
  color: #9a156f;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: 34px;
  line-height: 1;
}

.rounds-summary-grid span {
  margin-top: 6px;
  display: block;
  color: #5c4f74;
  font-size: 15px;
  font-weight: 700;
}

.rounds-page-filter {
  padding: 10px 0 26px;
  background: linear-gradient(180deg, #ebe2f8 0%, #f4edfb 100%);
}

.rounds-filter-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.rounds-filter-btn {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  color: #4b2c74;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid rgba(108, 66, 169, 0.25);
  background: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
}

.rounds-filter-btn:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(120deg, #7c4bc2 0%, #5f349f 100%);
}

.rounds-filter-btn.current {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(120deg, #7c4bc2 0%, #5f349f 100%);
}

.rounds-page-block {
  padding: clamp(30px, 4.2vw, 52px) 0;
  background: linear-gradient(180deg, #f4edfb 0%, #ece3f8 100%);
}

.rounds-page-block.future {
  background: linear-gradient(180deg, #f0e7fb 0%, #eadff7 100%);
}

.rounds-page-block.closed {
  background: linear-gradient(180deg, #ece1f8 0%, #e6daf5 100%);
}

.rounds-block-head h2 {
  margin: 0;
  color: #341f52;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.1;
}

.rounds-block-head p {
  margin: 8px 0 0;
  color: #5d4f74;
  font-size: 17px;
}

.rounds-list-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.round-item-card {
  border-radius: 16px;
  border: 1px solid rgba(108, 66, 169, 0.2);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 20px rgba(46, 17, 78, 0.1);
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.round-item-tag {
  align-self: flex-start;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 800;
}

.round-item-tag.active {
  background: #e7f8ef;
  color: #13633d;
}

.round-item-tag.future {
  background: #eef0ff;
  color: #2f3f9f;
}

.round-item-tag.closed {
  background: #f6e8ee;
  color: #944468;
}

.round-item-card h3 {
  margin: 10px 0 0;
  color: #3c255b;
  font-size: 22px;
  line-height: 1.18;
}

.round-item-card p {
  margin: 10px 0 0;
  color: #5d4f74;
  line-height: 1.5;
}

.round-item-meta {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.round-item-meta strong {
  color: #9f156f;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: 22px;
}

.round-item-meta span {
  color: #7d6f92;
  font-size: 13px;
  font-weight: 700;
}

.round-item-card a {
  margin-top: 14px;
  min-height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #4b2c74;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid rgba(108, 66, 169, 0.25);
  background: rgba(255, 255, 255, 0.8);
}

.round-item-card a:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(120deg, #7c4bc2 0%, #5f349f 100%);
}

.round-detail-hero {
  position: relative;
  padding: clamp(56px, 7vw, 90px) 0 clamp(42px, 5.4vw, 66px);
  background:
    radial-gradient(circle at 16% 12%, rgba(242, 0, 120, 0.18), transparent 30%),
    radial-gradient(circle at 84% 20%, rgba(151, 86, 233, 0.22), transparent 34%),
    linear-gradient(132deg, #2f1247 0%, #4f1d74 52%, #6e2a9f 100%);
}

.round-detail-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.round-detail-hero h1 {
  margin: 0;
  color: #fff;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.08;
  max-width: 20ch;
}

.round-detail-hero p {
  margin: 0;
  color: rgba(240, 229, 254, 0.92);
  font-size: 18px;
  line-height: 1.5;
  max-width: 56ch;
}

.round-detail-content {
  padding: clamp(34px, 4.4vw, 56px) 0 clamp(56px, 6.8vw, 86px);
  background: linear-gradient(180deg, #f5eefb 0%, #ece3f8 100%);
}

.round-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
}

.round-detail-card {
  border-radius: 20px;
  border: 1px solid rgba(107, 65, 168, 0.18);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 24px rgba(46, 17, 78, 0.1);
  padding: clamp(18px, 2.3vw, 28px);
}

.round-detail-card h2 {
  margin: 0;
  color: #3b225b;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.1;
}

.round-detail-card p {
  margin: 12px 0 0;
  color: #5c4f74;
  line-height: 1.58;
  font-size: 17px;
}

.round-detail-meta-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.round-detail-meta-grid div {
  border-radius: 12px;
  border: 1px solid rgba(112, 68, 175, 0.18);
  background: rgba(255, 255, 255, 0.74);
  padding: 12px;
}

.round-detail-meta-grid span {
  display: block;
  color: #7a6b90;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.round-detail-meta-grid strong {
  margin-top: 4px;
  display: block;
  color: #3f255f;
  font-size: 19px;
  font-family: Montserrat, "Nunito Sans", sans-serif;
}

.round-detail-card h3 {
  margin: 18px 0 0;
  color: #4a2a71;
  font-size: 21px;
}

.round-detail-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.round-detail-list li {
  position: relative;
  padding-left: 24px;
  color: #5d4f74;
  line-height: 1.5;
}

.round-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(140deg, #f20078 0%, #d20e7f 100%);
}

.round-detail-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.round-related-card {
  border-radius: 18px;
  border: 1px solid rgba(109, 66, 171, 0.18);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 20px rgba(46, 17, 78, 0.08);
  padding: 16px;
}

.round-related-card h3 {
  margin: 0;
  color: #442564;
  font-size: 20px;
}

.round-related-links {
  margin-top: 12px;
  display: grid;
  gap: 9px;
}

.round-related-links a {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #56357e;
  font-weight: 700;
  border: 1px solid rgba(108, 66, 169, 0.2);
  background: rgba(255, 255, 255, 0.82);
}

.round-related-links a:hover {
  color: #fff;
  background: linear-gradient(120deg, #7c4bc2 0%, #5f349f 100%);
  border-color: transparent;
}

.supplier-detail-hero {
  position: relative;
  padding: clamp(50px, 6vw, 80px) 0 clamp(38px, 5vw, 58px);
  background:
    radial-gradient(circle at 14% 14%, rgba(242, 0, 120, 0.16), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(151, 86, 233, 0.2), transparent 35%),
    linear-gradient(132deg, #2f1247 0%, #4f1d74 52%, #6e2a9f 100%);
}

.supplier-detail-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.supplier-back-link {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #f7eefe;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.supplier-back-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.2);
}

.supplier-detail-hero h1 {
  margin: 0;
  color: #fff;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.08;
}

.supplier-detail-hero p {
  margin: 0;
  color: rgba(240, 229, 254, 0.92);
  font-size: 18px;
  line-height: 1.5;
  max-width: 58ch;
}

.supplier-detail-content {
  padding: clamp(30px, 4vw, 48px) 0;
  background: linear-gradient(180deg, #f5eefb 0%, #ece3f8 100%);
}

.supplier-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 14px;
  align-items: start;
}

.supplier-profile-card,
.supplier-gallery-card {
  border-radius: 18px;
  border: 1px solid rgba(108, 66, 169, 0.2);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 20px rgba(46, 17, 78, 0.1);
  padding: clamp(16px, 2.2vw, 24px);
}

.supplier-profile-header {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.supplier-profile-header img {
  width: 88px;
  height: 88px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(108, 66, 169, 0.24);
  background: #fff;
}

.supplier-profile-header h2 {
  margin: 0;
  color: #3b225b;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
}

.supplier-profile-header p {
  margin: 5px 0 0;
  color: #5f4f77;
  font-weight: 700;
}

.supplier-profile-card > p {
  margin: 14px 0 0;
  color: #5d4f74;
  line-height: 1.58;
}

.supplier-contact-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.supplier-contact-grid div {
  border-radius: 12px;
  border: 1px solid rgba(112, 68, 175, 0.18);
  background: rgba(255, 255, 255, 0.74);
  padding: 12px;
}

.supplier-contact-grid span {
  display: block;
  color: #7a6b90;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.supplier-contact-grid strong {
  margin-top: 4px;
  display: block;
  color: #3f255f;
  font-size: 16px;
}

.supplier-gallery-card h3 {
  margin: 0;
  color: #442564;
  font-size: 21px;
}

.supplier-gallery-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.supplier-gallery-item {
  min-height: 74px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4d2f76;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(108, 66, 169, 0.2);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.92) 0%, rgba(239, 230, 250, 0.86) 100%);
}

.supplier-video-link {
  margin-top: 12px;
}

.supplier-rounds-block {
  padding: clamp(30px, 4.2vw, 50px) 0;
  background: linear-gradient(180deg, #f4edfb 0%, #ece3f8 100%);
}

.supplier-rounds-block.future {
  background: linear-gradient(180deg, #f0e7fb 0%, #eadff7 100%);
}

.news-list-section {
  padding: clamp(30px, 4.2vw, 52px) 0 clamp(44px, 6vw, 72px);
  background: linear-gradient(180deg, #f4edfb 0%, #ece3f8 100%);
}

.news-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.news-card {
  border-radius: 16px;
  border: 1px solid rgba(108, 66, 169, 0.2);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 20px rgba(46, 17, 78, 0.1);
  overflow: hidden;
}

.news-thumb {
  min-height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #f6eeff;
  font-weight: 700;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(132deg, #3e185f 0%, #6a2b99 100%);
}

.news-content {
  padding: 14px;
}

.news-content h3 {
  margin: 0;
  color: #341f52;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.news-meta {
  margin: 8px 0 0;
  color: #755f92;
  font-size: 13px;
  font-weight: 700;
}

.news-content p {
  margin: 10px 0 0;
  color: #5c4f74;
  line-height: 1.55;
}

.news-content .btn {
  margin-top: 12px;
}

.news-pagination {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.news-pagination a,
.news-pagination span {
  min-width: 34px;
  min-height: 34px;
  border-radius: 8px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #4b2c74;
  font-weight: 800;
  border: 1px solid rgba(108, 66, 169, 0.25);
  background: rgba(255, 255, 255, 0.85);
}

.news-pagination a:hover,
.news-pagination .current {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(120deg, #7c4bc2 0%, #5f349f 100%);
}

.news-detail-hero {
  position: relative;
  padding: clamp(52px, 6.4vw, 84px) 0 clamp(36px, 4.8vw, 56px);
  background:
    radial-gradient(circle at 15% 14%, rgba(242, 0, 120, 0.16), transparent 34%),
    radial-gradient(circle at 84% 20%, rgba(151, 86, 233, 0.2), transparent 35%),
    linear-gradient(132deg, #2f1247 0%, #4f1d74 52%, #6e2a9f 100%);
}

.news-detail-hero-inner {
  display: grid;
  justify-items: start;
  text-align: left;
  gap: 10px;
}

.news-detail-hero h1 {
  margin: 0;
  color: #fff;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.1;
  max-width: 26ch;
}

.news-detail-hero p {
  margin: 0;
  color: rgba(240, 229, 254, 0.92);
  font-size: 16px;
  font-weight: 700;
}

.news-detail-content {
  padding: clamp(30px, 4.2vw, 52px) 0;
  background: linear-gradient(180deg, #f5eefb 0%, #ece3f8 100%);
}

.news-detail-card {
  border-radius: 18px;
  border: 1px solid rgba(108, 66, 169, 0.2);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 20px rgba(46, 17, 78, 0.1);
  padding: clamp(18px, 2.4vw, 28px);
}

.news-detail-card h3 {
  margin: 18px 0 0;
  color: #3a2259;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(22px, 2.2vw, 30px);
}

.news-detail-card p {
  margin: 10px 0 0;
  color: #5c4f74;
  line-height: 1.7;
  font-size: 17px;
}

.news-detail-gallery {
  padding: 0 0 clamp(46px, 6vw, 70px);
  background: linear-gradient(180deg, #ece3f8 0%, #e6daf5 100%);
}

.news-detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 0 14px;
}

.news-detail-gallery-item {
  min-height: 170px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f7ecff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(132deg, #3e185f 0%, #6a2b99 100%);
}

.event-detail-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
  align-items: start;
}

.event-detail-thumb {
  min-height: 240px;
  border-radius: 14px;
  border: 1px solid rgba(108, 66, 169, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f7ecff;
  font-weight: 700;
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(132deg, #3e185f 0%, #6a2b99 100%);
}

.seu-evento-hero {
  position: relative;
  padding: clamp(56px, 7vw, 92px) 0 clamp(42px, 5.2vw, 62px);
  background:
    radial-gradient(circle at 14% 14%, rgba(242, 0, 120, 0.16), transparent 34%),
    radial-gradient(circle at 84% 20%, rgba(151, 86, 233, 0.2), transparent 35%),
    linear-gradient(132deg, #2f1247 0%, #4f1d74 52%, #6e2a9f 100%);
}

.seu-evento-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.seu-evento-hero h1 {
  margin: 0;
  color: #fff;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.08;
  max-width: 22ch;
}

.seu-evento-hero p {
  margin: 0;
  color: rgba(240, 229, 254, 0.92);
  font-size: 18px;
  line-height: 1.5;
  max-width: 58ch;
}

.seu-evento-info {
  padding: clamp(32px, 4.4vw, 56px) 0;
  background: linear-gradient(180deg, #f5eefb 0%, #ece3f8 100%);
}

.seu-evento-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
  gap: 14px;
  align-items: stretch;
}

.seu-evento-box,
.seu-evento-media {
  border-radius: 18px;
  border: 1px solid rgba(108, 66, 169, 0.2);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 20px rgba(46, 17, 78, 0.1);
  padding: clamp(16px, 2.2vw, 26px);
}

.seu-evento-box h2 {
  margin: 0;
  color: #341f52;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.14;
}

.seu-evento-box h3 {
  margin: 14px 0 0;
  color: #4a2a71;
  font-size: 23px;
}

.seu-evento-box p {
  margin: 10px 0 0;
  color: #5d4f74;
  line-height: 1.6;
}

.seu-evento-placeholder {
  min-height: 100%;
  border-radius: 14px;
  border: 1px solid rgba(108, 66, 169, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f7ecff;
  font-weight: 700;
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(132deg, #3e185f 0%, #6a2b99 100%);
}

.seu-evento-diferenciais {
  padding: clamp(30px, 4.2vw, 50px) 0;
  background: linear-gradient(180deg, #f0e7fb 0%, #eadff7 100%);
}

.seu-evento-features-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.seu-evento-feature-card {
  border-radius: 16px;
  border: 1px solid rgba(108, 66, 169, 0.2);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 20px rgba(46, 17, 78, 0.1);
  padding: 14px;
}

.seu-evento-feature-card h3 {
  margin: 0;
  color: #3f255f;
  font-size: 21px;
  line-height: 1.2;
}

.seu-evento-feature-card p {
  margin: 8px 0 0;
  color: #5d4f74;
  line-height: 1.52;
}

.contact-hero {
  position: relative;
  padding: clamp(52px, 7vw, 84px) 0 clamp(36px, 4.8vw, 56px);
  background:
    radial-gradient(circle at 15% 12%, rgba(242, 0, 120, 0.14), transparent 34%),
    radial-gradient(circle at 84% 16%, rgba(138, 55, 255, 0.2), transparent 35%),
    linear-gradient(132deg, #2f1247 0%, #4f1d74 52%, #6e2a9f 100%);
}

.contact-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.contact-hero h1 {
  margin: 0;
  color: #fff;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(31px, 3.2vw, 46px);
  line-height: 1.1;
}

.contact-hero p {
  margin: 0;
  color: rgba(240, 229, 254, 0.92);
  font-size: 18px;
  line-height: 1.5;
  max-width: 62ch;
}

.contact-breadcrumb {
  padding: 18px 0;
  background: #efe5fa;
  border-bottom: 1px solid rgba(108, 66, 169, 0.18);
}

.contact-breadcrumb p {
  margin: 0;
  color: #6f5a8e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.contact-content {
  padding: clamp(34px, 4.6vw, 60px) 0 clamp(44px, 5.4vw, 70px);
  background: linear-gradient(180deg, #f5eefb 0%, #ece3f8 100%);
}

.contact-card {
  border-radius: 18px;
  border: 1px solid rgba(108, 66, 169, 0.22);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 20px rgba(46, 17, 78, 0.11);
  padding: clamp(18px, 2.3vw, 30px);
  max-width: 760px;
}

.contact-card h2 {
  margin: 0;
  color: #341f52;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.15;
}

.contact-card p {
  margin: 10px 0 0;
  color: #5d4f74;
  line-height: 1.62;
}

.contact-whatsapp {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  border-radius: 14px;
  border: 1px solid rgba(16, 185, 129, 0.34);
  background: linear-gradient(130deg, #edfff7 0%, #d8fbe9 100%);
  padding: 11px 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(20, 120, 74, 0.16);
}

.contact-whatsapp-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #14b86f 0%, #0f9f61 100%);
}

.contact-whatsapp-icon i {
  font-size: 16px;
}

.contact-whatsapp strong {
  display: block;
  color: #194c35;
  font-size: 14px;
  line-height: 1.2;
}

.contact-whatsapp small {
  display: block;
  margin-top: 2px;
  color: #2f6f51;
  font-size: 12px;
}

.auth-hero,
.account-hero {
  position: relative;
  padding: clamp(52px, 7vw, 84px) 0 clamp(36px, 4.8vw, 56px);
  background:
    radial-gradient(circle at 15% 12%, rgba(242, 0, 120, 0.14), transparent 34%),
    radial-gradient(circle at 84% 16%, rgba(138, 55, 255, 0.2), transparent 35%),
    linear-gradient(132deg, #2f1247 0%, #4f1d74 52%, #6e2a9f 100%);
}

.auth-hero-inner,
.account-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.auth-hero h1,
.account-hero h1 {
  margin: 0;
  color: #fff;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(31px, 3.2vw, 46px);
  line-height: 1.1;
}

.auth-hero p,
.account-hero p {
  margin: 0;
  color: rgba(240, 229, 254, 0.92);
  font-size: 18px;
  line-height: 1.5;
  max-width: 62ch;
}

.auth-breadcrumb,
.account-breadcrumb {
  padding: 18px 0;
  background: #efe5fa;
  border-bottom: 1px solid rgba(108, 66, 169, 0.18);
}

.auth-breadcrumb p,
.account-breadcrumb p {
  margin: 0;
  color: #6f5a8e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.auth-breadcrumb a,
.account-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.auth-content,
.account-content {
  padding: clamp(34px, 4.6vw, 60px) 0 clamp(44px, 5.4vw, 70px);
  background: linear-gradient(180deg, #f5eefb 0%, #ece3f8 100%);
}

.auth-card,
.account-card {
  border-radius: 18px;
  border: 1px solid rgba(108, 66, 169, 0.22);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 20px rgba(46, 17, 78, 0.11);
  padding: clamp(18px, 2.3vw, 30px);
  max-width: 760px;
}

.auth-card-wide {
  max-width: none;
}

.mt-14 {
  margin-top: 14px;
}

.auth-card h2,
.account-card h2 {
  margin: 0;
  color: #341f52;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.15;
}

.auth-form {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.auth-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-form label {
  display: grid;
  gap: 6px;
}

.auth-form label > span {
  color: #4a2a71;
  font-size: 13px;
  font-weight: 700;
}

.auth-form input,
.auth-form select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(108, 66, 169, 0.28);
  background: rgba(255, 255, 255, 0.88);
  color: #3e2a5d;
  font-size: 14px;
}

.auth-form input:focus,
.auth-form select:focus {
  outline: none;
  border-color: #7a43c4;
  box-shadow: 0 0 0 3px rgba(122, 67, 196, 0.18);
}

.auth-check {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.auth-check input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 2px;
}

.auth-check span {
  color: #5d4f74;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
}

.auth-check a {
  color: #6a2bb8;
  text-decoration: none;
}

.auth-form-wide {
  grid-column: 1 / -1;
}

.auth-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-links-row {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.auth-links-row a,
.auth-actions a {
  color: #6a2bb8;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.subscription-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.subscription-option {
  border-radius: 14px;
  border: 1px solid rgba(109, 66, 171, 0.2);
  background: rgba(255, 255, 255, 0.84);
  padding: 14px;
}

.subscription-option h3 {
  margin: 0;
  color: #442564;
}

.subscription-option p {
  margin: 8px 0 0;
  color: #5d4f74;
}

.subscription-option .btn {
  margin-top: 12px;
}

.subscription-status {
  margin-top: 10px;
  display: grid;
  gap: 4px;
}

.subscription-status p {
  margin: 0;
  color: #5d4f74;
}

.subscription-status .btn {
  margin-top: 8px;
}

.subscription-total p {
  margin: 0;
  color: #5d4f74;
  font-size: 16px;
}

.subscription-total strong {
  color: #3f255f;
  font-family: Montserrat, "Nunito Sans", sans-serif;
}

.supplier-register-hero {
  position: relative;
  padding: clamp(52px, 7vw, 84px) 0 clamp(36px, 4.8vw, 56px);
  background:
    radial-gradient(circle at 14% 12%, rgba(242, 0, 120, 0.14), transparent 34%),
    radial-gradient(circle at 84% 16%, rgba(138, 55, 255, 0.2), transparent 35%),
    linear-gradient(132deg, #2f1247 0%, #4f1d74 52%, #6e2a9f 100%);
}

.supplier-register-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.supplier-register-hero h1 {
  margin: 0;
  color: #fff;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.1;
  max-width: 22ch;
}

.supplier-register-hero p {
  margin: 0;
  color: rgba(240, 229, 254, 0.92);
  font-size: 18px;
  line-height: 1.5;
  max-width: 64ch;
}

.supplier-register-breadcrumb {
  padding: 18px 0;
  background: #efe5fa;
  border-bottom: 1px solid rgba(108, 66, 169, 0.18);
}

.supplier-register-breadcrumb p {
  margin: 0;
  color: #6f5a8e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.supplier-register-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.supplier-register-content {
  padding: clamp(34px, 4.6vw, 60px) 0 clamp(44px, 5.4vw, 70px);
  background: linear-gradient(180deg, #f5eefb 0%, #ece3f8 100%);
}

.supplier-register-card {
  border-radius: 18px;
  border: 1px solid rgba(108, 66, 169, 0.22);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 20px rgba(46, 17, 78, 0.11);
  padding: clamp(18px, 2.3vw, 30px);
}

.supplier-register-card h2 {
  margin: 0;
  color: #341f52;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.15;
}

.supplier-register-intro {
  margin: 10px 0 0;
  color: #5d4f74;
  line-height: 1.62;
}

.supplier-register-form {
  margin-top: 16px;
}

.supplier-register-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.supplier-register-grid label {
  display: grid;
  gap: 6px;
}

.supplier-register-grid label > span,
.supplier-register-label {
  color: #4a2a71;
  font-size: 13px;
  font-weight: 700;
}

.supplier-register-grid input,
.supplier-register-grid select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(108, 66, 169, 0.28);
  background: rgba(255, 255, 255, 0.88);
  color: #3e2a5d;
  font-size: 14px;
}

.supplier-register-grid input:focus,
.supplier-register-grid select:focus {
  outline: none;
  border-color: #7a43c4;
  box-shadow: 0 0 0 3px rgba(122, 67, 196, 0.18);
}

.supplier-register-wide {
  grid-column: 1 / -1;
}

.supplier-register-categories {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.supplier-register-categories label {
  min-height: 38px;
  border: 1px solid rgba(112, 68, 175, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.74);
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4a2a71;
  font-size: 13px;
}

.supplier-register-categories input {
  min-height: auto;
  width: auto;
  margin: 0;
}

.supplier-register-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 2px;
}

.supplier-register-consent input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 2px;
}

.supplier-register-consent span {
  color: #5d4f74;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.supplier-register-consent a {
  color: #6a2bb8;
  text-decoration: none;
}

.supplier-register-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.supplier-register-actions p {
  margin: 0;
  color: #705f88;
  font-size: 13px;
}

.policy-hero {
  position: relative;
  padding: clamp(52px, 7vw, 84px) 0 clamp(36px, 4.8vw, 56px);
  background:
    radial-gradient(circle at 12% 14%, rgba(242, 0, 120, 0.12), transparent 34%),
    radial-gradient(circle at 86% 16%, rgba(138, 55, 255, 0.18), transparent 36%),
    linear-gradient(132deg, #2f1247 0%, #4f1d74 52%, #6e2a9f 100%);
}

.policy-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.policy-hero h1 {
  margin: 0;
  color: #fff;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(29px, 3.1vw, 44px);
  line-height: 1.12;
  max-width: 24ch;
}

.policy-hero p {
  margin: 0;
  color: rgba(240, 229, 254, 0.92);
  font-size: 18px;
  line-height: 1.52;
  max-width: 66ch;
}

.policy-breadcrumb {
  padding: 18px 0;
  background: #efe5fa;
  border-bottom: 1px solid rgba(108, 66, 169, 0.18);
}

.policy-breadcrumb p {
  margin: 0;
  color: #6f5a8e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.policy-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.policy-content {
  padding: clamp(34px, 4.6vw, 60px) 0 clamp(44px, 5.4vw, 70px);
  background: linear-gradient(180deg, #f5eefb 0%, #ece3f8 100%);
}

.policy-card {
  border-radius: 18px;
  border: 1px solid rgba(108, 66, 169, 0.22);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 20px rgba(46, 17, 78, 0.11);
  padding: clamp(18px, 2.3vw, 30px);
}

.policy-card h2 {
  margin: 0;
  color: #341f52;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.15;
}

.policy-list {
  margin: 14px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.policy-list li {
  color: #5d4f74;
  line-height: 1.6;
}

.page-detail-hero {
  position: relative;
  padding: clamp(52px, 7vw, 84px) 0 clamp(36px, 4.8vw, 56px);
  background:
    radial-gradient(circle at 12% 14%, rgba(242, 0, 120, 0.12), transparent 34%),
    radial-gradient(circle at 86% 16%, rgba(138, 55, 255, 0.18), transparent 36%),
    linear-gradient(132deg, #2f1247 0%, #4f1d74 52%, #6e2a9f 100%);
}

.page-detail-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.page-detail-hero h1 {
  margin: 0;
  color: #fff;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(29px, 3.1vw, 44px);
  line-height: 1.12;
  max-width: 24ch;
}

.page-detail-hero p {
  margin: 0;
  color: rgba(240, 229, 254, 0.92);
  font-size: 18px;
  line-height: 1.52;
  max-width: 66ch;
}

.page-detail-breadcrumb {
  padding: 18px 0;
  background: #efe5fa;
  border-bottom: 1px solid rgba(108, 66, 169, 0.18);
}

.page-detail-breadcrumb p {
  margin: 0;
  color: #6f5a8e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-detail-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.page-detail-content {
  padding: clamp(34px, 4.6vw, 60px) 0 clamp(44px, 5.4vw, 70px);
  background: linear-gradient(180deg, #f5eefb 0%, #ece3f8 100%);
}

.page-detail-card {
  border-radius: 18px;
  border: 1px solid rgba(108, 66, 169, 0.22);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 20px rgba(46, 17, 78, 0.11);
  padding: clamp(18px, 2.3vw, 30px);
}

.page-detail-card h2 {
  margin: 0;
  color: #341f52;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.15;
}

.page-detail-body {
  margin-top: 14px;
}

.page-detail-body p,
.page-detail-body li {
  color: #5d4f74;
  line-height: 1.6;
}

.page-detail-body ul,
.page-detail-body ol {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.page-detail-body h3,
.page-detail-body h4 {
  margin: 16px 0 0;
  color: #442564;
}

.save-date-hero {
  position: relative;
  padding: clamp(56px, 7vw, 92px) 0 clamp(42px, 5.2vw, 62px);
  background:
    radial-gradient(circle at 14% 14%, rgba(242, 0, 120, 0.16), transparent 34%),
    radial-gradient(circle at 84% 20%, rgba(151, 86, 233, 0.2), transparent 35%),
    linear-gradient(132deg, #2f1247 0%, #4f1d74 52%, #6e2a9f 100%);
}

.save-date-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.save-date-hero .plans-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.save-date-hero .plans-kicker i {
  font-size: 15px;
}

.save-date-hero h1 {
  margin: 0;
  color: #fff;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.08;
  max-width: 22ch;
}

.save-date-hero p {
  margin: 0;
  color: rgba(240, 229, 254, 0.92);
  font-size: 18px;
  line-height: 1.5;
  max-width: 58ch;
}

.save-date-intro {
  padding: clamp(30px, 4.2vw, 50px) 0;
  background: linear-gradient(180deg, #f5eefb 0%, #ece3f8 100%);
}

.save-date-main-card {
  border-radius: 18px;
  border: 1px solid rgba(108, 66, 169, 0.2);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 20px rgba(46, 17, 78, 0.1);
  padding: clamp(18px, 2.3vw, 28px);
}

.save-date-main-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(138deg, #f20078 0%, #8a37ff 100%);
  box-shadow: 0 10px 16px rgba(86, 24, 152, 0.22);
}

.save-date-main-icon i {
  font-size: 20px;
}

.save-date-main-card h2 {
  margin: 10px 0 0;
  color: #341f52;
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: clamp(27px, 2.7vw, 40px);
  line-height: 1.12;
}

.save-date-main-card p {
  margin: 10px 0 0;
  color: #5d4f74;
  line-height: 1.6;
}

.save-date-main-card .btn {
  margin-top: 14px;
}

.save-date-links {
  padding: 0 0 clamp(44px, 5.8vw, 70px);
  background: linear-gradient(180deg, #ece3f8 0%, #e6daf5 100%);
}

.save-date-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.save-date-link-card {
  border-radius: 16px;
  border: 1px solid rgba(108, 66, 169, 0.2);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 20px rgba(46, 17, 78, 0.1);
  padding: 14px;
}

.save-date-link-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.save-date-link-icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(132deg, #642a9d 0%, #f20078 100%);
  box-shadow: 0 8px 14px rgba(77, 20, 136, 0.2);
}

.save-date-link-icon i {
  font-size: 15px;
}

.save-date-link-card h3 {
  margin: 0;
  color: #3f255f;
  font-size: 21px;
  line-height: 1.2;
}

.save-date-link-card p {
  margin: 8px 0 0;
  color: #5d4f74;
  line-height: 1.52;
}

.save-date-link-card .btn {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-security {
  position: relative;
  padding: 26px 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.22), transparent 30%),
    radial-gradient(circle at 14% 78%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(120deg, #f7cce5 0%, #efb7d9 46%, #e8a7cf 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.52);
  border-bottom: 1px solid rgba(176, 82, 138, 0.28);
}

.footer-security-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.security-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 14px;
}

.security-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(130deg, #7c42ce 0%, #5f2ca9 100%);
  box-shadow: 0 8px 16px rgba(25, 9, 49, 0.25);
}

.security-icon svg {
  width: 22px;
  height: 22px;
}

.security-copy p {
  margin: 0;
  color: #5a2650;
  font-size: 17px;
  line-height: 1.5;
}

.security-copy a {
  color: #8d145f;
  text-decoration: none;
  font-weight: 700;
}

.security-copy a:hover {
  color: #6d0e49;
}

.payment-flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.payment-flag {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(32, 11, 58, 0.18);
  color: #1f1f2b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(15, 5, 34, 0.2);
}

.payment-flag.paypal {
  color: #123f91;
}

.payment-flag.visa {
  color: #1a1f71;
}

.payment-flag.amex {
  color: #117fb6;
  font-size: 10px;
}

.payment-flag.master {
  position: relative;
  padding-left: 38px;
  color: #352352;
}

.payment-flag.master::before,
.payment-flag.master::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.payment-flag.master::before {
  left: 12px;
  background: rgba(235, 52, 46, 0.95);
}

.payment-flag.master::after {
  left: 20px;
  background: rgba(242, 162, 36, 0.95);
  mix-blend-mode: multiply;
}

/* Footer Bottom */
.footer-bottom {
  padding: 32px 0 40px;
  font-size: 14px;
  color: rgba(226, 217, 243, 0.5);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.legal-links {
  display: flex;
  gap: 24px;
}

.footer-credit {
  display: inline-flex;
}

.footer-credit a {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(233, 224, 248, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(4px);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.footer-credit span {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-credit strong {
  font-family: Montserrat, "Nunito Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 0.09em;
  color: #fff;
}

.footer-credit a::after {
  content: '↗';
  font-size: 12px;
  transform: translateY(-1px);
  opacity: 0.8;
}

.footer-credit a:hover {
  transform: translateY(-1px);
  color: #fff;
  border-color: rgba(242, 0, 120, 0.45);
  box-shadow: 0 10px 18px rgba(242, 0, 120, 0.2);
}

.legal-links a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

.legal-links a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 1080px) {
  .subscription-grid,
  .auth-form-grid {
    grid-template-columns: 1fr;
  }

  .supplier-register-grid,
  .supplier-register-categories {
    grid-template-columns: 1fr;
  }

  .save-date-links-grid {
    grid-template-columns: 1fr;
  }

  .seu-evento-info-grid,
  .seu-evento-features-grid {
    grid-template-columns: 1fr;
  }

  .event-detail-layout {
    grid-template-columns: 1fr;
  }

  .news-detail-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .supplier-detail-layout,
  .supplier-contact-grid {
    grid-template-columns: 1fr;
  }

  .round-detail-layout,
  .round-detail-meta-grid {
    grid-template-columns: 1fr;
  }

  .rounds-summary-grid,
  .rounds-list-grid {
    grid-template-columns: 1fr;
  }

  .plans-benefits-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-detail-layout {
    grid-template-columns: 1fr;
  }

  .about-intro-grid,
  .about-pillars-grid,
  .journey-list {
    grid-template-columns: 1fr;
  }

  .about-hero p {
    font-size: 18px;
  }

  .about-story p,
  .pillar-card p,
  .journey-list p {
    font-size: 16px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .faq-item summary {
    font-size: 17px;
  }

  .footer-security-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .payment-flags {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .auth-hero p,
  .account-hero p {
    font-size: 16px;
  }

  .auth-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .auth-actions .btn {
    width: 100%;
  }

  .supplier-register-hero p {
    font-size: 16px;
  }

  .supplier-register-actions .btn {
    width: 100%;
  }

  .page-detail-hero p {
    font-size: 16px;
  }

  .policy-hero p {
    font-size: 16px;
  }

  .contact-hero p {
    font-size: 16px;
  }

  .contact-card {
    max-width: none;
  }

  .save-date-hero p {
    font-size: 16px;
  }

  .save-date-link-card h3 {
    font-size: 19px;
  }

  .seu-evento-hero p {
    font-size: 16px;
  }

  .seu-evento-feature-card h3 {
    font-size: 19px;
  }

  .news-detail-hero h1 {
    font-size: 30px;
  }

  .news-detail-card p {
    font-size: 16px;
  }

  .news-detail-gallery-grid {
    grid-template-columns: 1fr;
  }

  .news-detail-gallery-item {
    min-height: 138px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-thumb {
    min-height: 140px;
  }

  .news-content h3 {
    font-size: 20px;
  }

  .supplier-detail-hero p {
    font-size: 16px;
  }

  .supplier-profile-header {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .round-detail-hero p {
    font-size: 16px;
  }

  .round-detail-card p {
    font-size: 16px;
  }

  .rounds-page-hero p {
    font-size: 16px;
  }

  .plans-hero p {
    font-size: 16px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-detail-head {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .review-detail-head .google-g {
    justify-self: end;
    margin-top: -42px;
  }


  .reviews-hero p {
    font-size: 16px;
  }

  .about-hero {
    padding-top: 44px;
  }

  .about-hero h1 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .about-hero p {
    font-size: 16px;
  }

  .about-cta p {
    font-size: 16px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .footer-brand, .footer-cta {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-logo-link {
    display: flex;
    justify-content: center;
  }

  .footer-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .security-copy {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .security-copy p {
    font-size: 16px;
  }

  .payment-flags {
    justify-content: center;
  }

  .faq-head,
  .faq-head p {
    text-align: center;
    justify-items: center;
  }

  .faq-item summary {
    font-size: 16px;
    padding: 16px 44px 16px 16px;
  }

  .faq-answer {
    padding: 0 16px 16px;
  }

  .footer-credit {
    justify-content: center;
  }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .btn-outline,
  .btn-solid {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav-actions {
    margin-left: auto;
  }

  .top-video-hero {
    min-height: min(68vh, 700px);
  }

  .brand-story-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "about"
      "flow"
      "video";
  }

  .brand-story-panel h2 {
    max-width: 22ch;
  }

  .hero-content {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-content {
    min-height: min(68vh, 700px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }

  .hero-cta-row {
    display: flex;
    width: 100%;
    gap: 10px;
    margin-top: 16px;
    margin-bottom: 0;
  }

  .hero-cta-row .btn-solid,
  .hero-cta-row .btn-outline {
    display: inline-flex;
    flex: 1 1 0;
    min-height: 46px;
    justify-content: center;
  }

  .hero-cta-row .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(14, 6, 26, 0.22);
    backdrop-filter: blur(3px);
  }

  .mobile-menu .mobile-link[href="/planos"] {
    border-color: #d7b55a;
    box-shadow: inset 0 0 0 1px rgba(215, 181, 90, 0.26);
  }

  .rounds-showcase-inner {
    grid-template-columns: 1fr;
  }

  .rounds-showcase-head h2,
  .rounds-showcase-head p {
    max-width: none;
  }

  .coming-features-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .coming-visual {
    order: -1;
    margin-bottom: 2px;
  }

  .coming-visual img {
    width: min(100%, 460px);
  }

  .rounds-track {
    --rounds-card-width: calc((100% - 12px) / 2);
  }

  .testimonials-track {
    --testimonial-card-width: calc((100% - 28px) / 2);
  }

  .premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .plan-card.featured {
    transform: none;
    box-shadow: 0 20px 30px rgba(84, 24, 102, 0.16);
  }

  .premium-head p {
    font-size: 17px;
  }


  .rounds-nav-wrap {
    top: -54px;
  }
}

@media (max-width: 900px) {
  .premium-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .plan-card {
    width: min(560px, 100%);
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (min-width: 1081px) {
  .rounds-track {
    --rounds-card-width: calc((100% - 24px) / 3);
  }

  .testimonials-track {
    --testimonial-card-width: calc((100% - 56px) / 3);
  }

  .btn {
    border-radius: 14px;
  }

  .coming-features-inner {
    grid-template-columns: minmax(0, 1fr) minmax(520px, 0.98fr);
    gap: clamp(26px, 3vw, 46px);
    align-items: center;
  }

  .coming-card {
    padding: 28px 30px;
  }

  .coming-card h2 {
    font-size: clamp(34px, 2.4vw, 44px);
    line-height: 1.16;
  }

  .coming-list {
    margin-top: 18px;
    gap: 10px;
  }

  .coming-list li {
    font-size: 17px;
    line-height: 1.45;
    max-width: 45ch;
  }

  .coming-actions {
    margin-top: 20px;
    gap: 12px;
  }

  .coming-actions .btn {
    min-height: 50px;
    padding: 0 24px;
    font-size: 17px;
  }

  .coming-visual img {
    width: min(100%, 660px);
  }

  .coming-visual::after {
    width: min(78%, 430px);
  }
}

@media (max-width: 680px) {
  .utility-inner {
    justify-content: center;
    gap: 6px;
    min-height: 46px;
    flex-wrap: wrap;
    padding: 6px 0;
  }

  .pill {
    font-size: 12px;
    min-height: 28px;
    padding: 0 10px;
  }

  .main-nav {
    min-height: 68px;
  }

  .mobile-menu {
    top: 162px;
    right: 10px;
    left: 10px;
    width: auto;
  }

  .mobile-menu-backdrop {
    top: 152px;
  }

  .brand-logo {
    width: 124px;
  }

  body.header-condensed .utility-inner {
    min-height: 36px;
    gap: 4px;
    padding: 2px 0;
  }

  body.header-condensed .pill {
    min-height: 24px;
    font-size: 11px;
    padding: 0 8px;
  }

  body.header-condensed .main-nav {
    min-height: 58px;
  }

  body.header-condensed .brand-logo {
    width: 106px;
  }

  body.header-condensed .menu-toggle {
    width: 40px;
    height: 40px;
  }

  body.header-condensed .mobile-menu {
    top: 126px;
  }

  body.header-condensed .mobile-menu-backdrop {
    top: 116px;
  }

  .top-video-hero {
    min-height: 92vh;
    align-items: flex-start;
  }

  .hero-video-desktop {
    display: none;
  }

  .hero-video-mobile {
    display: block;
  }

  .hero-content {
    min-height: 78vh;
    padding: 22px 0 20px;
  }

  .hero-content h1 {
    max-width: 13ch;
    font-size: clamp(30px, 9.3vw, 44px);
  }

  .hero-content .lead {
    font-size: 16px;
    max-width: 36ch;
  }

  .hero-cta-row {
    margin-top: auto;
    padding-top: 34px;
    flex-direction: column;
    gap: 8px;
  }

  .hero-cta-row .btn-solid,
  .hero-cta-row .btn-outline {
    width: 100%;
  }

  .btn-solid::before {
    top: -74%;
    left: -42%;
    width: 36%;
    height: 248%;
    filter: blur(5px);
    transform: rotate(11deg) translateX(-260%);
    animation-name: ctaLightSweepBtnMobile;
  }

  .brand-story {
    padding: 50px 0 64px;
  }

  .rounds-showcase {
    padding: 44px 0 52px;
  }

  .coming-features {
    padding: 42px 0 58px;
  }

  .coming-card {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .coming-card h2 {
    font-size: clamp(23px, 7vw, 33px);
  }

  .coming-list {
    margin-top: 16px;
    gap: 10px;
  }

  .coming-list li {
    font-size: 16px;
    line-height: 1.5;
    padding-left: 24px;
  }

  .coming-list li::before {
    width: 12px;
    height: 12px;
    top: 7px;
  }

  .coming-actions {
    margin-top: 16px;
    width: 100%;
    flex-direction: column;
  }

  .coming-actions .btn {
    width: 100%;
  }

  .rounds-showcase-head h2 {
    font-size: clamp(24px, 8vw, 34px);
  }

  .rounds-showcase-head p {
    font-size: 16px;
  }

  .rounds-track {
    --rounds-card-width: 100%;
    gap: 0;
  }

  .testimonials-track {
    --testimonial-card-width: 100%;
    gap: 0;
  }

  .premium-plans {
    padding: 54px 0 66px;
  }

  .premium-kicker {
    min-height: 30px;
    font-size: 11px;
    letter-spacing: 0.09em;
  }

  .premium-head h2 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.1;
  }

  .premium-head p {
    font-size: 16px;
  }

  .premium-grid {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .plan-card {
    padding: 24px 16px 20px;
    border-radius: 16px;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .plan-card::after {
    left: 14px;
    right: 14px;
    top: 14px;
  }

  .plan-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin-bottom: 12px;
  }

  .plan-icon svg {
    width: 22px;
    height: 22px;
  }

  .plan-badge {
    top: 0;
    transform: translateY(-50%);
    right: 12px;
  }

  .plan-ribbon {
    min-height: 30px;
    font-size: 12px;
    padding: 0 12px;
    margin-bottom: 12px;
  }

  .plan-cycle {
    font-size: 14px;
  }

  .plan-price {
    font-size: clamp(34px, 10vw, 46px);
  }

  .plan-multiplier {
    font-size: 24px;
  }

  .plan-total {
    font-size: 15px;
  }

  .plan-renew {
    font-size: 13px;
  }

  .plan-list {
    margin-top: 18px;
  }

  .plan-list li {
    font-size: 16px;
    padding-left: 28px;
  }

  .plan-btn {
    min-height: 46px;
    width: 100%;
  }

  .testimonials-head {
    text-align: left;
  }

  .testimonial-card {
    min-height: 314px;
    padding: 16px;
    border-radius: 16px;
  }

  .testimonial-avatar {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .testimonial-person h3 {
    font-size: 17px;
  }

  .testimonial-person p {
    font-size: 13px;
  }

  .google-g {
    font-size: 27px;
  }

  .testimonial-stars {
    margin-top: 14px;
    font-size: 18px;
  }

  .testimonial-text {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.52;
  }

  .testimonial-time {
    padding-top: 16px;
    font-size: 14px;
  }

  .rounds-viewport {
    padding: 2px 0 10px;
  }

  .rounds-nav-wrap {
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 4px;
    pointer-events: none;
  }

  .rounds-nav {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    font-size: 34px;
    pointer-events: auto;
    box-shadow: 0 8px 14px rgba(10, 4, 26, 0.32);
  }

  .round-card {
    min-height: 262px;
    padding: 16px;
  }

  .round-card h3 {
    font-size: 20px;
  }

  .story-metrics {
    grid-template-columns: 1fr;
  }

  .brand-story-panel.highlight .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-card,
  .coming-visual {
    animation: none;
  }

  .testimonials-track {
    scroll-behavior: auto;
  }

  .hero-copy-layer,
  .hero-copy-layer.is-entering,
  .hero-copy-layer.is-visible,
  .hero-copy-layer.is-leaving {
    transition: none;
    transform: none;
    filter: none;
  }
}


/* --- Clean Auth Pages (Login/Register) --- */

.auth-page-clean {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top right, #4a2b7a 0%, #1d1730 60%);
  padding: 20px;
}

.auth-container {
  width: 100%;
  max-width: 480px;
}

.auth-discovery-page {
  background:
    radial-gradient(circle at top right, rgba(255, 94, 180, 0.24) 0%, rgba(255, 94, 180, 0) 28%),
    radial-gradient(circle at bottom left, rgba(42, 144, 255, 0.22) 0%, rgba(42, 144, 255, 0) 32%),
    linear-gradient(135deg, #1b1330 0%, #130f25 48%, #0f172a 100%);
}

.auth-discovery-grid {
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.auth-card {
  background: #2a1b42; /* Roxo escuro para o cartao */
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-discovery-panel {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(16, 20, 42, 0.92) 0%, rgba(20, 16, 34, 0.92) 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.auth-discovery-eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff8cc8;
  font-weight: 800;
}

.auth-discovery-hero h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  color: #fff;
}

.auth-discovery-hero p {
  margin: 14px 0 0;
  color: #c9bfd8;
  line-height: 1.7;
  font-size: 15px;
  max-width: 58ch;
}

.auth-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.auth-route-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 160px;
  padding: 18px;
  border-radius: 20px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.auth-route-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 94, 180, 0.4);
  background: linear-gradient(180deg, rgba(255, 94, 180, 0.14) 0%, rgba(42, 144, 255, 0.08) 100%);
}

.auth-route-kicker {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffd2ea;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-route-card strong {
  font-size: 18px;
  line-height: 1.25;
}

.auth-route-card span:last-child {
  color: #c9bfd8;
  font-size: 14px;
  line-height: 1.55;
}

.auth-demo-credentials {
  border-radius: 22px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(8, 10, 22, 0.8) 0%, rgba(18, 14, 31, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-demo-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.auth-demo-grid div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.auth-demo-grid strong {
  color: #fff;
  font-size: 14px;
}

.auth-demo-grid span {
  color: #c9bfd8;
  font-size: 13px;
  line-height: 1.5;
}

.auth-header {
  margin-bottom: 32px;
}

.auth-logo {
  max-width: 160px;
  margin-bottom: 24px;
}

.auth-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff; /* Texto branco */
  margin: 0 0 8px;
}

.auth-subtitle {
  font-size: 15px;
  color: #bfaec9; /* Lilas claro */
  margin: 0;
}

.auth-form {
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #eaddfd; /* Texto claro */
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(13, 7, 26, 0.4); /* Fundo escuro transparente */
  border: 2px solid #4a3b69; /* Borda roxa escura */
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: #ffffff;
  transition: all 0.2s;
}

.form-input::placeholder {
  color: #7a6b99;
}

.form-input:focus {
  outline: none;
  border-color: #f20078; /* Foco rosa */
  box-shadow: 0 0 0 4px rgba(242, 0, 120, 0.2);
  background: rgba(13, 7, 26, 0.6);
}

.input-hint {
  display: block;
  font-size: 12px;
  color: #9a8bb8;
  margin-top: 6px;
  text-align: right;
}

.input-hint a {
  color: #ff5eb4; /* Rosa claro para links */
  text-decoration: none;
  font-weight: 600;
}

.input-hint a:hover {
  text-decoration: underline;
  color: #fff;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(242, 0, 120, 0.4); /* Sombra rosa brilhante */
}

/* Forcar botao rosa se nao estiver pegando */
.auth-page-clean .btn-solid {
  background: linear-gradient(120deg, #f20078 0%, #ff127f 100%);
  border: none;
}

/* Sweep dedicado para os botoes de auth atravessar todo o botao */
.auth-page-clean .btn-solid::before {
  top: 0;
  left: -52%;
  width: 38%;
  height: 100%;
  filter: blur(5px);
  transform: translateX(-240%) rotate(12deg);
  animation: ctaLightSweepAuth 4.2s cubic-bezier(.22,.61,.36,1) infinite;
}

@keyframes ctaLightSweepAuth {
  0% {
    transform: translateX(-240%) rotate(12deg);
    opacity: 0;
  }

  18% {
    opacity: 0.82;
  }

  72% {
    opacity: 0.5;
  }

  100% {
    transform: translateX(560%) rotate(12deg);
    opacity: 0;
  }
}

.auth-divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
  color: #8c7ba6;
  font-size: 14px;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.auth-divider span {
  padding: 0 12px;
}

.btn-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08); /* Fundo transparente */
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-google:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.auth-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #9a8bb8;
}

.auth-footer a {
  color: #ff5eb4;
  text-decoration: none;
  font-weight: 700;
}

.auth-footer a:hover {
  text-decoration: underline;
  color: #fff;
}

.auth-status {
  background: rgba(76, 209, 124, 0.18);
  color: #9bf0bf;
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 14px;
  text-align: left;
  border: 1px solid rgba(76, 209, 124, 0.34);
}

.auth-helper {
  margin-top: 22px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  text-align: left;
}

.auth-helper-title {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.auth-helper-copy {
  margin: 0;
  color: #bfaec9;
  font-size: 13px;
  line-height: 1.55;
}

.auth-helper-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #bfaec9;
  font-size: 13px;
  line-height: 1.6;
}

.auth-helper-list li + li {
  margin-top: 4px;
}

/* Ajustes de responsividade para auth */
@media (max-width: 480px) {
  .auth-card {
    padding: 24px;
  }
}

@media (max-width: 980px) {
  .auth-discovery-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .auth-discovery-panel {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .auth-route-grid,
  .auth-demo-grid {
    grid-template-columns: 1fr;
  }

  .auth-route-card {
    min-height: auto;
  }
}

/* --- Floating Labels (Material Style) --- */

.form-group.floating-group {
  position: relative;
  margin-bottom: 24px;
}

.form-group.floating-group .form-input {
  height: 58px;
  padding: 24px 16px 8px; /* Espaco para texto embaixo */
  background: rgba(13, 7, 26, 0.4);
  border: 1px solid #4a3b69;
  border-radius: 12px;
  font-size: 16px;
  color: #fff;
  transition: all 0.2s;
}

.form-group.floating-group .form-input::placeholder {
  color: transparent; /* Esconde placeholder para o truque funcionar */
}

.form-group.floating-group .form-label {
  position: absolute;
  top: 18px;
  left: 16px;
  font-size: 15px;
  font-weight: 500;
  color: #9a8bb8;
  pointer-events: none;
  transition: 0.2s ease all;
  margin: 0;
  line-height: 1;
}

.form-group.floating-group .form-input:focus,
.form-group.floating-group .form-input:not(:placeholder-shown) {
  border-color: #f20078;
  background: rgba(13, 7, 26, 0.6);
  outline: none;
  box-shadow: 0 0 0 4px rgba(242, 0, 120, 0.15);
}

.form-group.floating-group .form-input:focus ~ .form-label,
.form-group.floating-group .form-input:not(:placeholder-shown) ~ .form-label {
  top: 10px;
  font-size: 11px;
  font-weight: 700;
  color: #f20078;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group.floating-group .form-input:not(:placeholder-shown):not(:focus) ~ .form-label {
  color: #bfaec9; /* Cor neutra quando preenchido e sem foco */
}

/* --- Custom Checkbox (Terms) --- */

.auth-terms {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  text-align: left;
  padding: 0 4px; /* Pequeno ajuste horizontal */
}

/* Esconde o checkbox nativo feio */
.auth-terms input[type="checkbox"] {
  display: none;
}

/* A caixinha visual */
.check-box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid #5f4b8b;
  border-radius: 6px;
  background: rgba(13, 7, 26, 0.4);
  position: relative;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 1px; /* Alinha com o texto */
}

.check-box:hover {
  border-color: #8a37ff;
  background: rgba(13, 7, 26, 0.6);
}

/* Quando marcado */
.auth-terms input:checked + .check-box {
  background: #f20078;
  border-color: #f20078;
  box-shadow: 0 0 15px rgba(242, 0, 120, 0.4);
}

/* O "tick" (check) criado com CSS puro */
.check-box::after {
  content: "";
  position: absolute;
  top: 48%; /* Ajuste fino vertical */
  left: 50%;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -60%) rotate(45deg) scale(0);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.auth-terms input:checked + .check-box::after {
  transform: translate(-50%, -60%) rotate(45deg) scale(1);
  opacity: 1;
}

/* Texto dos termos */
.terms-text {
  font-size: 14px;
  color: #bfaec9;
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
}

.terms-text a {
  color: #ff5eb4;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.2s;
}

.terms-text a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Focus state para acessibilidade por teclado */
.auth-terms input:focus + .check-box {
  box-shadow: 0 0 0 3px rgba(138, 55, 255, 0.3);
}

.form-row {
  display: flex;
  gap: 16px;
}
.form-row .form-group {
  flex: 1;
}

.form-label-static {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #9a8bb8;
  margin-bottom: 8px;
  margin-left: 4px;
}

/* --- Subscription checkout (auth-like) --- */
.checkout-auth .auth-card {
  max-width: 520px;
}

.checkout-auth .auth-container {
  max-width: 620px;
}

.checkout-auth .auth-header {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.checkout-auth .auth-header > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.checkout-auth .auth-logo {
  max-height: 52px;
  max-width: 148px;
  margin-bottom: 0;
}

.checkout-plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: linear-gradient(130deg, #f20078 0%, #a032d6 100%);
  box-shadow: 0 8px 16px rgba(242, 0, 120, 0.34);
  margin: 2px 0 4px;
}

.checkout-auth .auth-title {
  margin: 0;
  line-height: 1.2;
}

.checkout-auth .auth-subtitle {
  margin: 0;
  max-width: 28ch;
  text-align: center;
}

.checkout-summary {
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(17, 9, 33, 0.62), rgba(26, 14, 49, 0.56));
}

.checkout-summary .summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: #bfaec9;
  font-size: 15px;
}

.checkout-summary .summary-row:last-child {
  margin-bottom: 0;
}

.checkout-summary .summary-row.total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 33px;
  font-weight: 800;
}

.checkout-summary .summary-row.total strong {
  font-size: 33px;
  line-height: 1;
}

.checkout-auth .form-row {
  display: flex;
  margin-bottom: 24px;
  align-items: flex-end;
  gap: 12px;
}

.checkout-auth .form-row .form-group {
  margin-bottom: 0;
}

.checkout-auth .form-row .form-row {
  display: flex;
  gap: 8px;
}

.checkout-auth .cvv-input {
  min-height: 46px;
  background: rgba(13, 7, 26, 0.56);
  border: 1px solid #4a3b69;
  color: #ffffff;
}

.checkout-auth .cvv-input::placeholder {
  color: #8f7caf;
}

.checkout-auth .cvv-input:focus {
  border-color: #f20078;
  box-shadow: 0 0 0 4px rgba(242, 0, 120, 0.16);
  outline: none;
}

.select-wrap {
  position: relative;
  flex: 1;
}

.select-wrap::after {
  content: '\F282';
  font-family: 'bootstrap-icons';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9a8bb8;
  font-size: 12px;
  pointer-events: none;
}

select.form-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: rgba(13, 7, 26, 0.48);
  color: #fff;
  min-height: 46px;
  padding: 10px 34px 10px 12px;
}

select.form-input:focus {
  border-color: #f20078;
  box-shadow: 0 0 0 4px rgba(242, 0, 120, 0.16);
  outline: none;
}

/* Unified dropdown identity across project forms */
select.form-input,
.auth-form select,
.supplier-register-grid select {
  border-radius: 12px;
  border: 1px solid #4a3b69;
  background-color: rgba(13, 7, 26, 0.56);
  color: #ffffff;
  color-scheme: dark;
}

select:not([multiple]),
select.form-input:not([multiple]),
.auth-form select:not([multiple]),
.supplier-register-grid select:not([multiple]) {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, #f6d8ff 50%),
    linear-gradient(135deg, #f6d8ff 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px),
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background-color .2s ease;
}

select:not([multiple]):hover,
select.form-input:not([multiple]):hover,
.auth-form select:not([multiple]):hover,
.supplier-register-grid select:not([multiple]):hover {
  border-color: rgba(242, 0, 120, 0.42);
  transform: translateY(-1px);
}

select.form-input:focus,
.auth-form select:focus,
.supplier-register-grid select:focus {
  border-color: #f20078;
  box-shadow: 0 0 0 4px rgba(242, 0, 120, 0.16);
}

select.form-input option,
.auth-form select option,
.supplier-register-grid select option {
  background-color: #2a1e43;
  color: #f5eeff;
}

select:not([multiple]) option {
  background-color: #2a1e43;
  color: #f5eeff;
  border-radius: 10px;
}

select.form-input option:checked,
.auth-form select option:checked,
.supplier-register-grid select option:checked {
  background-color: #4b2a7d;
  color: #ffffff;
}

.floating-group.with-icon {
  position: relative;
}

.floating-group.with-icon .field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9a8bb8;
  font-size: 17px;
  pointer-events: none;
  z-index: 2;
}

.floating-group.with-icon .form-input {
  padding-left: 44px;
}

.floating-group.with-icon .form-label {
  left: 44px;
}

.checkout-security {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
  margin-top: 16px;
  color: #7a6b99;
  font-size: 13px;
}

.checkout-security i {
  color: #00d084;
  font-size: 14px;
}

@media (max-width: 560px) {
  .auth-page-clean.checkout-auth,
  .auth-page-clean.subscription-standard {
    padding: 14px;
    align-items: flex-start;
  }

  .checkout-auth .auth-card,
  .subscription-standard .auth-card {
    padding: 20px;
    border-radius: 18px;
  }

  .checkout-auth .auth-logo,
  .subscription-standard .auth-logo {
    max-width: 128px;
  }

  .checkout-auth .auth-title,
  .subscription-standard .auth-title {
    font-size: 34px;
  }

  .checkout-auth .auth-subtitle,
  .subscription-standard .auth-subtitle {
    font-size: 15px;
  }

  .checkout-summary {
    padding: 13px;
  }

  .checkout-summary .summary-row {
    font-size: 14px;
  }

  .checkout-summary .summary-row.total {
    font-size: 24px;
  }

  .checkout-summary .summary-row.total strong {
    font-size: 24px;
  }

  .checkout-auth .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .checkout-auth .form-row .form-row {
    grid-template-columns: 1fr;
  }

  .subscription-kicker,
  .checkout-plan-badge {
    min-height: 26px;
    font-size: 10px;
    padding: 0 10px;
  }

  .subscription-total-box p {
    font-size: 14px;
  }

  .subscription-total-box strong {
    font-size: 22px;
  }

  .auth-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .auth-actions .btn {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .subscription-standard .auth-container {
    max-width: 1100px;
  }

  .subscription-standard .auth-card {
    padding: 40px;
  }

  .subscription-hub-grid {
    gap: 18px;
  }
}

@media (min-width: 1100px) {
  /* Mensal e anual: ocupar melhor o desktop mantendo leitura confortavel */
  .auth-page-clean.checkout-auth:not(.subscription-standard) .auth-container {
    max-width: 920px;
  }

  .auth-page-clean.checkout-auth:not(.subscription-standard) .auth-card {
    max-width: 900px;
    padding: 40px 46px;
  }

  .auth-page-clean.checkout-auth:not(.subscription-standard) .auth-header,
  .auth-page-clean.checkout-auth:not(.subscription-standard) .checkout-summary,
  .auth-page-clean.checkout-auth:not(.subscription-standard) .auth-form {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .auth-page-clean.checkout-auth:not(.subscription-standard) .checkout-summary {
    margin-bottom: 24px;
  }

  /* Assinatura por plano: painel lateral + formulario amplo */
  body[data-page="subscription-plan-detail"] .auth-container {
    max-width: 1240px;
  }

  body[data-page="subscription-plan-detail"] .auth-card:not(.checkout-pro-card) {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(320px, 380px) minmax(0, 1fr);
    gap: 18px 24px;
    align-items: start;
  }

  body[data-page="subscription-plan-detail"] .auth-card:not(.checkout-pro-card) .auth-header {
    grid-column: 1;
    margin-bottom: 0;
    text-align: left;
    align-items: flex-start;
  }

  body[data-page="subscription-plan-detail"] .auth-card:not(.checkout-pro-card) .auth-subtitle {
    text-align: left;
  }

  body[data-page="subscription-plan-detail"] .auth-card:not(.checkout-pro-card) .checkout-summary {
    grid-column: 1;
    margin-bottom: 0;
  }

  body[data-page="subscription-plan-detail"] .auth-card:not(.checkout-pro-card) .subscription-detail-form {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-top: 0;
  }
}

/* --- Professional checkout (subscription plan) --- */
.auth-card.checkout-pro-card,
.checkout-auth .checkout-pro-card {
  max-width: 100%;
  display: block;
  padding: clamp(24px, 3vw, 32px);
}

.checkout-pro-shell {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.checkout-pro-side {
  position: sticky;
  top: 16px;
  display: grid;
  gap: 14px;
}

.checkout-pro-header {
  text-align: left;
  align-items: flex-start;
  margin-bottom: 0;
}

.checkout-pro-header .auth-subtitle {
  text-align: left;
}

.checkout-pro-side .checkout-summary {
  margin-bottom: 0;
}

.checkout-pro-security {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(17, 9, 33, 0.62), rgba(26, 14, 49, 0.56));
  padding: 12px 14px;
}

.checkout-pro-security p {
  margin: 0;
  color: #bfaec9;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-pro-security p + p {
  margin-top: 8px;
}

.checkout-pro-security i {
  color: #ff79c7;
}

.checkout-pro-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(14, 8, 28, 0.45), rgba(24, 14, 42, 0.42));
}

.checkout-section-title {
  margin: 2px 0 2px;
  color: #f1e4ff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.checkout-pro-actions {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 10px;
  align-items: center;
}

.checkout-pro-actions .btn {
  width: 100%;
}

@media (max-width: 1099px) {
  .checkout-pro-shell {
    grid-template-columns: 1fr;
  }

  .checkout-pro-side {
    position: static;
    top: auto;
  }
}

@media (max-width: 560px) {
  .checkout-pro-form {
    padding: 12px;
  }

  .checkout-section-title {
    margin-top: 4px;
    font-size: 12px;
  }

  .checkout-pro-actions {
    grid-template-columns: 1fr;
  }

  /* Mobile adaptation to remove "box-in-box" feeling */
  body[data-page="subscription-plan-detail"] .auth-page-clean,
  .auth-page-clean.subscription-standard {
     padding: 10px; 
     align-items: stretch; 
  }

  /* Flatten the outer card */
  .auth-card.checkout-pro-card,
  .checkout-auth .checkout-pro-card,
  .subscription-standard .auth-card {
    padding: 0; 
    background: transparent; 
    border: none;
    box-shadow: none;
  }

  /* Flatten the inner form container to handle "square inside square" */
  .checkout-pro-form {
    padding: 0;
    margin-top: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .checkout-pro-shell {
    gap: 24px; 
  }

  .checkout-pro-side {
    gap: 10px;
  }
  
  /* Tighter vertical spacing */
  .checkout-pro-form .form-group {
    margin-bottom: 10px;
  }

  /* Make inputs slightly more compact */
  .form-group.floating-group {
    margin-bottom: 12px;
  }
  
  .form-group.floating-group .form-input {
    height: 50px;
    padding: 20px 16px 6px;
  }
  
  .form-group.floating-group .form-label {
    top: 15px; 
  }
  
  .form-group.floating-group .form-input:focus ~ .form-label,
  .form-group.floating-group .form-input:not(:placeholder-shown) ~ .form-label  {
    top: 8px;
  }
  
  .floating-group.with-icon .field-icon {
     font-size: 16px;
  }

  .checkout-section-title {
    margin-bottom: 8px;
    padding-left: 4px; /* Align with input curve visual */
  }

  /* Mobile-only readability and action visibility for subscription plan checkout */
  body[data-page="subscription-plan-detail"] .checkout-pro-form .checkout-section-title {
    color: #f7eaff;
    opacity: 1;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-shadow: 0 1px 10px rgba(8, 2, 20, 0.45);
    margin: 0 0 12px;
  }

  body[data-page="subscription-plan-detail"] .checkout-pro-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 6px;
  }

  body[data-page="subscription-plan-detail"] .checkout-pro-actions .btn {
    display: inline-flex;
    width: 100%;
    min-height: 46px;
    visibility: visible;
    opacity: 1;
  }

  body[data-page="subscription-plan-detail"] .checkout-pro-actions .btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.04);
  }

  body[data-page="subscription-plan-detail"] .checkout-pro-actions .btn-solid {
    color: #ffffff;
    background: linear-gradient(120deg, #f20078 0%, #ff2e8f 100%);
  }
  
  .checkout-pro-security {
     background: rgba(17, 9, 33, 0.4); 
     border: 1px solid rgba(255,255,255,0.08);
  }
}

/* --- Subscription standard pages (assinatura + assinatura-plano) --- */
.subscription-standard .auth-container {
  max-width: 980px;
}

.subscription-standard .auth-card {
  text-align: left;
  padding: clamp(24px, 4vw, 36px);
}

.subscription-standard .auth-header {
  text-align: center;
  margin-bottom: 24px;
}

.subscription-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: linear-gradient(130deg, #f20078 0%, #a032d6 100%);
  box-shadow: 0 8px 16px rgba(242, 0, 120, 0.3);
  margin: 6px 0 10px;
}

.subscription-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.subscription-hub-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(18, 9, 35, 0.62), rgba(32, 18, 54, 0.58));
  padding: 16px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
}

.subscription-hub-card h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-family: Montserrat, "Nunito Sans", sans-serif;
}

.subscription-hub-card p {
  margin: 8px 0 14px;
  color: #bfaec9;
}

.subscription-hub-card .meta {
  display: block;
  color: #f6c3e5;
  font-weight: 700;
  margin-bottom: 12px;
}

.subscription-hub-card .btn {
  margin-top: auto;
}

.subscription-status-panel {
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(18, 9, 35, 0.62), rgba(32, 18, 54, 0.58));
  padding: 16px;
}

.subscription-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.subscription-status-item {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
}

.subscription-status-item span {
  display: block;
  color: #a998c2;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.subscription-status-item strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 16px;
}

.subscription-detail-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.subscription-detail-form .auth-form-wide {
  grid-column: 1 / -1;
}

.subscription-total-box {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(17, 9, 33, 0.62), rgba(26, 14, 49, 0.56));
  padding: 14px;
}

.subscription-total-box p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #d8caeb;
  font-size: 16px;
}

.subscription-total-box strong {
  color: #fff;
  font-size: 26px;
  font-family: Montserrat, "Nunito Sans", sans-serif;
}

.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;
}

@media (max-width: 980px) {
  .subscription-standard .auth-container {
    max-width: 760px;
  }

  .subscription-hub-grid {
    grid-template-columns: 1fr;
  }

  .subscription-status-grid {
    grid-template-columns: 1fr;
  }

  .subscription-detail-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .checkout-auth .auth-card {
    padding: 28px;
  }

  .checkout-auth .auth-title {
    font-size: clamp(28px, 5.8vw, 34px);
  }

  .checkout-auth .auth-subtitle {
    font-size: 16px;
  }

  .checkout-auth .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .checkout-auth .form-row > .form-group[style] {
    flex: 1 1 auto !important;
  }

  .checkout-auth .form-row .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .subscription-standard .auth-card {
    padding: 24px;
  }

  .subscription-status-item strong {
    font-size: 15px;
  }
}

/* --- Admin Login (legacy-compatible entry) --- */

body[data-page="admin-login"] {
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 56, 148, 0.2) 0%, transparent 38%),
    radial-gradient(circle at 100% 12%, rgba(129, 73, 211, 0.22) 0%, transparent 42%),
    linear-gradient(160deg, #1f1232 0%, #291843 45%, #3d225f 100%);
}

.admin-login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-login-shell {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 22px;
}

.admin-login-panel,
.admin-login-aside {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(165deg, rgba(31, 16, 53, 0.96) 0%, rgba(45, 22, 73, 0.96) 100%);
  box-shadow: 0 22px 46px rgba(10, 4, 23, 0.4);
}

.admin-login-panel {
  padding: clamp(24px, 3vw, 38px);
}

.admin-login-header {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.admin-login-brand img {
  width: clamp(138px, 20vw, 196px);
  height: auto;
}

.admin-login-kicker {
  margin: 6px 0 0;
  color: #f7c1df;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 800;
}

.admin-login-header h1 {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Nunito Sans", sans-serif;
  font-size: clamp(1.38rem, 2.2vw, 1.9rem);
  line-height: 1.2;
}

.admin-login-subtitle {
  margin: 0;
  color: #cfbddf;
  font-size: 0.96rem;
  line-height: 1.5;
}

.admin-access-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.admin-chip {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f5edff;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  font-size: 0.86rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.admin-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}

.admin-login-form {
  display: grid;
  gap: 16px;
}

.admin-field {
  display: grid;
  gap: 8px;
}

.admin-field > span {
  color: #f0e2ff;
  font-size: 0.86rem;
  font-weight: 700;
}

.admin-field > input {
  width: 100%;
  min-height: 50px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 8, 27, 0.72);
  color: #fff;
  padding: 0 14px;
  font: inherit;
}

.admin-field > input:focus {
  outline: none;
  border-color: #ff4aa8;
  box-shadow: 0 0 0 3px rgba(255, 74, 168, 0.2);
}

.admin-password-field {
  position: relative;
}

.admin-password-field > input {
  padding-right: 46px;
}

.password-toggle {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}

.admin-form-row {
  margin-top: -2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d8c8ea;
  font-size: 0.9rem;
}

.admin-link {
  color: #ff7ebf;
  text-decoration: none;
  font-weight: 700;
}

.admin-link:hover {
  color: #fff;
  text-decoration: underline;
}

.admin-login-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.admin-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b798d6;
}

.admin-login-aside {
  padding: clamp(22px, 3vw, 32px);
}

.admin-login-aside h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 1.08rem;
}

.admin-login-aside ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
  color: #d8c8e8;
  line-height: 1.48;
  font-size: 0.92rem;
}

.admin-login-aside code {
  color: #ffd2ea;
}

@media (max-width: 960px) {
  .admin-login-shell {
    grid-template-columns: 1fr;
  }

  .admin-access-shortcuts {
    grid-template-columns: 1fr;
  }

  .admin-login-footer {
    flex-wrap: wrap;
  }
}
