:root {
  --bg: #060708;
  --bg-soft: #0c0d10;
  --bg-card: rgba(13, 15, 18, 0.86);
  --bg-card-strong: rgba(18, 20, 24, 0.94);
  --surface: rgba(255, 255, 255, 0.03);
  --line: rgba(255, 170, 75, 0.18);
  --line-strong: rgba(255, 170, 75, 0.34);
  --text: #f7f1e6;
  --muted: #d2c1ab;
  --muted-strong: #f2dbc2;
  --primary: #ff9f2e;
  --primary-strong: #ff6b0b;
  --primary-soft: rgba(255, 159, 46, 0.16);
  --success: #0099ff;
  --scroll-track: linear-gradient(180deg, rgba(7, 9, 12, 0.96), rgba(11, 14, 18, 0.96));
  --scroll-thumb: linear-gradient(180deg, rgba(255, 179, 71, 0.72), rgba(98, 176, 255, 0.56));
  --scroll-thumb-hover: linear-gradient(180deg, rgba(255, 179, 71, 0.92), rgba(98, 176, 255, 0.72));
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --radius-pill-xl: 16px;
  --radius-pill-lg: 14px;
  --radius-pill-md: 12px;
  --container: min(1200px, calc(100vw - 2rem));
  --card-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  --card-shadow-hover: 0 34px 86px rgba(0, 0, 0, 0.42);
  --interactive-lift: translateY(-8px);
  --cookie-banner-offset: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #030405;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 179, 71, 0.7) rgba(255, 255, 255, 0.03);
}

body * {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 179, 71, 0.7) rgba(255, 255, 255, 0.03);
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
body *::-webkit-scrollbar {
  width: 12px;
  height: 12px;
  background: rgba(7, 9, 12, 0.96);
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
body *::-webkit-scrollbar-track {
  background: var(--scroll-track);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 170, 75, 0.08);
}

html::-webkit-scrollbar-track-piece,
body::-webkit-scrollbar-track-piece,
body *::-webkit-scrollbar-track-piece {
  background: var(--scroll-track);
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
body *::-webkit-scrollbar-thumb {
  border: 2px solid rgba(6, 7, 8, 0.62);
  border-radius: 999px;
  background: var(--scroll-thumb);
  background-clip: padding-box;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
body *::-webkit-scrollbar-thumb:hover {
  background: var(--scroll-thumb-hover);
}

html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner,
body *::-webkit-scrollbar-corner {
  background: transparent;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top center, rgba(255, 166, 60, 0.08), transparent 26%),
    radial-gradient(circle at 78% 22%, rgba(98, 176, 255, 0.05), transparent 22%),
    linear-gradient(180deg, #030405 0%, #060708 38%, #090b0d 70%, #050607 100%);
  color: var(--text);
  font-family: "Sora", sans-serif;
}

.landing-page {
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 170, 75, 0.09), transparent 24%),
    radial-gradient(circle at 48% 18%, rgba(84, 130, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #010207 0%, #040611 32%, #070913 68%, #05070d 100%);
}

.network-bg {
  position: fixed;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
  pointer-events: none;
  z-index: -2;
}

.landing-page::before {
  background-image:
    radial-gradient(circle at 50% 14%, rgba(255, 168, 82, 0.14) 0%, rgba(255, 168, 82, 0.06) 18%, transparent 42%),
    radial-gradient(circle at 52% 18%, rgba(90, 147, 255, 0.12) 0%, transparent 46%),
    radial-gradient(circle at 18% 22%, rgba(61, 95, 178, 0.08) 0%, transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(61, 95, 178, 0.07) 0%, transparent 26%);
  background-size: auto;
  mask-image: none;
  opacity: 0.92;
}

.landing-page::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.025), transparent 30%),
    linear-gradient(180deg, rgba(1, 2, 7, 0.05), rgba(1, 2, 7, 0.26));
  pointer-events: none;
  z-index: -3;
}

.landing-page .network-bg {
  opacity: 1;
  mix-blend-mode: screen;
  filter: saturate(1.06);
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.site-shell {
  position: relative;
  z-index: 1;
  overflow: clip;
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(84rem, 92vw);
  height: 38rem;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 171, 78, 0.09), transparent 68%);
  pointer-events: none;
  z-index: -1;
}

.landing-page .site-shell::before {
  width: min(90rem, 96vw);
  height: 44rem;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 166, 78, 0.12), transparent 36%),
    radial-gradient(circle at 50% 18%, rgba(92, 150, 255, 0.08), transparent 54%);
}

.login-page .site-shell::before {
  display: none;
}

.account-page .site-shell::before {
  display: none;
}

.plugins-page .site-shell::before {
  display: none;
}

.vault-page .site-shell::before {
  display: none;
}

.error-page .site-shell::before {
  display: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 999;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-pill-lg);
  background: var(--primary);
  color: #160b04;
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
}

.section-anchor {
  scroll-margin-top: 6rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  padding-top: 1rem;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(8, 10, 12, 0.84);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.brand img {
  width: 2.65rem;
  height: 2.65rem;
  object-fit: contain;
  padding: 0.35rem;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 159, 46, 0.2), rgba(255, 107, 11, 0.32)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 188, 118, 0.25);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.45rem 0.78rem;
  border-radius: var(--radius-pill-lg);
  color: var(--muted);
  font-size: 0.9rem;
  transition:
    color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 188, 118, 0.12);
  transform: translateY(-1px);
}

.auth-nav-menu {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: 0.25rem;
}

.auth-nav-name {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-pill-lg);
  border: 1px solid rgba(255, 188, 118, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.auth-nav-logout {
  cursor: pointer;
}

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

.nav-toggle span {
  display: block;
  width: 1.45rem;
  height: 2px;
  margin: 0.32rem 0;
  border-radius: 999px;
  background: var(--text);
}

.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill-lg);
  font-weight: 700;
  letter-spacing: -0.02em;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -140% auto auto -30%;
  width: 48%;
  height: 380%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: rotate(20deg) translateX(-220%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.button::after {
  content: "";
  position: absolute;
  inset: auto 14% -0.8rem;
  height: 1.25rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 170, 65, 0.22), transparent 72%);
  opacity: 0;
  transition: opacity 0.24s ease;
  pointer-events: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover::before,
.button:focus-visible::before {
  transform: rotate(20deg) translateX(420%);
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
}

.button.small {
  padding: 0.72rem 1rem;
  font-size: 0.9rem;
}

.button.full {
  width: 100%;
}

