@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/jetbrains-mono-var.woff2") format("woff2");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #101014;
  --ink-soft: #1a1a21;
  --paper: #f6f5f1;
  --white: #ffffff;
  --muted: #67666d;
  --muted-light: #aaa9b0;
  --line: #dcdad3;
  --line-dark: #33333b;
  --violet: #6f3dff;
  --violet-dark: #4d1fd0;
  --violet-soft: #ece5ff;
  --lime: #d9ff57;
  --lime-dark: #b9e737;
  --orange: #ff8b56;
  --max: 1480px;
  --radius: 24px;
  --font-display: "Archivo";
  --font-sans: "DM Sans";
  --font-mono: "JetBrains Mono";
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

section[id] {
  scroll-margin-top: 120px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

ul {
  list-style: none;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.launch-bar {
  position: relative;
  z-index: 40;
  min-height: 38px;
  padding: 7px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.76rem;
}

.launch-pill {
  padding: 3px 7px;
  border-radius: 5px;
  background: var(--ink);
  color: var(--lime);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.launch-bar strong {
  font-weight: 800;
}

.launch-bar > a {
  margin-left: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.site-header {
  position: sticky;
  z-index: 35;
  top: 0;
  border-bottom: 1px solid rgba(16, 16, 20, 0.08);
  background: rgba(246, 245, 241, 0.89);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100%, var(--max));
  height: 76px;
  margin: 0 auto;
  padding: 0 34px;
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
  transition: transform 180ms ease;
}

.brand:hover .brand-mark {
  transform: translateY(-1px) scale(1.035);
}

.brand-name {
  display: flex;
  flex-direction: column;
  font-family: "Archivo", sans-serif;
  line-height: 1.05;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.16em;
  white-space: nowrap;
  font-size: 1.18rem;
  letter-spacing: -0.052em;
}

.brand-wordmark strong {
  font-weight: 830;
}

.brand-wordmark > span {
  font-weight: 610;
}

.brand-name small {
  margin-top: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.135em;
  text-transform: uppercase;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 32px;
  color: #4d4c53;
  font-size: 0.81rem;
  font-weight: 550;
}

.main-nav a,
.login-link {
  transition: color 160ms ease;
}

.main-nav a:hover,
.login-link:hover {
  color: var(--violet);
}

.header-actions {
  margin-left: 36px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.login-link {
  font-size: 0.81rem;
  font-weight: 650;
}

.button {
  min-height: 48px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

/* Efeitos de hover decorativos só onde hover existe de verdade: no toque
   eles grudam depois do primeiro tap (zoom preso, botão levitando). */
@media (hover: hover) {
  .button:hover {
    transform: translateY(-2px);
  }
}

.button-small {
  min-height: 40px;
  padding-inline: 16px;
  border-radius: 8px;
  font-size: 0.76rem;
}

.button-large {
  min-height: 56px;
  padding-inline: 25px;
  font-size: 0.91rem;
}

.button-primary {
  background: var(--violet);
  color: var(--white);
  box-shadow: 0 9px 25px rgba(111, 61, 255, 0.25);
}

.button-primary:hover {
  background: var(--violet-dark);
  box-shadow: 0 13px 30px rgba(111, 61, 255, 0.34);
}

.button-ghost {
  border-color: #c9c6bd;
  background: rgba(255, 255, 255, 0.46);
}

.button-ghost:hover {
  border-color: var(--ink);
  background: var(--white);
}

.button-lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(217, 255, 87, 0.14);
}

.button-lime:hover {
  background: var(--lime-dark);
  box-shadow: 0 12px 28px rgba(217, 255, 87, 0.22);
}

.button-outline-light {
  /* Botão de plano pago não pode ser fantasma: em #44444d sobre card escuro
     o "Escolher Completo" sumia ao lado do Pro. */
  border-color: #8b8b96;
  background: transparent;
  color: var(--white);
}

.button-outline-light:hover {
  border-color: #777781;
  background: #222229;
}

.arrow {
  font-size: 1em;
  font-weight: 500;
}

.play-mini {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.52rem;
  text-indent: 1px;
}

.hero {
  position: relative;
  width: min(100%, var(--max));
  min-height: 790px;
  margin: 0 auto;
  padding: 92px 34px 86px;
  display: grid;
  grid-template-columns: minmax(400px, 0.84fr) minmax(620px, 1.16fr);
  align-items: center;
  gap: clamp(45px, 5vw, 84px);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: 10%;
  left: 12%;
  /* 560px fixos estouravam o layout viewport em qualquer tela com menos de
     636px (0.12·w + 560 > w): no celular a página inteira abria estourada
     para o lado. O teto em vw segura a borda direita do brilho dentro da
     tela em qualquer largura; body{overflow-x:hidden} sozinho não segura. */
  width: min(560px, 76vw);
  height: min(560px, 76vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 61, 255, 0.09), transparent 68%);
  filter: blur(8px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.eyebrow-purple {
  color: var(--violet);
}

.eyebrow-lime {
  color: var(--lime);
}

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 5px var(--violet-soft);
}

.hero h1 {
  max-width: 700px;
  margin-top: 27px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(4rem, 5.35vw, 6rem);
  font-weight: 770;
  line-height: 0.93;
  letter-spacing: -0.072em;
}

.hero h1 span {
  color: var(--violet);
}

.hero-description {
  max-width: 610px;
  margin-top: 31px;
  color: #55545b;
  font-size: 1.12rem;
  line-height: 1.58;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-assurances {
  margin-top: 27px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 19px;
  color: #66656b;
  font-size: 0.73rem;
}

.hero-assurances li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-assurances span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1px solid #c8c5bc;
  border-radius: 50%;
  color: var(--violet);
  font-size: 0.62rem;
  font-weight: 900;
}

.product-demo {
  position: relative;
  z-index: 2;
  width: 100%;
}

.product-demo::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 11% -4% -5% 9%;
  border-radius: 34px;
  background: var(--violet);
  transform: rotate(2deg);
  opacity: 0.14;
}

.demo-window {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid #2c2c34;
  border-radius: 26px;
  background: #15151a;
  color: var(--white);
  box-shadow: 0 35px 80px rgba(19, 14, 39, 0.22);
}

.demo-window::before {
  content: "";
  position: absolute;
  inset: 56px 0 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.085) 0.6px, transparent 0.6px);
  background-size: 6px 6px;
  opacity: 0.24;
  pointer-events: none;
}

.demo-topbar {
  position: relative;
  z-index: 2;
  height: 57px;
  padding: 0 19px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid #2b2b33;
  background: #1a1a20;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.55rem;
  color: #aaaab2;
}

.demo-dots {
  display: flex;
  gap: 6px;
}

.demo-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #45454e;
}

