@font-face {
  font-family: "Sora";
  src: url("../fonts/sora-variable-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --bg: #07050a;
  --bg-soft: #0d0812;
  --surface: #130b1b;
  --surface-2: #1b1025;
  --surface-3: #261334;
  --primary: #720990;
  --primary-deep: #54036d;
  --primary-bright: #b54bd0;
  --primary-soft: #e7a9f3;
  --cyan: #59d8ff;
  --text: #fbf7fc;
  --text-soft: #d7cadc;
  --muted: #a897b0;
  --border: rgba(231, 169, 243, .16);
  --border-strong: rgba(231, 169, 243, .32);
  --success: #25d366;
  --focus: #f1c5fa;
  --container: 1280px;
  --reading: 760px;
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --shadow: 0 30px 80px rgba(0, 0, 0, .35);
  --fs-hero: clamp(2.75rem, 5.3vw, 5.7rem);
  --fs-h2: clamp(1.9rem, 3vw, 3.2rem);
  --fs-h3: clamp(1.25rem, 1.7vw, 1.75rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  background: var(--bg);
}

body,
button,
input,
textarea,
select {
  font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body p,
body li,
body label,
body summary,
body a,
body button,
body input,
body textarea,
body select {
  color: var(--text);
}

body h1,
body h2,
body h3,
body h4,
body p,
body figure,
body blockquote,
body dl,
body dd {
  margin-top: 0;
}

body h1,
body h2,
body h3,
body h4 {
  font-family: "Sora", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.06;
  text-wrap: balance;
}

body p {
  text-wrap: pretty;
}

a {
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

/* Editorial hub and long-form articles */
.blog-index-hero {
  position: relative;
  min-height: 0;
  padding: 156px 0 92px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 78% 28%, rgba(114, 9, 144, .34), transparent 28%),
    radial-gradient(circle at 72% 80%, rgba(89, 216, 255, .08), transparent 25%),
    linear-gradient(135deg, #07050a, #100817 58%, #160a20);
}

.blog-index-hero::before,
.blog-index-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(231, 169, 243, .13);
  border-radius: 50%;
  pointer-events: none;
}

.blog-index-hero::before {
  top: -22%;
  right: -8%;
  width: min(62vw, 880px);
  aspect-ratio: 1;
  box-shadow: inset 0 0 0 110px rgba(181, 75, 208, .018), inset 0 0 0 260px rgba(89, 216, 255, .012);
}

.blog-index-hero::after {
  right: 30%;
  bottom: -48%;
  width: 540px;
  aspect-ratio: 1;
}

.blog-index-hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  gap: clamp(48px, 7vw, 108px);
}

.blog-index-intro {
  flex: 1 1 42%;
  min-width: 0;
  padding-block: 18px;
}

.blog-index-intro h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 4.35vw, 4.15rem);
  line-height: .98;
  overflow-wrap: anywhere;
}

.blog-index-intro > p {
  max-width: 640px;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
}

.blog-index-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.blog-index-stats span {
  display: grid;
  min-width: 132px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, .025);
  color: var(--muted);
  font-size: .71rem;
  line-height: 1.35;
}

.blog-index-stats strong {
  color: var(--text);
  font-size: 1.25rem;
}

.blog-featured-card {
  position: relative;
  display: block;
  flex: 0 1 58%;
  align-self: center;
  width: 58%;
  max-width: 720px;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 34px;
  background: var(--surface);
  box-shadow: 0 44px 110px rgba(0, 0, 0, .44);
  isolation: isolate;
  transform: none;
  transition: transform .45s ease, border-color .45s ease;
}

.blog-featured-card:hover {
  border-color: rgba(231, 169, 243, .6);
  transform: translateY(-6px);
}

.blog-featured-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 5, 10, .98) 6%, rgba(7, 5, 10, .64) 55%, rgba(7, 5, 10, .06));
}

.blog-featured-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  max-height: 100%;
  overflow: hidden;
  padding: clamp(26px, 4vw, 48px);
}

.blog-featured-copy small,
.blog-featured-copy strong {
  color: var(--primary-soft);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-featured-copy h2 {
  display: -webkit-box;
  overflow: hidden;
  max-width: 750px;
  margin: 14px 0;
  font-size: clamp(1.75rem, 3vw, 3.15rem);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-featured-copy p {
  display: -webkit-box;
  overflow: hidden;
  max-width: 680px;
  color: var(--text-soft);
  font-size: .94rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-library {
  background: linear-gradient(180deg, var(--bg), #0b0710 42%, var(--bg));
}

.blog-library-heading {
  margin-bottom: 30px;
}

.blog-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 46px;
}

.blog-category-list span {
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: .72rem;
}

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

.blog-grid-library article {
  min-height: 540px;
  padding-top: 224px;
}

.blog-grid-library .blog-card-media {
  height: 196px;
}

.blog-grid-library h2 {
  margin: 24px 0 14px;
  font-size: clamp(1.25rem, 1.85vw, 1.72rem);
  line-height: 1.12;
}

.blog-grid-library p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.blog-grid-library small {
  position: static;
  display: block;
  margin: 16px 0 18px;
  color: var(--muted);
  font-size: .72rem;
}

.blog-card-link {
  position: absolute;
  bottom: 25px;
  left: 28px;
  z-index: 2;
  color: var(--primary-soft);
  font-size: .78rem;
  font-weight: 700;
}

.article-page {
  background: #08050b;
}

.article-hero {
  position: relative;
  min-height: 690px;
  padding: 154px 0 96px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 74% 50%, rgba(114, 9, 144, .29), transparent 29%),
    linear-gradient(135deg, #07050a, #100817 72%, #15091d);
}

.article-hero::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -12%;
  width: min(68vw, 900px);
  aspect-ratio: 1;
  border: 1px solid rgba(231, 169, 243, .14);
  border-radius: 50%;
  box-shadow: inset 0 0 0 130px rgba(181, 75, 208, .015), inset 0 0 0 290px rgba(89, 216, 255, .01);
}

.article-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, .85fr);
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
}

.article-hero-copy h1 {
  max-width: 820px;
  margin: 0 0 26px;
  font-size: clamp(2.6rem, 4.8vw, 4.65rem);
  line-height: 1;
}

.article-hero-copy > p {
  max-width: 720px;
  color: var(--text-soft);
  font-size: clamp(1.02rem, 1.4vw, 1.24rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 34px;
  color: var(--muted);
  font-size: .75rem;
}

.article-meta span + span::before {
  content: "·";
  margin-right: 22px;
  color: var(--primary-bright);
}

.article-hero-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.article-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 820px);
  justify-content: center;
  align-items: start;
  gap: clamp(48px, 7vw, 98px);
  padding-block: 96px 128px;
}

.article-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
}

.article-toc,
.article-aside-cta {
  padding: 23px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(27, 16, 37, .9), rgba(13, 8, 18, .92));
}

.article-toc > strong,
.article-aside-cta > span {
  display: block;
  margin-bottom: 14px;
  color: var(--primary-soft);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-toc nav {
  display: grid;
  gap: 11px;
}

.article-toc a {
  padding-left: 12px;
  border-left: 1px solid var(--border-strong);
  color: var(--muted);
  font-size: .73rem;
  line-height: 1.45;
  transition: color .2s ease, border-color .2s ease;
}

.article-toc a:hover {
  border-color: var(--primary-soft);
  color: var(--text);
}

.article-aside-cta strong {
  display: block;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.35;
}

.article-aside-cta a {
  color: var(--primary-soft);
  font-size: .75rem;
  font-weight: 700;
}

.article-main {
  min-width: 0;
}

.article-answer-box {
  margin-bottom: 54px;
  padding: 26px 30px;
  border: 1px solid var(--border-strong);
  border-left: 4px solid var(--primary-bright);
  border-radius: 0 20px 20px 0;
  background: linear-gradient(120deg, rgba(114, 9, 144, .2), rgba(89, 216, 255, .035));
}

.article-answer-box span {
  color: var(--primary-soft);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-answer-box p {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 1.05rem;
}

.article-prose {
  color: var(--text-soft);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.82;
}

.article-block-heading h2,
.article-prose > h2 {
  scroll-margin-top: 118px;
  margin: 72px 0 22px;
  font-size: clamp(1.8rem, 2.8vw, 2.65rem);
  line-height: 1.12;
}

.article-block-heading h3,
.article-prose > h3 {
  scroll-margin-top: 118px;
  margin: 42px 0 16px;
  font-size: clamp(1.3rem, 1.9vw, 1.65rem);
}

.article-block-paragraph p,
.article-prose > p {
  margin-bottom: 22px;
  color: var(--text-soft);
}

.article-prose a {
  color: #efbafa;
  text-decoration: underline;
  text-decoration-color: rgba(231, 169, 243, .4);
  text-underline-offset: 4px;
}

.article-prose strong {
  color: var(--text);
}

.article-prose code {
  padding: 2px 7px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface-2);
  color: var(--primary-soft);
  font-size: .86em;
}

.article-prose pre {
  margin: 32px 0;
  padding: 24px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #050307;
  color: #f3d7f8;
  font: 500 .78rem/1.7 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  white-space: pre;
}

.article-prose pre code {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.article-prose ul,
.article-prose ol {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding-left: 25px;
}

.article-prose li {
  padding-left: 6px;
  color: var(--text-soft);
}

.article-prose li::marker {
  color: var(--primary-bright);
  font-weight: 700;
}

.article-prose blockquote {
  margin: 36px 0;
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  color: var(--text);
  font-size: 1.08rem;
}

.article-inline-visual {
  position: relative;
  width: calc(100% + 80px);
  margin: 54px 0 64px -40px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
  box-shadow: var(--shadow);
}

.article-inline-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 14 / 9;
  object-fit: contain;
  border-radius: 20px;
  background: #0b0710;
}

.article-inline-visual figcaption {
  padding: 12px 10px 4px;
  color: var(--muted);
  font-size: .7rem;
  text-align: center;
}

.article-review-note {
  margin-top: 64px;
  padding: 24px 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.article-review-note strong {
  color: var(--primary-soft);
  font-size: .76rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.article-review-note p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: .78rem;
}

.article-whatsapp-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  margin-top: 48px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  background: radial-gradient(circle at 90% 20%, rgba(37, 211, 102, .12), transparent 33%), linear-gradient(135deg, #24102f, #120b19);
}

.article-whatsapp-cta span {
  color: var(--primary-soft);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-whatsapp-cta h2 {
  margin: 10px 0;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
}

.article-whatsapp-cta p {
  margin: 0;
  color: var(--text-soft);
  font-size: .85rem;
}

.article-whatsapp-cta .button {
  white-space: nowrap;
}

.related-articles {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #0d0812, var(--bg));
}

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

.related-articles-grid article {
  padding: 10px 10px 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
}

.related-articles-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
}

.related-articles-grid article > span {
  display: block;
  margin: 22px 14px 10px;
  color: var(--primary-soft);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.related-articles-grid h3 {
  margin: 0 14px 20px;
  font-size: 1.25rem;
}

.related-articles-grid article > a {
  margin: 0 14px;
  color: var(--primary-soft);
  font-size: .76rem;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .blog-index-hero-grid,
  .article-hero-grid {
    grid-template-columns: 1fr;
  }

  .blog-index-hero-grid {
    flex-direction: column;
  }

  .blog-featured-card {
    width: 100%;
    max-width: none;
    min-height: 0;
    aspect-ratio: 16 / 9;
    transform: none;
  }

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

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

  .article-aside {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 700px) {
  .blog-index-hero {
    min-height: 0;
    padding: 132px 0 72px;
  }

  .blog-index-intro h1,
  .article-hero-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }

  .blog-featured-card {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .blog-featured-copy p {
    display: none;
  }

  .blog-index-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .blog-index-stats span {
    min-width: 0;
    padding: 12px 10px;
  }

  .blog-grid-library,
  .related-articles-grid,
  .article-aside {
    grid-template-columns: 1fr;
  }

  .article-hero {
    min-height: 0;
    padding: 132px 0 70px;
  }

  .article-hero-visual {
    border-radius: 22px;
    transform: none;
  }

  .article-meta {
    display: grid;
  }

  .article-meta span + span::before {
    content: none;
  }

  .article-layout {
    padding-block: 64px 86px;
  }

  .article-toc nav {
    grid-template-columns: 1fr;
  }

  .article-inline-visual {
    width: 100%;
    margin-inline: 0;
    border-radius: 20px;
  }

  .article-whatsapp-cta {
    grid-template-columns: 1fr;
  }

  .article-whatsapp-cta .button {
    width: 100%;
    white-space: normal;
  }
}

button,
input,
textarea,
select {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--surface);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

::selection {
  background: var(--primary-bright);
  color: #16031c;
}

.shell {
  width: min(calc(100% - 80px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(82px, 9vw, 138px);
}

.muted,
.section-note {
  color: var(--muted);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  translate: 0 -180%;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
}

.skip-link:focus {
  translate: 0;
}

.site-ambient {
  position: fixed;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.site-ambient::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

.site-ambient span {
  position: absolute;
  width: 560px;
  aspect-ratio: 1;
  border: 1px solid rgba(231, 169, 243, .12);
  border-radius: 50%;
  filter: drop-shadow(0 0 100px rgba(114, 9, 144, .22));
}

.site-ambient span::before,
.site-ambient span::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: inherit;
  border-radius: inherit;
}

.site-ambient span::after {
  inset: 28%;
}

.site-ambient span:first-child {
  top: 15%;
  right: -320px;
}

.site-ambient span:last-child {
  bottom: 5%;
  left: -360px;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 86px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: linear-gradient(to bottom, rgba(7, 5, 10, .9), rgba(7, 5, 10, .68));
  backdrop-filter: blur(20px) saturate(140%);
}

.nav-shell {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 26px;
}

.logo {
  display: inline-flex;
  width: clamp(150px, 13vw, 190px);
  flex: 0 0 auto;
}

.logo img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.45vw, 25px);
  min-width: 0;
  margin-left: auto;
}

.desktop-nav > a,
.nav-dropdown > summary,
.nav-dropdown-trigger {
  position: relative;
  color: var(--text-soft);
  font-size: .79rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  list-style: none;
  transition: color .2s ease;
}

.desktop-nav > a::after,
.nav-dropdown > summary::after,
.nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  scale: 0 1;
  transform-origin: right;
  border-radius: 2px;
  background: var(--primary-soft);
  transition: scale .25s ease;
}

.desktop-nav > a:hover,
.nav-dropdown > summary:hover,
.nav-dropdown-trigger:hover,
.nav-dropdown[open] > summary {
  color: var(--text);
}

.desktop-nav > a:hover::after,
.nav-dropdown > summary:hover::after,
.nav-dropdown-trigger:hover::after,
.nav-dropdown[open] > summary::after {
  scale: 1 1;
  transform-origin: left;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::before,
.nav-dropdown-trigger::before {
  content: "+";
  position: absolute;
  right: -13px;
  color: var(--primary-soft);
  font-size: .8rem;
}

.nav-dropdown[open] > summary::before {
  content: "−";
}

.nav-dropdown-panel {
  position: absolute;
  top: 39px;
  left: 50%;
  display: grid;
  width: min(680px, calc(100vw - 48px));
  padding: 18px;
  translate: -42% 0;
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  background: rgba(19, 11, 27, .97);
  box-shadow: var(--shadow);
  animation: menu-in .2s ease both;
}

.nav-dropdown-small .nav-dropdown-panel {
  width: 350px;
  translate: -38% 0;
}

.nav-dropdown-panel a {
  padding: 11px 13px;
  border-radius: 12px;
  color: var(--text-soft);
  font-size: .83rem;
  transition: background .2s ease, color .2s ease, translate .2s ease;
}

.nav-dropdown-panel a:hover {
  translate: 3px 0;
  background: rgba(181, 75, 208, .12);
  color: var(--text);
}

.nav-dropdown-panel .nav-featured {
  display: grid;
  gap: 3px;
  padding: 17px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(114, 9, 144, .35), rgba(89, 216, 255, .08));
  color: var(--text);
  font-size: 1rem;
  font-weight: 650;
}

.nav-featured span {
  color: var(--primary-soft);
  font-size: .65rem;
  letter-spacing: .11em;
}

.nav-service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px 10px;
  padding-block: 8px;
}

.nav-dropdown-panel .nav-all {
  border-top: 1px solid var(--border);
  border-radius: 0;
  color: var(--primary-soft);
  font-weight: 700;
}

/* Desktop: submenus follow hover/focus and close as soon as the pointer leaves. */
@media (hover: hover) and (pointer: fine) and (min-width: 1281px) {
  .desktop-nav .nav-dropdown::after {
    content: "";
    position: absolute;
    z-index: 8;
    top: 100%;
    left: -18px;
    width: calc(100% + 36px);
    height: 18px;
  }

  .desktop-nav .nav-dropdown > .nav-dropdown-panel {
    z-index: 10;
    top: calc(100% + 14px);
    display: none;
  }

  .desktop-nav .nav-dropdown:hover > .nav-dropdown-panel,
  .desktop-nav .nav-dropdown:focus-within > .nav-dropdown-panel {
    display: grid;
  }

  .desktop-nav .nav-dropdown:hover > summary,
  .desktop-nav .nav-dropdown:hover > .nav-dropdown-trigger,
  .desktop-nav .nav-dropdown:focus-within > summary,
  .desktop-nav .nav-dropdown:focus-within > .nav-dropdown-trigger {
    color: var(--text);
  }

  .desktop-nav .nav-dropdown:hover > summary::after,
  .desktop-nav .nav-dropdown:hover > .nav-dropdown-trigger::after,
  .desktop-nav .nav-dropdown:focus-within > summary::after,
  .desktop-nav .nav-dropdown:focus-within > .nav-dropdown-trigger::after {
    scale: 1 1;
    transform-origin: left;
  }

  .desktop-nav .nav-dropdown:hover > summary::before,
  .desktop-nav .nav-dropdown:hover > .nav-dropdown-trigger::before,
  .desktop-nav .nav-dropdown:focus-within > summary::before,
  .desktop-nav .nav-dropdown:focus-within > .nav-dropdown-trigger::before {
    content: "−";
  }
}

.header-cta {
  flex: 0 0 auto;
  padding: 11px 17px !important;
  font-size: .76rem !important;
}

.mobile-nav {
  display: none;
  margin-left: auto;
}

/* Buttons and text links */
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: translate .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -1px;
  translate: -120% 0;
  background: linear-gradient(100deg, transparent 25%, rgba(255, 255, 255, .24), transparent 75%);
  transition: translate .55s ease;
}

.button:hover {
  translate: 0 -2px;
}

.button:hover::before {
  translate: 120% 0;
}

.button-primary {
  background: linear-gradient(135deg, #8212a3, #a32fc0 58%, #6659d9);
  box-shadow: 0 12px 34px rgba(114, 9, 144, .38);
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(181, 75, 208, .42);
}

.button-ghost {
  border-color: rgba(255, 255, 255, .25);
  background: rgba(7, 5, 10, .3);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: var(--primary-soft);
  background: rgba(181, 75, 208, .1);
}

.button-whatsapp {
  background: var(--success);
  color: #06160b !important;
  box-shadow: 0 12px 34px rgba(37, 211, 102, .22);
}

.button-large {
  min-height: 58px;
  padding-inline: 28px;
  font-size: .96rem;
}

.arrow-link,
.text-link-light,
.video-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary-soft);
  font-weight: 700;
}