.button.primary {
  background: linear-gradient(135deg, var(--primary), #ffd08a);
  color: #160b04;
  box-shadow: 0 18px 38px rgba(255, 124, 23, 0.24);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 24px 48px rgba(255, 124, 23, 0.32);
}

.button.secondary,
.button.ghost {
  border-color: rgba(255, 188, 118, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button.secondary:hover,
.button.secondary:focus-visible,
.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: rgba(255, 188, 118, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  padding: 5.6rem 0 3.2rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  color: #ffbe74;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #ffd08a);
  box-shadow: 0 0 16px rgba(255, 159, 46, 0.55);
}

.hero h1,
.section-heading h2,
.split-copy h2,
.about-copy h2,
.contact-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.hero h1 {
  max-width: none;
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  color: #ffb316;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  word-spacing: 0.12em;
  font-size: clamp(1.28rem, 2.35vw, 2.25rem);
  line-height: 1.02;
  text-align: center;
  text-shadow:
    0 0 6px rgba(255, 179, 22, 0.35),
    0 0 14px rgba(255, 179, 22, 0.3),
    0 0 26px rgba(255, 179, 22, 0.22),
    0 0 44px rgba(255, 140, 0, 0.14);
  filter: drop-shadow(0 0 12px rgba(255, 179, 22, 0.22));
  animation: hero-title-neon-pulse 2.8s ease-in-out infinite;
}

.hero h1::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  background:
    linear-gradient(
      108deg,
      transparent 32%,
      rgba(255, 255, 255, 0.05) 41%,
      rgba(255, 255, 255, 0.82) 50%,
      rgba(255, 255, 255, 0.1) 59%,
      transparent 68%
    );
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.95;
}

@keyframes hero-title-neon-pulse {
  0%,
  100% {
    text-shadow:
      0 0 6px rgba(255, 179, 22, 0.35),
      0 0 14px rgba(255, 179, 22, 0.3),
      0 0 26px rgba(255, 179, 22, 0.22),
      0 0 44px rgba(255, 140, 0, 0.14);
    filter: drop-shadow(0 0 12px rgba(255, 179, 22, 0.22));
  }

  50% {
    text-shadow:
      0 0 8px rgba(255, 214, 102, 0.46),
      0 0 18px rgba(255, 179, 22, 0.42),
      0 0 34px rgba(255, 179, 22, 0.34),
      0 0 58px rgba(255, 140, 0, 0.22);
    filter: drop-shadow(0 0 18px rgba(255, 179, 22, 0.34));
  }
}

.hero-text,
.hero-lead,
.feature-card p,
.split-copy p,
.audience-copy p,
.faq-item p,
.about-copy p,
.company-card p,
.footer-column a,
.footer-column p {
  color: var(--muted);
  line-height: 1.78;
}

.hero-lead {
  max-width: 52rem;
  margin: 0 0 0.55rem;
  color: #fff4e4;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.62;
  text-align: center;
}

.hero-text {
  max-width: 62rem;
  margin: 0;
  color: #f4ede4;
  font-size: 0.98rem;
  line-height: 1.84;
  text-align: center;
  opacity: 0.88;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  width: 100%;
  max-width: none;
}

.hero-copy-main {
  width: 100%;
}

.hero-copy-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-proof-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  margin-top: 1.4rem;
}

.hero-proof-grid span,
.trust-band-items span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 188, 118, 0.16);
  border-radius: var(--radius-pill-md);
  background: rgba(255, 255, 255, 0.035);
  color: #f2dbc2;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.hero-proof-grid span::before,
.trust-band-items span::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #ffd08a);
  box-shadow: 0 0 14px rgba(255, 171, 78, 0.42);
}

.hero-visual {
  position: relative;
  width: 100%;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.8;
  z-index: -1;
}

.hero-visual::before {
  top: -4%;
  right: 2%;
  width: 13rem;
  height: 13rem;
  background: rgba(255, 107, 11, 0.18);
}

.hero-visual::after {
  left: -4%;
  bottom: -3%;
  width: 16rem;
  height: 16rem;
  background: rgba(255, 176, 87, 0.14);
}

.hero-frame,
.image-panel,
.feature-card,
.spotlight-card,
.audience-card,
.plan-card,
.faq-item,
.about-layout,
.footer-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--bg-card);
  backdrop-filter: blur(16px);
  box-shadow: var(--card-shadow);
}

.hero-frame,
.feature-card,
.spotlight-card,
.audience-card,
.plan-card,
.faq-item,
.about-layout,
.footer-card {
  transform: perspective(1400px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg)) translateY(0);
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-frame {
  position: relative;
  padding: 0;
  border: 1px solid rgba(255, 179, 22, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: none;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.hero-frame img {
  width: 100%;
  border-radius: 24px;
  transition: transform 0.5s ease, filter 0.35s ease;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: auto 4% -5%;
  height: 4rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 159, 46, 0.2), transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}

.hero .eyebrow {
  display: none;
}

.trust-band {
  display: grid;
  gap: 1rem;
  margin-top: 2.15rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(255, 188, 118, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(12, 14, 17, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.trust-band-title {
  color: #fff0d7;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.trust-band-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual::before,
.hero-visual::after {
  display: none;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: 10rem;
}

.feature-card {
  position: relative;
  min-height: 100%;
  padding: 1.55rem 1.55rem 1.7rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 179, 22, 0.4), transparent 72%);
}

.feature-card::after {
  content: "";
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 179, 22, 0.16), transparent 68%);
  pointer-events: none;
}

.feature-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: #ffca86;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  color: #ffbf52;
  filter: drop-shadow(0 0 8px rgba(255, 179, 22, 0.22));
  transition: transform 0.28s ease, filter 0.28s ease;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.feature-card h2,
.audience-copy h3,
.company-card h2,
.footer-column h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.feature-card h2 {
  font-size: 1.15rem;
}

.feature-card p {
  margin: 0.95rem 0 0;
  font-size: 0.92rem;
}

.feature-card-accent {
  border-color: rgba(255, 179, 22, 0.32);
  background:
    radial-gradient(circle at top right, rgba(255, 179, 22, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--bg-card);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.metric-card {
  position: relative;
  padding: 1.35rem 1.3rem 1.45rem;
  border: 1px solid rgba(255, 188, 118, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(12, 14, 17, 0.82);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.metric-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 188, 118, 0.42), transparent 78%);
}

.metric-card strong {
  display: block;
  color: #ffbf52;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.metric-card h3 {
  margin: 0.9rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.metric-card p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.section {
  padding: 5.8rem 0;
}

.section-soft {
  position: relative;
}

.section-soft::before {
  content: "";
  position: absolute;
  inset: 4rem 0;
  background: none;
  pointer-events: none;
}

.section-heading {
  max-width: 54rem;
  margin-bottom: 0.4rem;
}

.section-intro {
  max-width: 48rem;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.section-heading h2,
.split-copy h2,
.about-copy h2,
.contact-heading h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.06;
}

.split-layout,
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 1.5rem;
  align-items: center;
}

.split-layout-reverse {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.image-panel {
  padding: 0.95rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.image-panel-plain {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.image-panel-plain img {
  border-radius: 0;
}

.image-panel img,
.audience-card img,
.about-media img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-xl) - 12px);
}

.split-copy,
.about-copy {
  position: relative;
}

.split-copy p,
.about-copy p {
  margin: 1rem 0 0;
}

.about-quote {
  position: relative;
  margin: 1.6rem 0;
  padding: 1.85rem 1.55rem 1.55rem 2.35rem;
  border: 1px solid rgba(255, 188, 118, 0.18);
  border-radius: calc(var(--radius-lg) - 2px);
  background:
    radial-gradient(circle at top left, rgba(255, 159, 46, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.about-quote::before,
.about-quote::after {
  position: absolute;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.6rem, 7vw, 5.6rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 191, 120, 0.28);
  pointer-events: none;
}

.about-quote::before {
  content: "\201C";
  top: -0.25rem;
  left: 1.1rem;
}

.about-quote::after {
  content: "\201D";
  right: 1.05rem;
  bottom: -1.6rem;
}

.about-quote p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-left: 1.4rem;
  border-left: 2px solid rgba(255, 159, 46, 0.3);
}

.about-quote p + p {
  margin-top: 1rem;
}

.spotlight-card {
  padding: 1.7rem;
  border-radius: var(--radius-xl);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.spotlight-card-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
  gap: 2rem;
  align-items: center;
}

.spotlight-copy {
  max-width: none;
  order: 2;
}

.showcase-image {
  order: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin: -1.7rem 0 -1.7rem -1.7rem;
  padding: 1rem 0 1rem 1rem;
}

.showcase-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(255, 179, 22, 0.18);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}

.spotlight-card-showcase-right .spotlight-copy {
  order: 1;
}

.showcase-image-right {
  order: 2;
  justify-content: flex-end;
  margin: -1.7rem -1.7rem -1.7rem 0;
  padding: 1rem 1rem 1rem 0;
}

.bullet-list,
.plan-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.bullet-list li,
.plan-list li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--muted-strong);
}