.demo-dots i:first-child {
  background: var(--violet);
}

.demo-status {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
}

.demo-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(217, 255, 87, 0.08);
}

.demo-prompt {
  position: relative;
  z-index: 2;
  width: 68%;
  margin: 23px 23px 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 8px;
}

.demo-prompt p {
  padding: 12px 15px;
  border: 1px solid #35353d;
  border-radius: 13px 13px 3px 13px;
  background: #202027;
  color: #e7e7eb;
  font-size: 0.69rem;
  line-height: 1.48;
}

.avatar {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #36363f;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.45rem;
}

.demo-result {
  position: relative;
  z-index: 2;
  margin: 29px 28px 0;
  display: grid;
  grid-template-columns: minmax(200px, 1fr) 62px minmax(165px, 0.69fr);
  align-items: center;
  gap: 12px;
}

.source-card,
.output-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #32323a;
  border-radius: 16px;
  background: #202026;
}

.source-card figcaption,
.output-card figcaption {
  height: 51px;
  padding: 0 11px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  background: #202026;
}

.source-card figcaption > span,
.output-card figcaption > span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--violet);
  color: var(--white);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.42rem;
}

.source-card figcaption p,
.output-card figcaption p {
  display: flex;
  flex-direction: column;
  font-size: 0.57rem;
  font-weight: 700;
  line-height: 1.2;
}

.source-card figcaption small,
.output-card figcaption small {
  margin-top: 4px;
  color: #82828b;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.38rem;
  font-weight: 500;
}

.source-card figcaption b,
.output-card figcaption b {
  padding: 4px 5px;
  border: 1px solid #3c3c44;
  border-radius: 5px;
  color: #85858d;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.39rem;
}

.source-card picture {
  aspect-ratio: 1.24 / 1;
  overflow: hidden;
}

.source-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.output-card {
  box-shadow: 0 0 0 1px rgba(217, 255, 87, 0.08), 0 18px 36px rgba(0, 0, 0, 0.22);
}

.output-card figcaption > span {
  background: var(--lime);
  color: var(--ink);
}

.output-video {
  position: relative;
  aspect-ratio: 9 / 13.2;
  overflow: hidden;
  background: #09090b;
}

.output-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.output-video::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.58));
  pointer-events: none;
}

.demo-sound {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 10px;
  min-height: 27px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(9, 9, 11, 0.72);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(8px);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.43rem;
}

.demo-sound i,
.sound-button i {
  font-style: normal;
}

.sound-on {
  display: none;
  color: var(--lime);
}

.has-sound .sound-off {
  display: none;
}

.has-sound .sound-on {
  display: inline;
}

.has-sound .demo-sound,
.has-sound .sound-button {
  border-color: var(--lime);
}

.video-format {
  position: absolute;
  z-index: 2;
  right: 11px;
  bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.41rem;
}

.generation-rail {
  min-height: 198px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.generation-rail > span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: var(--violet);
  background-image: url("../assets/site/brand/azflow-mark-flow-06-white.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 25px 25px;
  box-shadow: 0 0 0 8px rgba(111, 61, 255, 0.12);
}

.generation-rail > i {
  width: 1px;
  height: 13px;
  background: #45454d;
}

.generation-rail small {
  color: #8d8d96;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.38rem;
  line-height: 1.3;
}

.generation-rail b {
  color: var(--lime);
  font-size: 1.02rem;
}

.demo-composer {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 19px;
  left: 24px;
  min-height: 75px;
  padding: 11px 14px 9px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #36363e;
  border-radius: 14px;
  background: rgba(29, 29, 35, 0.94);
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.demo-composer p {
  color: #82828b;
  font-size: 0.58rem;
}

.demo-composer div {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #a4a4ad;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.42rem;
}

.demo-composer div span:first-child {
  color: var(--lime);
}

.demo-composer b {
  width: 24px;
  height: 24px;
  margin-left: auto;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--violet);
}

.result-stamp {
  position: absolute;
  z-index: 4;
  right: -20px;
  bottom: 54px;
  min-width: 235px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #d2d0c8;
  border-radius: 13px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 15px 35px rgba(25, 20, 45, 0.17);
}

.result-stamp > span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
  font-weight: 900;
}

.result-stamp p {
  display: flex;
  flex-direction: column;
  font-size: 0.67rem;
}