.arrow-link span {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  transition: rotate .25s ease, background .25s ease;
}

.arrow-link:hover span {
  rotate: 45deg;
  background: var(--primary);
}

/* Header-adjacent elements */
.breadcrumbs {
  position: absolute;
  z-index: 25;
  top: 101px;
  right: 0;
  left: 0;
  display: flex;
  gap: 8px;
  color: rgba(255, 255, 255, .65);
  font-size: .72rem;
}

.breadcrumbs span,
.breadcrumbs a {
  color: inherit;
}

.breadcrumbs i {
  padding-left: 8px;
  color: var(--primary-soft);
  font-style: normal;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--primary-soft);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 8px -4px 0 -1px currentColor;
}

.eyebrow-light {
  color: var(--primary-soft);
}

/* Full-bleed product hero */
.product-hero,
.inner-hero,
.service-hero,
.portal-hero,
.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--bg-soft);
}

.product-hero {
  display: flex;
  min-height: min(900px, 92svh);
  align-items: center;
  padding-block: 150px 130px;
}

.product-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 5, 10, .99) 2%, rgba(7, 5, 10, .88) 37%, rgba(7, 5, 10, .28) 72%, rgba(7, 5, 10, .22)), linear-gradient(to top, rgba(7, 5, 10, .72), transparent 48%);
}

.product-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(52vw, 700px);
  aspect-ratio: 1.65;
  right: -10vw;
  bottom: 3%;
  border: 1px solid rgba(231, 169, 243, .23);
  border-radius: 50%;
  box-shadow: inset 0 0 0 72px rgba(181, 75, 208, .028), inset 0 0 0 140px rgba(89, 216, 255, .02);
  rotate: -12deg;
}

.product-hero-bg {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  scale: 1.025;
  animation: hero-photo 12s ease-out both;
}

/* Animated homepage hero */
.home-hero {
  background: #07050a;
}

.home-hero::before {
  background:
    radial-gradient(circle at 72% 42%, rgba(114, 9, 144, .2), transparent 27%),
    linear-gradient(90deg, rgba(7, 5, 10, .995) 2%, rgba(7, 5, 10, .91) 37%, rgba(7, 5, 10, .38) 70%, rgba(7, 5, 10, .28)),
    linear-gradient(to top, rgba(7, 5, 10, .82), transparent 52%);
  animation: home-overlay-pulse 8s ease-in-out infinite alternate;
}

.home-hero::after {
  animation: home-ring-breathe 10s ease-in-out infinite;
}

.home-hero .product-hero-bg {
  filter: saturate(1.08) contrast(1.04) brightness(.84);
  transform-origin: 68% 46%;
  animation: home-photo-drift 20s ease-in-out infinite alternate;
}

.home-hero-effects {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.home-aurora {
  position: absolute;
  display: block;
  border-radius: 50%;
  opacity: .5;
  filter: blur(46px);
  mix-blend-mode: screen;
  will-change: translate, scale, opacity;
}

.home-aurora-primary {
  top: 10%;
  right: 4%;
  width: min(36vw, 520px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(181, 75, 208, .46), rgba(114, 9, 144, .06) 62%, transparent 72%);
  animation: home-aurora-primary 12s ease-in-out infinite alternate;
}

.home-aurora-cyan {
  right: 27%;
  bottom: 9%;
  width: min(24vw, 350px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(89, 216, 255, .28), rgba(89, 216, 255, .02) 64%, transparent 72%);
  animation: home-aurora-cyan 10s ease-in-out -3s infinite alternate;
}

.home-orbit {
  position: absolute;
  display: block;
  aspect-ratio: 1;
  border: 1px solid rgba(231, 169, 243, .18);
  border-radius: 50%;
  box-shadow: inset 0 0 50px rgba(181, 75, 208, .025), 0 0 40px rgba(89, 216, 255, .025);
  will-change: rotate;
}

.home-orbit::before,
.home-orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(89, 216, 255, .12);
  border-radius: inherit;
}

.home-orbit::after {
  inset: 28%;
  border-style: solid;
  border-color: rgba(231, 169, 243, .1);
}

.home-orbit i {
  position: absolute;
  top: 4.5%;
  left: 50%;
  width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 9px var(--cyan), 0 0 26px rgba(89, 216, 255, .8);
}

.home-orbit-large {
  top: 10%;
  right: -6%;
  width: min(46vw, 690px);
  animation: home-orbit-spin 24s linear infinite;
}

.home-orbit-small {
  right: 21%;
  bottom: 7%;
  width: min(22vw, 330px);
  animation: home-orbit-spin 18s linear reverse infinite;
}

.home-globe-3d {
  position: absolute;
  z-index: 1;
  top: 13%;
  right: 10.2%;
  width: min(33vw, 510px);
  aspect-ratio: 1;
  perspective: 1100px;
  transform-style: preserve-3d;
  opacity: .9;
  will-change: transform;
  animation: home-globe-hover 7s ease-in-out infinite;
}

.home-globe-surface {
  position: absolute;
  z-index: 2;
  inset: 5%;
  overflow: hidden;
  border: 1px solid rgba(231, 169, 243, .28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .19), transparent 12%),
    radial-gradient(circle at 67% 70%, rgba(89, 216, 255, .12), transparent 24%),
    radial-gradient(circle at 45% 46%, rgba(181, 75, 208, .13), rgba(40, 8, 57, .025) 64%, transparent 72%);
  box-shadow:
    inset -42px -18px 72px rgba(1, 1, 9, .55),
    inset 28px 12px 55px rgba(231, 169, 243, .1),
    0 0 34px rgba(181, 75, 208, .13);
  transform-style: preserve-3d;
  will-change: transform;
  animation: home-globe-surface-turn 12s ease-in-out infinite;
}

.home-globe-surface::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle, rgba(231, 169, 243, .6) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(89, 216, 255, .42) 0 1px, transparent 1.7px);
  background-position: 0 0, 7px 7px;
  background-size: 14px 14px, 22px 22px;
  opacity: .3;
  mask-image: radial-gradient(circle, #000 22%, rgba(0, 0, 0, .88) 68%, transparent 100%);
  animation: home-globe-data-flow 14s linear infinite;
}

.home-globe-surface::after {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(108deg, rgba(255, 255, 255, .14), transparent 19%, transparent 70%, rgba(89, 216, 255, .08));
  box-shadow: inset 14px 0 30px rgba(255, 255, 255, .035);
  pointer-events: none;
}

.home-globe-meridian,
.home-globe-latitude {
  position: absolute;
  z-index: 2;
  display: block;
  border-color: rgba(231, 169, 243, .18);
  border-style: solid;
  will-change: transform;
}

.home-globe-meridian {
  top: 4%;
  bottom: 4%;
  left: 50%;
  border-width: 0 1px;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: home-globe-meridian-shift 8s ease-in-out infinite alternate;
}

.home-globe-meridian-one {
  width: 24%;
}

.home-globe-meridian-two {
  width: 52%;
  animation-delay: -2.6s;
}

.home-globe-meridian-three {
  width: 78%;
  animation-delay: -5.2s;
}

.home-globe-latitude {
  right: 4%;
  left: 4%;
  border-width: 1px 0;
  border-radius: 50%;
  animation: home-globe-latitude-shift 7s ease-in-out infinite alternate;
}

.home-globe-latitude-one {
  top: 22%;
  height: 20%;
}

.home-globe-latitude-two {
  top: 42%;
  height: 27%;
  animation-delay: -2.3s;
}

.home-globe-latitude-three {
  top: 67%;
  height: 16%;
  animation-delay: -4.7s;
}

.home-globe-scan {
  position: absolute;
  z-index: 4;
  top: -48%;
  left: -20%;
  display: block;
  width: 140%;
  height: 34%;
  rotate: -15deg;
  background: linear-gradient(to bottom, transparent, rgba(89, 216, 255, .03) 42%, rgba(89, 216, 255, .32) 50%, rgba(231, 169, 243, .06) 57%, transparent);
  filter: blur(.5px);
  animation: home-globe-scan 5.8s linear infinite;
}

.home-globe-hotspot {
  position: absolute;
  z-index: 6;
  display: block;
  width: 7px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px currentColor, 0 0 20px currentColor;
  animation: home-globe-hotspot 2.6s ease-out infinite;
}

.home-globe-hotspot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid currentColor;
  border-radius: inherit;
  opacity: .5;
  animation: home-globe-hotspot-ring 2.6s ease-out infinite;
}