.bullet-list li::before,
.plan-list li::before {
  content: "";
  position: absolute;
  top: 0.66rem;
  left: 0;
  width: 0.66rem;
  height: 0.66rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #ffd08a);
}

.spotlight-card .button {
  margin-top: 1.8rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.audience-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.audience-card img {
  transition: transform 0.5s ease, filter 0.35s ease;
}

.audience-copy {
  padding: 1.45rem 1.45rem 1.7rem;
}

.audience-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 159, 46, 0.12);
  border: 1px solid rgba(255, 159, 46, 0.18);
  color: #ffcf98;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.audience-copy h3 {
  margin-top: 1rem;
  font-size: 1.35rem;
}

.audience-copy p {
  margin: 0.95rem 0 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.plan-card {
  display: flex;
  flex-direction: column;
  padding: 1.55rem;
  border-radius: var(--radius-xl);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 2rem;
  margin-bottom: 0.95rem;
  padding: 0.38rem 0.7rem;
  border: 1px solid rgba(255, 188, 118, 0.16);
  border-radius: var(--radius-pill-md);
  background: rgba(255, 255, 255, 0.04);
  color: #ffd09a;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-badge-highlight {
  border-color: rgba(255, 188, 118, 0.3);
  background: rgba(255, 165, 65, 0.14);
  color: #fff0d7;
  box-shadow: 0 8px 22px rgba(255, 130, 22, 0.14);
}

.plan-card.featured {
  position: relative;
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at top right, rgba(255, 159, 46, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--bg-card-strong);
  transform: perspective(1400px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg)) translateY(-0.5rem);
}

.plan-card.featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 209, 138, 0.9), rgba(255, 159, 46, 0.2));
}

.plan-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.plan-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.plan-price {
  text-align: right;
}

.plan-price strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.plan-price span,
.plan-note {
  color: var(--muted);
}

.plan-note {
  margin: 1rem 0 0;
  font-weight: 600;
}

.plan-summary {
  margin: 1rem 0 0;
  color: #f3dfc7;
  line-height: 1.74;
}

.plan-list {
  margin-top: 1.4rem;
  flex: 1;
}

.plan-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
  padding-right: 0.1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(0, 153, 255, 0.2);
  color: #8dd2ff;
  font-size: 0.72rem;
  font-weight: 700;
}

.pricing-grid .button.full {
  min-height: 3.45rem;
  padding-top: 1.12rem;
  padding-bottom: 1.12rem;
  margin-top: 1.15rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.faq-item {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--muted-strong);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: #ffcf98;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.24s ease, color 0.24s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0.9rem 0 0;
}

.about-layout {
  grid-template-columns: minmax(16rem, 35%) minmax(0, 65%);
  align-items: start;
  padding: 1rem;
  border-radius: calc(var(--radius-xl) + 6px);
  box-shadow: var(--shadow);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.about-media {
  position: relative;
  align-self: start;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: auto 6% -6% auto;
  width: 11rem;
  height: 11rem;
  border-radius: 999px;
  background: rgba(255, 159, 46, 0.16);
  filter: blur(18px);
  z-index: -1;
}

.footer {
  padding: 1rem 0 5rem;
}

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

.footer-card {
  height: 100%;
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.footer-unified {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1.2rem;
}

.footer-panel {
  min-width: 0;
  padding: 0.35rem;
}

.footer-meta {
  display: grid;
  grid-template-columns: minmax(14.5rem, 0.66fr) minmax(0, 1.34fr);
  gap: 1.15rem;
  align-items: start;
}

.company-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.company-brand img {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
  padding: 0.35rem;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 159, 46, 0.22), rgba(255, 107, 11, 0.34)),
    rgba(255, 255, 255, 0.04);
}

.company-card h2 {
  margin: 0;
  font-size: 1rem;
}

.company-seal {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  margin-bottom: 0.7rem;
  padding: 0.34rem 0.62rem;
  border: 1px solid rgba(255, 188, 118, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #ffd09a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-card p {
  margin: 0.32rem 0 0;
  font-size: 0.9rem;
  line-height: 1.42;
}

.links-card {
  display: grid;
  grid-template-columns: minmax(8.75rem, 0.92fr) minmax(7.75rem, 0.86fr) minmax(15.5rem, 1.3fr);
  gap: 1rem;
  align-items: start;
}

.footer-column {
  min-width: 0;
}

.footer-column h3 {
  margin-bottom: 0.95rem;
  font-size: 0.88rem;
}

.footer-column a,
.footer-column p {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.4;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.links-card .footer-column:first-child a {
  white-space: nowrap;
}

.footer-column-contact {
  min-width: 15.5rem;
}

.footer-column-contact a {
  white-space: nowrap;
  overflow-wrap: normal;
}

.footer-whatsapp {
  margin-top: 1rem;
  align-self: flex-start;
  white-space: nowrap;
}

.legal-hero {
  min-height: auto;
  padding-bottom: 2rem;
}

.legal-hero-layout {
  display: block;
}

.legal-hero-copy {
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
}

.legal-section {
  padding-top: 1.5rem;
}

.legal-shell {
  display: grid;
  gap: 1.5rem;
}

.legal-card {
  position: relative;
  padding: clamp(1.25rem, 2vw, 2rem);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) + 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 11, 13, 0.9);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(18px);
}

.legal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 159, 46, 0.06), transparent 36%);
  pointer-events: none;
}

.legal-heading,
.legal-block {
  position: relative;
  z-index: 1;
}

.legal-heading {
  margin-bottom: 1.5rem;
}

.legal-heading h2 {
  margin: 0.35rem 0 0.9rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.legal-heading p,
.legal-block p,
.legal-list li {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.legal-block + .legal-block {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 188, 118, 0.12);
}

.legal-block h3 {
  margin: 0 0 0.8rem;
  color: var(--text);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.legal-list {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
}

.legal-list li + li {
  margin-top: 0.55rem;
}

.legal-contact {
  margin-top: 0.9rem;
}

.legal-contact a {
  color: var(--muted-strong);
  font-weight: 700;
}

.legal-contact a:hover,
.legal-contact a:focus-visible {
  color: var(--text);
}

.error-hero {
  min-height: calc(100vh - 7rem);
  display: flex;
  align-items: center;
}

.error-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.65fr);
  gap: 1.4rem;
  align-items: center;
}

.error-hero-copy {
  grid-template-columns: 1fr;
}

.error-card {
  position: relative;
  padding: clamp(1.25rem, 2vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) + 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 11, 13, 0.9);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(18px);
}

.error-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 159, 46, 0.08), transparent 36%);
  pointer-events: none;
}

.error-card > * {
  position: relative;
  z-index: 1;
}

.error-card h2 {
  margin: 0.45rem 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.error-links {
  display: grid;
  gap: 0.75rem;
}

.error-links a {
  display: flex;
  align-items: center;
  min-height: 3.15rem;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 188, 118, 0.12);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-strong);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.error-links a:hover,
.error-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 188, 118, 0.28);
  background: rgba(255, 255, 255, 0.055);
}

.auth-hero {
  min-height: calc(100vh - 7rem);
  display: flex;
  align-items: center;
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.72fr);
  gap: 1.4rem;
  align-items: center;
}

.auth-copy {
  grid-template-columns: 1fr;
}

.auth-brand-block {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1rem;
}