.result-stamp small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.52rem;
}

.channel-strip {
  min-height: 79px;
  padding: 18px max(28px, calc((100vw - var(--max)) / 2 + 34px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 35px;
  border-block: 1px solid var(--line);
  background: var(--white);
}

.channel-strip > p {
  color: var(--muted);
  font-size: 0.72rem;
}

.channel-strip > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3.4vw, 52px);
  font-family: "Archivo", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.channel-strip > b {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.53rem;
  font-weight: 650;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 135px 34px;
}

.section-intro {
  max-width: 1050px;
}

.section-intro h2,
.examples-header h2,
.pricing-header h2 {
  margin-top: 24px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(3.25rem, 5.2vw, 5.7rem);
  font-weight: 730;
  line-height: 0.96;
  letter-spacing: -0.066em;
}

.section-intro h2 span,
.pricing-header h2 span {
  color: #9b99a1;
}

.section-intro > p:last-child {
  max-width: 650px;
  margin-top: 27px;
  color: var(--muted);
  font-size: 1rem;
}

.result-steps {
  margin-top: 78px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.result-steps article {
  position: relative;
  min-height: 620px;
  padding: 22px 22px 31px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

@media (hover: hover) {
  .result-steps article:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(31, 26, 45, 0.08);
  }
}

.step-count {
  position: absolute;
  z-index: 3;
  top: 34px;
  left: 34px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.56rem;
}

.step-visual {
  min-height: 335px;
  border-radius: 16px;
  background: #f0eee8;
}

.upload-visual {
  position: relative;
  overflow: hidden;
}

.upload-visual picture,
.upload-visual img {
  width: 100%;
  height: 100%;
}

.upload-visual img {
  object-fit: cover;
}

.upload-visual > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.48rem;
  box-shadow: 0 8px 19px rgba(22, 18, 16, 0.13);
}

.upload-visual > span b {
  color: var(--violet);
}

.script-visual {
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background: var(--violet-soft);
}

.script-visual > div {
  padding: 16px 17px;
  border: 1px solid #d9cdf9;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.script-visual span {
  display: block;
  margin-bottom: 8px;
  color: var(--violet);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.46rem;
  font-weight: 700;
}

.script-visual p {
  font-family: "Archivo", sans-serif;
  font-size: 0.92rem;
  font-weight: 630;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.script-visual > i {
  margin-top: 5px;
  color: #6d5e92;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.46rem;
  font-style: normal;
  text-align: center;
}

.delivery-visual {
  padding: 30px 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  background: #18181d;
  color: var(--white);
}

.delivery-thumb {
  position: relative;
  width: 135px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 12px;
}

.delivery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.delivery-thumb > span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.13);
  font-size: 1.1rem;
}

.delivery-visual > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 0.58rem;
}

.delivery-visual > div:last-child small {
  margin-top: 5px;
  color: #8f8e96;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.42rem;
}

.delivery-visual > div:last-child span {
  margin-top: 17px;
  padding: 7px 9px;
  border-radius: 7px;
  background: var(--lime);
  color: var(--ink);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.45rem;
  font-weight: 700;
}

.step-label {
  margin-top: 28px;
  color: var(--violet);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.57rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.result-steps h3 {
  max-width: 370px;
  margin-top: 12px;
  font-family: "Archivo", sans-serif;
  font-size: 1.75rem;
  font-weight: 690;
  line-height: 1.06;
  letter-spacing: -0.048em;
}

.result-steps article > p:last-child {
  max-width: 390px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.82rem;
}

.examples-section {
  padding: 135px max(34px, calc((100vw - var(--max)) / 2 + 34px));
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.examples-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.examples-header h2 {
  max-width: 1020px;
}

.examples-header h2 span {
  color: #777680;
}

.examples-note {
  min-width: 205px;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #96959e;
  font-size: 0.69rem;
}

.examples-note b {
  color: var(--white);
}

.sound-wave {
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 0 0 auto;
  border: 1px solid #3b3b43;
  border-radius: 50%;
}

.sound-wave i {
  width: 2px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime);
}

.sound-wave i:nth-child(2) { height: 15px; }
.sound-wave i:nth-child(3) { height: 11px; }
.sound-wave i:nth-child(4) { height: 6px; }

.video-grid {
  height: 730px;
  margin-top: 75px;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.82fr 1.18fr;
  gap: 12px;
}

.video-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #33333b;
  border-radius: 19px;
  background: #222228;
}

.video-card-2,
.video-card-3 {
  margin-block: 55px;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

@media (hover: hover) {
  .video-card:hover video {
    transform: scale(1.025);
  }
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 35%, rgba(7, 7, 9, 0.82) 100%);
  pointer-events: none;
}

.made-with {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 17px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.46rem;
}

.made-with i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background-color: var(--white);
  background-image: url("../assets/site/brand/azflow-mark-flow-06.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 21px 21px;
  font-style: normal;
}

.sound-button {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  min-height: 31px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(12, 12, 15, 0.7);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(8px);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.48rem;
}

.video-card figcaption {
  position: absolute;
  z-index: 2;
  right: 19px;
  bottom: 21px;
  left: 19px;
}

.video-card figcaption > span {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 5px;
  background: var(--lime);
  color: var(--ink);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.44rem;
  font-weight: 750;
  text-transform: uppercase;
}

.video-card figcaption h3 {
  margin-top: 12px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 2.15rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
}

.video-card figcaption p {
  margin-top: 7px;
  color: #b4b3ba;
  font-size: 0.68rem;
}