.home-globe-hotspot-one {
  top: 25%;
  left: 34%;
}

.home-globe-hotspot-two {
  top: 42%;
  right: 26%;
  color: var(--primary-soft);
  animation-delay: -.8s;
}

.home-globe-hotspot-three {
  right: 39%;
  bottom: 23%;
  color: var(--success);
  animation-delay: -1.6s;
}

.home-globe-hotspot-four {
  top: 57%;
  left: 20%;
  width: 5px;
  color: var(--primary-soft);
  animation-delay: -2.1s;
}

.home-globe-ring {
  position: absolute;
  z-index: 1;
  display: block;
  border: 1px solid rgba(231, 169, 243, .24);
  border-radius: 50%;
  transform-style: preserve-3d;
  will-change: transform;
}

.home-globe-ring-one {
  inset: 10% -7%;
  animation: home-globe-ring-one 11s linear infinite;
}

.home-globe-ring-two {
  inset: -4% 14%;
  border-color: rgba(89, 216, 255, .18);
  animation: home-globe-ring-two 14s linear reverse infinite;
}

.home-float-card {
  z-index: 3;
}

@keyframes home-globe-hover {
  0%, 100% { transform: translate3d(0, -5px, 0) rotateZ(-.8deg); }
  50% { transform: translate3d(0, 11px, 24px) rotateZ(1deg); }
}

@keyframes home-globe-surface-turn {
  0%, 100% { transform: rotateX(2deg) rotateY(-8deg) rotateZ(-.6deg); }
  50% { transform: rotateX(-3deg) rotateY(9deg) rotateZ(.7deg); }
}

@keyframes home-globe-data-flow {
  from { background-position: 0 0, 7px 7px; }
  to { background-position: 126px 0, 95px 7px; }
}

@keyframes home-globe-meridian-shift {
  from { translate: -5% 0; scale: .92 1; opacity: .45; }
  to { translate: 5% 0; scale: 1.08 1; opacity: .95; }
}

@keyframes home-globe-latitude-shift {
  from { translate: 0 -3%; scale: .98 .9; opacity: .4; }
  to { translate: 0 4%; scale: 1.02 1.08; opacity: .88; }
}

@keyframes home-globe-scan {
  from { translate: 0 -10%; }
  to { translate: 0 470%; }
}

@keyframes home-globe-hotspot {
  0%, 100% { opacity: .7; scale: .82; }
  38% { opacity: 1; scale: 1.18; }
}

@keyframes home-globe-hotspot-ring {
  from { opacity: .75; scale: .55; }
  to { opacity: 0; scale: 1.9; }
}

@keyframes home-globe-ring-one {
  from { transform: rotateX(70deg) rotateZ(0deg); }
  to { transform: rotateX(70deg) rotateZ(360deg); }
}

@keyframes home-globe-ring-two {
  from { transform: rotateY(67deg) rotateZ(0deg); }
  to { transform: rotateY(67deg) rotateZ(360deg); }
}


.home-float-card {
  position: absolute;
  display: grid;
  grid-template-columns: 9px 1fr;
  gap: 3px 11px;
  min-width: 176px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(19, 11, 27, .82), rgba(7, 5, 10, .62));
  box-shadow: 0 20px 55px rgba(0, 0, 0, .32), inset 0 1px rgba(255, 255, 255, .06);
  backdrop-filter: blur(16px);
  will-change: translate, opacity;
  animation:
    home-card-in .75s cubic-bezier(.18, .78, .24, 1) var(--card-delay) both,
    home-card-float var(--card-speed) ease-in-out calc(var(--card-delay) + .75s) infinite alternate;
}

.home-float-card > span {
  grid-row: 1 / 3;
  align-self: center;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px currentColor;
}

.home-float-card small {
  color: var(--primary-soft);
  font-size: .56rem;
  font-weight: 750;
  letter-spacing: .12em;
}

.home-float-card strong {
  color: var(--text);
  font-size: .76rem;
  font-weight: 650;
  white-space: nowrap;
}

.home-float-card-seo {
  --card-delay: .45s;
  --card-speed: 4.8s;
  top: 24%;
  right: 7%;
}

.home-float-card-speed {
  --card-delay: .7s;
  --card-speed: 5.6s;
  top: 49%;
  right: 20%;
}

.home-float-card-speed > span {
  background: var(--primary-soft);
}

.home-float-card-wa {
  --card-delay: .95s;
  --card-speed: 5.2s;
  right: 5%;
  bottom: 21%;
}

.home-float-card-wa > span {
  background: var(--success);
}

.home-hero-copy.reveal {
  animation: none;
}

.home-hero-copy > * {
  animation: home-content-in .72s cubic-bezier(.18, .78, .24, 1) both;
}

.home-hero-copy > :nth-child(1) { animation-delay: .05s; }
.home-hero-copy > :nth-child(2) { animation-delay: .14s; }
.home-hero-copy > :nth-child(3) { animation-delay: .23s; }
.home-hero-copy > :nth-child(4) { animation-delay: .32s; }
.home-hero-copy > :nth-child(5) { animation-delay: .41s; }

.home-hero .hero-badge {
  box-shadow: 0 0 0 0 rgba(89, 216, 255, 0);
  animation:
    home-content-in .72s cubic-bezier(.18, .78, .24, 1) .05s both,
    home-badge-glow 3.8s ease-in-out 1s infinite;
}

.home-hero .hero-badge span {
  animation: home-star-pulse 2.4s ease-in-out infinite;
}

.home-hero h1 em {
  background: linear-gradient(90deg, #e7a9f3 5%, #b54bd0 36%, #59d8ff 60%, #e7a9f3 92%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: home-text-shimmer 7s linear infinite;
}

.home-hero .button-primary {
  animation: home-cta-breathe 3.6s ease-in-out 1.2s infinite;
}

.home-hero .hero-rotator span {
  animation: home-rotator-pulse 4.2s ease-in-out infinite;
}

.home-hero .hero-rotator span:nth-of-type(2) {
  animation-delay: .7s;
}

.home-hero .hero-rotator span:nth-of-type(3) {
  animation-delay: 1.4s;
}

.home-hero .hero-dots span {
  animation: home-dot-pulse 2.8s ease-in-out infinite;
}

.home-hero .hero-dots span:nth-child(2) {
  animation-delay: .35s;
}

.home-hero .hero-dots span:nth-child(3) {
  animation-delay: .7s;
}

@keyframes home-content-in {
  from { opacity: 0; translate: 0 26px; filter: blur(5px); }
  to { opacity: 1; translate: 0; filter: blur(0); }
}

@keyframes home-card-in {
  from { opacity: 0; scale: .92; }
  to { opacity: 1; scale: 1; }
}

@keyframes home-card-float {
  from { translate: 0 -5px; }
  to { translate: 0 7px; }
}

@keyframes home-photo-drift {
  from { scale: 1.08; translate: -1.2% 0; }
  to { scale: 1.025; translate: .8% -.5%; }
}

@keyframes home-overlay-pulse {
  from { opacity: .88; }
  to { opacity: 1; }
}

@keyframes home-ring-breathe {
  0%, 100% { rotate: -12deg; scale: 1; opacity: .72; }
  50% { rotate: -5deg; scale: 1.06; opacity: 1; }
}

@keyframes home-orbit-spin {
  to { rotate: 360deg; }
}

@keyframes home-aurora-primary {
  from { translate: -7% -4%; scale: .9; opacity: .32; }
  to { translate: 6% 7%; scale: 1.13; opacity: .62; }
}

@keyframes home-aurora-cyan {
  from { translate: -6% 4%; scale: .86; opacity: .26; }
  to { translate: 8% -7%; scale: 1.14; opacity: .54; }
}

@keyframes home-badge-glow {
  0%, 100% { border-color: rgba(231, 169, 243, .22); box-shadow: 0 0 0 0 rgba(89, 216, 255, 0); }
  50% { border-color: rgba(89, 216, 255, .34); box-shadow: 0 0 28px rgba(89, 216, 255, .09); }
}

@keyframes home-star-pulse {
  0%, 100% { scale: 1; opacity: .78; }
  50% { scale: 1.28; opacity: 1; }
}

@keyframes home-text-shimmer {
  to { background-position: -220% center; }
}

@keyframes home-cta-breathe {
  0%, 100% { box-shadow: 0 12px 34px rgba(114, 9, 144, .38); }
  50% { box-shadow: 0 17px 48px rgba(181, 75, 208, .48), 0 0 24px rgba(89, 216, 255, .08); }
}

@keyframes home-rotator-pulse {
  0%, 100% { color: rgba(255, 255, 255, .62); }
  50% { color: rgba(255, 255, 255, .94); }
}

@keyframes home-dot-pulse {
  0%, 100% { opacity: .52; scale: 1 1; }
  50% { opacity: 1; scale: 1 1.12; }
}


.product-hero-copy {
  position: relative;
  z-index: 2;
  margin-inline: auto;
}

.product-hero-copy > * {
  max-width: 720px;
}

.product-hero h1,
.inner-hero h1,
.service-hero h1,
.portal-hero h1,
.contact-section h1 {
  margin-bottom: 28px;
  color: var(--text);
  font-size: var(--fs-hero);
  font-weight: 590;
  line-height: .99;
}

.product-hero h1 em {
  color: var(--primary-soft);
  font-style: normal;
}

.product-hero-copy > p,
.inner-hero p,
.service-hero .hero-lead,
.portal-hero .hero-lead,
.contact-section > div > div:first-child > p {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--text-soft);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: auto;
  margin-bottom: 25px;
  padding: 9px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(19, 11, 27, .6);
  color: var(--text-soft);
  font-size: .75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.hero-badge span {
  color: var(--cyan);
}

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

.hero-rotator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 44px;
  color: rgba(255, 255, 255, .72);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero-rotator i {
  color: var(--primary-soft);
  font-style: normal;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 110px;
  display: grid;
  gap: 8px;
}

.hero-dots span {
  width: 6px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
}

.hero-dots .active {
  height: 42px;
  background: var(--primary-soft);
}

.hero-curve {
  position: absolute;
  z-index: 4;
  right: -10%;
  bottom: -74px;
  left: -10%;
  height: 130px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--bg);
}

.nr01-hero::before {
  background: linear-gradient(90deg, rgba(7, 5, 10, .98), rgba(7, 5, 10, .88) 48%, rgba(7, 5, 10, .42));
}

.nr01-hero-image {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.nr01-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 76% 48%, rgba(181, 75, 208, .16), transparent 34%);
}

.nr01-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
  filter: saturate(.9) brightness(.6);
  scale: 1.1;
}

/* Metrics */
.signal-strip {
  position: relative;
  z-index: 6;
  padding-block: 38px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.signal-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 1fr);
  align-items: center;
  gap: 24px;
}

.signal-grid > span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.signal-grid strong {
  display: grid;
  color: var(--text);
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 550;
  letter-spacing: -.05em;
  line-height: 1;
}

.signal-grid small {
  margin-top: 7px;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .02em;
}

/* Shared headings and media */
.split-heading,
.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
  margin-bottom: 58px;
}

.split-heading h2,
.section-heading-row h2,
.faq-grid h2,
.feature-copy h2,
.software-split h2,
.included-grid h2,
.manifesto-grid h2,
.product-showcase h2,
.proposal-layout h2,
.product-shot-grid h2 {
  margin-bottom: 0;
  font-size: var(--fs-h2);
}

.split-heading > div:last-child,
.section-heading-row > p,
.section-heading-row > div:last-child,
.section-note {
  max-width: 440px;
}

.split-heading p,
.section-note {
  margin-bottom: 9px;
  color: var(--text-soft);
  font-size: 1rem;
}

.media-frame {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg, transparent 55%, rgba(181, 75, 208, .12));
}

.media-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: scale .7s cubic-bezier(.2, .7, .2, 1), filter .7s ease;
}

.media-frame:hover img {
  scale: 1.025;
  filter: saturate(1.08);
}

.media-frame figcaption {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  background: rgba(7, 5, 10, .78);
  color: var(--text-soft);
  font-size: .68rem;
  backdrop-filter: blur(12px);
}

.media-frame figcaption span {
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 15px var(--cyan);
}

.image-duo,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.image-duo .media-frame:first-child {
  translate: 0 36px;
}

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

/* Service cards */
.services-section,
.proof-gallery,
.all-services-section,
.screenshots-section,
.case-studies-list,
.blog-section {
  background: var(--bg-soft);
}

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

.service-card {
  position: relative;
  min-height: 520px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  transition: translate .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  translate: 0 -3px;
  border-color: var(--border-strong);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .28);
}

.service-card-media {
  position: absolute;
  inset: 0;
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 5, 10, .98) 8%, rgba(7, 5, 10, .7) 38%, rgba(7, 5, 10, .18) 78%);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale .7s ease;
}

.service-card:hover .service-card-media img {
  scale: 1.025;
}

.service-card-head,
.service-card > p,
.service-card > h3 {
  position: relative;
  z-index: 2;
}

