:root {
  --bg-0: #02050b;
  --bg-1: #07101c;
  --bg-2: #0a1829;
  --panel: rgba(7, 16, 29, 0.72);
  --panel-soft: rgba(9, 18, 31, 0.52);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(177, 241, 255, 0.28);
  --text-1: #f3f8ff;
  --text-2: #bac9dd;
  --text-3: #7f92ae;
  --brand-1: #7ae0ff;
  --brand-2: #49bcff;
  --brand-3: #b8f4ff;
  --shadow-soft: 0 28px 80px rgba(0, 0, 0, 0.24);
  --radius-soft: 18px;
  --radius-pill: 999px;
  --grid: 1728px;
  --copy: 720px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text-1);
  background:
    radial-gradient(circle at 10% 0%, rgba(73, 188, 255, 0.09), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(184, 244, 255, 0.06), transparent 22%),
    linear-gradient(180deg, #02050b 0%, #07111f 36%, #02050b 100%);
}

body::before,
body::after {
  content: none;
  display: none;
}

body::before {
  left: max(14px, calc((100vw - var(--grid)) / 2));
}

body::after {
  right: max(14px, calc((100vw - var(--grid)) / 2));
}

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

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

h1,
h2,
h3,
h4,
blockquote {
  margin: 0;
  font-family: "General Sans", "Inter", sans-serif;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3.4rem, 6vw, 6rem);
  line-height: 0.93;
  font-weight: 700;
}

h2 {
  font-size: clamp(2.45rem, 4vw, 4.1rem);
  line-height: 0.97;
  font-weight: 700;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.95rem);
  line-height: 1.08;
  font-weight: 600;
}

h4 {
  font-size: 0.78rem;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}

p,
li {
  margin: 0;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.7;
}

ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.page-shell {
  width: 100%;
  padding-top: 96px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  width: min(calc(100% - 32px), var(--grid));
  margin: 0 auto;
  padding: 14px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img,
.site-footer__brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: none;
}

.brand__wordmark {
  display: grid;
  gap: 2px;
}

.brand__wordmark strong {
  font-family: "General Sans", "Inter", sans-serif;
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text-1);
}

.brand__wordmark small {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}

.menu-toggle {
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(122, 224, 255, 0.28);
  background: rgba(122, 224, 255, 0.08);
}

.menu-toggle span {
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--text-1);
}

.button,
.hero-actions {
  display: inline-flex;
}

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

.button {
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  color: #04111d;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  box-shadow: 0 14px 34px rgba(73, 188, 255, 0.22);
}

.button-secondary {
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.12);
}

.button-secondary:hover {
  background: rgba(122, 224, 255, 0.06);
  border-color: rgba(122, 224, 255, 0.22);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 13px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(122, 224, 255, 0.16);
  background: rgba(122, 224, 255, 0.08);
  color: var(--brand-3);
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

.eyebrow--soft {
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.section-head {
  width: min(calc(100% - 32px), var(--grid));
  margin: 0 auto;
  padding: 0 0 30px;
  display: grid;
  gap: 24px;
}

.section-head--split {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
  align-items: end;
}

.section-head--split > div:first-child,
.section-head--center {
  position: relative;
}

.section-head--split > div:first-child::before,
.section-head--center::before {
  content: "";
  display: block;
  width: 1px;
  height: 68px;
  margin-bottom: 18px;
  background: linear-gradient(180deg, rgba(184, 244, 255, 0.92), rgba(184, 244, 255, 0.12));
}

.section-head--split p {
  max-width: 560px;
  justify-self: end;
}

.section-head--center {
  justify-items: center;
  text-align: center;
}

.section-head--center::before {
  margin-left: auto;
  margin-right: auto;
}

.section-head--center > p {
  max-width: 760px;
}

.trust-band__inner {
  align-items: start;
}

.hero-shell,
.scrollytelling,
.capabilities,
.architecture,
.industries,
.pricing {
  padding: 40px 0 0;
}

.hero-grid {
  width: min(calc(100% - 32px), var(--grid));
  min-height: min(86vh, 980px);
  margin: 0 auto;
  padding: 48px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 0;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  align-self: center;
  max-width: var(--copy);
  display: grid;
  gap: 22px;
  padding: 34px 42px 34px 12px;
  border-right: 1px solid var(--line);
}

.hero-subheadline {
  max-width: 640px;
  color: var(--text-1);
  font-size: clamp(1.18rem, 1.9vw, 1.55rem);
  line-height: 1.5;
}

.hero-text {
  max-width: 610px;
}

.hero-media,
.scrollytelling__media,
.architecture__visual,
.cta-cover {
  position: relative;
  overflow: hidden;
}

.hero-media {
  min-height: 78vh;
}

.hero-media__image,
.scrollytelling__image,
.architecture__visual-image,
.cta-cover__image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-media__image,
.scrollytelling__image,
.cta-cover__image {
  background-image: url("./assets/smoke-network-clean.png");
}

.architecture__visual-image {
  background-image: url("./assets/smoke-workflow-clean.png");
}

.hero-media__veil,
.scrollytelling__veil,
.architecture__visual-veil,
.cta-cover__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 5, 11, 0.14), rgba(2, 5, 11, 0.58)),
    linear-gradient(90deg, rgba(2, 5, 11, 0.1), rgba(2, 5, 11, 0.5));
}

.hero-media::after,
.scrollytelling__media::after,
.architecture__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(184, 244, 255, 0.08), transparent 34%),
    linear-gradient(180deg, transparent, rgba(2, 5, 11, 0.16));
  pointer-events: none;
}

.hero-media__caption,
.scrollytelling__overlay,
.architecture__flow {
  position: absolute;
  z-index: 2;
}

.hero-media__caption {
  left: auto;
  right: max(24px, calc((100vw - var(--grid)) / 2 + 24px));
  bottom: clamp(28px, 4vw, 42px);
  max-width: 430px;
  display: grid;
  gap: 14px;
}

.hero-media__orb {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(circle, rgba(184, 244, 255, 0.38), rgba(184, 244, 255, 0.08) 42%, transparent 72%);
  backdrop-filter: blur(8px);
  z-index: 1;
}

.hero-media__orb--top {
  top: 18%;
  left: 13%;
  width: 18px;
  height: 18px;
}

.hero-media__orb--bottom {
  right: 18%;
  bottom: 28%;
  width: 14px;
  height: 14px;
}

.trust-band {
  padding: 10px 0 0;
}

.trust-band__inner,
.statement-band__inner,
.partner-quote__inner,
.future-band__inner {
  width: min(calc(100% - 32px), var(--grid));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band__inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.trust-band__label,
.trust-band__logos span {
  min-height: 84px;
  display: flex;
  align-items: center;
}

.trust-band__label {
  padding: 0 24px;
  color: var(--text-3);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.trust-band__logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.trust-band__logos span {
  justify-content: center;
  padding: 0 14px;
  border-left: 1px solid var(--line);
  color: var(--text-2);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-band__logos span:first-child {
  border-left: 0;
}

.scrollytelling__grid {
  width: min(calc(100% - 32px), var(--grid));
  margin: 0 auto;
  padding: 8px 0 0;
  display: block;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.scrollytelling__sticky {
  position: sticky;
  top: 92px;
}

.scrollytelling__media {
  min-height: min(86vh, 980px);
}

.scrollytelling__counter {
  position: absolute;
  top: 26px;
  left: 26px;
  display: inline-flex;
  gap: 10px;
  z-index: 3;
}

.scrollytelling__counter span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--text-3);
  background: rgba(4, 10, 19, 0.5);
  font-size: 13px;
  font-weight: 600;
  transition:
    color 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

.scrollytelling__counter span.is-active {
  color: var(--bg-0);
  background: var(--brand-3);
  border-color: rgba(184, 244, 255, 0.8);
}

.scrollytelling__overlay {
  left: 26px;
  right: 26px;
  bottom: 26px;
  max-width: 480px;
  padding: 24px 24px 22px;
  display: grid;
  gap: 10px;
  background: rgba(5, 12, 23, 0.52);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.scrollytelling__overlay.is-active {
  opacity: 1;
  transform: translateY(0);
}

.scrollytelling__steps {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(46%, 520px);
  display: grid;
  gap: 0;
  padding: 120px 42px 42px;
  margin-left: 0;
  z-index: 4;
  background: linear-gradient(90deg, rgba(2, 5, 11, 0), rgba(2, 5, 11, 0.64) 18%, rgba(2, 5, 11, 0.94) 100%);
}

.story-step {
  min-height: 0;
  padding: 30px 0 30px 56px;
  display: grid;
  align-content: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  opacity: 0.52;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  position: relative;
  background: transparent;
}

.story-step:first-child {
  border-top: 0;
}

.story-step.is-active {
  opacity: 1;
  transform: translateX(8px);
}

.story-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(184, 244, 255, 0.16);
  transform: translateY(-50%);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.story-step::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 244, 255, 0.72), rgba(184, 244, 255, 0));
  transform: translateY(-50%);
  opacity: 0.78;
}

.story-step.is-active::before {
  background: var(--brand-3);
  box-shadow: 0 0 20px rgba(184, 244, 255, 0.9);
}

.story-step__number,
.capability__index,
.pricing__tier {
  color: var(--brand-3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.statement-band,
.partner-quote,
.future-band {
  padding: 96px 0 0;
}

.statement-band__inner,
.partner-quote__inner {
  padding: 84px 24px;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
}

.statement-band blockquote,
.partner-quote blockquote {
  max-width: 980px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.07;
}

.capabilities__grid,
.industries__grid,
.pricing__grid {
  width: min(calc(100% - 32px), var(--grid));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.capability,
.industry,
.pricing__item {
  min-height: 320px;
  padding: 42px 32px 36px;
  display: grid;
  align-content: start;
  gap: 18px;
  border-left: 1px solid var(--line);
}

.capability:first-child,
.industry:first-child,
.pricing__item:first-child {
  border-left: 0;
}

.capability p,
.industry p,
.pricing__item p {
  max-width: 320px;
}

.architecture__stage {
  width: min(calc(100% - 32px), var(--grid));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 0;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.architecture__visual {
  min-height: 78vh;
  border-right: 1px solid var(--line);
}

.architecture__flow {
  inset: auto 28px 28px 28px;
  display: grid;
  gap: 18px;
}

.architecture__tag,
.architecture__core,
.architecture__chips span {
  width: fit-content;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 10, 19, 0.55);
  backdrop-filter: blur(14px);
}

.architecture__tag {
  color: var(--brand-3);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.architecture__line {
  width: 1px;
  height: 50px;
  margin-left: 21px;
  background: linear-gradient(180deg, rgba(184, 244, 255, 0.78), transparent);
}

.architecture__core {
  display: grid;
  gap: 4px;
}

.architecture__core strong {
  font-size: 1.25rem;
  font-weight: 600;
}

.architecture__core span {
  color: var(--text-2);
  font-size: 14px;
}

.architecture__chips {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 18px;
}

.architecture__chips::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 36%;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 244, 255, 0.65), transparent);
}

.architecture__chips span {
  color: var(--text-2);
  font-size: 14px;
}

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

.architecture__node {
  min-height: 200px;
  padding: 34px 26px 30px;
  display: grid;
  align-content: start;
  gap: 12px;
  border-left: 1px solid var(--line);
}

.architecture__node:nth-child(odd) {
  border-left: 0;
}

.architecture__node strong {
  font-size: 1.2rem;
  font-weight: 600;
}

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

.industry {
  min-height: 280px;
}

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

.pricing__item {
  min-height: 380px;
  gap: 16px;
}

.pricing__item--featured {
  background:
    linear-gradient(180deg, rgba(122, 224, 255, 0.08), rgba(122, 224, 255, 0.02)),
    rgba(9, 19, 34, 0.38);
}

.pricing__item ul {
  margin-top: auto;
}

.future-band__inner {
  padding: 36px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr) auto;
  gap: 28px;
  align-items: center;
}

.future-band__inner > * {
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.future-band__inner > :first-child {
  border-left: 0;
}

.cta-cover {
  width: 100%;
  min-height: 92vh;
  margin-top: 92px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-cover__content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 980px);
  min-height: 92vh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.cta-cover__content p {
  max-width: 720px;
}

.site-footer {
  position: relative;
  padding: 0 0 44px;
}

.site-footer__accent {
  width: min(calc(100% - 32px), var(--grid));
  height: 4px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--brand-2), transparent);
  opacity: 0.9;
}