.examples-cta {
  margin-top: 35px;
  padding: 25px 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid #34343c;
  border-radius: 15px;
  background: #18181d;
}

.examples-cta p {
  color: #9f9ea6;
  font-size: 0.84rem;
}

.examples-cta strong {
  color: var(--white);
}

.compact-intro {
  max-width: 1120px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.comparison-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
  align-items: end;
  gap: 70px;
}

.comparison-heading-copy {
  padding-bottom: 7px;
}

.comparison-heading-copy > p {
  max-width: 445px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.comparison-legend {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
}

.comparison-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6f6d75;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.5rem;
  text-transform: uppercase;
}

.comparison-legend b {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: "DM Sans", sans-serif;
  font-size: 0.69rem;
}

.legend-yes {
  background: #e8f8c2;
  color: #426300;
}

.legend-no {
  background: #fde8e7;
  color: #b83c37;
}

.comparison-swipe-hint {
  display: none;
}

.comparison-board {
  margin-top: 72px;
  overflow: hidden;
  border: 1px solid #d8d5cd;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(27, 22, 45, 0.09);
}

.comparison-scroll {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-color: #b8afcf #ece9e3;
  scrollbar-width: thin;
}

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

.comparison-scroll::-webkit-scrollbar {
  height: 8px;
}

.comparison-scroll::-webkit-scrollbar-track {
  background: #ece9e3;
}

.comparison-scroll::-webkit-scrollbar-thumb {
  border: 2px solid #ece9e3;
  border-radius: 999px;
  background: #978daf;
}

.comparison-table {
  width: 100%;
  min-width: 1290px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  border-right: 1px solid #ece9e3;
  border-bottom: 1px solid #e8e5df;
  text-align: center;
  vertical-align: middle;
}

.comparison-table tr > *:last-child {
  border-right: 0;
}

.comparison-table tbody tr:last-child > * {
  border-bottom: 0;
}

.comparison-table thead th {
  position: relative;
  height: 182px;
  padding: 47px 15px 24px;
  background: #fbfaf7;
}

.comparison-table thead th:not(:first-child) {
  width: 165px;
}

.comparison-table thead th.is-featured,
.comparison-table tbody td.is-featured {
  border-right-color: #cfc3f8;
  border-left: 1px solid #cfc3f8;
  background: #f3efff;
}

.comparison-table thead th.is-featured {
  background: linear-gradient(180deg, #e7deff 0%, #f3efff 100%);
}

.comparison-feature-heading,
.comparison-feature {
  position: sticky !important;
  left: 0;
  z-index: 3;
  width: 300px;
  min-width: 300px;
  text-align: left !important;
}

.comparison-feature-heading {
  z-index: 5;
  padding: 38px 32px !important;
  background: #17171c !important;
  color: var(--white);
}

.comparison-feature-heading span {
  display: block;
  font-family: "Archivo", sans-serif;
  font-size: 1.5rem;
  font-weight: 720;
  letter-spacing: -0.045em;
}

.comparison-feature-heading small {
  display: block;
  max-width: 180px;
  margin-top: 8px;
  color: #95949d;
  font-size: 0.63rem;
  font-weight: 450;
  line-height: 1.45;
}

.comparison-table thead th > strong {
  display: block;
  margin-top: 12px;
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  font-weight: 720;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.comparison-table thead th > small {
  display: block;
  margin-top: 6px;
  color: #66636b;
  font-size: 0.68rem;
  font-weight: 500;
}

.best-choice {
  position: absolute;
  top: 14px;
  left: 50%;
  min-width: max-content;
  padding: 6px 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--violet);
  color: var(--white);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.43rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.comparison-tool-mark {
  width: 41px;
  height: 41px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid #d8d4cc;
  border-radius: 13px;
  background: var(--white);
  color: #242329;
  font-family: "Archivo", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 5px 14px rgba(21, 19, 29, 0.05);
}

.comparison-tool-mark > i {
  width: 25px;
  height: 25px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.comparison-tool-azflow {
  border-color: var(--violet);
  background: var(--violet);
  color: var(--white);
}

.comparison-tool-azflow > i {
  width: 29px;
  height: 29px;
  background-image: url("../assets/site/brand/azflow-mark-flow-06-white.png");
}

.comparison-tool-chatgpt {
  border-color: #c8d2ce;
  background: #edf4f1;
}

.comparison-tool-chatgpt > i {
  background-image: url("../assets/site/brands/openai.svg");
}

.comparison-tool-gemini {
  border: 0;
  background: linear-gradient(145deg, #e6f4ff, #f0e7ff 55%, #ffe7f3);
}

.comparison-tool-gemini > i {
  background-image: url("../assets/site/brands/gemini.svg");
}


.comparison-tool-midjourney {
  background: #f0f3f7;
}

.comparison-tool-midjourney > i {
  width: 29px;
  height: 29px;
  background-image: url("../assets/site/brands/midjourney.svg");
}

.comparison-tool-runway {
  border-color: #c7ddec;
  background: #eaf7ff;
}

.comparison-tool-runway > i {
  background-image: url("../assets/site/brands/runway.svg");
}

.comparison-feature {
  height: 88px;
  padding: 18px 25px;
  background: var(--white);
  box-shadow: 7px 0 15px rgba(23, 20, 35, 0.025);
}

.comparison-feature strong {
  display: block;
  color: #222127;
  font-family: "Archivo", sans-serif;
  font-size: 0.91rem;
  font-weight: 680;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.comparison-feature small {
  display: block;
  margin-top: 5px;
  color: #66636b;
  font-size: 0.68rem;
  font-weight: 450;
  line-height: 1.35;
}

.comparison-table td {
  height: 88px;
  padding: 13px 8px;
  background: var(--white);
}

.comparison-status {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.comparison-status b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.85rem;
  line-height: 1;
}

.comparison-status small {
  color: #5f5c65;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.63rem;
  font-weight: 650;
  text-transform: uppercase;
}

.comparison-status-yes b {
  background: #e4f6bd;
  color: #3c6100;
}

.is-featured .comparison-status-yes b {
  background: var(--violet);
  color: var(--white);
  box-shadow: 0 7px 16px rgba(111, 61, 255, 0.23);
}

.is-featured .comparison-status small {
  color: var(--violet);
}

.comparison-status-no b {
  background: #fde8e7;
  color: #b83c37;
}

.comparison-status-no small {
  color: #ad5d59;
}

.comparison-disclaimer {
  padding: 14px 25px 16px;
  border-top: 1px solid #e3e0da;
  background: #f5f3ee;
  color: #5f5c65;
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  line-height: 1.55;
  text-align: center;
}

.azflow-complete {
  position: relative;
  min-height: 490px;
  margin-top: 22px;
  padding: 62px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
  align-items: center;
  gap: 80px;
  overflow: hidden;
  border-radius: 22px;
  background: #17171c;
  color: var(--white);
}

.azflow-complete::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 24%;
  width: 570px;
  height: 570px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 61, 255, 0.42), rgba(111, 61, 255, 0) 68%);
  pointer-events: none;
}

.azflow-complete::after {
  content: "AZ";
  position: absolute;
  right: -32px;
  bottom: -90px;
  color: rgba(255, 255, 255, 0.025);
  font-family: "Archivo", sans-serif;
  font-size: 20rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.12em;
  pointer-events: none;
}

.azflow-complete-copy,
.azflow-checklist {
  position: relative;
  z-index: 1;
}

.azflow-complete-copy h3 {
  margin-top: 22px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(2.65rem, 4.15vw, 4.45rem);
  font-weight: 735;
  line-height: 0.98;
  letter-spacing: -0.062em;
}

.azflow-complete-copy h3 span {
  color: #a693ee;
}

.azflow-complete-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 22px;
  color: #aaa9b1;
  font-size: 0.88rem;
  line-height: 1.65;
}

.azflow-complete-copy .button {
  margin-top: 30px;
}

.azflow-checklist {
  padding: 17px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid #34343c;
  border-radius: 17px;
  background: rgba(30, 30, 36, 0.88);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.azflow-checklist li {
  min-height: 67px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #34343c;
  border-radius: 11px;
  background: #25252b;
  color: #dedde3;
  font-size: 0.72rem;
  line-height: 1.3;
}

.azflow-checklist li span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
  color: #1f2b00;
  font-size: 0.7rem;
  font-weight: 850;
}

.pricing-section {
  padding: 135px max(34px, calc((100vw - var(--max)) / 2 + 34px));
  background: #111115;
  color: var(--white);
}

.pricing-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
}