.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card-head span,
.service-card > p {
  color: var(--primary-soft);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.service-card-head i {
  display: grid;
  width: 40px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  font-style: normal;
  transition: rotate .3s ease, background .3s ease;
}

.service-card:hover .service-card-head i {
  rotate: 45deg;
  background: var(--primary);
}

.service-card > p {
  margin-top: 318px;
  margin-bottom: 11px;
}

.service-card > h3 {
  max-width: 440px;
  margin-bottom: 0;
  font-size: clamp(1.5rem, 2.2vw, 2.3rem);
  font-weight: 560;
  line-height: 1.12;
}

/* Geolocation proof */
.geo-showcase {
  overflow: hidden;
  background: radial-gradient(circle at 82% 38%, rgba(114, 9, 144, .2), transparent 31%), var(--bg);
}

.feature-panel {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.feature-copy p {
  color: var(--text-soft);
}

.feature-copy ul,
.proposal-layout ul {
  display: grid;
  gap: 12px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.feature-copy li,
.proposal-layout li {
  position: relative;
  padding-left: 26px;
  color: var(--text-soft);
}

.feature-copy li::before,
.proposal-layout li::before {
  content: "";
  position: absolute;
  top: .65em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid var(--primary-soft);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(181, 75, 208, .08);
}

.proof-stack {
  display: grid;
  width: 100%;
  max-width: 700px;
  grid-template-columns: 1fr;
  align-items: center;
  justify-self: end;
}

.proof-stack .media-frame:first-child {
  width: 92%;
  justify-self: start;
  translate: 0;
  rotate: 0deg;
}

.proof-stack .media-frame:last-child {
  width: 74%;
  margin-top: -88px;
  justify-self: end;
  translate: 0;
  rotate: 0deg;
}

.proof-stack .media-frame {
  overflow: hidden;
  border-color: var(--border);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .24);
}

.proof-gallery .media-frame img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* Software, cases and FAQ */
.software-preview,
.portal-features-section,
.pricing-section {
  background: linear-gradient(140deg, #1a0823, #0a0710 58%, #100c18);
}

.software-split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.software-split p {
  margin-block: 26px 32px;
  color: var(--text-soft);
}

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

.cases-grid article {
  min-height: 290px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(27, 16, 37, .94), rgba(19, 11, 27, .98));
}

.cases-grid article:nth-child(2) {
  translate: 0;
}

.cases-grid article > span {
  display: block;
  margin-bottom: 40px;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cases-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--primary-soft);
  font-size: clamp(1.9rem, 2.6vw, 2.8rem);
  font-weight: 550;
  letter-spacing: -.06em;
  line-height: 1;
}

.cases-grid h3 {
  font-size: 1.05rem;
  letter-spacing: -.02em;
}

.cases-grid p {
  color: var(--muted);
  font-size: .78rem;
}

.faq-section {
  background: var(--bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(50px, 10vw, 150px);
  align-items: start;
}

.faq-grid > div:first-child {
  position: sticky;
  top: 130px;
}

.faq-grid > div:first-child > p:not(.eyebrow) {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  padding: 26px 54px 26px 0;
  list-style: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 8px;
  display: grid;
  width: 32px;
  aspect-ratio: 1;
  translate: 0 -50%;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--primary-soft);
}

.faq-list details[open] summary::after {
  content: "−";
  background: var(--primary);
  color: var(--text);
}

.faq-list details p {
  max-width: 650px;
  padding: 0 54px 26px 0;
  color: var(--text-soft);
}

/* Marketing index */
.inner-hero {
  padding-block: 170px 115px;
  background: radial-gradient(circle at 78% 38%, rgba(114, 9, 144, .28), transparent 34%), var(--bg-soft);
}

.dark-grid::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(231, 169, 243, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(231, 169, 243, .08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 70% 50%, #000, transparent 64%);
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.inner-hero .media-frame {
  rotate: 2deg;
}

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

.all-service-card {
  position: relative;
  display: grid;
  min-height: 460px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  transition: translate .3s ease, border-color .3s ease;
}

.all-service-card:hover {
  translate: 0 -3px;
  border-color: var(--border-strong);
}

.all-service-image {
  position: absolute;
  inset: 0;
}

.all-service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 5, 10, .99), rgba(7, 5, 10, .68) 42%, rgba(7, 5, 10, .1) 82%);
}

.all-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale .7s ease;
}

.all-service-card:hover img {
  scale: 1.025;
}

.all-service-card > span,
.all-service-card > div:last-child {
  position: relative;
  z-index: 2;
}

.all-service-card > span {
  color: var(--primary-soft);
  font-size: .75rem;
}

.all-service-card > div:last-child {
  align-self: end;
}

.all-service-card p {
  margin-bottom: 7px;
  color: var(--primary-soft);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.all-service-card h2 {
  max-width: 470px;
  margin-bottom: 20px;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  font-weight: 560;
  line-height: 1.13;
}

.all-service-card strong {
  color: var(--text-soft);
  font-size: .82rem;
}

/* Service detail */
.service-hero {
  padding-block: 160px 120px;
  background: radial-gradient(circle at 86% 34%, rgba(114, 9, 144, .18), transparent 34%), var(--bg-soft);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: clamp(64px, 8vw, 120px);
  align-items: center;
}

.service-hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 3.9vw, 4.25rem);
  font-weight: 560;
  letter-spacing: -.04em;
  line-height: 1.055;
}

.service-hero .hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.72;
}

.service-hero-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 28px 72px rgba(0, 0, 0, .3);
}

.service-hero-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 16px;
  border: 1px solid rgba(231, 169, 243, .18);
  border-radius: 20px;
  pointer-events: none;
}

.service-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.service-hero-caption {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 13px;
  background: rgba(7, 5, 10, .88);
  backdrop-filter: blur(12px);
}

.service-hero-caption span {
  color: var(--primary-soft);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.service-hero-caption strong {
  color: var(--text);
  font-size: .9rem;
}

.seo-engine-section {
  background: linear-gradient(145deg, #16091f, #09060d 62%);
}

.seo-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.seo-flow > div {
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .025);
}

.seo-flow > div span,
.seo-module-grid article > span {
  display: block;
  margin-bottom: 28px;
  color: var(--primary-soft);
  font-size: .7rem;
  font-weight: 700;
}

.seo-flow strong,
.seo-flow small {
  display: block;
}

.seo-flow strong {
  font-size: .95rem;
}

.seo-flow small {
  margin-top: 8px;
  color: var(--muted);
}

.flow-arrow {
  color: var(--primary-soft);
}

.seo-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.seo-module-grid article {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.seo-module-grid h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  letter-spacing: -.02em;
}

.seo-module-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .86rem;
}

.geo-caveat {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 30px;
  margin-top: 24px;
  padding: 26px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: rgba(181, 75, 208, .07);
}

.geo-caveat p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: .85rem;
}

.seo-plugin-section {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 82% 12%, rgba(181, 75, 208, .13), transparent 24%),
    radial-gradient(circle at 10% 58%, rgba(69, 213, 255, .07), transparent 26%),
    #07050a;
}

.seo-plugin-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.seo-plugin-intro {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(60px, 9vw, 118px);
}

.seo-plugin-intro h2 {
  max-width: 830px;
  margin-bottom: 0;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.seo-plugin-intro > p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: clamp(.95rem, 1.35vw, 1.08rem);
}

.seo-plugin-chapters {
  position: relative;
  display: grid;
  gap: clamp(72px, 10vw, 140px);
}

.seo-plugin-chapter {
  display: grid;
  grid-template-columns: minmax(270px, .7fr) minmax(0, 1.45fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: start;
  padding-top: clamp(34px, 5vw, 58px);
  border-top: 1px solid var(--border);
}

.seo-plugin-chapter-copy {
  position: sticky;
  top: 118px;
}

.seo-plugin-number {
  display: inline-grid;
  width: 48px;
  aspect-ratio: 1;
  margin-bottom: 30px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--primary-soft);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.seo-plugin-kicker {
  margin-bottom: 13px;
  color: var(--primary-soft);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.seo-plugin-chapter-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(1.65rem, 3vw, 2.9rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.seo-plugin-chapter-copy > p:not(.seo-plugin-kicker) {
  color: var(--text-soft);
  font-size: .94rem;
}

.seo-plugin-chapter-copy ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.seo-plugin-chapter-copy li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: .84rem;
}

.seo-plugin-chapter-copy li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-soft), #45d5ff);
  box-shadow: 0 0 13px rgba(209, 116, 231, .65);
}

.seo-plugin-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.seo-plugin-shot {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(231, 169, 243, .2);
  border-radius: 22px;
  background: rgba(255, 255, 255, .035);
  box-shadow: 0 28px 76px rgba(0, 0, 0, .28);
}

.seo-plugin-shot-wide,
.seo-plugin-media-grid-3 .seo-plugin-shot:first-child {
  grid-column: 1 / -1;
}

.seo-plugin-shot-canvas {
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  background: #f7f7f8;
}

.seo-plugin-shot-canvas img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.seo-plugin-shot figcaption {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-height: 66px;
  padding: 16px 18px;
  color: var(--text-soft);
  font-size: .75rem;
  line-height: 1.45;
}

.seo-plugin-shot figcaption span {
  flex: 0 0 auto;
  width: 7px;
  aspect-ratio: 1;
  margin-top: .38em;
  border-radius: 50%;
  background: #45d5ff;
  box-shadow: 0 0 12px rgba(69, 213, 255, .8);
}

.seo-plugin-disclaimer {
  position: relative;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 30px;
  margin-top: clamp(68px, 10vw, 140px);
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(181, 75, 208, .12), rgba(69, 213, 255, .045));
}

.seo-plugin-disclaimer strong {
  font-size: clamp(1.05rem, 1.8vw, 1.38rem);
  line-height: 1.18;
}

.seo-plugin-disclaimer p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: .86rem;
}

.paid-media-lab {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 82% 8%, rgba(69, 213, 255, .12), transparent 24%),
    radial-gradient(circle at 8% 42%, rgba(209, 116, 231, .11), transparent 22%),
    linear-gradient(180deg, #08070b, #0b0710 54%, #07070a);
}

.paid-media-lab::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 12%, rgba(255, 255, 255, .025) 12.2%, transparent 12.4% 72%, rgba(255, 255, 255, .018) 72.2%, transparent 72.4%);
}

.paid-media-intro {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(42px, 8vw, 118px);
  align-items: end;
}

.paid-media-intro h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5.3vw, 5rem);
  line-height: .96;
  letter-spacing: -.06em;
}

.paid-media-intro > div:last-child > p {
  margin-bottom: 24px;
  color: var(--text-soft);
}

.paid-media-platform-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.paid-media-platform-pills span {
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: .7rem;
  font-weight: 750;
}

.paid-media-platform-pills span:nth-child(1) {
  border-color: rgba(69, 151, 255, .42);
  background: rgba(69, 151, 255, .08);
}

.paid-media-platform-pills span:nth-child(2) {
  border-color: rgba(209, 116, 231, .42);
  background: rgba(209, 116, 231, .08);
}

.paid-media-platform-pills span:nth-child(3) {
  border-color: rgba(46, 213, 115, .42);
  background: rgba(46, 213, 115, .08);
}

.paid-media-proof-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(54px, 8vw, 92px);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, .025);
}

.paid-media-proof-strip > div {
  display: grid;
  gap: 5px;
  min-height: 152px;
  padding: 28px;
  align-content: center;
  border-right: 1px solid var(--border);
}

.paid-media-proof-strip > div:last-child {
  border-right: 0;
}

.paid-media-proof-strip strong {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.paid-media-proof-strip span {
  color: var(--text-soft);
  font-size: .8rem;
}

.paid-media-proof-strip small {
  color: var(--muted);
  font-size: .63rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.paid-media-chapters {
  position: relative;
  display: grid;
  gap: clamp(80px, 11vw, 150px);
  margin-top: clamp(82px, 12vw, 155px);
}

.paid-media-chapter {
  --chapter-accent: var(--primary-soft);
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.45fr);
  gap: clamp(42px, 6.4vw, 98px);
  align-items: start;
  padding-top: clamp(36px, 5vw, 62px);
  border-top: 1px solid var(--border);
}

.paid-media-meta {
  --chapter-accent: #df7eff;
}

.paid-media-google {
  --chapter-accent: #58a6ff;
}

.paid-media-measure {
  --chapter-accent: #4ee59b;
}

.paid-media-chapter-copy {
  position: sticky;
  top: 118px;
}

.paid-media-chapter-label {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-bottom: 28px;
}

.paid-media-chapter-label span {
  display: inline-grid;
  width: 44px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--chapter-accent) 48%, transparent);
  border-radius: 50%;
  color: var(--chapter-accent);
  font-size: .68rem;
  font-weight: 800;
}

.paid-media-chapter-label strong {
  color: var(--chapter-accent);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.paid-media-chapter-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 3.1vw, 3rem);
  line-height: 1.02;
  letter-spacing: -.048em;
}

.paid-media-chapter-copy > p {
  color: var(--text-soft);
  font-size: .94rem;
}

.paid-media-chapter-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.paid-media-chapter-copy li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: .84rem;
}

.paid-media-chapter-copy li::before {
  content: "";
  position: absolute;
  top: .58em;
  left: 0;
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--chapter-accent);
  box-shadow: 0 0 13px color-mix(in srgb, var(--chapter-accent) 68%, transparent);
}

.paid-media-screens {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.paid-media-shot {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 22px;
  background: rgba(255, 255, 255, .032);
  box-shadow: 0 28px 74px rgba(0, 0, 0, .28);
}

.paid-media-shot-full,
.paid-media-shot-compact {
  grid-column: 1 / -1;
}

.paid-media-shot-compact {
  width: min(100%, 560px);
  justify-self: center;
}

.paid-media-shot-canvas {
  display: grid;
  min-height: 0;
  overflow: hidden;
  place-items: center;
  background: #f7f7f8;
}

.paid-media-shot-canvas img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.paid-media-shot figcaption {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-height: 66px;
  padding: 16px 18px;
  color: var(--text-soft);
  font-size: .75rem;
  line-height: 1.45;
}

.paid-media-shot figcaption span {
  flex: 0 0 auto;
  width: 7px;
  aspect-ratio: 1;
  margin-top: .38em;
  border-radius: 50%;
  background: var(--chapter-accent);
  box-shadow: 0 0 12px color-mix(in srgb, var(--chapter-accent) 72%, transparent);
}

.paid-media-conclusion {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: clamp(38px, 7vw, 100px);
  align-items: center;
  margin-top: clamp(82px, 12vw, 150px);
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--border-strong);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(69, 213, 255, .11), rgba(209, 116, 231, .08));
}

.paid-media-conclusion h3 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.6vw, 3.7rem);
  line-height: 1;
  letter-spacing: -.052em;
}