.site-footer__grid {
  width: min(calc(100% - 32px), var(--grid));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.site-footer__brand,
.site-footer__col {
  min-height: 240px;
  padding: 34px 28px;
  display: grid;
  align-content: start;
  gap: 14px;
  border-left: 1px solid var(--line);
}

.site-footer__brand {
  border-left: 0;
}

.brand--footer {
  gap: 16px;
}

.site-footer__col a {
  color: var(--text-2);
  font-size: 15px;
  transition: color 180ms ease;
}

.site-footer__col a:hover {
  color: var(--brand-3);
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (min-width: 1200px) {
  .hero-copy {
    top: 24%;
    width: min(100% - 48px, 700px);
    gap: 18px;
  }

  .hero-subheadline {
    max-width: 560px;
  }

  .hero-text {
    max-width: 520px;
  }

  .hero-media__caption {
    right: max(32px, calc((100vw - var(--grid)) / 2 + 32px));
  }

  .section-head--split {
    grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.62fr);
    gap: 64px;
  }

  .section-head--split > div:first-child,
  .section-head--split p {
    align-self: end;
  }

  .section-head--split p {
    max-width: 520px;
    justify-self: start;
  }

  .statement-band__inner,
  .partner-quote__inner {
    padding: 110px 24px 96px;
  }

  .capabilities__grid,
  .industries__grid,
  .pricing__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

@media (max-width: 1199px) {
  .site-header {
    width: min(calc(100% - 24px), var(--grid));
    padding: 12px 0;
  }

  .hero-grid,
  .scrollytelling__grid,
  .architecture__stage,
  .future-band__inner,
  .section-head--split,
  .trust-band__inner,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .scrollytelling__grid,
  .architecture__stage {
    gap: 24px;
    border-top: 0;
    border-bottom: 0;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-copy {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }

  .hero-media,
  .architecture__visual,
  .scrollytelling__media,
  .cta-cover,
  .cta-cover__content {
    min-height: 620px;
  }

  .hero-media__caption {
    right: 24px;
  }

  .scrollytelling__sticky {
    position: relative;
    top: auto;
    border-right: 0;
  }

  .story-step {
    min-height: auto;
    padding: 28px 0 28px 48px;
  }

  .capabilities__grid,
  .industries__grid,
  .pricing__grid,
  .architecture__nodes {
    grid-template-columns: 1fr 1fr;
  }

  .future-band__inner > * {
    padding: 0;
    border-left: 0;
  }

  .site-footer__brand,
  .site-footer__col {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .site-footer__brand {
    border-top: 0;
  }

  .trust-band__logos {
    border-left: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .scrollytelling__steps {
    position: absolute;
    inset: auto 18px 18px 18px;
    width: auto;
    padding: 18px 18px 12px;
    background: linear-gradient(180deg, rgba(2, 5, 11, 0.12), rgba(2, 5, 11, 0.86));
  }

  body::before,
  body::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .page-shell {
    padding-top: 78px;
  }

  body {
    background:
      radial-gradient(circle at 20% 0%, rgba(73, 188, 255, 0.12), transparent 32%),
      linear-gradient(180deg, #02050b 0%, #07111f 42%, #02050b 100%);
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .site-header {
    width: min(calc(100% - 20px), var(--grid));
    padding: 10px 0 12px;
  }

  .brand img,
  .site-footer__brand img {
    width: 52px;
    height: 52px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
  }

  .hero-grid,
  .section-head,
  .trust-band__inner,
  .scrollytelling__grid,
  .statement-band__inner,
  .capabilities__grid,
  .architecture__stage,
  .industries__grid,
  .partner-quote__inner,
  .pricing__grid,
  .future-band__inner,
  .site-footer__grid,
  .site-footer__accent {
    width: min(calc(100% - 20px), var(--grid));
  }

  .hero-grid {
    gap: 28px;
    padding-top: 20px;
  }

  .hero-media,
  .scrollytelling__media,
  .architecture__visual,
  .cta-cover,
  .cta-cover__content {
    min-height: 500px;
  }

  .hero-media__caption,
  .scrollytelling__overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .scrollytelling__counter {
    left: 18px;
    top: 18px;
  }

  .section-head--split > div:first-child::before,
  .section-head--center::before {
    height: 44px;
  }

  .statement-band__inner,
  .partner-quote__inner {
    padding: 56px 18px;
  }

  .capabilities__grid,
  .industries__grid,
  .pricing__grid,
  .architecture__nodes {
    grid-template-columns: 1fr;
  }

  .capability,
  .industry,
  .pricing__item,
  .architecture__node {
    min-height: auto;
    padding: 28px 20px 24px;
    border-left: 0;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .capability:first-child,
  .industry:first-child,
  .pricing__item:first-child,
  .architecture__node:first-child {
    border-left: 0;
  }

  .trust-band__label {
    min-height: 72px;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid var(--line);
  }

  .trust-band__logos {
    grid-template-columns: 1fr 1fr;
  }

  .trust-band__logos span {
    min-height: 60px;
  }

  .story-step::before {
    left: 0;
  }

  .story-step::after {
    width: 18px;
    left: 12px;
  }

  .cta-cover__content {
    justify-items: start;
    text-align: left;
  }

  .cta-cover__content p {
    max-width: 100%;
  }

  .site-footer {
    padding-bottom: 24px;
  }

  .brand__wordmark strong {
    font-size: 0.95rem;
  }

  .brand__wordmark small {
    font-size: 0.66rem;
  }
}

.eyebrow,
.architecture__tag,
.scrollytelling__counter {
  display: none !important;
}

.section-head--split > div:first-child::before,
.section-head--center::before {
  display: none;
}

.trust-band__inner,
.statement-band__inner,
.partner-quote__inner,
.future-band__inner,
.capabilities__grid,
.industries__grid,
.pricing__grid,
.site-footer__grid,
.site-footer__accent,
.hero-grid,
.scrollytelling__grid,
.architecture__stage,
.cta-cover {
  border: 0 !important;
}

.trust-band__logos,
.trust-band__logos span,
.capability,
.industry,
.pricing__item,
.architecture__node,
.site-footer__brand,
.site-footer__col,
.future-band__inner > *,
.hero-copy {
  border: 0 !important;
}

.trust-band,
.capabilities,
.industries,
.pricing,
.future-band,
.statement-band,
.partner-quote {
  padding-top: 56px;
}

.trust-band__inner,
.statement-band__inner,
.partner-quote__inner,
.future-band__inner,
.capabilities__grid,
.industries__grid,
.pricing__grid,
.site-footer__grid {
  width: min(calc(100% - 32px), var(--grid));
}

.hero-shell,
.scrollytelling,
.architecture {
  padding-top: 0;
}

.hero-grid {
  position: relative;
  width: 100%;
  min-height: min(92vh, 1040px);
  padding: 0;
  display: block;
}

.hero-copy {
  position: absolute;
  top: 20%;
  left: max(24px, calc((100vw - var(--grid)) / 2 + 24px));
  z-index: 4;
  width: min(100% - 48px, 620px);
  padding: 0;
}

.hero-media {
  min-height: min(92vh, 1040px);
}

.hero-media__caption {
  max-width: 460px;
}

.scrollytelling__grid {
  width: 100%;
}

.scrollytelling__sticky {
  position: relative;
  top: auto;
}

.scrollytelling__media {
  min-height: min(92vh, 1040px);
}

.scrollytelling__steps {
  position: absolute;
  top: 0;
  right: max(24px, calc((100vw - var(--grid)) / 2 + 24px));
  bottom: 0;
  width: min(44vw, 540px);
  padding: 120px 0 48px;
  margin-left: 0;
  background: linear-gradient(90deg, rgba(2, 5, 11, 0), rgba(2, 5, 11, 0.52) 18%, rgba(2, 5, 11, 0.9) 100%);
}

.story-step {
  min-height: 0;
  padding: 30px 0 30px 48px;
  background: transparent;
}

.story-step::before {
  left: 0;
}

.story-step::after {
  left: 12px;
  width: 18px;
}

.architecture__stage {
  position: relative;
  width: 100%;
  display: block;
}

.architecture__visual {
  min-height: min(92vh, 1040px);
}

.architecture__nodes {
  position: absolute;
  top: 17%;
  right: max(24px, calc((100vw - var(--grid)) / 2 + 24px));
  width: min(38vw, 560px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  z-index: 4;
}

.architecture__node {
  min-height: 0;
  padding: 0 0 0 18px;
  background: linear-gradient(90deg, rgba(2, 5, 11, 0.5), rgba(2, 5, 11, 0));
  border-left: 1px solid rgba(184, 244, 255, 0.24) !important;
}

.capabilities__grid,
.industries__grid,
.pricing__grid,
.site-footer__grid {
  gap: 28px;
  background: transparent;
}

.capability,
.industry,
.pricing__item,
.site-footer__brand,
.site-footer__col {
  min-height: 0;
  padding: 0 0 0 18px;
  background: transparent;
  border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.capability:first-child,
.industry:first-child,
.pricing__item:first-child,
.site-footer__brand {
  border-left: 0 !important;
  padding-left: 0;
}

@media (max-width: 1199px) {
  .hero-copy {
    top: 16%;
    left: 24px;
    width: min(100% - 48px, 560px);
  }

  .hero-media,
  .scrollytelling__media,
  .architecture__visual {
    min-height: 760px;
  }

  .scrollytelling__steps {
    right: 24px;
    width: min(52vw, 460px);
    padding-top: 88px;
  }

  .architecture__nodes {
    top: auto;
    right: 24px;
    bottom: 32px;
    width: min(52vw, 460px);
  }
}

@media (max-width: 767px) {
  .hero-copy {
    top: 14%;
    left: 18px;
    width: min(100% - 36px, 520px);
  }

  .hero-media,
  .scrollytelling__media,
  .architecture__visual {
    min-height: 620px;
  }

  .scrollytelling__steps,
  .architecture__nodes {
    right: 18px;
    left: 18px;
    width: auto;
  }

  .scrollytelling__steps {
    top: auto;
    bottom: 18px;
    padding: 18px 0 8px;
    background: linear-gradient(180deg, rgba(2, 5, 11, 0.12), rgba(2, 5, 11, 0.88));
  }

  .architecture__nodes {
    top: auto;
    bottom: 18px;
    gap: 12px;
  }

  .capabilities__grid,
  .industries__grid,
  .pricing__grid,
  .site-footer__grid {
    gap: 20px;
  }

  .capability,
  .industry,
  .pricing__item,
  .site-footer__brand,
  .site-footer__col,
  .architecture__node {
    padding-left: 14px;
  }
}

/* Hero realinhado para seguir a referência: texto primeiro, showcase depois */
.hero-shell {
  padding-top: 18px;
}

.hero-grid {
  width: min(calc(100% - 32px), var(--grid));
  min-height: auto;
  margin: 0 auto;
  padding: 46px 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.92fr);
  gap: 72px;
  position: relative;
  align-items: start;
}

.hero-copy {
  position: relative;
  top: auto;
  left: auto;
  width: auto;
  max-width: 600px;
  padding: 0;
  border: 0 !important;
  align-self: start;
  gap: 24px;
  padding-top: 26px;
}

.hero-showcase {
  align-self: start;
  display: block;
  padding-top: 8px;
}

.hero-chat-video {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  min-height: 560px;
  background:
    linear-gradient(180deg, rgba(4, 13, 24, 0.2), rgba(4, 13, 24, 0.64)),
    url("./assets/smoke-network-clean.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.hero-chat-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 16%, rgba(131, 226, 255, 0.22), transparent 18%),
    radial-gradient(circle at 82% 76%, rgba(131, 226, 255, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(3, 10, 18, 0.06), rgba(3, 10, 18, 0.52));
}

.hero-chat-video__frame {
  position: absolute;
  inset: 22px;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(8, 18, 31, 0.54), rgba(8, 18, 31, 0.32));
  backdrop-filter: blur(10px);
}

.hero-chat-video__topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-chat-video__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05)),
    url("./assets/ice-code-logo.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 0 1px rgba(161, 232, 255, 0.16);
}

.hero-chat-video__contact {
  display: grid;
  gap: 2px;
}

.hero-chat-video__contact strong {
  color: var(--text-1);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-chat-video__contact span {
  color: rgba(226, 234, 244, 0.7);
  font-size: 12px;
}

.hero-chat-video__stream {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  min-height: 0;
  padding: 18px 10px 6px;
}

.hero-bubble {
  max-width: 78%;
  width: fit-content;
  padding: 14px 16px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(16px);
  animation: heroBubbleLoop 12s infinite;
}

.hero-bubble--incoming {
  align-self: flex-start;
  color: var(--text-1);
  background: rgba(11, 22, 37, 0.88);
  border-top-left-radius: 8px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.hero-bubble--outgoing {
  align-self: flex-end;
  color: #0b1620;
  background: linear-gradient(135deg, #dff8ff, #8fe8ff);
  border-top-right-radius: 8px;
}

.hero-bubble--chip {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: center;
  max-width: 100%;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.hero-bubble--chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(10, 20, 34, 0.78);
  color: rgba(228, 236, 245, 0.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.hero-bubble--1 {
  animation-delay: 0s;
  margin-top: 12px;
}

.hero-bubble--2 {
  animation-delay: 1.8s;
}

.hero-bubble--3 {
  animation-delay: 4s;
}

.hero-bubble--4 {
  animation-delay: 5.8s;
}

.hero-bubble--5 {
  animation-delay: 8.2s;
}

.hero-chat-video__composer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(8, 17, 29, 0.72);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.hero-chat-video__typing {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-chat-video__typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(196, 243, 255, 0.9);
  animation: heroTyping 1.4s infinite ease-in-out;
}

.hero-chat-video__typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-chat-video__typing span:nth-child(3) {
  animation-delay: 0.4s;
}

.hero-chat-video__send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(151, 238, 255, 0.18);
  color: rgba(226, 234, 244, 0.9);
  font-size: 12px;
  font-weight: 600;
}

@keyframes heroBubbleLoop {
  0%,
  12% {
    opacity: 0;
    transform: translateY(18px);
  }
  18%,
  82% {
    opacity: 1;
    transform: translateY(0);
  }
  88%,
  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes heroTyping {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

@media (max-width: 1199px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 0 56px;
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 0;
  }

  .hero-showcase {
    width: 100%;
  }

  .hero-chat-video {
    min-height: 500px;
  }
}

@media (max-width: 767px) {
  .hero-grid {
    width: min(calc(100% - 20px), var(--grid));
    gap: 22px;
    padding: 22px 0 40px;
  }

  .hero-copy {
    gap: 18px;
  }

  .hero-chat-video {
    min-height: 460px;
    border-radius: 28px;
  }

  .hero-chat-video__frame {
    inset: 14px;
    padding: 14px;
    border-radius: 22px;
  }

  .hero-bubble {
    max-width: 88%;
    font-size: 13px;
    padding: 12px 14px;
  }

  .hero-bubble--chip span {
    min-height: 32px;
    font-size: 11px;
  }
}

/* Dobra abaixo do hero alinhada ao modelo do TwelveLabs */
.scrollytelling {
  padding-top: 18px;
}

.scrollytelling + .trust-band {
  padding-top: 20px;
}

.scrollytelling .section-head--split {
  width: min(calc(100% - 32px), var(--grid));
  margin: 0 auto;
}

.scrollytelling__intro {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
  row-gap: 12px;
  padding: 36px 0;
}

.scrollytelling__intro-mark {
  display: block;
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, rgba(184, 244, 255, 0.92), rgba(184, 244, 255, 0.16));
}

.scrollytelling__intro h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  line-height: 0.98;
  margin: 0;
}

.scrollytelling__intro p {
  max-width: 620px;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.scrollytelling .section-head--split p {
  max-width: 560px;
  justify-self: end;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.scrollytelling__grid {
  width: min(calc(100% - 32px), var(--grid));
  margin: 0 auto;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.scrollytelling__sticky {
  position: relative;
  top: auto;
}

.scrollytelling__media {
  min-height: min(86vh, 960px);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.scrollytelling__counter {
  position: absolute;
  top: 28px;
  left: 28px;
  display: inline-flex;
  gap: 10px;
  z-index: 4;
}

.scrollytelling__counter span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 11, 19, 0.45);
  color: rgba(225, 232, 241, 0.54);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.scrollytelling__counter span.is-active {
  background: rgba(184, 244, 255, 0.96);
  border-color: rgba(184, 244, 255, 0.96);
  color: #07111c;
}

.scrollytelling__overlay,
.scrollytelling__steps {
  display: none !important;
}

.scrollytelling__center-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: min(calc(100% - 120px), 920px);
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
  transform: translate(-50%, -50%);
}

.scrollytelling__center-copy h3 {
  max-width: 860px;
  color: rgba(239, 244, 248, 0.97);
  font-family: "General Sans", "Inter", sans-serif;
  font-size: clamp(1.9rem, 2.7vw, 3.1rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.36);
}

.scrollytelling__center-copy h3:nth-child(2) {
  opacity: 0.84;
}

.scrollytelling__center-copy h3:nth-child(3) {
  opacity: 0.68;
}

@media (max-width: 1199px) {
  .scrollytelling__media {
    min-height: 760px;
  }

  .scrollytelling__center-copy {
    width: min(calc(100% - 80px), 760px);
  }

  .hero-grid {
    padding: 32px 0 18px;
  }
}

@media (max-width: 767px) {
  .page-shell {
    padding-top: 88px;
  }

  .scrollytelling {
    padding-top: 18px;
  }

  .scrollytelling__intro {
    row-gap: 12px;
    padding: 28px 0;
  }

  .scrollytelling__intro h2 {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .scrollytelling__grid {
    width: min(calc(100% - 20px), var(--grid));
    padding-top: 14px;
  }

  .scrollytelling__media {
    min-height: 620px;
  }

  .scrollytelling__counter {
    top: 18px;
    left: 18px;
    gap: 8px;
  }

  .scrollytelling__counter span {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .scrollytelling__center-copy {
    width: calc(100% - 36px);
    gap: 18px;
  }

  .scrollytelling__center-copy h3 {
    font-size: clamp(1.45rem, 6vw, 2.2rem);
  }

  .scrollytelling .section-head--split p {
    padding-left: 18px;
  }
}

/* Bloco 3: sticky scrollytelling no estilo TwelveLabs */
.scrollytelling__grid {
  width: min(calc(100% - 32px), var(--grid));
  margin: 0 auto;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.scrollytelling__sticky {
  position: relative;
}

.scrollytelling__media {
  position: sticky;
  top: 96px;
  min-height: calc(100vh - 124px);
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: #050d18;
}

.scrollytelling__bg-stack {
  position: absolute;
  inset: 0;
  height: 300%;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.scrollytelling__media.is-step-1 .scrollytelling__bg-stack {
  transform: translateY(0%);
}

.scrollytelling__media.is-step-2 .scrollytelling__bg-stack {
  transform: translateY(-33.3333%);
}

.scrollytelling__media.is-step-3 .scrollytelling__bg-stack {
  transform: translateY(-66.6666%);
}

.scrollytelling__panel {
  height: 33.3333%;
  background-repeat: no-repeat;
  background-image: url("./assets/smoke-story-composite.png");
  background-size: 100% 300%;
}

.scrollytelling__panel--one {
  background-position: center top;
}

.scrollytelling__panel--two {
  background-position: center center;
}

.scrollytelling__panel--three {
  background-position: center bottom;
}

.scrollytelling__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(172, 239, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(3, 8, 15, 0.18), rgba(3, 8, 15, 0.48));
  z-index: 1;
}

.scrollytelling__counter {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 3;
  display: inline-flex;
  gap: 10px;
}

.scrollytelling__counter span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 12, 22, 0.5);
  color: rgba(231, 238, 245, 0.58);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.scrollytelling__counter span.is-active {
  background: rgba(184, 244, 255, 0.96);
  color: #07111c;
  border-color: rgba(184, 244, 255, 0.96);
}

.scrollytelling__overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: min(calc(100% - 120px), 840px);
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, -50%) translateY(16px);
  transition:
    opacity 280ms ease,
    transform 280ms ease;
}

.scrollytelling__overlay.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

.scrollytelling__overlay h3 {
  max-width: 820px;
  color: rgba(244, 248, 251, 0.98);
  font-size: clamp(1.85rem, 2.7vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-wrap: balance;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.scrollytelling__overlay p {
  max-width: 640px;
  color: rgba(229, 235, 242, 0.84);
  font-size: 15px;
  line-height: 1.6;
  text-wrap: balance;
}

.scrollytelling__track {
  position: relative;
  z-index: 0;
}

.story-step-anchor {
  height: 72vh;
}

.story-step-anchor:last-child {
  height: 82vh;
}

@media (max-width: 1199px) {
  .scrollytelling__media {
    min-height: calc(100vh - 116px);
  }

  .scrollytelling__overlay {
    width: min(calc(100% - 80px), 720px);
  }

  .story-step-anchor {
    height: 64vh;
  }
}

@media (max-width: 767px) {
  .scrollytelling__grid {
    width: min(calc(100% - 20px), var(--grid));
  }

  .scrollytelling__media {
    top: 82px;
    min-height: calc(100vh - 104px);
  }

  .scrollytelling__counter {
    top: 18px;
    left: 18px;
    gap: 8px;
  }

  .scrollytelling__counter span {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .scrollytelling__overlay {
    width: calc(100% - 36px);
    gap: 12px;
  }

  .scrollytelling__overlay h3 {
    font-size: clamp(1.5rem, 6vw, 2.15rem);
  }

  .scrollytelling__overlay p {
    font-size: 14px;
  }

  .story-step-anchor {
    height: 58vh;
  }
}

/* Saneamento final do topo e bloco 3 */
.page-shell {
  padding-top: 92px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: min(calc(100% - 32px), var(--grid));
  margin: 0 auto;
  padding: 14px 0 12px;
  background: linear-gradient(180deg, rgba(2, 5, 11, 0.94), rgba(2, 5, 11, 0.78));
  backdrop-filter: blur(14px);
  z-index: 30;
}

.hero.hero-shell {
  padding-top: 0;
}

.hero.hero-shell .hero-grid {
  width: min(calc(100% - 32px), var(--grid));
  min-height: auto;
  margin: 0 auto;
  padding: 36px 0 12px;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 0.98fr);
  gap: 72px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero.hero-shell .hero-copy {
  max-width: 560px;
  align-self: center;
  gap: 18px;
  padding: 18px 0;
  border-right: 0 !important;
}

.hero.hero-shell .hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5vw, 5.15rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.hero.hero-shell .hero-subheadline {
  max-width: 470px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.48;
  color: rgba(228, 235, 243, 0.74);
}

.hero.hero-shell .hero-actions {
  margin-top: 6px;
}

.hero.hero-shell .hero-showcase {
  padding-top: 0;
}

.hero.hero-shell .hero-chat-video {
  min-height: 460px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(8, 20, 34, 0.94), rgba(4, 11, 21, 0.98));
}

.hero.hero-shell .hero-chat-video__frame {
  inset: 16px;
}

.scrollytelling {
  padding-top: 10px;
}

.scrollytelling__intro.section-head,
.scrollytelling__intro {
  max-width: 700px;
  margin: 0 auto;
  padding: 22px 0 22px;
  gap: 8px;
}

.scrollytelling__intro.section-head--center::before {
  display: none;
}

.scrollytelling__intro .eyebrow {
  margin-bottom: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(182, 224, 255, 0.82);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.scrollytelling__intro-mark {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(184, 244, 255, 0.86), rgba(184, 244, 255, 0.16));
  opacity: 0.9;
}

.scrollytelling__intro h2 {
  font-size: clamp(1.65rem, 2.3vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.scrollytelling__intro p {
  max-width: 520px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(223, 231, 241, 0.68);
}

.scrollytelling__grid {
  width: min(calc(100% - 32px), var(--grid));
  margin: 0 auto;
  padding-top: 0;
  border-top: 1px solid var(--line);
}

.scrollytelling__sticky {
  position: relative;
}

.scrollytelling__media {
  position: sticky;
  top: 92px;
  min-height: calc(100vh - 122px);
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.04);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  background: #050d18;
}

.scrollytelling__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 52%, rgba(196, 238, 255, 0.18), transparent 18%),
    radial-gradient(circle at 50% 52%, rgba(196, 238, 255, 0.08), transparent 34%);
  pointer-events: none;
  z-index: 2;
}

.scrollytelling__counter {
  display: none;
}

.scrollytelling__overlay {
  display: grid !important;
  visibility: hidden;
  pointer-events: none;
  left: 50%;
  top: 52%;
  bottom: auto;
  width: min(100% - 64px, 840px);
  padding: 0;
  transform: translate(-50%, calc(-50% + 18px));
  text-align: center;
  z-index: 4;
  justify-items: center;
  gap: 22px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.scrollytelling__overlay.is-active {
  visibility: visible;
  pointer-events: auto;
}

.scrollytelling__overlay-index {
  position: relative;
  color: rgba(181, 238, 255, 0.86);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  padding-bottom: 52px;
}

.scrollytelling__overlay-index::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 22px;
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, rgba(184, 244, 255, 0.8), rgba(184, 244, 255, 0.18));
  transform: translateX(-50%);
}

.scrollytelling__overlay h3 {
  max-width: 620px;
  margin: 0 auto;
  font-size: clamp(2.15rem, 3.15vw, 4rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
  text-shadow:
    0 0 24px rgba(198, 240, 255, 0.12),
    0 10px 28px rgba(3, 8, 14, 0.22);
}

.scrollytelling__overlay p {
  display: none;
}

.scrollytelling__media.is-step-1 .scrollytelling__panel--one,
.scrollytelling__media.is-step-2 .scrollytelling__panel--two,
.scrollytelling__media.is-step-3 .scrollytelling__panel--three {
  opacity: 1;
}

.scrollytelling__panel {
  transition:
    opacity 360ms ease,
    transform 700ms ease;
}

.scrollytelling__media.is-step-1 .scrollytelling__panel--one {
  transform: scale(1.01);
}

.scrollytelling__media.is-step-2 .scrollytelling__panel--two {
  transform: scale(1.02);
}

.scrollytelling__media.is-step-3 .scrollytelling__panel--three {
  transform: scale(1.03);
}

.scrollytelling__track {
  margin-top: 0;
}

.story-step-anchor {
  height: 72vh;
}

.story-step-anchor:last-child {
  height: 76vh;
}

.trust-band {
  padding-top: 18px;
  padding-bottom: 28px;
}

.trust-band__inner {
  width: min(calc(100% - 32px), var(--grid));
  padding: 0;
  border: 0;
  background: transparent;
  gap: 16px;
}

.trust-band__label,
.trust-band__logos span {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(208, 221, 236, 0.52);
}

.trust-band__logos {
  gap: 20px;
}

.trust-band__logos span {
  padding: 0;
  border: 0;
  background: transparent;
}

@media (max-width: 1199px) {
  .hero.hero-shell .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px 0 12px;
  }

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

  .hero.hero-shell .hero-copy h1 {
    max-width: 10ch;
  }

  .hero.hero-shell .hero-chat-video {
    min-height: 430px;
  }

  .scrollytelling__media {
    min-height: calc(100vh - 112px);
  }
}

@media (max-width: 767px) {
  .page-shell {
    padding-top: 84px;
  }

  .site-header {
    width: min(calc(100% - 20px), var(--grid));
  }

  .hero.hero-shell .hero-grid {
    width: min(calc(100% - 20px), var(--grid));
    gap: 20px;
    padding: 18px 0 10px;
  }

  .hero.hero-shell .hero-subheadline {
    font-size: 0.98rem;
  }

  .hero.hero-shell .hero-chat-video {
    min-height: 390px;
    border-radius: 28px;
  }

  .scrollytelling {
    padding-top: 16px;
  }

  .scrollytelling__intro.section-head,
  .scrollytelling__intro {
    width: min(calc(100% - 20px), var(--grid));
    padding: 18px 0 18px;
  }

  .scrollytelling__intro-mark {
    height: 30px;
  }

  .scrollytelling__intro h2 {
    font-size: clamp(1.55rem, 7vw, 1.95rem);
  }

  .scrollytelling__grid {
    width: min(calc(100% - 20px), var(--grid));
    padding-top: 6px;
  }

  .scrollytelling__media {
    top: 80px;
    min-height: calc(100vh - 98px);
  }

  .scrollytelling__counter {
    top: 18px;
    left: 18px;
  }

  .scrollytelling__counter span {
    width: 44px;
    height: 44px;
    font-size: 12px;
  }

  .scrollytelling__overlay {
    width: calc(100% - 36px);
    top: 51%;
    bottom: auto;
  }

  .scrollytelling__overlay h3 {
    max-width: 92%;
    font-size: clamp(1.55rem, 6vw, 2.3rem);
  }

  .scrollytelling__overlay-index {
    font-size: 12px;
    padding-bottom: 42px;
  }

  .scrollytelling__overlay-index::after {
    height: 34px;
  }

  .story-step-anchor {
    height: 56vh;
  }

  .story-step-anchor:last-child {
    height: 62vh;
  }
}

/* Passada editorial para o bloco seguinte */

.trust-band {
  padding: 116px 0 36px;
}

.scrollytelling + .trust-band {
  padding-top: 72px !important;
}

.trust-band__inner {
  width: min(calc(100% - 32px), var(--grid));
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  border: 0;
  background: transparent;
}

.trust-band__pill,
.statement-band__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(210, 223, 238, 0.34);
  border-radius: 999px;
  color: rgba(225, 233, 243, 0.78);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-band__pill {
  position: relative;
  z-index: 2;
  margin-bottom: 72px;
}

.trust-band__marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.trust-band__track {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  gap: 46px;
  animation: trust-marquee 68s linear infinite;
  will-change: transform;
}

.trust-band__row {
  display: flex;
  align-items: center;
  gap: clamp(38px, 4vw, 72px);
  flex: 0 0 auto;
  padding-right: 0;
}

.trust-band__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(229, 236, 244, 0.58);
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.68;
}

.trust-band__item i {
  display: none;
}

@keyframes trust-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 17px));
  }
}

.statement-band,
.partner-quote {
  padding: 36px 0 0;
}

.statement-band__inner,
.partner-quote__inner {
  width: min(calc(100% - 32px), var(--grid));
  margin: 0 auto;
  padding: 0 0 18px;
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
  border-top: 0;
}

.statement-band blockquote,
.partner-quote blockquote {
  max-width: 860px;
  margin: 0;
  padding-top: 12px;
  font-size: clamp(2rem, 2.7vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.statement-band__inner p,
.partner-quote__inner p {
  max-width: 460px;
  margin: 0;
  color: rgba(219, 229, 241, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.capabilities {
  padding-top: 34px;
}

.capabilities .section-head {
  max-width: 760px;
  margin: 0 auto 56px;
}

.capabilities__grid {
  width: min(calc(100% - 32px), var(--grid));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 0;
  border-bottom: 0;
}

.capability {
  min-height: 332px;
  padding: 42px 32px 26px;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 18px;
  border-left: 1px solid var(--line);
  background: transparent;
}

.capability:last-child {
  border-right: 1px solid var(--line);
}

.capability__icon {
  width: 74px;
  height: 74px;
  border: 1px solid rgba(213, 225, 239, 0.46);
  border-radius: 24px;
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 40px;
}

.capability__icon span,
.capability__icon::before,
.capability__icon::after {
  content: "";
  position: absolute;
}

.capability__icon--context::before,
.capability__icon--context::after {
  background: rgba(230, 239, 247, 0.82);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.capability__icon--context::before {
  width: 28px;
  height: 1px;
}

.capability__icon--context::after {
  width: 1px;
  height: 28px;
}

.capability__icon--control::before,
.capability__icon--control::after,
.capability__icon--control span::before,
.capability__icon--control span::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(230, 239, 247, 0.82);
}

.capability__icon--control::before {
  top: 18px;
  left: 18px;
  border-left: 1px solid rgba(230, 239, 247, 0.82);
  transform: rotate(-45deg);
}

.capability__icon--control::after {
  top: 18px;
  right: 18px;
  border-right: 1px solid rgba(230, 239, 247, 0.82);
  transform: rotate(45deg);
}

.capability__icon--control span::before {
  bottom: 18px;
  left: 18px;
  border-left: 1px solid rgba(230, 239, 247, 0.82);
  transform: rotate(225deg);
}

.capability__icon--control span::after {
  bottom: 18px;
  right: 18px;
  border-right: 1px solid rgba(230, 239, 247, 0.82);
  transform: rotate(135deg);
}

.capability__icon--conversion::before,
.capability__icon--conversion::after {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(230, 239, 247, 0.82);
  border-radius: 6px;
}

.capability__icon--conversion::before {
  top: 16px;
  left: 16px;
}

.capability__icon--conversion::after {
  top: 16px;
  right: 16px;
}

.capability__icon--conversion span {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(230, 239, 247, 0.82);
  border-radius: 6px;
  bottom: 16px;
  left: 16px;
}

.capability__icon--conversion span::before,
.capability__icon--conversion span::after {
  content: "";
  position: absolute;
  background: rgba(230, 239, 247, 0.82);
  border-radius: 1px;
}

.capability__icon--conversion span::before {
  width: 18px;
  height: 1px;
  left: 26px;
  top: 8px;
}

.capability__icon--conversion span::after {
  width: 1px;
  height: 18px;
  left: 34px;
  top: 0;
}

.capability__icon--flow::before {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(230, 239, 247, 0.82);
  border-radius: 999px;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.capability__icon--flow::after {
  width: 1px;
  height: 24px;
  background: rgba(230, 239, 247, 0.82);
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
}

.capability__icon--flow span {
  width: 14px;
  height: 14px;
  border-right: 1px solid rgba(230, 239, 247, 0.82);
  border-bottom: 1px solid rgba(230, 239, 247, 0.82);
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%) rotate(45deg);
}

.capability h3 {
  max-width: 240px;
  margin: 0;
  font-size: clamp(1.65rem, 2vw, 2.1rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.capability p {
  max-width: 288px;
  margin: 0;
  color: rgba(220, 229, 241, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.architecture {
  padding-top: 92px;
}

.architecture .section-head--split {
  width: min(calc(100% - 32px), var(--grid));
  margin: 0 auto 72px;
  padding-top: 0;
  border-top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 48px;
  align-items: start;
}

.architecture .section-head--split > div,
.architecture .section-head--split > p {
  min-width: 0;
}

.architecture .section-head--split h2 {
  max-width: 620px;
}

.architecture .section-head--split p {
  max-width: 420px;
  margin: 0;
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.architecture__diagram {
  width: min(calc(100% - 32px), var(--grid));
  margin: 0 auto;
  position: relative;
  min-height: 920px;
  padding: 64px 32px 88px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0;
  overflow: hidden;
}

.architecture__diagram-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.02), rgba(5, 10, 18, 0.18)),
    url("./assets/smoke-network-clean.png") center 8% / cover no-repeat;
  opacity: 0.28;
  pointer-events: none;
  animation: ice-breeze-drift 26s ease-in-out infinite alternate;
}

.architecture__trunk {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  min-height: 306px;
}

.architecture__trunk-cloud {
  position: absolute;
  top: 0;
  left: 50%;
  width: 180px;
  height: 120px;
  transform: translateX(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 64' fill='none'%3E%3Cpath d='M34 10c-9.941 0-18 8.059-18 18 0 7.371 4.435 13.709 10.775 16.482A12 12 0 0 0 38 54h12a12 12 0 0 0 11.225-9.518C67.565 41.709 72 35.371 72 28c0-9.941-8.059-18-18-18-3.696 0-7.131 1.115-9.986 3.027A17.915 17.915 0 0 0 34 10Z' stroke='rgba(231,238,245,0.78)' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M34 20c-4.418 0-8 3.582-8 8M62 28c0-4.418-3.582-8-8-8M42 14v36M54 14v36M32 28h32M36 38h24M48 44v8' stroke='rgba(231,238,245,0.68)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 0 18px rgba(229, 237, 245, 0.08));
  opacity: 0.92;
}

.architecture__trunk-line {
  position: absolute;
  top: 132px;
  left: 50%;
  width: 1px;
  height: 180px;
  transform: translateX(-50%);
  background: rgba(213, 222, 233, 0.5);
}

.architecture__branch-line {
  position: absolute;
  left: 50%;
  top: 312px;
  width: min(100%, 980px);
  height: 38px;
  transform: translateX(-50%);
  border-top: 1px solid rgba(213, 222, 233, 0.5);
  border-left: 1px solid rgba(213, 222, 233, 0.5);
  border-right: 1px solid rgba(213, 222, 233, 0.5);
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
}

.architecture__columns {
  position: absolute;
  z-index: 1;
  width: min(100%, 1180px);
  left: 50%;
  top: 416px;
  margin-top: 0;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
}

.architecture__column {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  gap: 10px;
}

.architecture__api-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(214, 224, 236, 0.52);
  border-radius: 8px;
  color: rgba(231, 238, 245, 0.82);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(8, 15, 24, 0.42);
  transform: translateY(-2px);
}

.architecture__api-label i {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(214, 224, 236, 0.72);
  border-radius: 4px;
  position: relative;
}

.architecture__api-label--search i::before,
.architecture__api-label--search i::after,
.architecture__api-label--analyze i::before,
.architecture__api-label--analyze i::after,
.architecture__api-label--embed i::before,
.architecture__api-label--embed i::after {
  content: "";
  position: absolute;
  background: rgba(231, 238, 245, 0.82);
}

.architecture__api-label--search i::before {
  width: 6px;
  height: 1px;
  left: 3px;
  top: 6px;
}

.architecture__api-label--search i::after {
  width: 1px;
  height: 6px;
  left: 6px;
  top: 3px;
}

.architecture__api-label--analyze i::before {
  width: 6px;
  height: 6px;
  left: 3px;
  top: 3px;
  border: 1px solid rgba(231, 238, 245, 0.82);
  background: transparent;
  border-radius: 999px;
}

.architecture__api-label--analyze i::after {
  width: 1px;
  height: 6px;
  left: 6px;
  top: 4px;
  transform: rotate(45deg);
}

.architecture__api-label--embed i::before {
  width: 6px;
  height: 6px;
  left: 3px;
  top: 3px;
  border: 1px solid rgba(231, 238, 245, 0.82);
  background: transparent;
  border-radius: 2px;
}

.architecture__api-label--embed i::after {
  width: 1px;
  height: 6px;
  left: 9px;
  top: 3px;
}

.architecture__column p {
  max-width: 330px;
  margin: 2px 0 0;
  color: rgba(221, 229, 239, 0.82);
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.architecture__mini {
  position: relative;
  width: min(100%, 290px);
  height: 240px;
  margin-top: 10px;
}

.architecture__mini--search span {
  position: absolute;
  display: block;
  height: 28px;
  border: 1px solid rgba(214, 224, 236, 0.56);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.architecture__mini--search span:nth-child(1) {
  width: 118px;
  top: 34px;
  left: 26px;
  transform: rotate(-30deg);
}

.architecture__mini--search span:nth-child(2) {
  width: 106px;
  top: 62px;
  left: 68px;
  transform: rotate(-30deg);
}

.architecture__mini--search span:nth-child(3) {
  width: 126px;
  top: 92px;
  left: 14px;
  transform: rotate(-30deg);
}

.architecture__mini--search span:nth-child(4) {
  width: 148px;
  top: 54px;
  left: 108px;
  transform: rotate(-30deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0%, rgba(244, 248, 253, 0.7) 48%, rgba(215, 226, 240, 0.52) 100%);
  box-shadow: 0 0 28px rgba(218, 229, 241, 0.16);
}

.architecture__mini--search span:nth-child(5) {
  width: 122px;
  top: 116px;
  left: 74px;
  transform: rotate(30deg);
}

.architecture__mini--analyze .architecture__mini-core {
  position: absolute;
  left: 50%;
  top: 34px;
  width: 124px;
  height: 92px;
  transform: translateX(-50%);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(239, 246, 252, 0.84) 52%, rgba(214, 226, 240, 0.62) 100%);
  box-shadow: 0 0 28px rgba(220, 229, 241, 0.18);
}

.architecture__mini--analyze .architecture__mini-core::before,
.architecture__mini--analyze .architecture__mini-core::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  background: rgba(213, 222, 233, 0.56);
  transform: translateX(-50%);
}

.architecture__mini--analyze .architecture__mini-core::before {
  height: 26px;
  top: -26px;
}

.architecture__mini--analyze .architecture__mini-core::after {
  height: 24px;
  bottom: -24px;
}

.architecture__mini-docs {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: 126px;
  height: 42px;
  transform: translateX(-50%);
}

.architecture__mini-docs span {
  position: absolute;
  width: 58px;
  height: 38px;
  border: 1px solid rgba(214, 224, 236, 0.56);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.architecture__mini-docs span:first-child {
  left: 0;
}

.architecture__mini-docs span:last-child {
  right: 0;
}

.architecture__mini-docs span::before,
.architecture__mini-docs span::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1px;
  background: rgba(214, 224, 236, 0.46);
}

.architecture__mini-docs span::before {
  top: 14px;
}

.architecture__mini-docs span::after {
  top: 22px;
}

.architecture__mini--embed span {
  position: absolute;
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  filter: blur(0.4px);
}

.architecture__mini--embed span:nth-child(1) {
  left: 24px;
  top: 92px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.96) 0%, rgba(241,246,251,0.8) 44%, rgba(214,226,240,0.56) 100%);
}

.architecture__mini--embed span:nth-child(2) {
  left: 98px;
  top: 116px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.94) 0%, rgba(238,245,251,0.78) 34%, rgba(214,226,240,0.52) 100%);
}

.architecture__mini--embed span:nth-child(3) {
  left: 182px;
  top: 74px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.94) 0%, rgba(240,247,252,0.76) 34%, rgba(214,226,240,0.48) 100%);
}

.architecture__mini--embed span:nth-child(4) {
  left: 178px;
  top: 174px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.95) 0%, rgba(239,245,251,0.78) 34%, rgba(214,226,240,0.5) 100%);
}

.architecture__mini--embed span:nth-child(5),
.architecture__mini--embed span:nth-child(6) {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(214, 224, 236, 0.66);
  border-radius: 999px;
  background: transparent;
}

.architecture__mini--embed span:nth-child(5) {
  left: 86px;
  top: 62px;
}

.architecture__mini--embed span:nth-child(6) {
  left: 230px;
  top: 116px;
}

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

  .capability:last-child {
    border-right: 0;
  }

  .architecture .section-head--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .architecture .section-head--split p {
    padding-left: 0;
    border-left: 0;
    max-width: 620px;
  }

  .architecture__diagram {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .architecture__trunk {
    min-height: 250px;
    width: 100%;
  }

  .architecture__trunk-cloud {
    width: 420px;
  }

  .architecture__branch-line {
    width: min(100%, 760px);
  }

  .architecture__columns {
    margin-top: 268px;
    gap: 28px;
  }
}

@media (max-width: 767px) {
  .architecture {
    padding-top: 72px;
  }

  .architecture .section-head--split {
    margin-bottom: 48px;
  }

  .architecture__diagram {
    padding: 32px 20px 48px;
  }

  .architecture__trunk {
    min-height: 212px;
  }

  .architecture__trunk-cloud {
    width: 280px;
    height: 82px;
  }

  .architecture__trunk-line {
    top: 92px;
    height: 120px;
  }

  .architecture__branch-line {
    top: 212px;
    width: min(100%, 320px);
  }

  .architecture__columns {
    margin-top: 232px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trust-band {
    padding: 46px 0 54px;
  }

  .trust-band__inner,
  .statement-band__inner,
  .partner-quote__inner,
  .capabilities__grid,
  .architecture .section-head--split,
  .architecture__stage {
    width: min(calc(100% - 20px), var(--grid));
  }

  .statement-band,
  .partner-quote {
    padding-top: 82px;
  }

  .trust-band__row {
    gap: 30px;
  }

  .trust-band__item {
    font-size: clamp(0.9rem, 3.3vw, 1.05rem);
    gap: 10px;
  }

  .statement-band blockquote,
  .partner-quote blockquote {
    padding-top: 2px;
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .capabilities {
    padding-top: 54px;
  }

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

  .capability {
    min-height: 0;
    padding: 26px 22px 12px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .capability:first-child {
    border-top: 0;
  }

  .architecture {
    padding-top: 76px;
  }

  .architecture__visual {
    min-height: 58vh;
  }

  .architecture__flow {
    inset: auto 24px 24px 24px;
  }

  .architecture__node {
    padding: 22px 20px 22px 24px;
  }
}

/* Aproximação estrutural do restante do site ao TwelveLabs */

.industries,
.pricing,
.future-band {
  padding-top: 92px;
}

.industries .section-head--split,
.pricing .section-head {
  width: min(calc(100% - 32px), var(--grid));
  margin: 0 auto 60px;
}

.industries .section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 48px;
  align-items: start;
}

.industries .section-head--split > div,
.industries .section-head--split > p {
  min-width: 0;
}

.industries .section-head--split h2 {
  max-width: 720px;
}

.industries .section-head--split p,
.pricing .section-head p {
  max-width: 420px;
  margin: 0;
  padding-left: 32px;
  border-left: 1px solid var(--line);
  color: rgba(220, 229, 241, 0.7);
}

.industries__grid {
  width: min(calc(100% - 32px), var(--grid));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  border-top: 0;
  border-bottom: 0;
}

.industry {
  min-height: 380px;
  padding: 58px 52px 44px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 26px;
  border: 1px solid rgba(215, 224, 235, 0.12);
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.industry__copy,
.industry__marks,
.industry__link {
  width: 100%;
  max-width: 420px;
  text-align: left;
}

.industry__copy h3 {
  margin: 0;
  font-size: clamp(1.65rem, 1.9vw, 2.2rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.industry__copy p {
  max-width: 360px;
  margin-top: 14px;
  color: rgba(220, 229, 241, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.industry__marks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 14px 24px;
  margin-top: 4px;
}

.industry__marks span {
  color: rgba(228, 236, 244, 0.62);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.industry__link {
  margin-top: 4px;
  color: rgba(235, 241, 247, 0.9);
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.industry__link::after {
  content: "↗";
  font-size: 13px;
  line-height: 1;
  color: rgba(235, 241, 247, 0.72);
}

.partner-quote {
  padding-top: 108px;
}

.partner-quote__inner {
  width: min(calc(100% - 32px), var(--grid));
  margin: 0 auto;
  padding: 0 0 40px;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  justify-items: center;
  text-align: center;
}

.partner-quote__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(213, 224, 237, 0.4);
  border-radius: 10px;
  color: rgba(231, 238, 245, 0.8);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.partner-quote blockquote {
  max-width: 980px;
  padding-top: 24px;
  font-size: clamp(2rem, 2.9vw, 3.2rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.partner-quote__signature {
  width: 1px;
  height: 74px;
  background: rgba(214, 224, 236, 0.34);
  margin-top: 8px;
}

.partner-quote::before,
.partner-quote::after,
.partner-quote__inner::before,
.partner-quote__inner::after {
  display: none !important;
  content: none !important;
}

.pricing__grid,
.pricing .section-head--split,
.partner-quote__inner,
.cta-cover__content {
  position: relative;
  z-index: 1;
}

.pricing {
  padding-top: 108px;
}

.pricing .section-head--split {
  width: min(calc(100% - 32px), var(--grid));
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 48px;
  align-items: start;
}

.pricing .section-head--split > div,
.pricing .section-head--split > p {
  min-width: 0;
}

.pricing .section-head--split h2 {
  max-width: 680px;
}

.pricing .section-head--split p {
  max-width: 420px;
  margin: 0;
  padding-left: 32px;
  border-left: 1px solid var(--line);
  color: rgba(220, 229, 241, 0.7);
}

.pricing__grid {
  width: min(calc(100% - 32px), var(--grid));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing__item {
  min-height: 0;
  padding: 28px 32px 18px;
  border-left: 1px solid var(--line);
  background: transparent;
  gap: 18px;
  display: grid;
  align-content: start;
}

.pricing__topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.pricing__item h3 {
  margin: 8px 0 0;
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.pricing__item p {
  max-width: 320px;
  margin: 0;
  color: rgba(220, 229, 241, 0.72);
  font-size: 15px;
  line-height: 1.5;
}

.pricing__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(214, 224, 236, 0.46);
  border-radius: 14px;
  color: rgba(235, 241, 247, 0.88);
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.pricing__cta::after {
  content: "↗";
  margin-left: 8px;
  font-size: 13px;
  color: rgba(235, 241, 247, 0.72);
}

.pricing__item--featured {
  background:
    linear-gradient(180deg, rgba(122, 224, 255, 0.05), rgba(122, 224, 255, 0.015)),
    transparent;
}

.pricing__specs {
  margin-top: 4px;
  display: grid;
  gap: 0;
}

.pricing__specs div {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing__specs dt {
  color: rgba(192, 207, 223, 0.52);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing__specs dd {
  margin: 0;
  color: rgba(229, 236, 244, 0.86);
  font-size: 15px;
  line-height: 1.4;
}

.future-band {
  padding-top: 118px;
  padding-bottom: 22px;
}

.future-band__inner {
  width: min(calc(100% - 32px), 980px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
  border-top: 0;
  border-bottom: 0;
  padding: 0;
}

.future-band__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(213, 224, 237, 0.4);
  border-radius: 10px;
  color: rgba(231, 238, 245, 0.8);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.future-band__inner h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.future-band__inner p {
  max-width: 640px;
  margin: 0;
  color: rgba(220, 229, 241, 0.72);
  font-size: 18px;
  line-height: 1.55;
}

.future-band__cta {
  margin-top: 10px;
}

.cta-cover {
  width: min(calc(100% - 32px), var(--grid));
  margin: 108px auto 0;
  min-height: 720px;
  border-radius: 56px;
  overflow: hidden;
  position: relative;
  box-shadow:
    inset 0 0 140px rgba(222, 233, 244, 0.14),
    0 0 64px rgba(160, 204, 235, 0.12);
}

.cta-cover__content {
  width: min(calc(100% - 32px), 940px);
  gap: 18px;
}

.cta-cover__content h2 {
  max-width: 820px;
  font-size: clamp(2.5rem, 4vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-align: center;
}

.cta-cover__content p {
  max-width: 760px;
  color: rgba(227, 234, 243, 0.76);
  text-align: center;
}

.cta-cover .hero-actions {
  justify-content: center;
}

.hero-media__image,
.cta-cover__image,
.architecture__diagram-backdrop {
  will-change: transform, background-position;
}

.hero-media__image,
.cta-cover__image {
  animation: ice-breeze-drift 28s ease-in-out infinite alternate;
}

.scrollytelling__panel {
  animation: ice-breeze-panel 26s ease-in-out infinite alternate;
}

@keyframes ice-breeze-drift {
  0% {
    transform: scale(1.03) translate3d(-1.2%, -0.8%, 0);
    background-position: 48% 50%;
  }
  50% {
    transform: scale(1.06) translate3d(1.1%, 0.4%, 0);
    background-position: 51% 48%;
  }
  100% {
    transform: scale(1.04) translate3d(-0.4%, 1.1%, 0);
    background-position: 50% 52%;
  }
}

@keyframes ice-breeze-panel {
  0% {
    background-position-x: 48%;
  }
  100% {
    background-position-x: 52%;
  }
}

.site-footer {
  padding-top: 120px;
}

.site-footer__accent {
  display: none;
}

.site-footer__grid {
  width: min(calc(100% - 32px), var(--grid));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) repeat(3, minmax(0, 1fr)) minmax(220px, 0.88fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.site-footer__brand,
.site-footer__col {
  min-height: 0;
  padding: 34px 28px 42px;
  border-left: 1px solid var(--line);
  background: transparent;
}

.site-footer__brand {
  border-left: 0;
}

.site-footer__brand p {
  max-width: 240px;
  margin: 18px 0 0;
  color: rgba(218, 228, 239, 0.72);
  line-height: 1.55;
}

.site-footer__col h4 {
  margin: 0 0 10px;
  color: rgba(190, 206, 223, 0.58);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__col h4 + a {
  margin-top: 0;
}

.site-footer__col h4:not(:first-child) {
  margin-top: 42px;
}

.site-footer__col a {
  display: block;
  margin-top: 10px;
  color: rgba(235, 241, 247, 0.9);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.45;
}

.site-footer__social {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.site-footer__social a {
  color: rgba(235, 241, 247, 0.88);
  text-decoration: none;
  font-size: 15px;
}

.site-footer__col--legal {
  display: grid;
  align-content: start;
}

@media (max-width: 1199px) {
  .industries .section-head--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .industries .section-head--split p {
    padding-left: 0;
    border-left: 0;
    max-width: 620px;
  }

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

  .pricing__grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .pricing__item,
  .site-footer__col,
  .site-footer__brand {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .pricing__item:first-child,
  .site-footer__brand {
    border-top: 0;
  }

  .future-band__inner {
    grid-template-columns: 1fr;
  }

  .future-band__inner > * {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 18px 0 0;
  }

  .future-band__inner > :first-child {
    border-top: 0;
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .industries,
  .pricing,
  .future-band,
  .partner-quote {
    padding-top: 72px;
  }

  .industries__grid,
  .pricing__grid,
  .partner-quote__inner,
  .future-band__inner,
  .site-footer__grid {
    width: min(calc(100% - 20px), var(--grid));
  }

  .site-footer {
    padding-top: 88px;
  }

  .industry {
    min-height: 0;
    padding: 34px 26px 28px;
    border-radius: 28px;
  }

  .industry__copy,
  .industry__marks {
    width: 100%;
  }

  .industry__copy h3 {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .industry__copy p {
    max-width: none;
  }

  .partner-quote blockquote {
    padding-top: 36px;
    font-size: clamp(1.7rem, 7vw, 2.25rem);
  }

  .pricing__item {
    padding: 24px 20px 20px;
  }

  .pricing__item h3 {
    font-size: 1.7rem;
  }

  .pricing__specs div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .cta-cover {
    margin-top: 76px;
    min-height: 74vh;
  }

  .site-footer__brand,
  .site-footer__col {
    padding: 22px 20px 24px;
  }
}

/* Passada final de tipografia e efeitos inspirada no TwelveLabs */

.section-head .eyebrow,
.pricing__tier,
.capability__index {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.section-head h2,
.statement-band blockquote,
.partner-quote blockquote,
.future-band__inner h2,
.cta-cover__content h2 {
  font-weight: 400;
}

.capabilities .section-head h2,
.architecture .section-head h2,
.industries .section-head h2,
.pricing .section-head h2 {
  font-size: clamp(2rem, 3.1vw, 3.5rem);
  max-width: 12ch;
  margin-inline: auto;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.statement-band blockquote,
.partner-quote blockquote {
  max-width: 860px;
  margin-inline: auto;
  font-size: clamp(2.05rem, 2.75vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.section-head p,
.statement-band__inner p,
.partner-quote__inner p,
.future-band__inner p,
.cta-cover__content p,
.architecture__core span,
.architecture__node span,
.industry__copy p,
.pricing__item p,
.pricing__specs dd {
  font-size: 14px;
  line-height: 1.5;
}

.statement-band__inner p,
.partner-quote__inner p {
  max-width: 460px;
  font-size: 13px;
}

.capability h3,
.industry__copy h3,
.pricing__item h3 {
  font-weight: 400;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.capability h3 {
  font-size: clamp(1.75rem, 2.3vw, 2.45rem);
  line-height: 1.08;
}

.industry__copy h3 {
  font-size: clamp(2rem, 2.9vw, 3.2rem);
  max-width: 11ch;
  line-height: 1.04;
}

.pricing__item h3 {
  font-size: clamp(1.8rem, 2.2vw, 2.35rem);
  max-width: 10ch;
  line-height: 1.08;
}

.architecture__core strong {
  font-weight: 400;
  font-size: clamp(1.9rem, 2.5vw, 2.7rem);
  max-width: 10ch;
  line-height: 1.08;
  text-wrap: balance;
}

.architecture__node strong {
  font-weight: 400;
  font-size: 1.35rem;
  max-width: 12ch;
  line-height: 1.14;
  text-wrap: balance;
}

.hero.hero-shell .hero-copy h1,
.scrollytelling__intro h2,
.scrollytelling__overlay h3,
.future-band__inner h2,
.cta-cover__content h2 {
  text-wrap: balance;
}

.section-head p,
.statement-band__inner p,
.partner-quote__inner p,
.future-band__inner p,
.cta-cover__content p,
.architecture__core span,
.architecture__node span,
.industry__copy p,
.pricing__item p,
.pricing__specs dd,
.capability p {
  max-width: 62ch;
}

.capability,
.pricing__item,
.architecture__node,
.industry__copy,
.future-band__inner > *,
.site-footer__brand,
.site-footer__col {
  min-width: 0;
}

.site-footer__brand .brand__wordmark strong,
.site-footer__brand .brand__wordmark small {
  text-wrap: balance;
}

.industry,
.pricing__item,
.capability,
.architecture__node {
  transition:
    transform 320ms ease,
    opacity 320ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.industry.reveal.is-visible,
.pricing__item.reveal.is-visible,
.capability.reveal.is-visible,
.architecture__node.reveal.is-visible {
  transform: translateY(0);
}

.industry:nth-child(1).reveal,
.pricing__item:nth-child(1).reveal,
.capability:nth-child(1).reveal,
.architecture__node:nth-child(1).reveal {
  transition-delay: 0ms;
}

.industry:nth-child(2).reveal,
.pricing__item:nth-child(2).reveal,
.capability:nth-child(2).reveal,
.architecture__node:nth-child(2).reveal {
  transition-delay: 70ms;
}

.industry:nth-child(3).reveal,
.pricing__item:nth-child(3).reveal,
.capability:nth-child(3).reveal,
.architecture__node:nth-child(3).reveal {
  transition-delay: 140ms;
}

.architecture__node:nth-child(4).reveal {
  transition-delay: 210ms;
}

.architecture__node:nth-child(5).reveal {
  transition-delay: 280ms;
}

.architecture__node:nth-child(6).reveal {
  transition-delay: 350ms;
}

.industry:hover,
.pricing__item:hover,
.capability:hover,
.architecture__node:hover {
  background: rgba(130, 206, 255, 0.02);
}

@media (max-width: 767px) {
  .capabilities .section-head h2,
  .architecture .section-head h2,
  .industries .section-head h2,
  .pricing .section-head h2,
  .statement-band blockquote,
  .partner-quote blockquote,
  .future-band__inner h2,
  .cta-cover__content h2 {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
    line-height: 1.06;
  }

  .industry__copy h3,
  .pricing__item h3,
  .capability h3,
  .architecture__core strong {
    font-size: clamp(1.45rem, 6vw, 1.95rem);
  }

  .architecture__node strong {
    font-size: 1.15rem;
  }

  .capabilities .section-head h2,
  .architecture .section-head h2,
  .industries .section-head h2,
  .pricing .section-head h2,
  .statement-band blockquote,
  .partner-quote blockquote,
  .future-band__inner h2,
  .cta-cover__content h2,
  .hero.hero-shell .hero-copy h1,
  .scrollytelling__intro h2,
  .scrollytelling__overlay h3 {
    max-width: 100%;
  }
}

/* Atmosfera final: brisa fria única + preenchimentos branco-esfumados */
.hero-media__image,
.cta-cover__image,
.architecture__diagram-backdrop,
.scrollytelling__panel {
  background-image: url("./assets/smoke-network-clean.png") !important;
}

.hero-media__image,
.cta-cover__image {
  background-size: cover !important;
  background-position: center center !important;
}

.architecture__diagram-backdrop {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.04), rgba(5, 10, 18, 0.22)),
    url("./assets/smoke-network-clean.png") center 10% / cover no-repeat !important;
  opacity: 0.34;
}

.architecture__diagram-backdrop {
  background: none !important;
  opacity: 0 !important;
  animation: none !important;
}

.scrollytelling__panel {
  background-size: cover !important;
  will-change: transform, background-position;
}

.scrollytelling__panel--one {
  background-position: center 24%;
  animation: ice-breeze-panel-one 24s ease-in-out infinite alternate !important;
}

.scrollytelling__panel--two {
  background-position: center 50%;
  animation: ice-breeze-panel-two 26s ease-in-out infinite alternate !important;
}

.scrollytelling__panel--three {
  background-position: center 76%;
  animation: ice-breeze-panel-three 25s ease-in-out infinite alternate !important;
}

.hero-media__orb {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.52), rgba(241, 247, 253, 0.14) 46%, transparent 74%);
  box-shadow: 0 0 28px rgba(226, 235, 244, 0.12);
}

.architecture__mini--search span,
.architecture__mini-docs span {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(224, 232, 242, 0.52);
}

.architecture__mini--search span:nth-child(4) {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(252, 253, 255, 0.78) 48%, rgba(232, 239, 247, 0.42) 100%);
  box-shadow: 0 0 28px rgba(231, 239, 247, 0.12);
}

.architecture__mini--analyze .architecture__mini-core {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(245, 248, 252, 0.88) 52%, rgba(226, 233, 242, 0.6) 100%);
  box-shadow: 0 0 30px rgba(229, 237, 245, 0.14);
}

.architecture__mini--analyze .architecture__mini-core {
  display: grid;
  place-items: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none'%3E%3Cpath d='M24 18c-6.627 0-12 5.373-12 12 0 4.914 2.955 9.138 7.183 10.986A8.001 8.001 0 0 0 27 48h8a8 8 0 0 0 7.817-7.014C47.045 39.138 50 34.914 50 30c0-6.627-5.373-12-12-12-2.464 0-4.754.743-6.657 2.018A11.943 11.943 0 0 0 24 18Z' stroke='rgba(245,248,252,0.96)' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M24 24c-2.761 0-5 2.239-5 5M39 24c2.761 0 5 2.239 5 5M28 20v24M36 20v24M22 30h20M24 38h16M32 44v6' stroke='rgba(245,248,252,0.96)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 58px 58px;
}

.architecture__mini--embed span {
  filter: blur(1px);
  box-shadow: 0 0 30px rgba(233, 240, 247, 0.1);
}

.architecture__mini--embed span:nth-child(1),
.architecture__mini--embed span:nth-child(2),
.architecture__mini--embed span:nth-child(3),
.architecture__mini--embed span:nth-child(4) {
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.98) 0%, rgba(245, 249, 252, 0.82) 42%, rgba(224, 232, 242, 0.42) 100%);
}

.architecture__mini--embed span:nth-child(5),
.architecture__mini--embed span:nth-child(6) {
  border-color: rgba(228, 236, 245, 0.7);
}

@keyframes ice-breeze-drift {
  0% {
    transform: scale(1.035) translate3d(-1.1%, -0.8%, 0);
    background-position: 48% 49%;
  }
  50% {
    transform: scale(1.06) translate3d(1%, 0.5%, 0);
    background-position: 51% 48%;
  }
  100% {
    transform: scale(1.045) translate3d(-0.5%, 1.05%, 0);
    background-position: 50% 52%;
  }
}

@keyframes ice-breeze-panel {
  0% {
    background-position-x: 48%;
  }
  50% {
    background-position-x: 51%;
  }
  100% {
    background-position-x: 52%;
  }
}

@keyframes ice-breeze-panel-one {
  0% {
    background-position: 44% 20%;
  }
  50% {
    background-position: 54% 24%;
  }
  100% {
    background-position: 48% 29%;
  }
}

@keyframes ice-breeze-panel-two {
  0% {
    background-position: 45% 46%;
  }
  50% {
    background-position: 55% 50%;
  }
  100% {
    background-position: 48% 55%;
  }
}

@keyframes ice-breeze-panel-three {
  0% {
    background-position: 44% 72%;
  }
  50% {
    background-position: 54% 76%;
  }
  100% {
    background-position: 48% 81%;
  }
}

/* Movimento unificado para todas as superfícies com brisa fria */
.hero-media__image,
.scrollytelling__image,
.architecture__visual-image,
.cta-cover__image {
  will-change: transform, background-position;
  animation: ice-breeze-drift 28s ease-in-out infinite alternate !important;
}

.scrollytelling__panel,
.architecture__diagram-backdrop {
  will-change: transform, background-position;
}

.scrollytelling__image,
.architecture__visual-image {
  background-image: url("./assets/smoke-network-clean.png") !important;
  background-size: cover !important;
  background-position: center center !important;
}