.pricing-header h2 {
  max-width: 1050px;
}

.pricing-header > p {
  max-width: 340px;
  padding-bottom: 8px;
  color: #96959d;
  font-size: 0.82rem;
}

.free-banner {
  margin-top: 65px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid #383840;
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 8%, rgba(111, 61, 255, 0.13), transparent 30%),
    linear-gradient(125deg, #1e1e24 0%, #18181d 68%, #17171c 100%);
  color: var(--white);
  box-shadow: inset 3px 0 0 rgba(217, 255, 87, 0.58), 0 18px 48px rgba(0, 0, 0, 0.18);
}

.free-plan-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.free-plan-price {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.free-plan-price > h3 {
  width: max-content;
  padding: 5px 8px;
  border: 1px solid rgba(217, 255, 87, 0.24);
  border-radius: 6px;
  background: rgba(217, 255, 87, 0.08);
  color: var(--lime);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.free-plan-price strong {
  margin-top: 12px;
  font-family: "Archivo", sans-serif;
  font-size: 3.15rem;
  font-weight: 760;
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.free-plan-price small {
  margin-top: 10px;
  color: #98979f;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.5rem;
}

.button-free {
  min-width: 175px;
  margin-top: 22px;
  border-color: #4b4b54;
  background: #292930;
  color: var(--white);
  box-shadow: none;
}

.button-free:hover {
  border-color: #777680;
  background: #33333a;
  box-shadow: none;
}

.free-plan-benefits {
  margin-top: 29px;
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border-top: 1px solid #393941;
}

.free-plan-benefits li {
  min-height: 185px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid #36363e;
  border-radius: 15px;
  background: #202027;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.free-plan-benefits li > span {
  color: #929199;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.47rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.free-plan-benefits strong {
  margin-top: 12px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
  font-weight: 790;
  line-height: 0.9;
  letter-spacing: -0.065em;
  color: var(--lime);
}

.free-plan-benefits h4 {
  margin-top: 8px;
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  font-weight: 690;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #f0eff2;
}

.free-plan-benefits p {
  max-width: 360px;
  margin-top: auto;
  padding-top: 18px;
  color: #aaa9b1;
  font-size: 0.7rem;
  line-height: 1.45;
}

.free-plan-rule {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #8f8e96;
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
}

.free-plan-rule span {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #62616a;
  border-radius: 50%;
  font-family: "DM Sans", sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
}

.plans-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.plan-card {
  position: relative;
  min-height: 660px;
  padding: 36px 29px 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid #34343c;
  border-radius: 19px;
  background: #18181d;
}

.plan-card.featured {
  border-color: var(--lime);
  background: #202027;
  box-shadow: 0 0 0 1px rgba(217, 255, 87, 0.06), 0 18px 50px rgba(0, 0, 0, 0.25);
}

.popular-label {
  position: absolute;
  top: 0;
  right: 24px;
  padding: 8px 11px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 0 0 8px 8px;
  background: var(--lime);
  color: var(--ink);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.47rem;
  font-weight: 800;
  text-transform: uppercase;
}

.popular-label i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
}

.plan-heading p {
  color: #7e7d86;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.49rem;
  text-transform: uppercase;
}

.plan-heading h3 {
  margin-top: 7px;
  font-family: "Archivo", sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.plan-price {
  margin-top: 30px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(2.75rem, 4vw, 4.3rem);
  font-weight: 720;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.plan-price span {
  margin-left: 7px;
  color: #7d7c85;
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
}

.plan-balance {
  margin-top: 21px;
  color: var(--lime);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.59rem;
}

.plan-rule {
  height: 1px;
  margin: 27px 0 23px;
  background: #33333b;
}

.includes {
  color: #aaa9b1;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.48rem;
  letter-spacing: 0.1em;
}

.plan-card ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #b0afb7;
  font-size: 0.77rem;
}

.plan-card li span {
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 850;
}

.plan-card .button {
  width: 100%;
  margin-top: auto;
}

.secure-note {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #aaa9b1;
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
}

.secure-note span {
  color: var(--lime);
}

.plans-login {
  margin-top: 12px;
  text-align: center;
  color: #aaa9b1;
  font-size: 0.82rem;
}

.plans-login a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(70px, 10vw, 160px);
}

.faq-heading h2 {
  max-width: 550px;
  margin-top: 24px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(3rem, 4.7vw, 5rem);
  font-weight: 720;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.faq-heading > p:last-child {
  max-width: 480px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

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

.faq-list summary {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  font-family: "Archivo", sans-serif;
  font-size: 1.08rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  list-style: none;
}

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

.faq-list summary span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #cbc8c0;
  border-radius: 50%;
  font-family: "DM Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 160ms ease, background 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
  border-color: var(--violet);
  background: var(--violet);
  color: var(--white);
}

.faq-list details p {
  max-width: 690px;
  padding: 0 58px 29px 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.faq-list details p strong {
  color: var(--ink);
}

.final-cta {
  position: relative;
  min-height: 690px;
  padding: 110px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--violet);
  color: var(--white);
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.25) 0.65px, transparent 0.65px);
  background-size: 7px 7px;
  opacity: 0.22;
}

.final-orbit {
  position: absolute;
  width: 530px;
  height: 530px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.025), 0 0 0 160px rgba(255, 255, 255, 0.018);
}