.paid-media-conclusion > div:last-child {
  display: grid;
  gap: 22px;
  justify-items: start;
}

.paid-media-conclusion p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: .88rem;
}

.social-portfolio-lab {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 84% 7%, rgba(209, 116, 231, .14), transparent 24%),
    radial-gradient(circle at 8% 36%, rgba(69, 213, 255, .09), transparent 23%),
    linear-gradient(180deg, #08060b, #0c0711 47%, #070609);
}

.social-portfolio-lab::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .09) .7px, transparent .7px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, black, transparent 34%);
  opacity: .32;
}

.social-portfolio-intro {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(42px, 8vw, 116px);
  align-items: end;
}

.social-portfolio-intro h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 5.4vw, 5.2rem);
  line-height: .95;
  letter-spacing: -.062em;
}

.social-portfolio-intro > div:last-child > p {
  color: var(--text-soft);
}

.social-counts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.social-counts span {
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: .7rem;
}

.social-counts strong {
  color: var(--text);
  font-size: .9rem;
}

.social-pillars-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(54px, 8vw, 94px);
}

.social-pillars-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, .027);
}

.social-pillars-grid article > span {
  display: block;
  margin-bottom: 34px;
  color: var(--primary-soft);
  font-size: .68rem;
  font-weight: 800;
}

.social-pillars-grid h3 {
  margin-bottom: 9px;
  font-size: 1.2rem;
}

.social-pillars-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .8rem;
}

.social-gallery-heading,
.social-video-heading {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: end;
  margin-top: clamp(86px, 13vw, 170px);
  margin-bottom: 42px;
}

.social-gallery-heading h3,
.social-video-heading h3 {
  max-width: 790px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.social-gallery-heading > p,
.social-video-heading > p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: .9rem;
}

.social-art-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.social-art-card,
.social-video-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .032);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .25);
}

.social-art-canvas {
  overflow: hidden;
  background: #f5f5f5;
}

.social-art-canvas img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.social-art-card figcaption,
.social-video-card figcaption {
  display: grid;
  gap: 7px;
  min-height: 96px;
  padding: 17px;
}

.social-art-card figcaption strong,
.social-video-card figcaption strong {
  color: var(--text);
  font-size: .76rem;
}

.social-art-card figcaption span,
.social-video-card figcaption span {
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.45;
}

.social-video-grid {
  position: relative;
  display: block;
  columns: 4;
  column-gap: 20px;
}

.social-video-landscape {
  grid-column: auto;
}

.social-video-card {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  break-inside: avoid;
  vertical-align: top;
}

.social-video-canvas {
  display: grid;
  overflow: hidden;
  place-items: center;
  background: #010102;
}

.social-video-portrait .social-video-canvas {
  aspect-ratio: 9 / 16;
}

.social-video-landscape .social-video-canvas {
  aspect-ratio: 16 / 9;
}

.social-video-canvas video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #010102;
}

.social-workflow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: clamp(42px, 8vw, 116px);
  align-items: start;
  margin-top: clamp(88px, 13vw, 170px);
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--border-strong);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(209, 116, 231, .12), rgba(69, 213, 255, .06));
}

.social-workflow h3 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.social-workflow > div:last-child {
  display: grid;
  gap: 22px;
  justify-items: start;
}

.social-workflow p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: .88rem;
}

.social-workflow ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-workflow li {
  position: relative;
  padding-left: 19px;
  color: var(--muted);
  font-size: .8rem;
}

.social-workflow li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary-soft);
  box-shadow: 0 0 11px rgba(209, 116, 231, .75);
}

.included-section {
  background: var(--bg);
}

.included-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(55px, 10vw, 150px);
}

.sticky-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.sticky-heading > p:not(.eyebrow) {
  color: var(--muted);
}

.feature-list {
  border-top: 1px solid var(--border);
}

.feature-list > div {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  padding-block: 25px;
  border-bottom: 1px solid var(--border);
}

.feature-list span {
  color: var(--primary-soft);
  font-size: .72rem;
  font-weight: 700;
}

.feature-list h3 {
  margin-bottom: 0;
  font-size: clamp(1.08rem, 1.6vw, 1.45rem);
  letter-spacing: -.025em;
}

.service-video-section,
.nr-product-shot,
.proposal-section {
  background: var(--surface);
}

.video-layout,
.proposal-layout,
.product-shot-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.video-layout p,
.proposal-layout p,
.product-shot-grid p {
  color: var(--text-soft);
}

.video-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-frame figcaption {
  padding: 12px 18px;
  color: var(--muted);
  font-size: .72rem;
}

.outcomes-section,
.portal-journey-section {
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-deep), #24122f 54%, #08060c);
}

.outcomes-section::after,
.portal-journey-section::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -70%;
  width: 700px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 90px rgba(255, 255, 255, .02), inset 0 0 0 180px rgba(255, 255, 255, .015);
}

.outcomes-section h2 {
  max-width: 700px;
  font-size: var(--fs-h2);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.outcomes-grid > div {
  min-height: 230px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  background: rgba(7, 5, 10, .2);
  backdrop-filter: blur(10px);
}

.outcomes-grid span {
  display: block;
  margin-bottom: 80px;
  color: var(--primary-soft);
  font-size: .72rem;
}

.outcomes-grid strong {
  display: block;
  max-width: 280px;
  font-size: clamp(1.12rem, 1.8vw, 1.55rem);
  line-height: 1.25;
}

.evidence-note {
  max-width: 800px;
  margin-top: 28px;
  color: var(--text-soft);
  font-size: .84rem;
}

.process-grid,
.principles-grid,
.feature-cards,
.portal-features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-grid article,
.principles-grid article,
.feature-cards article,
.portal-features-grid article {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.process-grid article > span,
.principles-grid article > span,
.feature-cards article > span,
.portal-features-grid article > span {
  display: block;
  margin-bottom: 76px;
  color: var(--primary-soft);
  font-size: .72rem;
  font-weight: 700;
}

.process-grid h3,
.feature-cards h3,
.portal-features-grid h3 {
  font-size: 1.18rem;
  letter-spacing: -.025em;
}

.process-grid p,
.feature-cards p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .86rem;
}

.next-service {
  display: flex;
  justify-content: space-between;
  padding-block: 28px;
  border-top: 1px solid var(--border);
}

.next-service span {
  color: var(--muted);
}

.next-service a {
  color: var(--primary-soft);
  font-weight: 700;
}

/* Software pages */
.product-list-section {
  background: var(--bg-soft);
}

.product-showcase-grid {
  display: grid;
  gap: 30px;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(45px, 7vw, 100px);
  align-items: center;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
}

.product-showcase-reverse .media-frame {
  order: 2;
}

.product-showcase p {
  color: var(--text-soft);
}

.product-status {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--primary-soft);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .11em;
}

.price-inline {
  display: grid;
  gap: 4px;
  margin-block: 26px;
}

.price-inline strong {
  color: var(--primary-soft);
  font-size: 1.8rem;
}

.price-inline span {
  color: var(--muted);
  font-size: .78rem;
}

.license-strip {
  position: relative;
  z-index: 6;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.license-strip > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.license-strip > div > div {
  padding: 28px;
  border-left: 1px solid var(--border);
}

.license-strip > div > div:last-child {
  border-right: 1px solid var(--border);
}

.license-strip span,
.license-strip strong {
  display: block;
}

.license-strip span {
  color: var(--muted);
  font-size: .7rem;
  text-transform: uppercase;
}

.license-strip strong {
  margin-top: 6px;
  color: var(--primary-soft);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 550;
}

.youtube-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: #000;
  box-shadow: var(--shadow);
}

.youtube-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.feature-cards {
  margin-top: 28px;
}

.product-shot-grid ol {
  display: grid;
  gap: 0;
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}

.product-shot-grid li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding-block: 16px;
  border-top: 1px solid var(--border);
}

.product-shot-grid li > span {
  color: var(--primary-soft);
  font-size: .72rem;
}

.product-shot-grid li strong {
  font-size: .95rem;
}

.product-shot-grid li p {
  margin-bottom: 0;
  font-size: .8rem;
}

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

.screenshot-grid .media-frame img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-stack {
  display: grid;
  gap: 16px;
}

.license-includes-section {
  background: var(--bg-soft);
}

.price-card {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 45px;
  align-items: center;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 70% 30%, rgba(181, 75, 208, .25), transparent 32%), linear-gradient(135deg, var(--surface-3), var(--surface));
  box-shadow: var(--shadow);
}

.price-card > div:first-child > span {
  color: var(--primary-soft);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .11em;
}

.price-card h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.7rem, 2.6vw, 2.8rem);
}

.price-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.price {
  display: flex;
  align-items: flex-start;
  color: var(--text);
  line-height: 1;
}

.price small {
  margin-top: 12px;
  color: var(--primary-soft);
  font-weight: 700;
}

.price strong {
  font-size: clamp(3.4rem, 6vw, 6rem);
  font-weight: 520;
  letter-spacing: -.09em;
}

.price sup {
  margin-top: 12px;
  color: var(--primary-soft);
  font-weight: 700;
}

/* Auto Gestor */
.auto-gestor-hero {
  position: relative;
  min-height: 760px;
  padding-block: 176px 116px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(89, 216, 255, .13), transparent 29%),
    radial-gradient(circle at 26% 72%, rgba(181, 75, 208, .2), transparent 34%),
    linear-gradient(138deg, #07050a 4%, #100817 56%, #071015);
}

.auto-gestor-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent 4%, #000 38%, transparent 96%);
}

.auto-gestor-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
}

.auto-gestor-hero-copy h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 4.6vw, 4.8rem);
  line-height: .99;
  letter-spacing: -.07em;
}

.auto-gestor-hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  color: var(--text-soft);
  font-size: clamp(.98rem, 1.35vw, 1.14rem);
  line-height: 1.7;
}

.auto-gestor-hero-copy > small {
  display: block;
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
  font-size: .7rem;
}

.auto-dashboard-frame {
  position: relative;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(231, 169, 243, .23);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .025));
  box-shadow: 0 38px 100px rgba(0, 0, 0, .58), 0 0 70px rgba(89, 216, 255, .08);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  animation: auto-dashboard-float 8s ease-in-out infinite;
}

.auto-dashboard-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 18% -5% -8% 18%;
  border-radius: 40px;
  background: rgba(181, 75, 208, .18);
  filter: blur(40px);
}

.auto-dashboard-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 19px;
}

.auto-dashboard-frame figcaption,
.auto-interface-note {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 5px 0;
  color: var(--text-soft);
  font-size: .68rem;
}

.auto-dashboard-frame figcaption span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

@keyframes auto-dashboard-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

.auto-capability-strip {
  border-block: 1px solid var(--border);
  background: var(--bg);
}

.auto-capability-strip > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.auto-capability-strip > div > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 15px;
  padding: 27px 24px;
  border-left: 1px solid var(--border);
}

.auto-capability-strip > div > div:last-child {
  border-right: 1px solid var(--border);
}

.auto-capability-strip span {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--primary-soft);
  font-size: .66rem;
  font-weight: 750;
}

.auto-capability-strip strong,
.auto-capability-strip small {
  display: block;
}

.auto-capability-strip strong {
  font-size: .91rem;
}

.auto-capability-strip small {
  color: var(--muted);
  font-size: .68rem;
}

.auto-ecosystem-section,
.auto-operations-section {
  background: var(--bg-soft);
}

.auto-ecosystem-grid,
.auto-feature-showcase {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(45px, 8vw, 115px);
  align-items: center;
}

.auto-ecosystem-grid > div > p:not(.eyebrow),
.auto-feature-showcase > div > p:not(.eyebrow),
.auto-scope-note {
  color: var(--text-soft);
}

.auto-module-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.auto-module-cloud span {
  padding: 9px 13px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(181, 75, 208, .07);
  color: var(--text-soft);
  font-size: .7rem;
}

.auto-creative-frame img {
  aspect-ratio: 1.56 / 1;
  object-fit: cover;
}

.auto-product-shot {
  background:
    radial-gradient(circle at 80% 38%, rgba(89, 216, 255, .08), transparent 27%),
    linear-gradient(140deg, #0d0711, #160b1e 62%, #071014);
}

.auto-interface-frame img,
.auto-wide-frame img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.auto-feature-showcase {
  grid-template-columns: 1.2fr .8fr;
}

.auto-checklist-section,
.auto-history-section {
  background: var(--bg);
}

.auto-check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.auto-check-list li {
  position: relative;
  padding: 12px 14px 12px 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-soft);
  font-size: .82rem;
}

.auto-check-list li::before {
  content: "✓";
  position: absolute;
  left: 15px;
  color: var(--cyan);
  font-weight: 800;
}

.auto-wide-frame {
  padding: clamp(10px, 1.6vw, 20px);
  border-color: rgba(89, 216, 255, .2);
}

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

.auto-operations-grid .media-frame {
  align-self: start;
}

.auto-scope-note {
  max-width: 470px;
  margin-top: 24px;
  font-size: .84rem;
}


/* Portal */
.portal-hero {
  padding-block: 170px 105px;
  background: radial-gradient(circle at 74% 36%, rgba(114, 9, 144, .36), transparent 33%), var(--bg-soft);
}

.portal-hero-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(45px, 7vw, 100px);
  align-items: center;
}

.portal-hero-visual {
  position: relative;
  padding: 17px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .04);
  box-shadow: var(--shadow);
  rotate: 2deg;
}

.portal-hero-visual img {
  width: 100%;
  border-radius: 23px;
}

.portal-hero-visual span {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 5, 10, .82);
  color: var(--text-soft);
  font-size: .7rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.portal-journey-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(55px, 9vw, 135px);
}

.portal-journey-grid h2 {
  font-size: var(--fs-h2);
}

.portal-journey-grid > div:last-child {
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.portal-journey-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding-block: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.portal-journey-grid article > span {
  color: var(--primary-soft);
  font-size: .7rem;
}

.portal-journey-grid h3 {
  margin-bottom: 5px;
}

.portal-journey-grid article p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: .85rem;
}