.auth-brand-logo {
  width: clamp(7rem, 16vw, 11rem);
  height: auto;
  padding: 1rem;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 159, 46, 0.18), rgba(255, 107, 11, 0.24)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 188, 118, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.auth-brand-block h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.auth-brand-block p {
  margin: 0;
  max-width: 24rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.auth-benefits {
  display: grid;
  gap: 1rem;
  max-width: 34rem;
  margin-top: 1.4rem;
  padding: 1.35rem;
  border-radius: calc(var(--radius-xl) - 6px);
}

.auth-benefits strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
}

.auth-benefits p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.auth-card {
  position: relative;
  padding: clamp(1.25rem, 2vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) + 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 11, 13, 0.9);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(18px);
}

.auth-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 159, 46, 0.08), transparent 36%);
  pointer-events: none;
}

.auth-card > * {
  position: relative;
  z-index: 1;
}

.auth-card-rich {
  display: grid;
  gap: 1rem;
}

.auth-card-head h2 {
  margin: 0.45rem 0 0.85rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.auth-card-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.auth-tab {
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 188, 118, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  cursor: pointer;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    color 0.24s ease;
}

.auth-tab:hover,
.auth-tab:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 188, 118, 0.28);
  color: var(--text);
}

.auth-tab.is-active {
  border-color: rgba(255, 188, 118, 0.34);
  background: rgba(255, 159, 46, 0.12);
  color: var(--text);
}

.auth-panels {
  display: grid;
}

.auth-panel {
  display: none;
}

.auth-panel.is-active {
  display: block;
}

.auth-form {
  display: grid;
  gap: 1rem;
}