.orbit-one {
  bottom: -340px;
  left: -170px;
}

.orbit-two {
  top: -350px;
  right: -130px;
}

.final-cta > *:not(.final-orbit) {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  max-width: 1100px;
  margin-top: 24px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(4rem, 7vw, 7.5rem);
  font-weight: 760;
  line-height: 0.89;
  letter-spacing: -0.075em;
}

.final-cta h2 span {
  color: var(--lime);
}

.final-cta > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 30px;
  color: #d8cdfc;
  font-size: 1rem;
}

.final-cta .button {
  margin-top: 35px;
}

.final-note {
  margin-top: 16px;
  color: #d6caf9;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.53rem;
}

/* Ponte do desktop para o celular. Discreta de propósito: quem já decidiu
   clica no botão acima — isto é para quem decidiu e quer terminar no
   telefone, não uma segunda chamada competindo com a primeira. */
.qr-ponte {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 27rem;
  margin: 40px auto 0;
  padding: 16px 20px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
}
/* O QR precisa de quiet zone clara para a câmera achar os três alvos: sobre
   o fundo escuro da seção ele simplesmente não seria lido. */
.qr-arte {
  flex: 0 0 auto;
  width: 96px;
  height: 96px;
  padding: 8px;
  border-radius: 12px;
  background: #fff;
}
.qr-ponte p { margin: 0; display: grid; gap: 4px; }
.qr-ponte strong { font-size: 0.95rem; color: #fff; }
.qr-ponte span { font-size: 0.8rem; line-height: 1.45; color: #d6caf9; }

/* Escanear a própria tela é impossível: no toque a ponte não tem função. */
@media (pointer: coarse) {
  .qr-ponte { display: none; }
}

.site-footer {
  min-height: 210px;
  padding: 45px max(34px, calc((100vw - var(--max)) / 2 + 34px));
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  background: #0d0d10;
  color: var(--white);
  border-top: 1px solid #292930;
}

.brand-light .brand-wordmark {
  color: var(--white);
}

.brand-light .brand-name small {
  color: #7e7d85;
}

.site-footer > div > p {
  margin-top: 16px;
  color: #77767f;
  font-size: 0.73rem;
}

.site-footer nav {
  display: flex;
  gap: 28px;
  color: #aaa9b0;
  font-size: 0.76rem;
}

.site-footer nav a:hover {
  color: var(--white);
}

/* Contato de suporte no rodapé: onde todo mundo procura telefone. Mesmo tom
   apagado do parágrafo acima; o link acende no hover como os do nav. */
.footer-contato {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
}
.footer-contato a {
  color: #aaa9b0;
  transition: color 0.15s ease;
}
.footer-contato a:hover {
  color: var(--white);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 21px;
  border-top: 1px solid #26262d;
  color: #9998a0;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.5rem;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1250px) {
  .hero {
    grid-template-columns: minmax(350px, 0.8fr) minmax(560px, 1.2fr);
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 5.1vw, 5rem);
  }

  .demo-result {
    grid-template-columns: minmax(175px, 1fr) 52px minmax(150px, 0.7fr);
  }

  .channel-strip {
    gap: 22px;
  }

  .channel-strip > div {
    gap: 24px;
  }

  .video-grid {
    height: 640px;
  }
}

@media (max-width: 1050px) {
  .main-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    padding-top: 75px;
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-copy {
    max-width: 850px;
  }

  .hero h1 {
    max-width: 830px;
    font-size: clamp(4.5rem, 9vw, 7rem);
  }

  .product-demo {
    width: min(100%, 820px);
    margin: 0 auto;
  }

  .demo-window {
    min-height: 675px;
  }

  .channel-strip {
    grid-template-columns: 1fr auto;
  }

  .channel-strip > p {
    display: none;
  }

  .channel-strip > div {
    justify-content: flex-start;
  }

  .result-steps {
    grid-template-columns: 1fr;
  }

  .result-steps article {
    min-height: 0;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-rows: auto auto 1fr;
    gap: 0 28px;
  }

  .step-visual {
    grid-row: 1 / span 3;
  }

  .step-label {
    align-self: end;
  }

  .video-grid {
    height: 690px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr 1fr;
  }

  .video-card-2,
  .video-card-3 {
    margin: 0;
  }

  .comparison-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }

  .comparison-heading-copy {
    max-width: 650px;
  }

  .azflow-complete {
    padding: 54px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .azflow-complete-copy > p:not(.eyebrow) {
    max-width: 680px;
  }

  .pricing-header,
  .examples-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

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

  .free-plan-top {
    display: flex;
  }

  .free-plan-top .button {
    width: min(100%, 260px);
  }

  .free-plan-benefits {
    grid-template-columns: 1fr;
  }

  .free-plan-benefits li {
    min-height: 175px;
  }

  .plan-card {
    min-height: 0;
  }

  .plan-card ul {
    margin-bottom: 35px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 65px;
  }
}

@media (max-width: 760px) {
  .launch-bar {
    min-height: 36px;
    padding-inline: 13px;
    gap: 8px;
  }

  .launch-bar p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .launch-bar > a {
    display: none;
  }

  .header-inner {
    height: 66px;
    padding-inline: 17px;
  }

  .brand-name {
    line-height: 1;
  }

  .brand-lockup {
    gap: 8px;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
  }

  .brand-wordmark {
    font-size: 1rem;
  }

  .brand-name small {
    margin-top: 3px;
    font-size: 0.34rem;
    letter-spacing: 0.1em;
  }

  .login-link {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .hero {
    min-height: 0;
    /* Dobra mobile precisa mostrar o produto: com o padrão anterior (63px de
       respiro + display de 15vw) a demo só aparecia a ~1.100px e a primeira
       tela era 100% texto. */
    padding: 32px 17px 62px;
    gap: 26px;
  }

  .hero h1 {
    margin-top: 10px;
    font-size: clamp(2.4rem, 10.8vw, 4rem);
  }

  .hero-description {
    margin-top: 14px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-assurances {
    gap: 9px 13px;
  }

  .demo-window {
    min-height: 590px;
    border-radius: 20px;
  }

  .demo-topbar {
    grid-template-columns: 1fr auto;
  }

  .demo-topbar > span:nth-child(2) {
    display: none;
  }

  .demo-prompt {
    width: calc(100% - 32px);
    margin: 17px 16px 0;
  }

  .avatar {
    display: none;
  }

  .demo-result {
    margin: 22px 14px 0;
    grid-template-columns: minmax(0, 1fr) 32px minmax(0, 0.77fr);
    gap: 5px;
  }

  .source-card,
  .output-card {
    border-radius: 12px;
  }

  .source-card figcaption,
  .output-card figcaption {
    height: 43px;
    padding-inline: 7px;
    gap: 5px;
  }

  .source-card figcaption > span,
  .output-card figcaption > span {
    width: 20px;
    height: 20px;
  }

  .source-card figcaption b,
  .output-card figcaption b,
  .source-card figcaption small,
  .output-card figcaption small {
    display: none;
  }

  .source-card figcaption p,
  .output-card figcaption p {
    font-size: 0.48rem;
  }

  .generation-rail > span {
    width: 27px;
    height: 27px;
    box-shadow: 0 0 0 5px rgba(111, 61, 255, 0.12);
    font-size: 0.42rem;
  }

  .generation-rail small,
  .generation-rail > i {
    display: none;
  }

  .demo-composer {
    right: 14px;
    bottom: 15px;
    left: 14px;
  }

  .demo-composer div span:nth-child(2) {
    display: none;
  }

  .result-stamp {
    right: 8px;
    bottom: -21px;
    min-width: 220px;
  }

  .channel-strip {
    padding: 18px 17px;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .channel-strip > div {
    flex-wrap: wrap;
    gap: 9px 18px;
    font-size: 0.75rem;
  }

  .channel-strip > b {
    justify-self: start;
  }

  .section {
    padding: 95px 17px;
  }

  .section-intro h2,
  .examples-header h2,
  .pricing-header h2 {
    font-size: clamp(3rem, 13vw, 4.35rem);
  }

  .result-steps {
    margin-top: 52px;
  }

  .result-steps article {
    padding: 17px 17px 27px;
    display: flex;
  }

  .step-visual {
    width: 100%;
    min-height: 310px;
  }

  .step-count {
    top: 28px;
    left: 28px;
  }

  .result-steps h3 {
    font-size: 1.55rem;
  }

  .examples-section,
  .pricing-section {
    padding: 95px 17px;
  }

  .examples-note {
    padding-bottom: 0;
  }

  .video-grid {
    width: calc(100% + 17px);
    height: auto;
    margin-top: 48px;
    margin-right: -17px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .video-grid::-webkit-scrollbar {
    display: none;
  }

  .video-card {
    width: 78vw;
    height: 126vw;
    max-width: 410px;
    max-height: 650px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .examples-cta {
    padding: 23px;
    align-items: stretch;
    flex-direction: column;
  }

  .examples-cta .button {
    width: 100%;
  }

  .comparison-heading-copy > p {
    font-size: 0.84rem;
  }

  .comparison-legend {
    margin-top: 18px;
  }

  .comparison-swipe-hint {
    margin-top: 39px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #77747c;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.5rem;
    text-transform: uppercase;
  }

  .comparison-swipe-hint span {
    color: var(--violet);
    font-size: 0.82rem;
  }

  .comparison-board {
    margin-top: 12px;
    border-radius: 17px;
  }

  .comparison-table {
    min-width: 1150px;
  }

  .comparison-feature-heading,
  .comparison-feature {
    /* 205px deixava só ~81px úteis de comparação num aparelho de 320px:
       a coluna do AZ Flow e a do concorrente nunca apareciam juntas. */
    width: 160px;
    min-width: 160px;
  }

  .comparison-feature-heading {
    padding: 28px 20px !important;
  }

  .comparison-feature {
    padding: 15px 18px;
  }

  .comparison-feature strong {
    font-size: 0.82rem;
  }

  .comparison-feature small {
    font-size: 0.51rem;
  }

  .comparison-disclaimer {
    padding-inline: 18px;
    text-align: left;
  }

  .azflow-complete {
    min-height: 0;
    margin-top: 15px;
    padding: 39px 25px 27px;
    gap: 35px;
    border-radius: 17px;
  }

  .azflow-complete-copy h3 {
    font-size: clamp(2.55rem, 12vw, 3.7rem);
  }

  .azflow-complete-copy .button {
    width: 100%;
  }

  .azflow-checklist {
    padding: 10px;
    gap: 6px;
  }

  .azflow-checklist li {
    min-height: 62px;
    padding: 9px;
    font-size: 0.64rem;
  }

  .free-banner {
    margin-top: 48px;
    padding: 20px;
  }

  .free-plan-top {
    display: flex;
  }

  .free-plan-price {
    padding: 0;
    border: 0;
  }

  .free-plan-price strong {
    font-size: 2.35rem;
  }

  .free-plan-top .button {
    width: 100%;
  }

  .free-plan-benefits {
    margin-top: 22px;
    padding-top: 18px;
  }

  .free-plan-benefits li {
    min-height: 128px;
    padding: 14px;
  }

  .free-plan-benefits strong {
    font-size: 1.8rem;
  }

  .free-plan-rule {
    align-items: flex-start;
    line-height: 1.45;
  }

  .plan-card {
    padding: 32px 23px 24px;
  }

  .faq-section {
    gap: 48px;
  }

  .faq-heading h2 {
    font-size: clamp(3rem, 13vw, 4.25rem);
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 0.98rem;
  }

  .faq-list details p {
    padding-right: 15px;
  }

  .final-cta {
    min-height: 630px;
    padding: 95px 17px 125px;
  }

  .final-cta h2 {
    font-size: clamp(3.6rem, 15vw, 5rem);
  }

  .final-cta .button {
    width: 100%;
    max-width: 410px;
  }

  .site-footer {
    padding: 43px 17px 115px;
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 15px 23px;
  }

  .copyright {
    grid-column: 1;
  }

  .mobile-cta {
    position: fixed;
    z-index: 50;
    right: 12px;
    bottom: 11px;
    left: 12px;
    min-height: 64px;
    padding: 10px 12px 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 15px;
    background: rgba(16, 16, 20, 0.94);
    color: var(--white);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(13px);
  }

  .mobile-cta > span {
    display: flex;
    flex-direction: column;
    font-size: 0.83rem;
  }

  .mobile-cta small {
    margin-top: 2px;
    color: var(--lime);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.48rem;
  }

  .mobile-cta > .arrow {
    width: 41px;
    height: 41px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--lime);
    color: var(--ink);
  }
}

@media (max-width: 430px) {
  .azflow-checklist {
    grid-template-columns: 1fr;
  }

  .azflow-checklist li {
    min-height: 55px;
  }

  .header-actions .button {
    min-height: 37px;
    padding-inline: 12px;
    font-size: 0.69rem;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15.5vw, 4.15rem);
  }

  .hero-assurances li:last-child {
    width: 100%;
  }

  .demo-window {
    min-height: 535px;
  }

  .demo-prompt p {
    font-size: 0.57rem;
  }

  .source-card picture {
    aspect-ratio: 1 / 1;
  }

  .demo-composer {
    min-height: 67px;
  }

  .demo-composer div {
    gap: 10px;
  }

  .result-stamp {
    min-width: 205px;
  }

  .step-visual {
    min-height: 280px;
  }

  .delivery-thumb {
    width: 112px;
  }

}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