/* About */
.manifesto-section {
  background: var(--bg);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(55px, 10vw, 155px);
  margin-bottom: 65px;
}

.manifesto-copy > p {
  color: var(--text-soft);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.manifesto-copy blockquote {
  margin: 45px 0 0;
  padding-left: 28px;
  border-left: 3px solid var(--primary-bright);
  color: var(--text);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 550;
  letter-spacing: -.05em;
  line-height: 1.15;
}

.principles-section {
  background: var(--bg-soft);
}

.principles-grid article h2 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.principles-grid article p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .86rem;
}

/* Cases */
.cases-intro {
  background: var(--bg);
}

.case-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.case-legend span,
.case-status {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.3;
}

.verified {
  border: 1px solid rgba(89, 216, 255, .3);
  background: rgba(89, 216, 255, .08);
  color: var(--cyan) !important;
}

.illustrative {
  border: 1px solid var(--border-strong);
  background: rgba(181, 75, 208, .08);
  color: var(--primary-soft) !important;
}

.case-studies-list > .shell {
  display: grid;
  gap: 44px;
}

.case-study {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
}

.case-study-reverse .media-frame {
  order: 2;
}

.case-number {
  margin: 22px 0 10px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.case-study-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.case-study-copy dl {
  border-top: 1px solid var(--border);
}

.case-study-copy dl > div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  padding-block: 14px;
  border-bottom: 1px solid var(--border);
}

.case-study-copy dt {
  color: var(--primary-soft);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.case-study-copy dd {
  color: var(--text-soft);
  font-size: .82rem;
}

/* Blog and contact */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.blog-grid article {
  position: relative;
  min-height: 390px;
  padding: 200px 28px 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--surface-2), var(--surface));
}

.blog-card-media {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 178px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.blog-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19, 11, 27, .85), transparent 65%);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale .6s ease;
}

.blog-grid article:hover .blog-card-media img {
  scale: 1.04;
}

.blog-grid article::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 300px;
  aspect-ratio: 1;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
}

.blog-grid article > div:not(.blog-card-media) {
  display: flex;
  justify-content: space-between;
  color: var(--primary-soft);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-grid h2 {
  margin: 48px 0 20px;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
}

.blog-grid p {
  color: var(--muted);
  font-size: .88rem;
}

.blog-grid small {
  position: absolute;
  bottom: 28px;
  color: var(--text-soft);
}

.contact-section {
  min-height: 100svh;
  padding-block: 170px 100px;
  background: radial-gradient(circle at 78% 42%, rgba(114, 9, 144, .34), transparent 31%), linear-gradient(135deg, var(--bg), var(--surface));
}

.contact-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 15%;
  right: -14%;
  width: min(60vw, 800px);
  aspect-ratio: 1;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  box-shadow: inset 0 0 0 100px rgba(181, 75, 208, .025), inset 0 0 0 220px rgba(89, 216, 255, .018);
}

.contact-hero-bg {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 auto;
  width: 66%;
  height: 100%;
  object-fit: cover;
  opacity: .24;
  filter: saturate(.8);
  mask-image: linear-gradient(to left, #000 25%, transparent 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

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

.contact-cards > a,
.contact-cards > div {
  display: grid;
  align-content: space-between;
  min-height: 170px;
  padding: 23px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(19, 11, 27, .72);
  backdrop-filter: blur(14px);
}

.contact-cards span {
  color: var(--primary-soft);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-cards strong {
  font-size: .86rem;
  line-height: 1.55;
}

.contact-social-card {
  grid-column: 1 / -1;
}

.contact-social-card p {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 26px 0 0;
}

.contact-social-card a {
  color: var(--text);
  font-weight: 650;
}

/* CTA and footer */
.final-cta {
  padding-block: 40px 110px;
  background: var(--bg);
}

.final-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  min-height: 420px;
  padding: clamp(38px, 6vw, 82px);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 42px;
  background: radial-gradient(circle at 85% 28%, rgba(89, 216, 255, .15), transparent 25%), linear-gradient(130deg, #3c0750, #720990 48%, #261334);
  box-shadow: var(--shadow);
}

.final-cta-inner::before,
.final-cta-inner::after {
  content: "";
  position: absolute;
  right: -12%;
  width: 45%;
  aspect-ratio: 1.65;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  rotate: -16deg;
}

.final-cta-inner::after {
  width: 30%;
  right: -4%;
}

.final-cta-inner > * {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: var(--fs-h2);
}

.final-cta p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--text-soft);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #050307;
}

.partner-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding-block: 48px;
  border-bottom: 1px solid var(--border);
}

.partner-strip > div:first-child {
  display: grid;
  gap: 6px;
}

.partner-strip span {
  color: var(--primary-soft);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.partner-strip strong {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 550;
}

.partner-badges {
  display: flex;
  gap: 12px;
}

.partner-badges figure {
  display: grid;
  width: 150px;
  height: 88px;
  margin: 0;
  place-items: center;
  overflow: hidden;
  border-radius: 13px;
  background: #fff;
}

.partner-badges img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: clamp(35px, 6vw, 90px);
  padding-block: 70px;
}

.footer-brand .logo {
  width: 210px;
  margin-bottom: 23px;
}

.footer-brand > p {
  max-width: 350px;
  color: var(--muted);
  font-size: .82rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 25px;
}

.footer-social a {
  color: var(--primary-soft);
  font-size: .73rem;
  font-weight: 700;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-grid h2 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid address {
  color: var(--muted);
  font-size: .76rem;
  font-style: normal;
}

.footer-grid > div:not(.footer-brand) a:hover {
  color: var(--primary-soft);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 22px;
  border-top: 1px solid var(--border);
  color: #766b7c;
  font-size: .68rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 17px 8px 8px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  background: rgba(9, 34, 18, .94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .42), 0 0 0 0 rgba(37, 211, 102, .22);
  backdrop-filter: blur(15px);
  animation: wa-pulse 2.8s ease-out infinite;
}

.whatsapp-float-icon {
  display: grid;
  width: 45px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--success);
  color: #06170b !important;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: -.03em;
}

.whatsapp-float-copy {
  display: grid;
  line-height: 1.15;
}

.whatsapp-float-copy small {
  color: #9eeebc;
  font-size: .58rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.whatsapp-float-copy strong {
  color: #fff;
  font-size: .72rem;
}

/* Motion */
.reveal {
  animation: rise .75s cubic-bezier(.18, .78, .24, 1) both;
}

@supports (animation-timeline: view()) {
  .section .reveal,
  .site-footer .reveal {
    animation: view-rise linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 30%;
  }
}

@keyframes rise {
  from { opacity: 0; translate: 0 24px; }
  to { opacity: 1; translate: 0; }
}

@keyframes view-rise {
  from { opacity: 0; translate: 0 34px; }
  to { opacity: 1; translate: 0; }
}

@keyframes hero-photo {
  from { scale: 1.09; }
  to { scale: 1.025; }
}

@keyframes menu-in {
  from { opacity: 0; translate: -42% -8px; }
  to { opacity: 1; translate: -42% 0; }
}

@keyframes wa-pulse {
  0%, 55%, 100% { box-shadow: 0 18px 50px rgba(0, 0, 0, .42), 0 0 0 0 rgba(37, 211, 102, .24); }
  72% { box-shadow: 0 18px 50px rgba(0, 0, 0, .42), 0 0 0 13px rgba(37, 211, 102, 0); }
}

/* Responsive */
/* Atalaia */
.nav-featured-atalaia {
  background: linear-gradient(135deg, rgba(26, 45, 78, .98), rgba(13, 25, 46, .98)) !important;
}

.nav-featured-atalaia span {
  color: #f8b63f !important;
}

.home-atalaia-feature {
  position: relative;
  padding: clamp(28px, 4vw, 58px);
  border: 1px solid rgba(248, 182, 63, .25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 5%, rgba(248, 182, 63, .12), transparent 29%),
    linear-gradient(135deg, #111d34, #0c1426 64%, #142440);
  box-shadow: 0 35px 90px rgba(0, 0, 0, .32);
}

.home-atalaia-feature::after {
  content: "";
  position: absolute;
  right: -9%;
  bottom: -41%;
  width: 42%;
  aspect-ratio: 1;
  border: 1px solid rgba(248, 182, 63, .15);
  border-radius: 50%;
  box-shadow: inset 0 0 0 50px rgba(248, 182, 63, .018), inset 0 0 0 102px rgba(255, 255, 255, .014);
  pointer-events: none;
}

.home-atalaia-kicker {
  display: inline-block;
  margin-bottom: 24px;
  color: #f8b63f;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .12em;
}

.home-atalaia-feature .eyebrow {
  color: #f8b63f;
}

.home-atalaia-button,
.software-atalaia-cta,
.atalaia-button {
  border-color: #f8b63f;
  background: #f8b63f;
  color: #111d34 !important;
  box-shadow: 0 14px 34px rgba(248, 182, 63, .2);
}

.home-atalaia-button:hover,
.software-atalaia-cta:hover,
.atalaia-button:hover {
  border-color: #ffd27f;
  background: #ffd27f;
  translate: 0 -2px;
}

.home-atalaia-visual {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 26px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 32px 70px rgba(0, 0, 0, .46);
  transform: none;
}

.home-atalaia-visual img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: contain;
}

.home-atalaia-visual figcaption {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 6px 2px;
  color: #c6d0e2;
  font-size: .68rem;
}

.home-atalaia-visual figcaption span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f8b63f;
  box-shadow: 0 0 14px rgba(248, 182, 63, .8);
}

.home-atalaia-agent {
  position: absolute;
  right: 8%;
  bottom: 12%;
  padding: 13px 16px;
  border: 1px solid rgba(248, 182, 63, .3);
  border-radius: 14px;
  background: rgba(17, 29, 52, .93);
  color: #f8b63f;
  font-size: .78rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .34);
}

.home-atalaia-agent small {
  color: #d6dfed;
  font-size: .58rem;
  font-weight: 500;
}

.product-hero-software .product-hero-bg {
  object-position: 66% center;
  filter: brightness(.44) saturate(.75);
}

.software-atalaia-showcase {
  border-color: rgba(248, 182, 63, .28);
  background:
    radial-gradient(circle at 86% 8%, rgba(248, 182, 63, .12), transparent 25%),
    linear-gradient(145deg, #152743, #0c172a);
}

.software-atalaia-showcase img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.software-atalaia-showcase .media-frame:hover img {
  scale: 1;
  filter: none;
}

.software-atalaia-showcase .product-status,
.software-atalaia-showcase .software-atalaia-points span {
  color: #f8b63f;
}

.software-atalaia-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block: 24px;
}

.software-atalaia-points span {
  padding: 8px 11px;
  border: 1px solid rgba(248, 182, 63, .22);
  border-radius: 999px;
  background: rgba(248, 182, 63, .05);
  font-size: .67rem;
  font-weight: 650;
}

.atalaia-hero,
.atalaia-ai-section,
.atalaia-esocial-section,
.atalaia-final-cta {
  --atalaia-navy: #111d34;
  --atalaia-blue: #1c2d4f;
  --atalaia-amber: #f8b63f;
  --atalaia-coral: #ff6a61;
  --atalaia-green: #2bbf76;
}

.atalaia-hero {
  position: relative;
  min-height: 820px;
  padding-block: 176px 118px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 26%, rgba(248, 182, 63, .13), transparent 26%),
    radial-gradient(circle at 18% 82%, rgba(64, 118, 202, .15), transparent 31%),
    linear-gradient(135deg, #0d172a, #152642 60%, #0b1527);
}

.atalaia-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, #000 35%, transparent 98%);
}

.atalaia-hero-glow {
  position: absolute;
  top: 11%;
  right: 4%;
  width: min(45vw, 690px);
  aspect-ratio: 1;
  border: 1px solid rgba(248, 182, 63, .14);
  border-radius: 50%;
  box-shadow: inset 0 0 0 76px rgba(248, 182, 63, .015), inset 0 0 0 150px rgba(255, 255, 255, .012);
  animation: atalaia-orbit 14s linear infinite;
}

.atalaia-hero-glow::before,
.atalaia-hero-glow::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px dashed rgba(86, 151, 255, .16);
  border-radius: inherit;
}

.atalaia-hero-glow::after {
  inset: 34%;
  border-style: solid;
  border-color: rgba(248, 182, 63, .12);
}

@keyframes atalaia-orbit {
  to { rotate: 360deg; }
}

.atalaia-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.atalaia-brand-lockup,
.atalaia-agent-icon {
  display: flex;
  align-items: center;
  gap: 12px;
}

.atalaia-brand-lockup {
  margin-bottom: 34px;
}

.atalaia-brand-lockup > strong,
.atalaia-agent-icon > strong {
  color: #fff;
  font-size: 1.14rem;
  letter-spacing: -.035em;
}

.atalaia-mark {
  position: relative;
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 11px;
  background: #152642;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.atalaia-mark::before {
  content: "";
  width: 15px;
  height: 20px;
  border: 3px solid #f8b63f;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.atalaia-mark i {
  position: absolute;
  bottom: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, .8);
}

.atalaia-hero-copy .eyebrow,
.atalaia-ai-copy .eyebrow,
.atalaia-esocial-section .eyebrow,
.atalaia-final-card .eyebrow {
  color: #f8b63f;
}

.atalaia-hero-copy h1 {
  max-width: 650px;
  margin-bottom: 26px;
  font-size: clamp(2.65rem, 4.8vw, 4.8rem);
  letter-spacing: -.075em;
  line-height: .98;
}

.atalaia-hero-copy h1 em,
.atalaia-ai-copy h2 em {
  color: #f8b63f;
  font-style: normal;
}

.atalaia-hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  color: #d7dfec;
  font-size: clamp(.98rem, 1.2vw, 1.12rem);
}