.auth-field {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.auth-field span,
.auth-status strong {
  color: var(--muted-strong);
  font-weight: 700;
}

.auth-field small {
  color: var(--muted);
  font-size: 0.86rem;
}

.auth-field input {
  width: 100%;
  box-sizing: border-box;
  min-height: 3.35rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 188, 118, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

#plugins-token-description {
  text-transform: uppercase;
}

.auth-field textarea {
  width: 100%;
  box-sizing: border-box;
  min-height: 8.4rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 188, 118, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  resize: vertical;
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.auth-field input:focus {
  outline: none;
  border-color: rgba(255, 188, 118, 0.3);
  box-shadow: 0 0 0 4px rgba(255, 159, 46, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.auth-field textarea:focus {
  outline: none;
  border-color: rgba(255, 188, 118, 0.3);
  box-shadow: 0 0 0 4px rgba(255, 159, 46, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.auth-field-inline {
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: start;
  gap: 0.8rem;
}

.auth-field-inline input[type="checkbox"] {
  width: 1.2rem;
  height: 1.2rem;
  accent-color: var(--primary);
}

.auth-message {
  min-height: 1.5rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.auth-message[data-state="success"] {
  color: #8de1a4;
}

.auth-message[data-state="error"] {
  color: #ffb39d;
}

.auth-toast-card {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 90;
  width: min(calc(100vw - 2rem), 36rem);
  min-height: 0;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(255, 188, 118, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(255, 159, 46, 0.16), transparent 42%),
    rgba(16, 19, 23, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  color: var(--muted-strong);
  text-align: center;
  line-height: 1.6;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  user-select: none;
  transform: translate(-50%, -0.8rem);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.auth-toast-card.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.auth-toast-card[data-state="success"] {
  border-color: rgba(113, 205, 137, 0.28);
  background:
    radial-gradient(circle at top left, rgba(113, 205, 137, 0.16), transparent 42%),
    rgba(16, 19, 23, 0.92);
  color: #b6f2c4;
}

.auth-toast-card[data-state="error"] {
  border-color: rgba(255, 125, 95, 0.3);
  background:
    radial-gradient(circle at top left, rgba(255, 125, 95, 0.16), transparent 42%),
    rgba(16, 19, 23, 0.92);
  color: #ffc1af;
}

.auth-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.auth-inline-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.auth-text-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted-strong);
  cursor: pointer;
  transition: color 0.24s ease, transform 0.24s ease;
}

.auth-text-link:hover,
.auth-text-link:focus-visible {
  color: #ffd08a;
  transform: translateY(-1px);
}

.auth-submit {
  min-width: 10rem;
}

.auth-note {
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(255, 188, 118, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(255, 159, 46, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.03);
}

.auth-note strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--muted-strong);
}

.auth-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.auth-status {
  padding: 1rem;
  border: 1px solid rgba(255, 188, 118, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.auth-status p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.account-hero {
  min-height: calc(100vh - 7rem);
  padding: 2.4rem 0 4rem;
}

.account-shell {
  display: grid;
  gap: 1.4rem;
}

.account-hero-copy {
  width: 100%;
  max-width: none;
}

.account-hero-copy h1 {
  margin: 0.4rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 100%;
}

.account-hero-copy p,
.account-card-copy {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.account-card {
  position: relative;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) - 4px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 11, 13, 0.88);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(18px);
}

.account-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 159, 46, 0.08), transparent 36%);
  pointer-events: none;
}

.account-card > * {
  position: relative;
  z-index: 1;
}

.account-card-head h2 {
  margin: 0.4rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.account-summary {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.account-summary-item {
  display: grid;
  gap: 0.3rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 188, 118, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.account-summary-item strong {
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.account-summary-item span {
  color: var(--text);
  line-height: 1.6;
}

.account-message,
.account-status {
  max-width: 40rem;
}

.plugins-hero {
  min-height: calc(100vh - 7rem);
  padding: 2.4rem 0 4rem;
}

.plugins-shell {
  display: grid;
  gap: 1.4rem;
}

.plugins-hero-copy {
  width: 100%;
  max-width: none;
  text-align: center;
}

.plugins-hero-copy h1 {
  margin: 0.4rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.plugins-hero-copy p,
.plugins-card-copy {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.plugins-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 18rem) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.plugins-sidebar,
.plugins-card {
  position: relative;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) - 4px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 11, 13, 0.88);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(18px);
}

.plugins-sidebar::before,
.plugins-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 159, 46, 0.08), transparent 36%);
  pointer-events: none;
}

.plugins-sidebar > *,
.plugins-card > * {
  position: relative;
  z-index: 1;
}

.plugins-sidebar-head h2,
.plugins-card-head h2 {
  margin: 0.4rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.plugins-nav {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.plugins-nav-item {
  min-height: 3.1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 188, 118, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    color 0.24s ease;
}

.plugins-nav-item:hover,
.plugins-nav-item:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 188, 118, 0.28);
  color: var(--text);
}

.plugins-nav-item.is-active {
  border-color: rgba(255, 188, 118, 0.34);
  background: rgba(255, 159, 46, 0.12);
  color: var(--text);
}

.plugins-nav-item-support {
  display: grid;
  gap: 0.15rem;
  min-height: 4rem;
}

.plugins-nav-item-label {
  font-weight: 600;
}

.plugins-nav-item-note {
  margin: 0;
  color: inherit;
  font-size: 0.8rem;
  opacity: 0.78;
}

.plugins-content,
.plugins-panel {
  display: grid;
  gap: 1rem;
}

.plugins-panel {
  display: none;
}

.plugins-panel.is-active {
  display: grid;
}

.plugins-token-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.plugins-token-item,
.plugins-empty-state {
  padding: 1rem;
  border: 1px solid rgba(255, 188, 118, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.plugins-token-item {
  width: 100%;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.plugins-token-item:hover,
.plugins-token-item:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 188, 118, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.plugins-token-item-top,
.plugins-token-item-body {
  display: grid;
  gap: 0.3rem;
}

.plugins-token-item-top strong,
.plugins-empty-state strong {
  color: var(--muted-strong);
}

.plugins-token-item-top span,
.plugins-token-item-body p,
.plugins-token-item-body small,
.plugins-empty-state p {
  color: var(--muted);
  line-height: 1.6;
}

.plugins-token-item-body p,
.plugins-empty-state p {
  margin: 0;
}

.plugins-lab-card {
  display: grid;
  gap: 1rem;
}

.plugins-tools-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(255, 188, 118, 0.2);
}

.plugins-tool-tab {
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition:
    color 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    transform 0.24s ease;
}

.plugins-tool-tab:hover,
.plugins-tool-tab:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.plugins-tool-tab.is-active {
  border-color: rgba(255, 188, 118, 0.24);
  background: rgba(255, 159, 46, 0.12);
  color: var(--text);
}

.plugins-tool-panel {
  display: none;
}

.plugins-tool-panel.is-active {
  display: grid;
}

.plugins-whatsapp-card {
  display: grid;
  gap: 1rem;
}

.plugins-whatsapp-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.plugins-whatsapp-create {
  white-space: nowrap;
}

.plugins-whatsapp-list {
  display: grid;
  gap: 0.8rem;
}

.plugins-whatsapp-item {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(255, 188, 118, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.plugins-whatsapp-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.plugins-whatsapp-item-heading {
  display: grid;
  gap: 0.2rem;
}

.plugins-whatsapp-item-top strong {
  color: var(--muted-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  letter-spacing: -0.03em;
}

.plugins-whatsapp-item-heading span {
  color: var(--muted);
  font-size: 0.92rem;
}

.plugins-whatsapp-item-body {
  display: grid;
  gap: 0.25rem;
}

.plugins-whatsapp-item-body p,
.plugins-whatsapp-item-body small,
.plugins-whatsapp-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.plugins-whatsapp-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.plugins-whatsapp-item-footer small {
  margin: 0;
  color: var(--muted);
}

.plugins-whatsapp-configure {
  white-space: nowrap;
}

.plugins-whatsapp-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 188, 118, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.plugins-whatsapp-badge.is-active {
  border-color: rgba(113, 205, 137, 0.24);
  background: rgba(113, 205, 137, 0.12);
  color: #7ee095;
}

.plugins-whatsapp-badge.is-pending {
  border-color: rgba(255, 188, 118, 0.2);
  background: rgba(255, 188, 118, 0.12);
  color: #ffbf67;
}

.plugins-whatsapp-modal-dialog {
  width: min(calc(100vw - 1.3rem), 44rem);
  max-width: 44rem;
}

.plugins-modal-dialog.plugins-whatsapp-config-dialog {
  width: min(calc(100vw - 1.3rem), 58rem);
  max-width: 58rem;
}

.plugins-whatsapp-alert {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border: 1px solid rgba(255, 188, 118, 0.14);
  border-radius: 18px;
  background: rgba(255, 159, 46, 0.08);
}

.plugins-whatsapp-alert strong {
  color: #ffbf67;
}

.plugins-whatsapp-alert p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.65;
}

.plugins-whatsapp-config-form {
  display: grid;
  gap: 1rem;
}

.plugins-whatsapp-config-section {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(255, 188, 118, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
}

.plugins-whatsapp-config-section h3 {
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.plugins-whatsapp-config-status-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
}

.plugins-whatsapp-config-status-copy {
  display: grid;
  gap: 0.3rem;
}

.plugins-whatsapp-config-status-copy span {
  color: var(--muted);
  font-size: 0.84rem;
}

.plugins-whatsapp-config-status-copy strong {
  color: #ffbf67;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.plugins-whatsapp-config-status-copy strong[data-state="connected"] {
  color: #7ee095;
}

.plugins-whatsapp-config-status-copy strong[data-state="pending"] {
  color: #ffbf67;
}

.plugins-whatsapp-config-status-copy strong[data-state="disconnected"] {
  color: #ff8d7a;
}

.plugins-whatsapp-config-status-copy small {
  color: var(--muted);
  line-height: 1.65;
}

.plugins-whatsapp-config-status-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.plugins-whatsapp-config-status-actions button:disabled {
  opacity: 0.54;
  cursor: not-allowed;
}

.plugins-whatsapp-config-qr {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px dashed rgba(255, 188, 118, 0.22);
  border-radius: 18px;
  background: rgba(255, 188, 118, 0.05);
}

.plugins-whatsapp-config-qr-code {
  display: grid;
  place-items: center;
  width: 19rem;
  height: 19rem;
  padding: 0.8rem;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(16, 19, 23, 0.96), rgba(16, 19, 23, 0.96)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.96) 0 10px,
      rgba(16, 19, 23, 0.96) 10px 20px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0 10px,
      rgba(16, 19, 23, 0.96) 10px 20px
    );
  background-blend-mode: normal, screen, screen;
  box-shadow: inset 0 0 0 1px rgba(255, 188, 118, 0.12);
}

.plugins-whatsapp-config-qr-code.has-qr {
  padding: 0.65rem;
  border-radius: 0;
  background: #ffffff;
}

.plugins-whatsapp-config-qr-canvas {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.plugins-whatsapp-config-qr-canvas img,
.plugins-whatsapp-config-qr-canvas canvas {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.plugins-whatsapp-config-qr-copy {
  display: grid;
  gap: 0.35rem;
}

.plugins-whatsapp-config-qr-copy strong {
  color: var(--muted-strong);
}

.plugins-whatsapp-config-qr-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.plugins-whatsapp-config-qr-copy small {
  color: var(--muted-strong);
  line-height: 1.6;
}

.plugins-whatsapp-config-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.1rem;
}

.plugins-whatsapp-config-check {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted-strong);
}

.plugins-whatsapp-config-check input {
  margin: 0;
}

.plugins-whatsapp-config-credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.plugins-whatsapp-config-secret {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem;
}

.plugins-whatsapp-config-eye {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.2rem;
  min-height: 3.15rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(255, 188, 118, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-weight: 600;
  cursor: pointer;
}

.plugins-whatsapp-config-webhook {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
}

.plugins-whatsapp-config-switch {
  display: grid;
  gap: 0.55rem;
  color: var(--muted-strong);
}

.plugins-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 3.6rem;
  height: 2.1rem;
}

.plugins-switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.plugins-switch-track {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 188, 118, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 180ms ease, border-color 180ms ease;
}

.plugins-switch-thumb {
  position: absolute;
  top: 0.22rem;
  left: 0.22rem;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  background: #fff3de;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease;
}

.plugins-switch input:checked + .plugins-switch-track {
  border-color: rgba(255, 188, 118, 0.34);
  background: linear-gradient(135deg, rgba(255, 124, 23, 0.92), rgba(255, 191, 103, 0.88));
}

.plugins-switch input:checked + .plugins-switch-track .plugins-switch-thumb {
  transform: translateX(1.48rem);
  background: #ffffff;
}

.plugins-whatsapp-config-footer {
  justify-content: flex-end;
}

.plugins-tool-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.plugins-tool-column {
  display: grid;
  gap: 0.8rem;
  min-width: 0;
}

.plugins-tool-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  min-width: 0;
}

.plugins-tool-inline > * {
  min-width: 0;
}

.plugins-tool-submit {
  width: 100%;
}

.plugins-tool-result,
.plugins-tool-placeholder {
  padding: 1rem;
  border: 1px solid rgba(255, 188, 118, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.plugins-tool-result strong {
  color: var(--muted-strong);
}

.plugins-tool-result p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.7;
  white-space: pre-wrap;
}

.plugins-tutorial-card {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(255, 188, 118, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.plugins-tutorial-card:hover,
.plugins-tutorial-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 188, 118, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.plugins-tutorial-card-wide {
  grid-column: 1 / -1;
}

.plugins-tutorial-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
}

.plugins-tutorial-copy {
  display: grid;
  gap: 0.35rem;
}

.plugins-tutorial-copy strong {
  color: var(--muted-strong);
}

.plugins-tutorial-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.plugins-token-item-body small {
  font-size: 0.84rem;
}

.plugins-dashboard-card {
  display: grid;
  gap: 1rem;
}

.plugins-dashboard-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.plugins-dashboard-metric {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid rgba(255, 188, 118, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.plugins-dashboard-metric strong {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.plugins-dashboard-metric span {
  color: var(--muted);
  line-height: 1.55;
}

.plugins-dashboard-chart-card {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(255, 188, 118, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.plugins-dashboard-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.plugins-dashboard-chart-head strong {
  color: var(--muted-strong);
}

.plugins-dashboard-chart-head span,
.plugins-dashboard-axis span {
  color: var(--muted);
  font-size: 0.84rem;
}

.plugins-dashboard-chart {
  min-height: 19rem;
}

.plugins-dashboard-chart svg {
  display: block;
  width: 100%;
  height: auto;
}

.plugins-dashboard-grid line {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.plugins-dashboard-grid text {
  fill: rgba(247, 241, 230, 0.5);
  font-size: 11px;
}

.plugins-dashboard-area {
  fill: url(#plugins-dashboard-fill);
}

.plugins-dashboard-line {
  fill: none;
  stroke: #ff9f2e;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 16px rgba(255, 159, 46, 0.18));
}

.plugins-dashboard-points circle {
  fill: #ffbf67;
  stroke: rgba(16, 19, 23, 0.86);
  stroke-width: 2;
}

.plugins-dashboard-axis {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.plugins-dashboard-table-card {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(255, 188, 118, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.plugins-dashboard-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 188, 118, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.plugins-dashboard-table {
  width: 100%;
  min-width: 38rem;
  border-collapse: collapse;
}

.plugins-dashboard-table th,
.plugins-dashboard-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.plugins-dashboard-table th {
  color: var(--muted-strong);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.plugins-dashboard-table td {
  color: var(--muted);
  line-height: 1.6;
}

.plugins-dashboard-table tbody tr:last-child td {
  border-bottom: 0;
}

.plugins-dashboard-table td:nth-child(2),
.plugins-dashboard-table td:nth-child(3),
.plugins-dashboard-table td:nth-child(4),
.plugins-dashboard-table th:nth-child(2),
.plugins-dashboard-table th:nth-child(3),
.plugins-dashboard-table th:nth-child(4) {
  white-space: nowrap;
}

.plugins-pricing-card {
  display: grid;
  gap: 1rem;
}

.plugins-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.plugins-pricing-item {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(255, 188, 118, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  min-height: 15rem;
}

.plugins-pricing-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 188, 118, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.plugins-pricing-item h3 {
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.plugins-pricing-headline {
  margin: 0;
  color: var(--muted-strong);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
}

.plugins-pricing-detail {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.plugins-invoices-table td:nth-child(3),
.plugins-invoices-table td:nth-child(4),
.plugins-invoices-table td:nth-child(6),
.plugins-invoices-table th:nth-child(3),
.plugins-invoices-table th:nth-child(4),
.plugins-invoices-table th:nth-child(6) {
  white-space: nowrap;
}

.plugins-logs-table td:nth-child(1),
.plugins-logs-table td:nth-child(4),
.plugins-logs-table td:nth-child(5),
.plugins-logs-table th:nth-child(1),
.plugins-logs-table th:nth-child(4),
.plugins-logs-table th:nth-child(5) {
  white-space: nowrap;
}

.plugins-log-message {
  min-width: 18rem;
  white-space: normal;
  word-break: break-word;
}

.plugins-invoice-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(255, 188, 118, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 600;
}

.plugins-invoice-status.is-paid {
  border-color: rgba(113, 205, 137, 0.24);
  background: rgba(113, 205, 137, 0.12);
  color: #7ee095;
}

.plugins-invoice-status.is-open {
  border-color: rgba(255, 188, 118, 0.2);
  background: rgba(255, 188, 118, 0.12);
  color: #ffbf67;
}

.plugins-invoice-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 188, 118, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.plugins-invoice-link:hover {
  border-color: rgba(255, 188, 118, 0.38);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.plugins-invoice-link.is-disabled {
  opacity: 0.56;
  pointer-events: none;
}

.plugins-modal-dialog.plugins-invoice-modal-dialog {
  width: min(calc(100vw - 1.3rem), 1000px);
  max-width: 1000px;
}

.plugins-invoice-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.plugins-invoice-summary-item,
.plugins-invoice-note {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid rgba(255, 188, 118, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.plugins-invoice-summary-item span,
.plugins-invoice-note span {
  color: var(--muted);
  font-size: 0.84rem;
}

.plugins-invoice-summary-item strong,
.plugins-invoice-note strong {
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.55;
}

.plugins-invoice-items-table td:nth-child(4),
.plugins-invoice-items-table td:nth-child(5),
.plugins-invoice-items-table th:nth-child(4),
.plugins-invoice-items-table th:nth-child(5) {
  white-space: nowrap;
}

.plugins-invoice-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 1rem;
}

.plugins-invoice-note {
  min-width: 0;
}

.plugins-invoice-payment {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
}

.plugins-invoice-payment-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.plugins-invoice-payment-link {
  color: #ffbf67;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.plugins-invoice-payment-link:hover {
  text-decoration: underline;
}

.plugins-invoice-payment-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.plugins-invoice-account-link,
.plugins-invoice-pay {
  align-self: stretch;
  justify-content: center;
  white-space: nowrap;
}

.plugins-invoice-pay:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.plugins-message {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 90;
  width: min(calc(100vw - 2rem), 36rem);
  min-height: 0;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(255, 188, 118, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(255, 159, 46, 0.16), transparent 42%),
    rgba(16, 19, 23, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  color: var(--muted-strong);
  text-align: center;
  line-height: 1.6;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  user-select: none;
  transform: translate(-50%, -0.8rem);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.plugins-message.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.plugins-message[data-state="success"] {
  border-color: rgba(113, 205, 137, 0.28);
  background:
    radial-gradient(circle at top left, rgba(113, 205, 137, 0.16), transparent 42%),
    rgba(16, 19, 23, 0.92);
  color: #b6f2c4;
}

.plugins-message[data-state="error"] {
  border-color: rgba(255, 125, 95, 0.3);
  background:
    radial-gradient(circle at top left, rgba(255, 125, 95, 0.16), transparent 42%),
    rgba(16, 19, 23, 0.92);
  color: #ffc1af;
}

.plugins-status {
  max-width: 46rem;
}

.plugins-action-card,
.plugins-action-copy {
  display: grid;
  gap: 1rem;
}

.plugins-action-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.plugins-support-card {
  display: grid;
  gap: 1.5rem;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.plugins-support-card:hover,
.plugins-support-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 188, 118, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(10, 11, 13, 0.92);
}

.plugins-support-body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.plugins-support-phone {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.plugins-support-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.1rem;
  border: 1px solid rgba(255, 188, 118, 0.18);
  border-radius: 999px;
  background: rgba(255, 159, 46, 0.12);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
}

.plugins-modal-open {
  overflow: hidden;
}

.plugins-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 0.65rem;
}

.plugins-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 7, 8, 0.78);
  backdrop-filter: blur(12px);
}

.plugins-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 42rem);
  max-height: calc(100vh - 2.4rem);
  overflow: auto;
}

.plugins-modal-card {
  display: grid;
  gap: 1rem;
}

.plugins-modal-head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
}

.plugins-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 188, 118, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  cursor: pointer;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.plugins-modal-close:hover,
.plugins-modal-close:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 188, 118, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.plugins-form-message {
  margin-top: 0.4rem;
}

.is-hidden {
  display: none !important;
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px));
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.9rem;
  height: 3.9rem;
  padding: 0;
  border-radius: 999px;
  background: #25d366;
  color: #062913;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.26);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.cookie-consent {
  position: fixed;
  inset: auto 0 0;
  z-index: 45;
  pointer-events: none;
}

.cookie-consent-banner,
.cookie-consent-trigger {
  pointer-events: auto;
}

.cookie-consent-trigger {
  position: fixed;
  left: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.26);
}

.cookie-consent-banner {
  position: fixed;
  left: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  width: min(34rem, calc(100vw - 2rem));
  padding: 1.3rem;
  border: 1px solid rgba(255, 188, 118, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(8, 10, 12, 0.94);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.cookie-consent-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at top left, rgba(255, 170, 70, 0.14), transparent 42%),
    radial-gradient(circle at bottom right, rgba(87, 171, 255, 0.08), transparent 34%);
  pointer-events: none;
}

.cookie-consent-copy,
.cookie-consent-actions,
.cookie-consent-preferences {
  position: relative;
  z-index: 1;
}

.cookie-consent-copy h2 {
  margin: 0.25rem 0 0.7rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.25rem, 1.1rem + 0.4vw, 1.6rem);
  letter-spacing: -0.04em;
}

.cookie-consent-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.cookie-consent-copy a {
  color: var(--muted-strong);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22rem;
}

.cookie-consent-actions,
.cookie-consent-preferences-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-consent-actions {
  margin-top: 1rem;
}

.cookie-consent-preferences {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 188, 118, 0.14);
}

.cookie-consent-choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 188, 118, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.cookie-consent-choice-copy strong {
  display: block;
  font-size: 0.98rem;
}

.cookie-consent-choice-copy small {
  display: block;
  margin-top: 0.32rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.cookie-consent-badge {
  flex-shrink: 0;
  padding: 0.38rem 0.65rem;
  border: 1px solid rgba(87, 171, 255, 0.18);
  border-radius: 999px;
  background: rgba(87, 171, 255, 0.1);
  color: #9ad6ff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-consent-choice-toggle {
  cursor: pointer;
}

.cookie-consent-switch {
  position: relative;
  flex-shrink: 0;
  width: 3.2rem;
  height: 1.9rem;
}

.cookie-consent-switch input {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.cookie-consent-switch-track {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 188, 118, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.24s ease, border-color 0.24s ease;
}

.cookie-consent-switch-track::after {
  content: "";
  position: absolute;
  top: 0.17rem;
  left: 0.17rem;
  width: 1.28rem;
  height: 1.28rem;
  border-radius: 50%;
  background: #f8ead6;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.24s ease, background 0.24s ease;
}

.cookie-consent-switch input:checked + .cookie-consent-switch-track {
  border-color: rgba(255, 170, 75, 0.34);
  background: linear-gradient(135deg, rgba(255, 159, 46, 0.92), rgba(255, 107, 11, 0.9));
}

.cookie-consent-switch input:checked + .cookie-consent-switch-track::after {
  transform: translateX(1.28rem);
  background: #170a04;
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #fff;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

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

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-grid > :nth-child(2),
.metrics-grid > :nth-child(2),
.pricing-grid > :nth-child(2),
.faq-list > :nth-child(2) {
  transition-delay: 0.08s;
}

.feature-grid > :nth-child(3),
.metrics-grid > :nth-child(3),
.pricing-grid > :nth-child(3),
.faq-list > :nth-child(3) {
  transition-delay: 0.16s;
}

.feature-grid > :nth-child(4),
.metrics-grid > :nth-child(4),
.faq-list > :nth-child(4) {
  transition-delay: 0.24s;
}

.feature-grid > :nth-child(5),
.faq-list > :nth-child(5) {
  transition-delay: 0.32s;
}

.feature-grid > :nth-child(6),
.faq-list > :nth-child(6) {
  transition-delay: 0.4s;
}

.navbar:hover {
  border-color: rgba(255, 188, 118, 0.28);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.32);
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
}

.brand:hover img,
.brand:focus-visible img {
  transform: rotate(-4deg) scale(1.03);
  box-shadow: 0 10px 22px rgba(255, 124, 23, 0.18);
}

.hero-frame:hover {
  transform: perspective(1400px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg)) translateY(-8px);
  border-color: rgba(255, 188, 118, 0.3);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

.hero-frame:hover img {
  transform: scale(1.012);
  filter: saturate(1.02);
}

.feature-card:hover,
.feature-card:focus-within,
.metric-card:hover,
.metric-card:focus-within,
.spotlight-card:hover,
.spotlight-card:focus-within,
.audience-card:hover,
.audience-card:focus-within,
.plan-card:hover,
.plan-card:focus-within,
.faq-item:hover,
.faq-item:focus-within,
.about-layout:hover,
.footer-card:hover {
  transform: perspective(1400px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg)) translateY(-8px);
  border-color: rgba(255, 188, 118, 0.28);
  box-shadow: var(--card-shadow-hover);
}

.hero-proof-grid span:hover,
.hero-proof-grid span:focus-visible,
.trust-band-items span:hover,
.trust-band-items span:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 188, 118, 0.28);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.feature-card:hover .feature-icon,
.feature-card:focus-within .feature-icon {
  transform: scale(1.08) translateY(-2px);
  filter: drop-shadow(0 0 14px rgba(255, 179, 22, 0.32));
}

.feature-card:hover::after,
.feature-card:focus-within::after {
  background: radial-gradient(circle, rgba(255, 179, 22, 0.24), transparent 68%);
}

.spotlight-card:hover .showcase-image img,
.spotlight-card:focus-within .showcase-image img {
  transform: scale(1.02);
  border-color: rgba(255, 188, 118, 0.3);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.28);
}

.audience-card:hover img,
.audience-card:focus-within img {
  transform: scale(1.04);
  filter: saturate(1.04);
}

.metric-card:hover strong,
.metric-card:focus-within strong {
  text-shadow: 0 0 20px rgba(255, 179, 22, 0.18);
}

.plan-card:hover .plan-price strong,
.plan-card:focus-within .plan-price strong {
  color: #ffd08a;
  text-shadow: 0 0 18px rgba(255, 179, 22, 0.18);
}

.faq-item:hover summary::after,
.faq-item:focus-within summary::after,
.faq-item[open] summary::after {
  transform: scale(1.12);
  color: #ffd08a;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--text);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 24px 42px rgba(37, 211, 102, 0.34);
}

:focus-visible {
  outline: 2px solid rgba(255, 188, 118, 0.58);
  outline-offset: 3px;
}

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

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

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

  .hero-copy {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .legal-hero-copy {
    grid-template-columns: 1fr;
  }

  .error-hero-layout {
    grid-template-columns: 1fr;
  }

  .auth-layout {
    grid-template-columns: 1fr;
  }

  .auth-copy {
    justify-items: center;
  }

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

  .plugins-layout {
    grid-template-columns: 1fr;
  }

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

  .spotlight-card-showcase {
    grid-template-columns: 1fr;
  }

  .spotlight-copy,
  .showcase-image {
    order: initial;
  }

  .showcase-image {
    margin: 0 -1.7rem -1.7rem;
    padding: 0;
    justify-content: center;
  }

  .showcase-image img {
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  }

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

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

  .plan-card.featured {
    transform: none;
  }
}

@media (max-width: 860px) {
  .topbar {
    padding-top: 0.75rem;
  }

  .navbar {
    position: relative;
    align-items: flex-start;
    border-radius: 28px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(10, 8, 6, 0.96);
    backdrop-filter: blur(18px);
  }

  .whatsapp-float {
    bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px) + var(--cookie-banner-offset));
  }

  .feature-card:hover,
  .feature-card:focus-within,
  .spotlight-card:hover,
  .spotlight-card:focus-within,
  .audience-card:hover,
  .audience-card:focus-within,
  .plan-card:hover,
  .plan-card:focus-within,
  .faq-item:hover,
  .faq-item:focus-within,
  .about-layout:hover,
  .footer-card:hover {
    transform: perspective(1400px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg)) translateY(-4px);
  }

  .navbar.is-open .nav-links {
    display: flex;
  }

  .feature-grid,
  .pricing-grid,
  .metrics-grid,
  .audience-grid,
  .links-card {
    grid-template-columns: 1fr;
  }

  .auth-inline-actions {
    align-items: stretch;
  }

  .auth-inline-actions .button,
  .auth-inline-actions .auth-text-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

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

  .footer-grid {
    gap: 0.9rem;
  }

  .legal-card {
    padding: 1.2rem;
  }

  .plugins-modal {
    padding: 1rem;
  }

  .plugins-dashboard-overview {
    grid-template-columns: 1fr;
  }

  .plugins-tool-grid,
  .plugins-tool-inline {
    grid-template-columns: 1fr;
  }

  .plugins-whatsapp-head,
  .plugins-whatsapp-item-top,
  .plugins-whatsapp-item-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .plugins-whatsapp-config-status-head,
  .plugins-whatsapp-config-webhook,
  .plugins-whatsapp-config-qr {
    grid-template-columns: 1fr;
  }

  .plugins-whatsapp-create {
    width: 100%;
  }

  .plugins-whatsapp-config-status-actions {
    justify-content: stretch;
  }

  .plugins-whatsapp-config-status-actions .button {
    width: 100%;
  }

  .plugins-whatsapp-config-credentials {
    grid-template-columns: 1fr;
  }

  .plugins-invoice-summary {
    grid-template-columns: 1fr;
  }

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

  .plugins-invoice-payment-meta {
    grid-template-columns: 1fr;
  }

  .plugins-invoice-pay {
    width: 100%;
    justify-content: center;
  }

  .plugins-pricing-grid {
    grid-template-columns: 1fr;
  }

  .plugins-modal-head {
    flex-direction: column;
  }

  .plugins-modal-close {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100vw - 1.2rem, 100%);
  }

  .hero {
    padding-top: 4rem;
  }

  .hero h1 {
    font-size: clamp(1.2rem, 5.8vw, 1.75rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-proof-grid,
  .trust-band-items {
    gap: 0.6rem;
  }

  .hero-proof-grid span,
  .trust-band-items span {
    width: 100%;
    justify-content: center;
  }

  .section,
  .footer {
    padding-top: 4.6rem;
    padding-bottom: 4.6rem;
  }

  .image-panel,
  .spotlight-card,
  .about-layout,
  .footer-card {
    padding: 1rem;
  }

  .auth-card,
  .auth-benefits {
    padding: 1rem;
  }

  .account-card {
    padding: 1rem;
  }

  .plugins-sidebar,
  .plugins-card {
    padding: 1rem;
  }

  .plugins-modal-dialog {
    width: 100%;
    max-height: calc(100vh - 1.4rem);
  }

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

  .plan-card,
  .feature-card,
  .faq-item {
    padding: 1.15rem;
  }

  .whatsapp-float {
    width: 3.6rem;
    height: 3.6rem;
  }

  .cookie-consent-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    width: auto;
    padding: 1.1rem;
    border-radius: 24px;
  }

  .cookie-consent-trigger {
    left: 0.75rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  }

  .cookie-consent-actions,
  .cookie-consent-preferences-actions {
    flex-direction: column;
  }

  .cookie-consent-actions .button,
  .cookie-consent-preferences-actions .button {
    width: 100%;
  }

  .cookie-consent-choice {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  * {
    animation: none !important;
    transition: none !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .network-bg {
    display: none;
  }

  .feature-card:hover,
  .feature-card:focus-within,
  .spotlight-card:hover,
  .spotlight-card:focus-within,
  .audience-card:hover,
  .audience-card:focus-within,
  .plan-card:hover,
  .plan-card:focus-within,
  .faq-item:hover,
  .faq-item:focus-within,
  .about-layout:hover,
  .footer-card:hover,
  .button:hover,
  .button:focus-visible,
  .whatsapp-float:hover,
  .whatsapp-float:focus-visible {
    transform: none;
  }
}

.vault-hero {
  min-height: calc(100vh - 7rem);
  padding: 2.4rem 0 4rem;
}

.vault-shell {
  display: grid;
  gap: 1.4rem;
}

.vault-hero-copy {
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.vault-hero-copy h1 {
  margin: 0.4rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.vault-card-copy,
.vault-hero-copy p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.vault-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.vault-sidebar,
.vault-card {
  position: relative;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) - 4px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 11, 13, 0.9);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(18px);
}

.vault-sidebar::before,
.vault-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 159, 46, 0.08), transparent 36%);
  pointer-events: none;
}

.vault-sidebar > *,
.vault-card > * {
  position: relative;
  z-index: 1;
}

.vault-card-head h2 {
  margin: 0.4rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.vault-card-head-inline {
  display: grid;
  gap: 1rem;
}

.vault-list-card {
  display: grid;
  gap: 1.4rem;
}

.vault-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: nowrap;
  width: 100%;
}

.vault-search-field {
  flex: 1 1 32rem;
  max-width: 44rem;
  min-width: 0;
  margin: 0;
}

.vault-search-field input {
  width: 100%;
}

.vault-summary {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.vault-summary-item {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 188, 118, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.vault-summary-item strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  color: var(--muted-strong);
}

.vault-summary-item span {
  color: var(--muted);
  line-height: 1.55;
}

.vault-message,
.vault-status {
  margin-top: 1rem;
}

.vault-content,
.vault-main-grid,
.vault-list,
.vault-form {
  display: grid;
  gap: 1rem;
}

.vault-modal-dialog {
  width: min(100%, 48rem);
}

.vault-main-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
}

.vault-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.vault-item {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(255, 188, 118, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
}

.vault-item-top {
  display: block;
}

.vault-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.vault-item-title {
  color: var(--muted-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  letter-spacing: -0.03em;
}

.vault-item-details {
  display: grid;
  gap: 0.85rem;
}

.vault-item-tools {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.vault-item-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

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

.vault-item-field {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 188, 118, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.vault-item-field small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vault-item-field span {
  color: var(--text);
  line-height: 1.65;
  word-break: break-word;
}

.vault-secret-value {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.06em;
}

.vault-link {
  color: #ffbf67;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.vault-link:hover,
.vault-link:focus-visible {
  color: #ffd8a2;
}

.vault-item-notes {
  margin: 0;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 188, 118, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.015);
  color: var(--muted);
  line-height: 1.7;
  white-space: pre-wrap;
}

@media (max-width: 1080px) {
  .vault-layout,
  .vault-main-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .vault-card-head-inline,
  .vault-item-actions {
    flex-direction: column;
  }

  .vault-toolbar {
    width: 100%;
    flex-wrap: wrap;
    justify-content: stretch;
  }

  .vault-search-field {
    width: 100%;
    min-width: 0;
  }

  .vault-form-grid,
  .vault-item-grid,
  .vault-item-grid-expanded {
    grid-template-columns: 1fr;
  }

  .vault-sidebar,
  .vault-card {
    padding: 1.1rem;
  }
}
