:root {
  color-scheme: light;
  --ink: #11111f;
  --muted: #5f6175;
  --line: #dedff0;
  --paper: #ffffff;
  --soft: #f2f4ff;
  --lavender: #8b7cff;
  --violet: #6637da;
  --blue: #2477d9;
  --cyan: #37d8d7;
  --mint: #99f1dc;
  --rose: #ff4f84;
  --shadow: 0 22px 70px rgba(65, 53, 140, 0.18);
  --inner: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7f8ff 0%, #ffffff 42%, #eefaff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--ink);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 6px;
}

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

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

.site-header {
  position: sticky;
  top: 16px;
  z-index: 15;
  width: var(--inner);
  min-height: 70px;
  margin: 16px auto 0;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(222, 223, 240, 0.88);
  border-radius: 8px;
  box-shadow: 0 14px 44px rgba(43, 45, 85, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 60px rgba(43, 45, 85, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 4px 10px 4px 4px;
  font-weight: 900;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.brand-mark,
.tiny-icon {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(222, 223, 240, 0.9);
}

.brand-mark img,
.tiny-icon img {
  width: 76px;
  height: 76px;
  max-width: none;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 6px;
  color: #24253b;
  font-size: 0.95rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #eff1ff;
  color: var(--violet);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  /* flex so the two lines stack cleanly */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span[aria-hidden="true"] {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 200ms ease;
}

/* X: gap=5px → lines are 7px apart center-to-center → each moves 3.5px */
.nav-toggle[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-of-type(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  width: var(--inner);
  min-height: 86svh;
  margin: 0 auto;
  padding: 88px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 42px;
}

.hero-tiles {
  position: absolute;
  inset: 28px -42px auto;
  height: 460px;
  pointer-events: none;
  opacity: 0.78;
}

.hero-tiles span {
  position: absolute;
  width: 70px;
  height: 52px;
  background: #dfe6ff;
  border: 1px solid rgba(113, 131, 205, 0.15);
}

.hero-tiles span:nth-child(1) {
  left: 5%;
  top: 20px;
}

.hero-tiles span:nth-child(2) {
  left: 22%;
  top: 82px;
}

.hero-tiles span:nth-child(3) {
  right: 7%;
  top: 46px;
}

.hero-tiles span:nth-child(4) {
  right: 22%;
  top: 140px;
}

.hero-tiles span:nth-child(5) {
  left: 8%;
  top: 268px;
}

.hero-tiles span:nth-child(6) {
  right: 1%;
  top: 268px;
}

.hero-copy,
.hero-stage {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--violet);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  color: #6f61f5;
  font-size: 4.9rem;
  line-height: 0.92;
  font-weight: 950;
}

h2 {
  margin-bottom: 16px;
  font-size: 3rem;
  line-height: 1;
  font-weight: 930;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.15;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.09rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
}

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

.button-primary {
  background: var(--violet);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(102, 55, 218, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #542cc4;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
  color: var(--ink);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin: 0;
}

.hero-proof div {
  min-height: 88px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-proof dt {
  margin-bottom: 4px;
  font-size: 1.35rem;
  font-weight: 950;
}

.hero-proof dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-stage {
  min-height: 580px;
  display: grid;
  place-items: center;
}

.domain-pill {
  position: absolute;
  top: 22px;
  right: 42px;
  z-index: 4;
  display: flex;
  align-items: center;
  height: 64px;
  color: var(--violet);
  font-weight: 900;
  filter: drop-shadow(0 16px 28px rgba(45, 37, 130, 0.15));
}

.domain-pill span,
.domain-pill strong {
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.domain-pill span {
  background: #eef0ff;
  border-radius: 8px 0 0 8px;
}

.domain-pill strong {
  min-width: 96px;
  background: var(--violet);
  color: #ffffff;
  border-radius: 8px;
}

.browser-window {
  position: relative;
  width: min(100%, 720px);
  min-height: 420px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(194, 198, 232, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.browser-window::before {
  content: "";
  position: absolute;
  inset: 54px 0 0;
  background:
    linear-gradient(90deg, rgba(143, 124, 255, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(143, 124, 255, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 86%);
}

.browser-top {
  position: relative;
  z-index: 1;
  height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(222, 223, 240, 0.85);
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cfd4f6;
}

.browser-top span:nth-child(2) {
  background: var(--mint);
}

.browser-top span:nth-child(3) {
  background: var(--rose);
}

.browser-top p {
  margin: 0 0 0 auto;
  color: #8c8fa9;
  font-size: 0.85rem;
  font-weight: 800;
}

.browser-body {
  position: relative;
  z-index: 1;
  min-height: 366px;
  padding: 38px 44px;
}

.mini-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  color: #22223c;
  font-size: 0.78rem;
  font-weight: 900;
}

.mock-title {
  display: grid;
  gap: 0;
  max-width: 340px;
  color: #8174ff;
  font-size: 4.25rem;
  line-height: 0.78;
  font-weight: 950;
}

.mock-device {
  position: absolute;
  right: 42px;
  bottom: 38px;
  width: 230px;
  min-height: 280px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(25, 120, 220, 0.86), rgba(52, 219, 215, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  box-shadow: 0 30px 48px rgba(36, 119, 217, 0.25);
}

.device-bar {
  height: 48px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.device-grid span {
  min-height: 80px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.34);
}

.float-card {
  position: absolute;
  z-index: 5;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(222, 223, 240, 0.86);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(52, 50, 111, 0.16);
  backdrop-filter: blur(18px);
}

.float-card-left {
  left: 0;
  bottom: 74px;
  min-width: 250px;
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
}

.float-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.float-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.05rem;
}

.float-card-right {
  right: 0;
  bottom: 24px;
  width: 290px;
  min-height: 154px;
  padding: 22px;
}

.float-card-right strong {
  display: inline-block;
  margin-top: 14px;
  font-size: 2.3rem;
}

.float-card-right span {
  margin-left: 8px;
  color: #00a676;
  font-weight: 950;
}

.float-card-right svg {
  position: absolute;
  right: 18px;
  top: 28px;
  width: 120px;
  height: 58px;
  color: var(--violet);
}

.spark-button {
  position: absolute;
  right: 22px;
  bottom: 54px;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 8px;
  background: var(--violet);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(102, 55, 218, 0.32);
}

.spark-button svg {
  width: 34px;
  height: 34px;
}

.service-band,
.showcase-band {
  padding: 90px 0;
}

.section-heading {
  width: var(--inner);
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading-left {
  width: auto;
  margin: 0;
  text-align: left;
}

.service-grid,
.showcase-grid {
  width: var(--inner);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.showcase-item {
  min-height: 290px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(45, 46, 92, 0.08);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  border-radius: 8px;
  color: var(--violet);
  background: #eff0ff;
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.service-card p,
.showcase-item p,
.process-list p {
  color: var(--muted);
}

.process-band {
  padding: 100px 0;
  background: #10101f;
  color: #ffffff;
}

.process-layout {
  width: var(--inner);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 70px;
  align-items: start;
}

.process-band .eyebrow {
  color: var(--cyan);
}

.process-band .section-heading p:not(.eyebrow) {
  color: #b8bbd2;
}

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

.process-list li {
  min-height: 118px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.process-list span {
  color: var(--cyan);
  font-size: 1.25rem;
  font-weight: 950;
}

.process-list h3 {
  margin-bottom: 8px;
}

.process-list p {
  margin-bottom: 0;
  color: #b8bbd2;
}

.showcase-grid {
  grid-template-columns: 1.25fr 0.88fr 0.88fr;
}

.showcase-item {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.showcase-featured {
  background: #f4f6ff;
}

.showcase-screen {
  min-height: 210px;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  padding: 16px;
  background: #151629;
  border-radius: 8px;
}

.screen-sidebar {
  border-radius: 8px;
  background:
    linear-gradient(180deg, var(--violet), var(--blue));
}

.screen-main {
  display: grid;
  grid-template-rows: 1.1fr 0.7fr 0.9fr;
  gap: 12px;
}

.screen-main span,
.showcase-code span {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.screen-main span:first-child {
  background: rgba(55, 216, 215, 0.7);
}

.showcase-metric {
  margin-bottom: auto;
}

.showcase-metric span {
  color: var(--violet);
  font-size: 3rem;
  font-weight: 950;
}

.showcase-metric p {
  font-weight: 900;
}

.showcase-code {
  min-height: 152px;
  margin-bottom: auto;
  display: grid;
  gap: 12px;
}

.showcase-code span {
  background: #e8ecff;
}

.showcase-code span:nth-child(1) {
  width: 70%;
  background: #0f1020;
}

.showcase-code span:nth-child(2) {
  width: 92%;
  background: var(--cyan);
}

.showcase-code span:nth-child(3) {
  width: 62%;
  background: var(--lavender);
}

.showcase-code span:nth-child(4) {
  width: 84%;
}

.contact-band {
  padding: 100px 0;
  background:
    linear-gradient(135deg, #f4f6ff 0%, #ffffff 54%, #ebfbfb 100%);
}

.contact-layout {
  width: var(--inner);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: start;
}

.contact-copy h2 {
  max-width: 620px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #2a2b43;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d7d9ec;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfcff;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(102, 55, 218, 0.12);
}

.contact-form .button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--violet);
  font-weight: 900;
}

.site-footer {
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 46px max(20px, calc((100% - 1180px) / 2));
  background: #080912;
  color: #ffffff;
}

.site-footer img {
  width: 210px;
  max-width: 100%;
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 440px;
  margin: 0;
  color: #b8bbd2;
}

.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-weight: 900;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
  }

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

  .hero-stage {
    min-height: 540px;
  }

  .process-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --inner: min(100% - 28px, 1180px);
  }

  .site-header {
    top: 10px;
    min-height: 64px;
    margin-top: 10px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 84px;
    display: grid;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(32, 34, 68, 0.18);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 50px;
  }

  .hero {
    padding: 58px 0 56px;
    gap: 32px;
  }

  .hero-tiles {
    inset: 18px -14px auto;
    height: 340px;
  }

  .hero-tiles span {
    width: 54px;
    height: 42px;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.35rem;
  }

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

  .hero-proof div {
    min-height: 78px;
  }

  .hero-stage {
    min-height: 500px;
    overflow: hidden;
  }

  .domain-pill {
    top: 0;
    right: 8px;
    height: 54px;
  }

  .domain-pill span,
  .domain-pill strong {
    height: 54px;
    padding: 0 16px;
  }

  .domain-pill strong {
    min-width: 78px;
  }

  .browser-window {
    min-height: 390px;
  }

  .browser-body {
    min-height: 336px;
    padding: 32px 22px;
  }

  .mini-nav {
    gap: 14px;
    font-size: 0.7rem;
  }

  .mock-title {
    font-size: 3.05rem;
  }

  .mock-device {
    right: 18px;
    bottom: 30px;
    width: 158px;
    min-height: 220px;
  }

  .device-grid span {
    min-height: 58px;
  }

  .float-card-left {
    left: 8px;
    bottom: 38px;
    min-width: 210px;
  }

  .float-card-right {
    right: 8px;
    bottom: 10px;
    width: 230px;
    min-height: 134px;
  }

  .float-card-right strong {
    font-size: 1.75rem;
  }

  .float-card-right svg {
    width: 92px;
  }

  .spark-button {
    display: none;
  }

  .service-band,
  .showcase-band,
  .process-band,
  .contact-band {
    padding: 68px 0;
  }

  .service-card,
  .showcase-item,
  .contact-form {
    padding: 22px;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    gap: 30px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .brand-word {
    font-size: 0.98rem;
  }

  .browser-window {
    min-height: 360px;
  }

  .mock-device {
    opacity: 0.9;
    width: 136px;
  }

  .float-card-left {
    bottom: 12px;
    min-width: 184px;
    min-height: 96px;
  }

  .float-card-right {
    display: none;
  }
}

/* Stronger Xoryn direction */
:root {
  --ink: #090a14;
  --muted: #575b70;
  --line: #d8dcf1;
  --soft: #f3f5ff;
  --violet: #6235dc;
  --deep-violet: #2b176d;
  --blue: #126de2;
  --cyan: #16d7d4;
  --lime: #b7f261;
  --rose: #ff3f88;
  --shadow: 0 24px 80px rgba(20, 17, 55, 0.18);
  --display: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  --body: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
}

body {
  background:
    linear-gradient(90deg, rgba(20, 109, 226, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(98, 53, 220, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #fafbff 0%, #f6f7ff 30%, #ffffff 62%, #effdff 100%);
  background-size: 48px 48px, 48px 48px, auto;
  font-family: var(--body);
}

h1,
h2,
h3,
.brand,
.button,
.eyebrow,
.site-nav a {
  font-family: var(--display);
}

.site-header {
  min-height: 76px;
  padding: 12px 16px;
  background:
    linear-gradient(rgba(255,255,255,0.94), rgba(255,255,255,0.94)) padding-box,
    linear-gradient(135deg, rgba(98,53,220,0.35), rgba(22,215,212,0.25)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 2px 0 rgba(98,53,220,0.07), 0 20px 60px rgba(20,17,55,0.11);
}

.brand {
  gap: 12px;
  font-size: 1.16rem;
}

.brand-word {
  color: var(--ink);
}

.brand-mark,
.tiny-icon {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--violet), var(--cyan)) border-box;
  border: 1px solid transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.86);
}

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

.tiny-icon {
  width: 48px;
  height: 48px;
}

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

.tiny-icon img {
  width: 32px;
  height: auto;
}

.site-nav a {
  color: #171827;
  font-weight: 700;
}

.hero {
  min-height: calc(100svh - 128px);
  grid-template-columns: minmax(0, 0.94fr) minmax(560px, 1.06fr);
  gap: 54px;
  padding: 78px 0 42px;
}

.hero-brand-ghost {
  position: absolute;
  left: -12px;
  top: 18px;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(98, 53, 220, 0.18);
  font-family: var(--display);
  font-size: 10.5rem;
  font-weight: 700;
  line-height: 0.8;
  text-transform: uppercase;
  pointer-events: none;
}

.hero-tiles span {
  background: rgba(221, 227, 255, 0.92);
  box-shadow: 0 12px 0 rgba(255, 255, 255, 0.75);
}

.eyebrow {
  color: var(--violet);
  font-size: 0.9rem;
  font-weight: 700;
}

h1 {
  max-width: none;
  margin-bottom: 12px;
  background: linear-gradient(92deg, #1a132f 0%, var(--violet) 30%, var(--blue) 60%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 4.2rem;
  line-height: 0.88;
  font-weight: 700;
}

.hero-statement {
  max-width: 650px;
  margin-bottom: 18px;
  color: #11111f;
  font-family: var(--display);
  font-size: 2.28rem;
  line-height: 1;
  font-weight: 700;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 22px;
  color: #484d63;
  font-size: 1.06rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-tags span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(98, 53, 220, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.75);
  color: #282a3c;
  font-size: 0.86rem;
  font-weight: 800;
}

.button {
  min-height: 54px;
  padding: 0 20px;
  font-weight: 700;
}

.button-primary {
  background:
    linear-gradient(135deg, var(--violet), #4b22bf 56%, var(--blue));
  box-shadow: 0 18px 42px rgba(98, 53, 220, 0.34);
}

.button-secondary {
  background: #ffffff;
  color: #10111f;
  border-color: rgba(9, 10, 20, 0.14);
  box-shadow: 0 12px 30px rgba(20, 17, 55, 0.06);
}

.hero-proof {
  max-width: 620px;
}

.hero-proof div {
  min-height: 96px;
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(9, 10, 20, 0.12);
  box-shadow: 0 16px 42px rgba(20, 17, 55, 0.07);
}

.hero-proof dt {
  font-family: var(--display);
  font-size: 1.72rem;
}

.hero-stage {
  min-height: 480px;
  isolation: isolate;
  margin-top: -20px;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 52px 18px 26px;
  z-index: -1;
  border: 1px solid rgba(98, 53, 220, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(98, 53, 220, 0.1), transparent 32%),
    linear-gradient(315deg, rgba(22, 215, 212, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.48);
  transform: rotate(-2deg);
}

.hero-stage::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 92px;
  z-index: 0;
  width: 250px;
  height: 250px;
  background: url("assets/logo-mark-cropped.png") center / contain no-repeat;
  opacity: 0.18;
  filter: saturate(1.3);
  pointer-events: none;
}

.domain-pill {
  top: 12px;
  right: 18px;
  z-index: 5;
}

.domain-pill span {
  background: #eef1ff;
}

.domain-pill strong {
  background: linear-gradient(135deg, var(--violet), #4a22bf);
}

.browser-window {
  z-index: 2;
  width: min(100%, 760px);
  min-height: 455px;
  border-color: rgba(9, 10, 20, 0.14);
  box-shadow: 0 32px 90px rgba(20, 17, 55, 0.2);
}

.browser-window::before {
  background:
    linear-gradient(90deg, rgba(98, 53, 220, 0.13) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18, 109, 226, 0.11) 1px, transparent 1px);
}

.browser-body {
  min-height: 400px;
}

.mini-nav {
  color: #11111f;
  font-family: var(--display);
  gap: 16px;
  font-size: 0.68rem;
  font-weight: 700;
}

.mini-nav span:first-child {
  max-width: 136px;
}

.mock-title {
  max-width: 380px;
  background: linear-gradient(90deg, var(--violet), #7c6dff 46%, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--display);
  font-size: 4.85rem;
  font-weight: 700;
}

.mock-device {
  width: 246px;
  min-height: 306px;
  background:
    linear-gradient(145deg, rgba(9, 10, 20, 0.94), rgba(43, 23, 109, 0.94)),
    linear-gradient(145deg, rgba(18, 109, 226, 0.9), rgba(22, 215, 212, 0.9));
  color: #ffffff;
}

.mock-device strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 0.82rem;
}

.device-bar {
  background: linear-gradient(90deg, var(--cyan), var(--lime));
}

.device-grid span {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.float-card {
  border-color: rgba(9, 10, 20, 0.12);
  box-shadow: 0 22px 60px rgba(20, 17, 55, 0.16);
}

.float-card strong {
  font-family: var(--display);
  font-weight: 700;
}

.float-card-left {
  left: 18px;
  bottom: 70px;
}

.float-card-right {
  right: 0;
  bottom: 58px;
}

.spark-button {
  right: 34px;
  bottom: 86px;
  width: 72px;
  height: 72px;
  background:
    linear-gradient(135deg, rgba(22, 215, 212, 0.94), rgba(98, 53, 220, 0.95) 58%, rgba(18, 109, 226, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: 0 18px 42px rgba(20, 17, 55, 0.2);
}

.spark-button svg {
  width: 32px;
  height: 32px;
}

.manifesto-band {
  overflow: hidden;
  padding: 0;
  background: linear-gradient(135deg, #0d0e1f 0%, #111225 100%);
  color: #ffffff;
  border-top: 1px solid rgba(98, 53, 220, 0.2);
  border-bottom: 1px solid rgba(22, 215, 212, 0.12);
}

.manifesto-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 60px;
  animation: marquee 28s linear infinite;
}

.manifesto-track span {
  flex: 0 0 auto;
  min-height: auto;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0 28px;
  border: none;
  border-radius: 0;
  background: none;
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.manifesto-track span::after {
  content: "·";
  margin-left: 28px;
  font-size: 1.2rem;
  opacity: 0.28;
  font-weight: 400;
}

h2 {
  color: var(--ink);
  font-family: var(--display);
  font-size: 3.35rem;
  font-weight: 700;
}

.section-heading {
  max-width: 900px;
}

.service-grid {
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
  border-color: rgba(9, 10, 20, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--violet), var(--blue), var(--cyan));
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(98, 53, 220, 0.28);
  box-shadow: 0 30px 70px rgba(20, 17, 55, 0.13);
}

.service-card:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(9, 10, 20, 0.97), rgba(43, 23, 109, 0.96));
  color: #ffffff;
}

.service-card:nth-child(2) p {
  color: #c8cbe1;
}

.service-number {
  position: absolute;
  right: 24px;
  top: 22px;
  color: rgba(98, 53, 220, 0.28);
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.service-card:nth-child(2) .service-number {
  color: rgba(255, 255, 255, 0.18);
}

.service-icon {
  color: #ffffff;
  background:
    linear-gradient(135deg, var(--violet), var(--blue));
  box-shadow: 0 16px 34px rgba(98, 53, 220, 0.24);
}

.service-card:nth-child(2) .service-icon {
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  color: #090a14;
}

.process-band {
  background:
    linear-gradient(135deg, #090a14 0%, #121022 58%, #0a2534 100%);
}

.process-band h2 {
  color: #ffffff;
}

.process-list li {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.showcase-item {
  border-color: rgba(9, 10, 20, 0.12);
  box-shadow: 0 22px 58px rgba(20, 17, 55, 0.09);
  gap: 18px;
  justify-content: flex-start;
  min-height: 420px;
}

.showcase-screen,
.showcase-code,
.showcase-metrics {
  margin-bottom: 0;
}

.showcase-featured {
  background:
    linear-gradient(145deg, #eef2ff, #ffffff 56%, #ebffff);
}

.contact-band {
  background:
    linear-gradient(135deg, #ffffff 0%, #f4f6ff 48%, #eaffff 100%);
}

.contact-form {
  border-color: rgba(9, 10, 20, 0.12);
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 62px;
  }

  .hero-brand-ghost {
    font-size: 7rem;
  }

  h1 {
    font-size: 3.6rem;
  }

  .hero-stage {
    min-height: 560px;
    margin-top: 0;
  }

  /* manifesto-track is now flex marquee, no grid override needed */
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    padding: 10px;
  }

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

  .brand-mark img {
    width: 31px;
  }

  .hero {
    min-height: auto;
    padding: 42px 0 34px;
    gap: 28px;
  }

  .hero-brand-ghost {
    top: 36px;
    font-size: 4.8rem;
  }

  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-statement {
    font-size: 1.4rem;
  }

  .hero-tags {
    margin-bottom: 18px;
  }

  .hero-stage {
    min-height: 500px;
    overflow: visible;
  }

  .hero-stage::before {
    inset: 48px 8px 16px;
  }

  .hero-stage::after {
    width: 160px;
    height: 160px;
    top: 74px;
    right: -18px;
  }

  .mock-title {
    font-size: 3.15rem;
  }

  .mock-device {
    width: 168px;
    min-height: 236px;
  }

  .browser-window {
    width: 100%;
    min-height: 360px;
  }

  .browser-body {
    padding: 28px 20px;
    min-height: 306px;
  }

  .domain-pill {
    right: 0;
  }

  .float-card-left {
    bottom: 20px;
    left: 0;
    min-width: min(86%, 300px);
  }

  .float-card-right {
    right: 0;
    bottom: 0;
    width: min(78%, 280px);
  }

  .spark-button {
    right: 18px;
    bottom: 54px;
    width: 62px;
    height: 62px;
  }

  .spark-button svg {
    width: 28px;
    height: 28px;
  }

  .service-card {
    min-height: 270px;
  }
}

@media (max-width: 620px) {
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    min-height: 78px;
  }

  .domain-pill {
    transform: scale(0.88);
    transform-origin: top right;
  }

  .hero-stage {
    min-height: 440px;
  }

  .browser-window {
    min-height: 330px;
  }

  .mock-device {
    right: 14px;
    bottom: 24px;
    width: 142px;
    min-height: 210px;
  }

  .float-card-right {
    display: none;
  }

  .float-card-left {
    bottom: 0;
    min-height: 86px;
  }

  .spark-button {
    display: none;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.95rem;
  }

  .hero-statement {
    font-size: 1.22rem;
  }

  .hero-tags span {
    flex: 1 1 auto;
    justify-content: center;
  }

  .hero-stage {
    min-height: 430px;
  }

  .browser-body {
    padding: 30px 18px;
  }

  .mock-title {
    font-size: 2.58rem;
  }

  .mock-device {
    width: 132px;
    min-height: 212px;
    right: 12px;
  }

.float-card-left {
    min-width: 208px;
  }
}

/* Final responsive polish */
.showcase-metrics {
  width: 100%;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric-tile {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border: 1px solid rgba(98, 53, 220, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(243, 245, 255, 0.9));
}

.metric-tile-hero {
  grid-column: 1 / -1;
  min-height: 128px;
  background:
    linear-gradient(135deg, rgba(98, 53, 220, 0.12), rgba(22, 215, 212, 0.12)),
    #ffffff;
}

.metric-tile span {
  color: var(--violet);
  font-family: var(--display);
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 700;
}

.metric-tile-hero span {
  font-size: 3.35rem;
}

.metric-tile p {
  margin: 8px 0 0;
  color: #55596f;
  font-weight: 800;
}

.site-footer {
  min-height: auto;
  display: block;
  padding: 56px max(20px, calc((100% - 1180px) / 2)) 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(98, 53, 220, 0.28), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(22, 215, 212, 0.18), transparent 30%),
    #070812;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1fr) minmax(180px, 0.45fr);
  gap: 28px;
  align-items: stretch;
}

.footer-brand,
.footer-cta,
.footer-links {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.footer-brand {
  padding: 24px;
}

.footer-brand img {
  width: 190px;
  max-width: 100%;
  margin-bottom: 18px;
}

.footer-brand p {
  margin-bottom: 20px;
}

.footer-email {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #ffffff;
  font-weight: 800;
}

.footer-email svg {
  width: 20px;
  height: 20px;
  color: var(--cyan);
}

.footer-cta {
  padding: 28px;
  display: grid;
  align-content: center;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(98, 53, 220, 0.28), rgba(18, 109, 226, 0.16)),
    rgba(255, 255, 255, 0.055);
}

.footer-cta p {
  margin: 0;
  color: var(--cyan);
  font-family: var(--display);
  font-weight: 700;
}

.footer-cta strong {
  max-width: 560px;
  color: #ffffff;
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1.12;
}

.footer-cta .button {
  width: fit-content;
}

.footer-links {
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.footer-links a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: #d7daf0;
  font-family: var(--display);
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #aeb4d0;
  font-size: 0.92rem;
}

.footer-bottom a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #ffffff;
  font-weight: 800;
}

@media (min-width: 1081px) and (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
    gap: 32px;
  }

  h1 {
    font-size: 3.9rem;
  }

  .hero-statement {
    font-size: 1.85rem;
  }
}

@media (max-width: 980px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .showcase-metrics {
    grid-template-columns: 1fr;
  }

  .metric-tile-hero {
    min-height: 112px;
  }

  .metric-tile-hero span {
    font-size: 2.7rem;
  }

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

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

  .footer-cta strong {
    font-size: 1.38rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 520px) {
  :root {
    --inner: min(100% - 24px, 1180px);
  }

  .site-header {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    gap: 8px;
  }

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

  h1 {
    font-size: 2.2rem;
  }

  .hero-statement {
    max-width: 330px;
  }

  .hero-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-tags span:last-child {
    grid-column: 1 / -1;
  }

  .mock-title {
    font-size: 2.32rem;
  }

  .mini-nav {
    gap: 12px;
    font-size: 0.67rem;
  }

  .showcase-item {
    min-height: auto;
  }

  .footer-brand,
  .footer-cta,
  .footer-links {
    padding: 18px;
  }

  .footer-email {
    width: 100%;
    justify-content: center;
    font-size: 0.92rem;
  }

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

/* Language switcher and project alignment */
.site-header {
  display: grid;
  grid-template-columns: auto minmax(360px, 1fr) auto;
  align-items: center;
}

.site-nav {
  justify-content: center;
  justify-self: center;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.lang-switcher {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(9, 10, 20, 0.12);
  border-radius: 8px;
  background: rgba(246, 248, 255, 0.92);
}

.lang-option {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #44475d;
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.lang-option.is-active {
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(98, 53, 220, 0.2);
}

.showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.showcase-item {
  min-height: 440px;
}

.showcase-screen,
.showcase-code,
.showcase-metrics {
  min-height: 244px;
}

.showcase-code {
  align-content: center;
}

.showcase-code span {
  min-height: 38px;
}

.showcase-item > h3 {
  min-height: 2.6em;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

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

  .showcase-item {
    min-height: auto;
  }

  .showcase-item > h3 {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    justify-self: stretch;
  }

  .header-actions {
    justify-self: end;
  }

  .lang-switcher {
    min-height: 40px;
  }

  .lang-option {
    min-width: 38px;
    min-height: 32px;
  }
}

@media (max-width: 420px) {
  .lang-option {
    min-width: 34px;
    font-size: 0.78rem;
  }
}

html[data-lang="pt"] .mock-title {
  max-width: 300px;
  font-size: 4.12rem;
}

@media (max-width: 760px) {
  html[data-lang="pt"] .mock-title {
    max-width: 210px;
    font-size: 2.72rem;
  }
}

@media (max-width: 520px) {
  html[data-lang="pt"] .mock-title {
    max-width: 180px;
    font-size: 2.18rem;
  }
}

/* ── App window (hero-stage) ── */
.app-window {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  background: #ffffff;
  border: 1px solid rgba(9, 10, 20, 0.13);
  border-radius: 12px;
  box-shadow: 0 32px 90px rgba(20, 17, 55, 0.2);
  overflow: hidden;
}

.app-chrome {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  background: #fafbff;
  border-bottom: 1px solid rgba(9, 10, 20, 0.09);
}

.app-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dde1f5;
}

.app-chrome span:nth-child(2) { background: #99f1dc; }
.app-chrome span:nth-child(3) { background: var(--rose); }

.app-chrome p {
  margin: 0 0 0 auto;
  color: #9295ae;
  font-size: 0.8rem;
  font-weight: 700;
}

.app-body {
  display: grid;
  grid-template-columns: 168px 1fr;
  min-height: 380px;
}

.app-sidebar {
  background: #0c0d1c;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.sidebar-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  flex: 0 0 auto;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.sidebar-nav span {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-nav span.is-active {
  background: rgba(98, 53, 220, 0.28);
  color: rgba(255, 255, 255, 0.9);
}

.sidebar-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}

.sidebar-footer span {
  height: 30px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
}

.app-content {
  padding: 18px;
  background: #f4f6ff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.app-stat {
  padding: 12px;
  background: #ffffff;
  border: 1px solid rgba(9, 10, 20, 0.09);
  border-radius: 8px;
}

.app-stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.app-stat span {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.app-stat--accent {
  background: linear-gradient(135deg, rgba(98, 53, 220, 0.1), rgba(22, 215, 212, 0.08));
  border-color: rgba(98, 53, 220, 0.16);
}

.app-stat--accent strong { color: var(--violet); }

.app-chart {
  background: #ffffff;
  border: 1px solid rgba(9, 10, 20, 0.09);
  border-radius: 8px;
  padding: 14px;
}

.chart-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 72px;
}

.chart-bars span {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(98, 53, 220, 0.7), rgba(98, 53, 220, 0.2));
  transition: height 400ms ease;
}

.chart-bars span:last-child {
  background: linear-gradient(180deg, var(--cyan), rgba(22, 215, 212, 0.4));
}

.app-table {
  background: #ffffff;
  border: 1px solid rgba(9, 10, 20, 0.09);
  border-radius: 8px;
  overflow: hidden;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  font-size: 0.74rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(9, 10, 20, 0.06);
}

.table-row:last-child { border-bottom: none; }

.table-row--header {
  background: #f8f9ff;
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
}

.badge--green {
  background: rgba(0, 166, 118, 0.12);
  color: #00865e;
}

.badge--blue {
  background: rgba(18, 109, 226, 0.12);
  color: var(--blue);
}

/* ── Hero eyebrow dot ── */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(1.5); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.eyebrow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  flex: 0 0 auto;
  animation: pulse-dot 2.2s ease-in-out infinite;
}

/* ── Manifesto marquee ── */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── CTA strip ── */
.cta-strip {
  padding: 52px 0;
  background: linear-gradient(135deg, var(--violet) 0%, #4b22bf 52%, var(--blue) 100%);
}

.cta-strip-inner {
  width: var(--inner);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-strip .eyebrow {
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 8px;
}

.cta-strip-copy strong {
  display: block;
  color: #ffffff;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
}

.cta-strip .button {
  flex: 0 0 auto;
  background: #ffffff;
  color: var(--violet);
  border-color: transparent;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
  font-weight: 700;
}

.cta-strip .button:hover,
.cta-strip .button:focus-visible {
  background: #f0f3ff;
  transform: translateY(-2px);
}

/* ── Testimonials ── */
.testimonials-band {
  padding: 90px 0;
}

.testimonials-grid {
  width: var(--inner);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  padding: 28px;
  background: #ffffff;
  border: 1px solid rgba(9, 10, 20, 0.11);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(20, 17, 55, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(20, 17, 55, 0.13);
}

.testimonial-stars {
  color: #f5a623;
  font-size: 1.05rem;
  letter-spacing: 3px;
}

.testimonial-card blockquote {
  margin: 0;
  flex: 1;
}

.testimonial-card blockquote p {
  margin: 0;
  color: #2a2b43;
  font-size: 0.97rem;
  line-height: 1.65;
  font-style: italic;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: #ffffff;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.82rem;
  flex: 0 0 auto;
}

.testimonial-avatar--teal {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.testimonial-avatar--rose {
  background: linear-gradient(135deg, var(--rose), var(--violet));
}

.testimonial-card footer strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

.testimonial-card footer span {
  color: var(--muted);
  font-size: 0.83rem;
}

/* ── FAQ ── */
.faq-band {
  padding: 90px 0;
  background: var(--soft);
}

.faq-list {
  width: var(--inner);
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(9, 10, 20, 0.11);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(20, 17, 55, 0.05);
  transition: box-shadow 180ms ease;
}

.faq-item[open] {
  box-shadow: 0 16px 42px rgba(20, 17, 55, 0.09);
}

.faq-item summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  cursor: pointer;
  list-style: none;
  outline: none;
  border-radius: 8px;
}

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

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #eff0ff;
  color: var(--violet);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 200ms ease, background 200ms ease;
}

.faq-item[open] summary::after {
  content: "×";
  font-size: 1.5rem;
  font-weight: 400;
  transform: none;
  background: var(--violet);
  color: #ffffff;
}

.faq-item summary:hover::after {
  background: var(--violet);
  color: #ffffff;
}

.faq-question {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
}

.faq-answer {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

/* ── App window responsive ── */
@media (max-width: 1080px) {
  .app-window {
    width: 100%;
  }

  .app-body {
    grid-template-columns: 140px 1fr;
    min-height: 340px;
  }

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

@media (max-width: 760px) {
  .app-body {
    grid-template-columns: 120px 1fr;
    min-height: 300px;
  }

  .app-sidebar {
    padding: 14px 10px;
  }

  .sidebar-nav span {
    font-size: 0.68rem;
    padding: 7px 8px;
  }

  .app-content {
    padding: 12px;
    gap: 10px;
  }

  .app-stat strong {
    font-size: 1rem;
  }

  .chart-bars {
    height: 56px;
  }

  .app-table {
    display: none;
  }
}

@media (max-width: 520px) {
  .app-body {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: none;
  }

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

/* ── Responsive: new sections ── */
@media (max-width: 1080px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .cta-strip {
    padding: 38px 0;
  }

  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .cta-strip-copy strong {
    font-size: 1.42rem;
  }

  .cta-strip .button {
    width: 100%;
    justify-content: center;
  }

  .testimonials-band,
  .faq-band {
    padding: 68px 0;
  }
}

/* ── Header CTA ── */
.header-cta {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.88rem;
  box-shadow: 0 8px 22px rgba(98,53,220,0.28);
}
@media (max-width: 900px) {
  .header-cta { display: none; }
}

/* ── Manifesto premium ── */
.manifesto-band {
  position: relative;
}
.manifesto-band::before,
.manifesto-band::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 3;
  pointer-events: none;
}
.manifesto-band::before {
  left: 0;
  background: linear-gradient(to right, #0d0e1f 0%, transparent 100%);
}
.manifesto-band::after {
  right: 0;
  background: linear-gradient(to left, #0d0e1f 0%, transparent 100%);
}
.manifesto-band:hover .manifesto-track {
  animation-play-state: paused;
}
.manifesto-track span:hover {
  color: var(--cyan);
  cursor: default;
}
.manifesto-track span {
  transition: color 200ms ease;
}

/* ── Service stack (hero right) ── */

.svc-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

.svc-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(9, 10, 20, 0.09);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 6px 28px rgba(20, 17, 55, 0.07);
  backdrop-filter: blur(12px);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(20, 17, 55, 0.12);
}

.svc-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.svc-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
}

.svc-icon svg {
  width: 18px;
  height: 18px;
}

.svc-card--ai .svc-icon {
  background: linear-gradient(135deg, var(--violet), var(--lavender));
}

.svc-card--portal .svc-icon {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.svc-card--auto .svc-icon {
  background: linear-gradient(135deg, #059669, #34d399);
}

.svc-info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.svc-live {
  font-size: 0.72rem;
  color: #059669;
  font-weight: 600;
}

.svc-meta {
  font-size: 0.72rem;
  color: var(--muted);
}

/* Waveform */
.svc-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 26px;
  margin-bottom: 8px;
}

.svc-wave span {
  width: 3px;
  border-radius: 99px;
  background: var(--lavender);
  animation: svc-wave 1.4s ease-in-out infinite;
}

.svc-wave span:nth-child(1)  { height: 35%; animation-delay: 0.0s; }
.svc-wave span:nth-child(2)  { height: 65%; animation-delay: 0.1s; }
.svc-wave span:nth-child(3)  { height: 100%; animation-delay: 0.2s; }
.svc-wave span:nth-child(4)  { height: 55%; animation-delay: 0.3s; }
.svc-wave span:nth-child(5)  { height: 80%; animation-delay: 0.4s; }
.svc-wave span:nth-child(6)  { height: 45%; animation-delay: 0.5s; }
.svc-wave span:nth-child(7)  { height: 90%; animation-delay: 0.6s; }
.svc-wave span:nth-child(8)  { height: 60%; animation-delay: 0.7s; }
.svc-wave span:nth-child(9)  { height: 75%; animation-delay: 0.8s; }
.svc-wave span:nth-child(10) { height: 40%; animation-delay: 0.9s; }

@keyframes svc-wave {
  0%, 100% { transform: scaleY(0.45); opacity: 0.45; }
  50%       { transform: scaleY(1);    opacity: 1;    }
}

.svc-tech {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0;
  font-family: 'Space Grotesk', monospace;
  letter-spacing: 0.01em;
}

/* Portal stats */
.svc-stats {
  display: flex;
  gap: 18px;
}

.svc-stat strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--blue);
}

.svc-stat span {
  font-size: 0.68rem;
  color: var(--muted);
}

/* Automation flow */
.svc-flow-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.svc-flow-row span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink);
  background: rgba(98, 53, 220, 0.08);
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.svc-flow-row svg {
  width: 16px;
  height: 6px;
  color: var(--muted);
  flex-shrink: 0;
}

/* Responsive: stack card fills stage on mobile */
@media (max-width: 900px) {
  .svc-stack {
    max-width: 100%;
    margin-left: 0;
  }
}

/* Process band — richer dark */
.process-band {
  background:
    radial-gradient(ellipse 70% 50% at 15% 50%, rgba(98,53,220,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 30%, rgba(22,215,212,0.14) 0%, transparent 55%),
    linear-gradient(135deg, #080912 0%, #0d0e20 50%, #081522 100%);
}

/* Showcase band */
.showcase-band {
  background:
    radial-gradient(circle at 20% 60%, rgba(18,109,226,0.05) 0%, transparent 40%),
    linear-gradient(180deg, #f8f9ff 0%, #ffffff 50%, #f5f6ff 100%);
}

/* Testimonials — dark premium para contraste */
.testimonials-band {
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(98,53,220,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(22,215,212,0.12) 0%, transparent 50%),
    linear-gradient(135deg, #090a18 0%, #0f1022 60%, #091820 100%);
  color: #ffffff;
}

/* Ajustar testimonial cards para fundo escuro */
.testimonials-band .section-heading h2 { color: #ffffff; }
.testimonials-band .section-heading .eyebrow { color: var(--cyan); }
.testimonial-card {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 18px 52px rgba(0,0,0,0.25);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  box-shadow: 0 28px 64px rgba(0,0,0,0.35);
}
.testimonial-card blockquote p { color: rgba(255,255,255,0.82); }
.testimonial-card footer { border-top-color: rgba(255,255,255,0.1); }
.testimonial-card footer strong { color: #ffffff; }
.testimonial-card footer span { color: rgba(255,255,255,0.5); }
.testimonial-stars { color: #f5a623; }

/* FAQ — light premium */
.faq-band {
  background:
    radial-gradient(circle at 90% 10%, rgba(98,53,220,0.06) 0%, transparent 40%),
    linear-gradient(180deg, #f4f6ff 0%, #eef0ff 100%);
}

/* Contact band — richer gradient */
.contact-band {
  background:
    radial-gradient(ellipse 60% 60% at 5% 50%, rgba(98,53,220,0.07) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 95% 50%, rgba(22,215,212,0.07) 0%, transparent 50%),
    linear-gradient(135deg, #f2f4ff 0%, #ffffff 45%, #eaffff 100%);
}

/* ── Service cards — upgrade de hover ── */
.service-card {
  transition: transform 240ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 240ms ease, border-color 240ms ease;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 40px 80px rgba(20,17,55,0.15);
}

/* ── Lang switcher minimal ── */
.lang-switcher {
  min-height: auto;
  padding: 0;
  border: none;
  background: none;
  gap: 2px;
}
.lang-option {
  min-width: 34px;
  min-height: 34px;
  border-radius: 6px;
  background: transparent;
  color: #8a8da8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 160ms ease, background 160ms ease;
}
.lang-option:hover {
  color: var(--violet);
  background: rgba(98, 53, 220, 0.07);
}
.lang-option.is-active {
  background: rgba(98, 53, 220, 0.1);
  color: var(--violet);
  box-shadow: none;
}

/* ── Header premium glass ── */
.site-header {
  background:
    linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)) padding-box,
    linear-gradient(135deg, rgba(98,53,220,0.3) 0%, rgba(22,215,212,0.2) 100%) border-box;
  border: 1px solid transparent;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 20px 60px rgba(20,17,55,0.1),
    0 2px 8px rgba(98,53,220,0.06);
}
.site-header.is-scrolled {
  background:
    linear-gradient(rgba(255,255,255,0.96), rgba(255,255,255,0.96)) padding-box,
    linear-gradient(135deg, rgba(98,53,220,0.35) 0%, rgba(22,215,212,0.25) 100%) border-box;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 24px 70px rgba(20,17,55,0.14),
    0 2px 8px rgba(98,53,220,0.08);
}
.header-cta {
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(98,53,220,0.32);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(98,53,220,0.4);
}
@media (max-width: 900px) {
  .header-cta { display: none; }
}

/* ── Hero background upgrade ── */
.hero {
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 8% 15%, rgba(98,53,220,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 92% 10%, rgba(22,215,212,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 30% 50% at 50% 80%, rgba(18,109,226,0.07) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Glass effects premium ── */

/* Hero proof cards */
.hero-proof div {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: 0 8px 24px rgba(20,17,55,0.06), 0 1px 0 rgba(255,255,255,0.9) inset;
}

/* Float cards */
.float-card {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.88);
  box-shadow: 0 20px 50px rgba(20,17,55,0.14), 0 1px 0 rgba(255,255,255,0.9) inset;
}

/* Service cards */
.service-card {
  background:
    linear-gradient(160deg, rgba(255,255,255,0.95) 0%, rgba(248,249,255,0.9) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 8px 32px rgba(20,17,55,0.07), 0 1px 0 rgba(255,255,255,1) inset;
}
.service-card:nth-child(2) {
  backdrop-filter: none;
}

/* Process list items */
.process-list li {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1), 0 1px 0 rgba(255,255,255,0.1) inset;
}

/* Showcase items */
.showcase-item {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.9);
}
.showcase-featured {
  background:
    linear-gradient(145deg, rgba(238,242,255,0.9), rgba(255,255,255,0.85) 56%, rgba(235,255,255,0.9));
  backdrop-filter: blur(12px);
}

/* Testimonial cards (dark bg) */
.testimonial-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2), 0 1px 0 rgba(255,255,255,0.12) inset;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 28px 64px rgba(0,0,0,0.28), 0 1px 0 rgba(255,255,255,0.14) inset;
}

/* FAQ items */
.faq-item {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.88);
  box-shadow: 0 4px 20px rgba(20,17,55,0.05), 0 1px 0 rgba(255,255,255,1) inset;
}
.faq-item[open] {
  background: rgba(255,255,255,0.82);
  box-shadow: 0 12px 40px rgba(20,17,55,0.08), 0 1px 0 rgba(255,255,255,1) inset;
}

/* Contact form */
.contact-form {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 24px 80px rgba(20,17,55,0.12), 0 1px 0 rgba(255,255,255,1) inset;
}

/* Metric tiles in showcase */
.metric-tile {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.9);
}
.metric-tile-hero {
  background:
    linear-gradient(135deg, rgba(98,53,220,0.1), rgba(22,215,212,0.08)),
    rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
}

/* Footer CTA card */
.footer-cta {
  background:
    linear-gradient(135deg, rgba(98,53,220,0.3), rgba(18,109,226,0.18)),
    rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
}

/* Footer brand + links */
.footer-brand,
.footer-links {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ── Section backgrounds refined ── */

/* Body global */
body {
  background:
    linear-gradient(90deg, rgba(18,109,226,0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(98,53,220,0.03) 1px, transparent 1px),
    radial-gradient(ellipse 90% 50% at 5% 0%, rgba(98,53,220,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 70% 40% at 95% 0%, rgba(22,215,212,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #f7f8ff 0%, #f2f4ff 15%, #ffffff 50%, #f0feff 100%);
  background-size: 52px 52px, 52px 52px, auto, auto, auto;
}

/* Services */
.service-band {
  background:
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(98,53,220,0.07) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 5% 80%, rgba(22,215,212,0.05) 0%, transparent 50%),
    #f8f9ff;
}

/* Process */
.process-band {
  background:
    radial-gradient(ellipse 65% 55% at 10% 60%, rgba(98,53,220,0.25) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(22,215,212,0.18) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(18,109,226,0.15) 0%, transparent 45%),
    #070810;
}

/* Showcase */
.showcase-band {
  background:
    radial-gradient(ellipse 50% 60% at 15% 30%, rgba(18,109,226,0.06) 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f5f7ff 60%, #f0f8ff 100%);
}

/* Testimonials */
.testimonials-band {
  background:
    radial-gradient(ellipse 70% 60% at 85% 10%, rgba(98,53,220,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 5% 85%, rgba(22,215,212,0.15) 0%, transparent 50%),
    radial-gradient(ellipse 40% 35% at 50% 50%, rgba(18,109,226,0.1) 0%, transparent 45%),
    #070810;
}

/* FAQ */
.faq-band {
  background:
    radial-gradient(ellipse 50% 60% at 92% 15%, rgba(98,53,220,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 35% 40% at 8% 85%, rgba(22,215,212,0.06) 0%, transparent 45%),
    linear-gradient(180deg, #eef0ff 0%, #f2f4ff 50%, #eefaff 100%);
}

/* Contact */
.contact-band {
  background:
    radial-gradient(ellipse 55% 65% at 5% 40%, rgba(98,53,220,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 95% 60%, rgba(22,215,212,0.08) 0%, transparent 50%),
    linear-gradient(135deg, #f0f2ff 0%, #ffffff 42%, #eafeff 100%);
}

/* CTA Strip — mais vibrante */
.cta-strip {
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(255,255,255,0.12) 0%, transparent 50%),
    linear-gradient(135deg, #5a2fd4 0%, #4020b8 40%, #1a60d8 100%);
}

/* ── Manifesto final refinement ── */
.manifesto-band {
  background:
    linear-gradient(90deg, rgba(98,53,220,0.15) 0%, transparent 30%, transparent 70%, rgba(22,215,212,0.1) 100%),
    #08091a;
  border-top: 1px solid rgba(98,53,220,0.22);
  border-bottom: 1px solid rgba(22,215,212,0.12);
}
.manifesto-track span {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}
.manifesto-track span:hover {
  color: rgba(255,255,255,0.9);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ═══════════════════════════════════════════════════════
   PREMIUM REDESIGN — aurora + grain + polished components
   ═══════════════════════════════════════════════════════ */

/* 1. Full-viewport aurora on html so it bleeds behind header */
html {
  min-height: 100%;
  background:
    radial-gradient(ellipse 110% 65% at -10% -3%, rgba(102,55,218,0.26) 0%, transparent 52%),
    radial-gradient(ellipse 75% 55% at 115% 8%, rgba(55,216,215,0.2) 0%, transparent 48%),
    radial-gradient(ellipse 55% 40% at 48% 108%, rgba(36,119,217,0.12) 0%, transparent 50%),
    linear-gradient(162deg, #e9eaff 0%, #f4f5ff 22%, #ffffff 52%, #ecfffe 100%);
  background-attachment: fixed;
}
body { background: none; }

/* 2. Kill the clipped hero gradient (was cropped to --inner container) */
.hero::before { display: none; }

/* 3. Grain texture — premium depth (subtle noise layer) */
html::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* 4. Header — let aurora breathe through */
.site-header {
  background:
    linear-gradient(rgba(248,249,255,0.68), rgba(248,249,255,0.68)) padding-box,
    linear-gradient(135deg, rgba(102,55,218,0.28) 0%, rgba(55,216,215,0.2) 100%) border-box;
  border: 1px solid transparent;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 16px 48px rgba(20,17,55,0.08);
}
.site-header.is-scrolled {
  background:
    linear-gradient(rgba(252,252,255,0.84), rgba(252,252,255,0.84)) padding-box,
    linear-gradient(135deg, rgba(102,55,218,0.32) 0%, rgba(55,216,215,0.22) 100%) border-box;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 20px 56px rgba(20,17,55,0.12);
}

/* 5. svc-cards — gradient border + premium glow */
.svc-card {
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(255,255,255,0.93), rgba(255,255,255,0.93)) padding-box,
    linear-gradient(135deg, rgba(130,100,255,0.28) 0%, rgba(55,216,215,0.18) 100%) border-box;
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 8px 28px rgba(20,17,55,0.08),
    0 2px 6px rgba(98,53,220,0.05);
  transition: transform 240ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 240ms ease, background 240ms ease;
}
.svc-card:hover {
  transform: translateY(-4px) scale(1.01);
  background:
    linear-gradient(rgba(255,255,255,0.97), rgba(255,255,255,0.97)) padding-box,
    linear-gradient(135deg, rgba(98,53,220,0.5) 0%, rgba(55,216,215,0.28) 100%) border-box;
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 24px 60px rgba(20,17,55,0.14),
    0 4px 14px rgba(98,53,220,0.1);
}

/* 6. Hero stage — ambient glow halo behind the stack */
.hero-stage { position: relative; }
.hero-stage::before {
  content: "";
  position: absolute;
  inset: -60px -40px -40px -10px;
  z-index: 0;
  background:
    radial-gradient(ellipse 85% 70% at 65% 45%, rgba(98,53,220,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 65% 55% at 25% 70%, rgba(55,216,215,0.1) 0%, transparent 55%);
  pointer-events: none;
  filter: blur(28px);
}
.svc-stack { position: relative; z-index: 1; }

/* float-card inside svc-stack flows naturally instead of floating absolute */
.svc-stack .float-card-left {
  position: relative;
  bottom: auto;
  left: auto;
  min-width: unset;
  min-height: unset;
  z-index: 1;
  padding: 14px 18px;
}

/* 7. Float card — premium glass */
.float-card {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.92);
  box-shadow: 0 12px 40px rgba(20,17,55,0.12), 0 1px 0 rgba(255,255,255,1) inset;
}

/* 8. Hero proof — glass tiles */
.hero-proof div {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.88);
  box-shadow: 0 6px 20px rgba(20,17,55,0.06), 0 1px 0 rgba(255,255,255,0.9) inset;
}

/* 9. Service cards (service-band section) — glass upgrade */
.service-card {
  background:
    linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)) padding-box,
    linear-gradient(135deg, rgba(130,100,255,0.18) 0%, rgba(55,216,215,0.1) 100%) border-box;
  border: 1px solid transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 28px rgba(20,17,55,0.07), 0 1px 0 rgba(255,255,255,1) inset;
  transition: transform 240ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 240ms ease;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 32px 72px rgba(20,17,55,0.14), 0 1px 0 rgba(255,255,255,1) inset;
}

/* 10. Section bands — richer backgrounds */
.service-band {
  background:
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(98,53,220,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 5% 85%, rgba(55,216,215,0.05) 0%, transparent 50%),
    rgba(248,249,255,0.6);
}
.showcase-band {
  background:
    radial-gradient(ellipse 55% 60% at 12% 35%, rgba(36,119,217,0.06) 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f5f7ff 55%, #efffff 100%);
}
.process-band {
  background:
    radial-gradient(ellipse 70% 55% at 8% 65%, rgba(98,53,220,0.28) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 92% 20%, rgba(55,216,215,0.2) 0%, transparent 50%),
    radial-gradient(ellipse 45% 30% at 50% 100%, rgba(36,119,217,0.18) 0%, transparent 45%),
    #06070f;
}
.testimonials-band {
  background:
    radial-gradient(ellipse 75% 60% at 88% 12%, rgba(98,53,220,0.26) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 5% 88%, rgba(55,216,215,0.18) 0%, transparent 50%),
    radial-gradient(ellipse 40% 35% at 50% 55%, rgba(36,119,217,0.12) 0%, transparent 45%),
    #06070f;
}
.faq-band {
  background:
    radial-gradient(ellipse 55% 65% at 95% 12%, rgba(98,53,220,0.09) 0%, transparent 50%),
    radial-gradient(ellipse 40% 45% at 5% 88%, rgba(55,216,215,0.07) 0%, transparent 45%),
    linear-gradient(180deg, #eef0ff 0%, #f2f4ff 50%, #eafefe 100%);
}
.contact-band {
  background:
    radial-gradient(ellipse 60% 70% at 3% 42%, rgba(98,53,220,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 97% 58%, rgba(55,216,215,0.09) 0%, transparent 50%),
    linear-gradient(135deg, #eef0ff 0%, #ffffff 40%, #e8fffe 100%);
}
.cta-strip {
  background:
    radial-gradient(ellipse 65% 85% at 8% 50%, rgba(255,255,255,0.14) 0%, transparent 50%),
    linear-gradient(135deg, #5628d0 0%, #3e1eb5 38%, #1855d4 100%);
}

/* 11. CTA strip button contrast */
.cta-strip .button-outline {
  border-color: rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.9);
}
.cta-strip .button-outline:hover {
  border-color: rgba(255,255,255,0.75);
  color: #ffffff;
  background: rgba(255,255,255,0.1);
}

/* 12. Testimonial cards on dark bg */
.testimonial-card {
  background: rgba(255,255,255,0.065);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow: 0 18px 52px rgba(0,0,0,0.22), 0 1px 0 rgba(255,255,255,0.1) inset;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 28px 68px rgba(0,0,0,0.32), 0 1px 0 rgba(255,255,255,0.12) inset;
}

/* 13. Footer CTA premium */
.footer-cta {
  background:
    linear-gradient(135deg, rgba(102,55,218,0.35) 0%, rgba(36,119,217,0.22) 60%, rgba(55,216,215,0.15) 100%),
    rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
}

/* 14. Contact form glass */
.contact-form {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.92);
  box-shadow: 0 24px 80px rgba(20,17,55,0.1), 0 1px 0 rgba(255,255,255,1) inset;
}

/* ── Project grid (5-card showcase) ── */

.proj-grid {
  width: var(--inner);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.proj-card {
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)) padding-box,
    linear-gradient(135deg, rgba(130,100,255,0.22) 0%, rgba(55,216,215,0.14) 100%) border-box;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(20,17,55,0.07), 0 1px 0 rgba(255,255,255,1) inset;
  transition: transform 240ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 240ms ease;
}
.proj-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 56px rgba(20,17,55,0.13), 0 1px 0 rgba(255,255,255,1) inset;
}
.proj-card--featured {
  grid-column: span 2;
  flex-direction: row;
}

/* Visual area */
.proj-visual {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 24px 20px;
  min-height: 180px;
}

.proj-card--featured .proj-visual {
  width: 52%;
  min-height: unset;
  border-right: 1px solid rgba(130,100,255,0.1);
}

/* Portal visual — mini dashboard */
.proj-visual--portal {
  background: linear-gradient(145deg, rgba(98,53,220,0.04) 0%, rgba(36,119,217,0.03) 100%);
  padding: 0;
  gap: 0;
  flex-direction: column;
}
.pv-chrome {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: rgba(98,53,220,0.06);
  border-bottom: 1px solid rgba(98,53,220,0.08);
  flex-shrink: 0;
}
.pv-chrome span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(98,53,220,0.22);
}
.pv-chrome em {
  margin-left: 5px;
  font-style: normal;
  font-size: 0.65rem;
  color: var(--muted);
  font-family: 'Space Grotesk', monospace;
}

/* Dashboard body: sidebar + main */
.pv-dashboard {
  flex: 1;
  display: flex;
  min-height: 0;
}

/* Sidebar */
.pv-sidebar {
  width: 28px;
  flex-shrink: 0;
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(98,53,220,0.07);
  background: rgba(98,53,220,0.02);
}
.pv-nav-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pv-nav-item i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(98,53,220,0.2);
  flex-shrink: 0;
  font-style: normal;
}
.pv-nav-item b {
  flex: 1;
  height: 3px;
  border-radius: 3px;
  background: rgba(98,53,220,0.1);
  font-weight: normal;
}
.pv-nav-item--active i { background: var(--violet); }
.pv-nav-item--active b { background: rgba(98,53,220,0.25); }

/* Main area */
.pv-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 12px;
  min-width: 0;
}
.pv-kpis {
  display: flex;
  gap: 6px;
}
.pv-kpi {
  flex: 1;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(98,53,220,0.09);
  border-radius: 7px;
  padding: 5px 7px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.pv-kpi strong {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pv-kpi span {
  font-size: 0.6rem;
  color: var(--muted);
  white-space: nowrap;
}
.pv-up  { color: #059669 !important; font-weight: 700 !important; }
.pv-ok  { color: #2563eb !important; }
.pv-kpi--hi { border-color: rgba(98,53,220,0.2); background: rgba(98,53,220,0.05); }
.pv-kpi--hi strong { color: var(--violet); }

/* Chart area */
.pv-chart-area {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pv-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 44px;
}
.pv-bars span {
  flex: 1;
  height: var(--h, 50%);
  background: linear-gradient(180deg, var(--violet), var(--blue));
  border-radius: 3px 3px 0 0;
  opacity: 0.65;
  transition: opacity 200ms;
}
.proj-card:hover .pv-bars span { opacity: 1; }
.pv-sparkline {
  width: 100%;
  height: 32px;
  overflow: visible;
}
.pv-axis {
  display: flex;
  justify-content: space-between;
  padding: 0 1px;
}
.pv-axis span {
  font-size: 0.55rem;
  color: var(--muted);
  opacity: 0.7;
  font-family: 'Space Grotesk', monospace;
}

/* Table rows */
.pv-rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(98,53,220,0.07);
  padding-top: 7px;
  margin-top: auto;
}
.pv-row {
  display: flex;
  align-items: center;
  gap: 5px;
}
.pv-dot-ok, .pv-dot-sync {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pv-dot-ok   { background: #10b981; }
.pv-dot-sync { background: #3b82f6; }
.pv-row-label {
  font-size: 0.62rem;
  color: var(--muted);
  flex: 1;
}
.pv-row-val {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--ink);
  font-family: 'Space Grotesk', monospace;
  white-space: nowrap;
}

/* Achievements list in meta */
.proj-achievements {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.proj-achievements li {
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.proj-achievements li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 0.75rem;
}

/* AI / Voice visual */
.proj-visual--ai {
  background: linear-gradient(145deg, rgba(98,53,220,0.08) 0%, rgba(55,216,215,0.05) 100%);
  gap: 12px;
}
.pv-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 36px;
}
.pv-wave span {
  width: 4px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--violet), var(--cyan));
  animation: pw 1.4s ease-in-out infinite;
}
.pv-wave span:nth-child(1) { height: 30%; animation-delay: 0s; }
.pv-wave span:nth-child(2) { height: 65%; animation-delay: .1s; }
.pv-wave span:nth-child(3) { height: 100%; animation-delay: .2s; }
.pv-wave span:nth-child(4) { height: 55%; animation-delay: .3s; }
.pv-wave span:nth-child(5) { height: 85%; animation-delay: .4s; }
.pv-wave span:nth-child(6) { height: 40%; animation-delay: .5s; }
.pv-wave span:nth-child(7) { height: 75%; animation-delay: .6s; }
.pv-wave span:nth-child(8) { height: 50%; animation-delay: .7s; }
.pv-wave span:nth-child(9) { height: 90%; animation-delay: .8s; }
@keyframes pw {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}
.pv-live-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: #059669;
  margin: 0;
}
.pv-langs-row {
  display: flex;
  gap: 6px;
}
.pv-langs-row span {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(98,53,220,0.1);
  color: var(--violet);
}

/* RevOps visual */
.proj-visual--revops {
  background: linear-gradient(145deg, rgba(5,150,105,0.07) 0%, rgba(55,216,215,0.05) 100%);
  gap: 8px;
}
.pv-big-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.pv-big-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0 0 4px;
}
.pv-flow-mini {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.pv-flow-mini span {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 6px;
  background: rgba(5,150,105,0.1);
  color: #047857;
  white-space: nowrap;
}
.pv-flow-mini svg {
  width: 12px;
  height: 6px;
  color: var(--muted);
}

/* LMS visual */
.proj-visual--lms {
  background: linear-gradient(145deg, rgba(36,119,217,0.07) 0%, rgba(98,53,220,0.05) 100%);
  gap: 12px;
}
.pv-sku-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  width: 100%;
  max-width: 120px;
}
.pv-sku-grid span {
  aspect-ratio: 1;
  border-radius: 8px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(36,119,217,0.15);
  box-shadow: 0 2px 8px rgba(20,17,55,0.06);
}
.pv-sku-grid span:nth-child(1) { background: linear-gradient(135deg, rgba(98,53,220,0.15), rgba(36,119,217,0.1)); }
.pv-sku-grid span:nth-child(4) { background: linear-gradient(135deg, rgba(36,119,217,0.12), rgba(55,216,215,0.08)); }
.pv-langs-badges {
  display: flex;
  gap: 6px;
}
.pv-langs-badges span {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
  background: rgba(36,119,217,0.1);
  color: var(--blue);
}

/* Data visual */
.proj-visual--data {
  background: linear-gradient(145deg, rgba(55,216,215,0.07) 0%, rgba(36,119,217,0.05) 100%);
  gap: 8px;
}
.pv-chart {
  width: 100%;
  max-width: 160px;
  height: 72px;
  filter: drop-shadow(0 4px 12px rgba(55,216,215,0.25));
}
.pv-data-kpis {
  display: flex;
  gap: 10px;
}
.pv-data-kpis span {
  font-size: 0.72rem;
  color: var(--muted);
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(55,216,215,0.2);
  border-radius: 6px;
  padding: 3px 10px;
}
.pv-data-kpis span strong {
  color: var(--ink);
  margin-right: 2px;
}

/* Project meta (text area) */
.proj-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px 20px;
}
.proj-card--featured .proj-meta {
  justify-content: center;
}

.proj-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 2px;
}
.proj-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 6px;
}
.proj-badge--portal  { background: rgba(98,53,220,0.1);   color: var(--violet); }
.proj-badge--finance { background: rgba(36,119,217,0.1);  color: var(--blue); }
.proj-badge--lang    { background: rgba(55,216,215,0.1);  color: #0e7490; }
.proj-badge--ai      { background: rgba(98,53,220,0.1);   color: var(--violet); }
.proj-badge--auto    { background: rgba(5,150,105,0.1);   color: #047857; }
.proj-badge--revops  { background: rgba(55,216,215,0.1);  color: #0e7490; }
.proj-badge--lms     { background: rgba(36,119,217,0.1);  color: var(--blue); }
.proj-badge--ecomm   { background: rgba(255,79,132,0.1);  color: #be185d; }
.proj-badge--data    { background: rgba(55,216,215,0.1);  color: #0e7490; }
.proj-badge--bi      { background: rgba(98,53,220,0.08);  color: var(--violet); }

.proj-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
}
.proj-card--featured h3 { font-size: 1.2rem; }

.proj-card .proj-meta > p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.proj-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 4px;
}
.proj-stack span {
  font-size: 0.68rem;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(9,10,20,0.06);
  color: var(--muted);
}

/* Responsive */
@media (max-width: 1080px) {
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-card--featured { flex-direction: column; }
  .proj-card--featured .proj-visual { width: 100%; }
  .proj-card--featured .proj-visual--portal { border-right: none; border-bottom: 1px solid rgba(130,100,255,0.1); }
}
@media (max-width: 680px) {
  .proj-grid { grid-template-columns: 1fr; }
  .proj-card--featured { grid-column: span 1; }
}

/* 16. Footer privacy link — subtle, distinct from back-to-top button */
.footer-privacy {
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  color: #aeb4d0 !important;
  font-size: 0.82rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(174,180,208,0.4);
  transition: color 160ms ease;
}
.footer-privacy:hover {
  color: #ffffff !important;
  text-decoration-color: rgba(255,255,255,0.5);
}

/* 17. Form — premium typography and styling */
.contact-form {
  padding: 32px;
  border-radius: 16px;
  gap: 16px;
}
.contact-form label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  gap: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.96rem;
  font-weight: 400;
  min-height: 48px;
  padding: 12px 16px;
  border: 1.5px solid rgba(132, 120, 200, 0.28);
  border-radius: 10px;
  background: rgba(255,255,255,0.82);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9da2bf;
  font-weight: 400;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--violet);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(102,55,218,0.1);
  outline: none;
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236637da' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: rgba(255,255,255,0.82);
  padding-right: 42px;
  cursor: pointer;
}
.contact-form select option {
  background: #ffffff;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  padding: 10px;
}
.contact-form textarea {
  min-height: 120px;
  line-height: 1.6;
  resize: vertical;
}
.contact-form .button {
  margin-top: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

/* 15. FAQ items */
.faq-item {
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 4px 18px rgba(20,17,55,0.05), 0 1px 0 rgba(255,255,255,1) inset;
}
.faq-item[open] {
  background: rgba(255,255,255,0.84);
  box-shadow: 0 12px 38px rgba(20,17,55,0.09), 0 1px 0 rgba(255,255,255,1) inset;
}

/* ── Mobile — 760px ─────────────────────────────────── */
@media (max-width: 760px) {

  /* Hero */
  h1 { font-size: 2.9rem; line-height: 1; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1rem; }

  .hero {
    padding: 96px 0 52px;
    gap: 40px;
  }
  .hero-copy { max-width: 100%; }
  .hero-statement { font-size: 1rem; }
  .hero-text { font-size: 0.95rem; }
  .hero-brand-ghost { font-size: 26vw; top: 38px; }

  /* Hero stage: cap height, allow scroll hint */
  .hero-stage {
    min-height: unset;
    max-height: 520px;
    overflow: hidden;
  }

  /* Svc-stack: limit to 3 cards visible on mobile */
  .svc-stack { gap: 10px; max-width: 100%; }
  .svc-card { padding: 14px 16px; }

  /* Float card inside svc-stack: smaller */
  .svc-stack .float-card-left {
    padding: 12px 14px;
    min-width: unset;
    width: 100%;
  }

  /* Services grid: 1 col */
  .service-grid { grid-template-columns: 1fr; }
  .service-card { padding: 20px; }

  /* Process */
  .process-list li { grid-template-columns: 1fr; gap: 10px; }

  /* Showcase / Projects */
  .showcase-band { padding: 60px 0; }
  .proj-grid { gap: 14px; }
  .proj-card { border-radius: 14px; }
  .proj-card--featured { flex-direction: column; grid-column: span 1; }
  .proj-card--featured .proj-visual { width: 100%; border-right: none; border-bottom: 1px solid rgba(130,100,255,0.1); }
  .proj-card--featured h3 { font-size: 1.05rem; }
  .proj-meta { padding: 14px 16px 16px; }
  .proj-visual { min-height: 140px; padding: 18px 16px; }
  .pv-big-number { font-size: 1.8rem; }

  /* Testimonials / FAQ */
  .faq-band { padding: 60px 0; }
  .faq-item summary { min-height: 56px; padding: 14px 18px; }
  .faq-question { font-size: 0.95rem; }
  .faq-answer { padding: 0 18px 18px; padding-top: 14px; }

  /* Contact */
  .contact-band { padding: 60px 0; }
  .contact-layout { gap: 24px; }

  /* Footer */
  .footer-cta { padding: 44px 24px; }
  .footer-cta h2 { font-size: 1.6rem; }
}

/* ── Mobile — 480px ─────────────────────────────────── */
@media (max-width: 480px) {

  h1 { font-size: 2.35rem; }
  h2 { font-size: 1.75rem; }

  /* Kill hero-tiles on tiny screens (pure decoration) */
  .hero-tiles { display: none; }

  .hero { padding: 88px 0 44px; gap: 32px; }
  .hero-tags { flex-wrap: wrap; gap: 6px; }
  .hero-tags span { font-size: 0.72rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; justify-content: center; }

  .hero-proof { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero-proof div { min-height: 72px; padding: 10px; }
  .hero-proof dt { font-size: 1.1rem; }
  .hero-proof dd { font-size: 0.75rem; }

  /* Hero stage hidden on very small — copy is enough */
  .hero-stage { display: none; }

  /* Section headings */
  .section-heading { text-align: center; }
  .section-heading h2 { font-size: 1.75rem; }

  /* Services */
  .service-band { padding: 52px 0; }
  .service-card { padding: 18px; }

  /* Projects */
  .proj-grid { grid-template-columns: 1fr; gap: 12px; }
  .proj-card--featured { grid-column: span 1; }
  .proj-visual { min-height: 120px; }
  .pv-kpis { flex-direction: row; gap: 6px; }
  .pv-kpi { padding: 6px 8px; }
  .pv-kpi strong { font-size: 0.65rem; }
  .pv-bars { height: 38px; }
  .pv-flow-mini { gap: 3px; }
  .pv-flow-mini span { font-size: 0.6rem; padding: 2px 5px; }
  .proj-stack { gap: 4px; }
  .proj-stack span { font-size: 0.62rem; }

  /* FAQ */
  .faq-item summary::after {
    width: 26px;
    height: 26px;
    font-size: 1.1rem;
  }
  .faq-item[open] summary::after { font-size: 1.3rem; }

  /* Contact form */
  .contact-form { padding: 20px 16px; }

  /* Footer */
  .footer-cta { padding: 36px 16px; }
  .footer-cta h2 { font-size: 1.45rem; }
  .site-footer { padding: 28px 0; gap: 14px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
  .footer-email { font-size: 0.9rem; }
}