.atalaia-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.atalaia-hero-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(248, 182, 63, .18);
  border-radius: 999px;
  color: #dbe4f2;
  font-size: .64rem;
  font-weight: 650;
}

.atalaia-hero-visual {
  position: relative;
}

.atalaia-screen-shell {
  position: relative;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 27px;
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 44px 110px rgba(0, 0, 0, .55), 0 0 70px rgba(248, 182, 63, .08);
  transform: none;
  animation: atalaia-screen-float 8s ease-in-out infinite;
}

.atalaia-screen-shell img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: contain;
}

.atalaia-live-pill {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  background: rgba(17, 29, 52, .92);
  color: #dce6f4;
  font-size: .66rem;
  font-weight: 650;
}

.atalaia-live-pill i {
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #2bbf76;
  box-shadow: 0 0 14px rgba(43, 191, 118, .8);
}

.atalaia-floating-card {
  position: absolute;
  min-width: 190px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 14px;
  background: rgba(13, 23, 42, .94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .42);
  animation: atalaia-card-float 6s ease-in-out infinite;
}

.atalaia-floating-card small,
.atalaia-floating-card strong {
  display: block;
}

.atalaia-floating-card small {
  margin-bottom: 3px;
  color: #f8b63f;
  font-size: .56rem;
  font-weight: 750;
  letter-spacing: .1em;
}

.atalaia-floating-card strong {
  color: #f5f8fc;
  font-size: .7rem;
}

.atalaia-floating-card-ai {
  right: -4%;
  bottom: 13%;
}

.atalaia-floating-card-alert {
  top: 12%;
  left: -7%;
  animation-delay: -2.5s;
}

@keyframes atalaia-screen-float {
  50% { translate: 0 -9px; }
}

@keyframes atalaia-card-float {
  50% { translate: 0 -7px; }
}

.atalaia-signal-strip {
  border-block: 1px solid rgba(248, 182, 63, .14);
  background: #0f1b31;
}

.atalaia-signal-strip > div {
  display: grid;
  grid-template-columns: .7fr repeat(4, 1fr);
  align-items: center;
}

.atalaia-signal-strip span,
.atalaia-signal-strip strong {
  padding: 24px 18px;
  border-right: 1px solid rgba(248, 182, 63, .12);
}

.atalaia-signal-strip span {
  color: #f8b63f;
  font-size: .65rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.atalaia-signal-strip strong {
  color: #e4ebf5;
  font-size: .77rem;
  font-weight: 600;
  text-align: center;
}

.atalaia-pillars-section,
.atalaia-dashboard-section,
.atalaia-gallery-section,
.atalaia-faq {
  background: #f3f5f8;
  color-scheme: light;
}

.atalaia-pillars-section h2,
.atalaia-pillars-section h3,
.atalaia-dashboard-section h2,
.atalaia-gallery-section h2,
.atalaia-gallery-section h3,
.atalaia-faq h2,
.atalaia-faq summary,
.atalaia-faq p,
.atalaia-pillars-section p,
.atalaia-dashboard-section p {
  color: #111d34;
}

.atalaia-pillars-section .eyebrow,
.atalaia-dashboard-section .eyebrow,
.atalaia-gallery-section .eyebrow,
.atalaia-faq .eyebrow {
  color: #c57d00;
}

.atalaia-pillars-section .section-note,
.atalaia-dashboard-section .muted,
.atalaia-gallery-section .section-note {
  color: #667187;
}

.atalaia-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.atalaia-pillars-grid article {
  min-height: 310px;
  padding: 28px;
  border: 1px solid #dbe0e8;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(19, 34, 58, .06);
}

.atalaia-pillars-grid article > span {
  display: block;
  margin-bottom: 78px;
  color: #d58c0e;
  font-size: .68rem;
  font-weight: 750;
}

.atalaia-pillars-grid h3 {
  font-size: 1.22rem;
}

.atalaia-pillars-grid p {
  margin: 0;
  color: #637086;
  font-size: .8rem;
}

.atalaia-ai-section {
  background:
    radial-gradient(circle at 78% 30%, rgba(248, 182, 63, .11), transparent 26%),
    linear-gradient(135deg, #111d34, #182b4b);
}

.atalaia-ai-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(56px, 9vw, 132px);
  align-items: center;
}

.atalaia-agent-icon {
  margin-bottom: 34px;
}

.atalaia-ai-copy h2 {
  max-width: 660px;
  font-size: clamp(2.25rem, 3.8vw, 4rem);
}

.atalaia-ai-copy > p:not(.eyebrow) {
  color: #ced8e8;
}

.atalaia-agent-flow {
  display: grid;
  gap: 9px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.atalaia-agent-flow li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: start;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
}

.atalaia-agent-flow li > span {
  display: grid;
  width: 27px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: rgba(248, 182, 63, .13);
  color: #f8b63f;
  font-size: .63rem;
  font-weight: 750;
}

.atalaia-agent-flow strong {
  display: block;
  color: #fff;
  font-size: .82rem;
}

.atalaia-agent-flow p {
  margin: 2px 0 0;
  color: #aebbd0;
  font-size: .72rem;
}

.atalaia-ai-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.atalaia-chat {
  position: relative;
  margin: 0;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 29px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 35px 85px rgba(0, 0, 0, .44);
}

.atalaia-chat img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: contain;
}

.atalaia-chat figcaption {
  padding: 10px 7px 2px;
  color: #d4deed;
  font-size: .65rem;
}

.atalaia-chat-main {
  z-index: 2;
  width: 100%;
  rotate: 0deg;
}

.atalaia-chat-secondary {
  width: 100%;
  margin-top: 72px;
  rotate: 0deg;
}

.atalaia-wide-screen {
  position: relative;
  padding: clamp(8px, 1.3vw, 17px);
  border: 1px solid #d9dee7;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 32px 75px rgba(18, 33, 57, .12);
}

.atalaia-wide-screen img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: contain;
}

.atalaia-wide-screen span {
  position: absolute;
  right: 30px;
  bottom: 30px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(17, 29, 52, .92);
  color: #f6f8fb;
  font-size: .64rem;
}

.atalaia-workflow-section,
.atalaia-modules-section,
.atalaia-trust-section {
  background: #0a0e16;
}

.atalaia-workflow-grid,
.atalaia-trust-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(55px, 9vw, 135px);
  align-items: center;
}

.atalaia-workflow-copy > p:not(.eyebrow),
.atalaia-trust-grid > div:first-child > p:not(.eyebrow) {
  color: var(--text-soft);
}

.atalaia-workflow-copy ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.atalaia-workflow-copy li {
  position: relative;
  padding-left: 27px;
  color: #cbd3df;
  font-size: .8rem;
}

.atalaia-workflow-copy li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f8b63f;
  box-shadow: 0 0 13px rgba(248, 182, 63, .55);
}

.atalaia-workflow-screens {
  display: grid;
  gap: 20px;
}

.atalaia-workflow-screens figure {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 24px;
  background: #141c29;
  box-shadow: 0 28px 65px rgba(0, 0, 0, .48);
}

.atalaia-workflow-screens figure:first-child {
  inset: auto;
  rotate: 0deg;
}

.atalaia-workflow-screens figure:last-child {
  inset: auto;
  rotate: 0deg;
}

.atalaia-workflow-screens img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
}

.atalaia-workflow-screens figcaption,
.atalaia-esocial-grid figcaption {
  padding: 10px 7px 2px;
  color: #c9d2e1;
  font-size: .65rem;
}

.atalaia-modules-section {
  border-top: 1px solid rgba(255, 255, 255, .07);
}

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

.atalaia-modules-grid article {
  min-height: 235px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 18px;
  background: linear-gradient(145deg, #121924, #0d121b);
}

.atalaia-modules-grid article > span {
  display: block;
  margin-bottom: 56px;
  color: #f8b63f;
  font-size: .64rem;
  font-weight: 750;
}

.atalaia-modules-grid h3 {
  font-size: 1.02rem;
}

.atalaia-modules-grid p {
  margin: 0;
  color: #9eabba;
  font-size: .73rem;
}

.atalaia-esocial-section {
  background:
    radial-gradient(circle at 10% 80%, rgba(43, 191, 118, .08), transparent 28%),
    linear-gradient(135deg, #13213a, #0f1b31);
}

.atalaia-esocial-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.atalaia-esocial-grid > div > p {
  color: #cbd6e6;
}

.atalaia-esocial-grid ul {
  display: grid;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.atalaia-esocial-grid li {
  padding: 9px 12px;
  border-left: 2px solid #f8b63f;
  background: rgba(255, 255, 255, .035);
  color: #d8e1ed;
  font-size: .76rem;
}

.atalaia-esocial-screen,
.atalaia-event-card {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 24px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 32px 78px rgba(0, 0, 0, .38);
}

.atalaia-esocial-screen img,
.atalaia-event-card img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  object-fit: contain;
}

.atalaia-event-card {
  grid-column: 2;
  width: 65%;
  margin-top: 18px;
  justify-self: end;
  background: rgba(17, 29, 52, .96);
}

.atalaia-gallery-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(45px, 9vw, 135px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 78px);
}

.atalaia-gallery-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.atalaia-gallery-heading > div:last-child {
  padding-left: 24px;
  border-left: 2px solid #e0a027;
}

.atalaia-gallery-heading strong {
  display: block;
  margin-bottom: 7px;
  color: #111d34;
  font-size: .88rem;
}

.atalaia-gallery-heading p {
  margin: 0;
  color: #667187;
  font-size: .78rem;
}

.atalaia-gallery-grid {
  display: grid;
  gap: clamp(30px, 5vw, 68px);
}

.atalaia-gallery-card {
  margin: 0;
  padding: clamp(10px, 1.4vw, 18px);
  border: 1px solid #d8dee8;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(18, 33, 57, .09);
}

.atalaia-gallery-browser {
  overflow: hidden;
  border: 1px solid #dce2ea;
  border-radius: 19px;
  background: #e8edf3;
}

.atalaia-gallery-browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 10px 14px;
  border-bottom: 1px solid #d8dee7;
  background: #f7f9fb;
}

.atalaia-gallery-browser-bar > span {
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #c9d0db;
}

.atalaia-gallery-browser-bar > span:first-child {
  background: #ff766e;
}

.atalaia-gallery-browser-bar > span:nth-child(2) {
  background: #f8b63f;
}

.atalaia-gallery-browser-bar > span:nth-child(3) {
  background: #47bd7d;
}

.atalaia-gallery-browser-bar small {
  margin-left: auto;
  color: #788397;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .03em;
}

.atalaia-gallery-canvas {
  display: grid;
  width: 100%;
  place-items: center;
  padding: clamp(10px, 1.6vw, 22px);
  background:
    radial-gradient(circle at 85% 12%, rgba(248, 182, 63, .08), transparent 26%),
    linear-gradient(145deg, #e9eef4, #f7f9fb);
}

.atalaia-gallery-canvas img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(17, 29, 52, .08);
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 16px 42px rgba(17, 29, 52, .13);
}

.atalaia-gallery-card-compact .atalaia-gallery-canvas img {
  width: auto;
  max-width: min(100%, 778px);
}

.atalaia-gallery-card-portrait .atalaia-gallery-canvas img {
  width: auto;
  max-width: min(100%, 560px);
}

.atalaia-gallery-card figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 10px 10px;
}

.atalaia-gallery-card figcaption > b {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: #111d34;
  color: #f8b63f;
  font-size: .62rem;
}

.atalaia-gallery-card figcaption div {
  display: grid;
  gap: 5px;
}

.atalaia-gallery-card figcaption strong {
  color: #111d34;
  font-size: .95rem;
}

.atalaia-gallery-card figcaption span {
  color: #647085;
  font-size: .72rem;
}

.atalaia-trust-grid {
  align-items: start;
}

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

.atalaia-trust-list > div {
  min-height: 225px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 18px;
  background: #101620;
}

.atalaia-trust-list span {
  display: block;
  margin-bottom: 46px;
  color: #f8b63f;
  font-size: .64rem;
  font-weight: 750;
}

.atalaia-trust-list h3 {
  font-size: 1.02rem;
}

.atalaia-trust-list p {
  margin: 0;
  color: #9ca8b8;
  font-size: .73rem;
}

.atalaia-faq .faq-list details {
  border-color: #d8dee7;
}

.atalaia-faq .faq-list summary::after {
  border-color: #cfd6e1;
  color: #111d34;
}

.atalaia-faq .faq-list details p {
  color: #667187;
}

.atalaia-final-cta {
  background: #080d14;
}

.atalaia-final-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  padding: clamp(35px, 6vw, 80px);
  border: 1px solid rgba(248, 182, 63, .22);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 14%, rgba(248, 182, 63, .14), transparent 28%),
    linear-gradient(135deg, #142541, #0f1c31);
  box-shadow: 0 35px 95px rgba(0, 0, 0, .37);
}

.atalaia-final-card h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
}

.atalaia-final-card p {
  margin: 0;
  color: #cad4e3;
}

.atalaia-back-link {
  padding-block: 26px 44px;
  text-align: center;
}

.atalaia-back-link a {
  color: var(--primary-soft);
  font-size: .78rem;
  font-weight: 650;
}

@media (max-width: 1050px) {
  .seo-plugin-chapter {
    grid-template-columns: 1fr;
  }

  .seo-plugin-chapter-copy {
    position: static;
    max-width: 780px;
  }

  .paid-media-chapter {
    grid-template-columns: 1fr;
  }

  .paid-media-chapter-copy {
    position: static;
    max-width: 790px;
  }

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

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

  .social-video-grid {
    columns: 3;
  }

  .atalaia-hero-grid,
  .atalaia-ai-grid,
  .atalaia-workflow-grid,
  .atalaia-trust-grid {
    grid-template-columns: 1fr;
  }

  .atalaia-hero-visual {
    max-width: 900px;
  }

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

  .atalaia-ai-copy {
    max-width: 760px;
  }

  .atalaia-ai-visual {
    width: min(100%, 700px);
    margin-inline: auto;
  }

  .atalaia-workflow-screens {
    width: min(100%, 800px);
    margin-inline: auto;
  }

  .atalaia-floating-card-alert {
    left: 2%;
  }
}

@media (max-width: 800px) {
  .home-atalaia-feature,
  .atalaia-esocial-grid,
  .atalaia-final-card {
    grid-template-columns: 1fr;
  }

  .home-atalaia-visual {
    transform: none;
  }

  .atalaia-hero {
    min-height: auto;
    padding-block: 142px 82px;
  }

  .atalaia-hero-grid {
    gap: 58px;
  }

  .atalaia-screen-shell {
    transform: none;
  }

  .atalaia-floating-card {
    min-width: 164px;
  }

  .atalaia-signal-strip > div {
    grid-template-columns: repeat(2, 1fr);
  }

  .atalaia-signal-strip span {
    grid-column: 1 / -1;
    text-align: center;
  }

  .atalaia-event-card {
    grid-column: auto;
    width: 78%;
    margin-top: -38px;
  }

  .atalaia-gallery-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 520px) {
  .atalaia-hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

  .atalaia-floating-card-alert {
    display: none;
  }

  .atalaia-floating-card-ai {
    right: -2%;
    bottom: -22px;
  }

  .atalaia-signal-strip > div,
  .atalaia-pillars-grid,
  .atalaia-modules-grid,
  .atalaia-trust-list {
    grid-template-columns: 1fr;
  }

  .atalaia-signal-strip span,
  .atalaia-signal-strip strong {
    padding: 17px 14px;
  }

  .atalaia-pillars-grid article {
    min-height: 250px;
  }

  .atalaia-pillars-grid article > span {
    margin-bottom: 48px;
  }

  .atalaia-ai-visual {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .atalaia-chat {
    width: min(100%, 390px);
    rotate: 0deg;
  }

  .atalaia-chat-main {
    justify-self: end;
  }

  .atalaia-chat-secondary {
    justify-self: start;
    margin-top: 0;
  }

  .atalaia-workflow-screens {
    display: grid;
    min-height: auto;
    gap: 16px;
  }

  .atalaia-workflow-screens figure {
    position: relative;
    inset: auto !important;
    width: 100%;
    rotate: 0deg !important;
  }

  .atalaia-modules-grid article,
  .atalaia-trust-list > div {
    min-height: 205px;
  }

  .atalaia-event-card {
    width: 100%;
    margin-top: 0;
  }

  .atalaia-wide-screen span {
    position: static;
    display: block;
    margin-top: 9px;
    text-align: center;
  }

  .atalaia-gallery-card {
    padding: 7px;
    border-radius: 20px;
  }

  .atalaia-gallery-browser {
    border-radius: 14px;
  }

  .atalaia-gallery-browser-bar small {
    display: none;
  }

  .atalaia-gallery-card figcaption {
    gap: 12px;
    padding: 16px 7px 8px;
  }

  .atalaia-final-card {
    gap: 34px;
  }
}

@media (max-width: 1280px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-nav > summary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    list-style: none;
    color: var(--text);
    font-size: .75rem;
    font-weight: 700;
    cursor: pointer;
  }

  .mobile-nav > summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav > summary span {
    width: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--primary-soft);
  }

  .mobile-nav > nav {
    position: fixed;
    top: 78px;
    right: 20px;
    left: 20px;
    display: grid;
    max-height: calc(100svh - 98px);
    padding: 18px;
    overflow: auto;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    background: rgba(13, 8, 18, .98);
    box-shadow: var(--shadow);
  }

  .mobile-nav nav > a,
  .mobile-nav .nav-dropdown > summary {
    padding: 12px 9px;
    color: var(--text);
    font-size: .9rem;
    list-style: none;
  }

  .mobile-nav .nav-dropdown-panel,
  .mobile-nav .nav-dropdown-small .nav-dropdown-panel {
    position: static;
    width: 100%;
    margin-bottom: 8px;
    padding: 10px;
    translate: 0;
    box-shadow: none;
    animation: none;
  }

  .nav-dropdown > summary::before {
    right: 10px;
  }

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

  .signal-grid > span {
    grid-column: 1 / -1;
  }

  .process-grid,
  .principles-grid,
  .feature-cards,
  .portal-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .flow-arrow {
    display: none;
  }

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

@media (max-width: 800px) {
  .shell {
    width: min(calc(100% - 40px), var(--container));
  }

  .section {
    padding-block: 76px;
  }

  .seo-plugin-intro,
  .seo-plugin-disclaimer {
    grid-template-columns: 1fr;
  }

  .seo-plugin-intro {
    align-items: start;
  }

  .seo-plugin-media-grid {
    grid-template-columns: 1fr;
  }

  .seo-plugin-shot,
  .seo-plugin-shot-wide,
  .seo-plugin-media-grid-3 .seo-plugin-shot:first-child {
    grid-column: 1;
  }

  .paid-media-intro,
  .paid-media-conclusion {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .paid-media-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .paid-media-proof-strip > div:nth-child(2) {
    border-right: 0;
  }

  .paid-media-proof-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .paid-media-screens {
    grid-template-columns: 1fr;
  }

  .paid-media-shot,
  .paid-media-shot-full,
  .paid-media-shot-compact {
    grid-column: 1;
  }

  .social-portfolio-intro,
  .social-gallery-heading,
  .social-video-heading,
  .social-workflow {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .social-video-grid {
    columns: 2;
  }

  .site-header {
    height: 76px;
  }

  .logo {
    width: 154px;
  }

  .breadcrumbs {
    top: 90px;
  }

  .product-hero {
    min-height: 780px;
    padding-block: 145px 115px;
  }

  .product-hero::before {
    background: linear-gradient(to top, rgba(7, 5, 10, .99) 12%, rgba(7, 5, 10, .8) 67%, rgba(7, 5, 10, .45));
  }

  .product-hero-bg {
    object-position: 66% center;
  }

  .nr01-hero-image img {
    object-position: 70% center;
  }

  .hero-dots {
    display: none;
  }

  .home-float-card {
    display: none;
  }

  .home-globe-3d {
    top: 20%;
    right: -30%;
    width: 88vw;
    opacity: .56;
  }

  .home-orbit-large {
    top: 23%;
    right: -58%;
    width: 122vw;
  }

  .home-orbit-small {
    display: none;
  }

  .home-aurora-primary {
    top: 16%;
    right: -28%;
    width: 92vw;
  }

  .home-aurora-cyan {
    right: -8%;
    bottom: 14%;
    width: 66vw;
  }

  .home-hero .product-hero-bg {
    object-position: 61% center;
  }


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

  .hero-actions .button {
    width: 100%;
  }

  .hero-rotator {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .hero-rotator i {
    display: none;
  }

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

  .split-heading,
  .section-heading-row,
  .inner-hero-grid,
  .service-hero-grid,
  .feature-panel,
  .software-split,
  .faq-grid,
  .included-grid,
  .video-layout,
  .proposal-layout,
  .product-shot-grid,
  .product-showcase,
  .portal-hero-grid,
  .portal-journey-grid,
  .manifesto-grid,
  .case-study,
  .contact-grid,
  .final-cta-inner,
  .partner-strip,
  .price-card {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .section-heading-row {
    gap: 22px;
    margin-bottom: 38px;
  }

  .inner-hero,
  .service-hero,
  .portal-hero,
  .contact-section {
    padding-block: 145px 80px;
  }

  .service-hero {
    padding-block: 132px 86px;
  }

  .service-hero-grid {
    gap: 50px;
  }

  .service-hero h1 {
    max-width: 640px;
    font-size: clamp(2.1rem, 7vw, 3rem);
    line-height: 1.08;
  }

  .service-hero .hero-lead {
    max-width: 600px;
    font-size: 1rem;
    line-height: 1.68;
  }

  .service-hero-visual {
    min-height: 390px;
  }

  .service-hero-visual img {
    min-height: 390px;
  }

  .service-hero-caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .services-grid,
  .all-services-grid,
  .image-duo,
  .gallery-grid,
  .gallery-grid-three,
  .screenshot-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .image-duo .media-frame:first-child {
    translate: 0;
  }

  .service-card {
    min-height: 450px;
  }

  .service-card > p {
    margin-top: 274px;
  }

  .all-service-card {
    min-height: 430px;
  }

  .proof-stack {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
  }

  .proof-stack .media-frame:first-child,
  .proof-stack .media-frame:last-child {
    width: 100%;
    margin-top: 0;
  }

  .proof-stack .media-frame:first-child {
    translate: 0 -10px;
  }

  .proof-stack .media-frame:last-child {
    translate: 0 10px;
  }

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

  .cases-grid article:nth-child(2) {
    translate: 0;
  }

  .faq-grid > div:first-child,
  .sticky-heading {
    position: static;
  }

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

  .geo-caveat {
    grid-template-columns: 1fr;
  }

  .product-showcase-reverse .media-frame,
  .case-study-reverse .media-frame {
    order: 0;
  }

  .auto-gestor-hero {
    min-height: auto;
    padding-block: 142px 82px;
  }

  .auto-gestor-hero-grid,
  .auto-ecosystem-grid,
  .auto-feature-showcase,
  .auto-operations-grid {
    grid-template-columns: 1fr;
  }

  .auto-gestor-hero-grid {
    gap: 52px;
  }

  .auto-gestor-hero-copy h1 {
    font-size: clamp(2.25rem, 9vw, 3.4rem);
    line-height: 1.03;
  }

  .auto-dashboard-frame {
    transform: none;
  }

  .auto-capability-strip > div {
    grid-template-columns: repeat(2, 1fr);
  }

  .auto-capability-strip > div > div:nth-child(3) {
    border-top: 1px solid var(--border);
  }

  .auto-feature-showcase {
    gap: 42px;
  }


  .license-strip > div {
    grid-template-columns: repeat(2, 1fr);
  }

  .license-strip > div > div:nth-child(3) {
    border-left: 1px solid var(--border);
  }

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

  .price-card {
    gap: 24px;
  }

  .price-card .button {
    width: 100%;
  }

  .case-study {
    padding: 22px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(calc(100% - 32px), var(--container));
  }

  .paid-media-proof-strip {
    grid-template-columns: 1fr;
  }

  .paid-media-proof-strip > div,
  .paid-media-proof-strip > div:nth-child(2),
  .paid-media-proof-strip > div:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .paid-media-proof-strip > div:last-child {
    border-bottom: 0;
  }

  .social-pillars-grid,
  .social-art-grid,
  .social-video-grid {
    grid-template-columns: 1fr;
  }

  .social-video-grid {
    columns: 1;
  }

  .social-video-landscape {
    grid-column: span 1;
  }

  .home-globe-3d {
    top: 25%;
    right: -58%;
    width: 118vw;
    opacity: .42;
  }

  .product-hero h1,
  .inner-hero h1,
  .portal-hero h1,
  .contact-section h1 {
    font-size: clamp(2.45rem, 12vw, 3.65rem);
  }

  .service-hero {
    padding-block: 118px 72px;
  }

  .service-hero-grid {
    gap: 38px;
  }

  .service-hero h1 {
    font-size: clamp(1.9rem, 8.4vw, 2.5rem);
    line-height: 1.08;
  }

  .service-hero .hero-lead {
    margin-bottom: 28px;
    font-size: .98rem;
  }

  .service-hero-visual,
  .service-hero-visual img {
    min-height: 330px;
  }

  .service-hero-visual {
    border-radius: 22px;
  }

  .service-hero-visual::before {
    inset: 10px;
    border-radius: 15px;
  }

  .service-hero-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 13px 14px;
  }

  .button-large {
    padding-inline: 20px;
    font-size: .86rem;
  }

  .signal-strip {
    padding-block: 30px;
  }

  .signal-grid {
    gap: 24px 14px;
  }

  .service-card {
    min-height: 400px;
    padding: 20px;
    border-radius: 22px;
  }

  .service-card > p {
    margin-top: 222px;
  }

  .service-card > h3 {
    font-size: clamp(1.35rem, 6.5vw, 1.75rem);
  }

  .all-service-card {
    min-height: 400px;
    padding: 22px;
    border-radius: 22px;
  }

  .all-service-card h2 {
    font-size: clamp(1.35rem, 6vw, 1.7rem);
  }

  .proof-stack {
    gap: 24px;
    margin-top: 30px;
    grid-template-columns: 1fr;
  }

  .proof-stack .media-frame {
    border-radius: 18px;
  }

  .proof-stack .media-frame:first-child,
  .proof-stack .media-frame:last-child {
    width: 100%;
    margin-top: 0;
    justify-self: stretch;
    translate: 0;
    rotate: 0deg;
  }

  .seo-flow,
  .seo-module-grid,
  .process-grid,
  .principles-grid,
  .feature-cards,
  .portal-features-grid,
  .license-strip > div,
  .contact-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .license-strip > div > div,
  .license-strip > div > div:nth-child(3),
  .license-strip > div > div:last-child {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .contact-social-card {
    grid-column: auto;
  }

  .case-study-copy dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .partner-badges {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .partner-badges figure {
    width: 100%;
    height: auto;
    aspect-ratio: 202 / 122;
    overflow: visible;
  }

  .partner-badges img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 202 / 122;
    object-fit: contain;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }

  .whatsapp-float-copy small {
    display: none;
  }
}

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

.blog-grid.blog-grid-library article {
  min-height: 540px;
  padding: 224px 28px 62px;
}

.blog-grid.blog-grid-library h2 {
  margin: 24px 0 14px;
  font-size: clamp(1.25rem, 1.85vw, 1.72rem);
}

.blog-grid.blog-grid-library small {
  position: static;
  display: block;
  margin: 16px 0 18px;
  color: var(--muted);
  font-size: .72rem;
}

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

@media (max-width: 800px) {
  .blog-grid.blog-grid-library {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Integração com a barra administrativa do WordPress. */
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }
