:root {
  color-scheme: dark;
  --bg: #090909;
  --surface: #111111;
  --surface-2: #171717;
  --surface-3: #202020;
  --text: #ffffff;
  --text-soft: #cfcfcf;
  --text-muted: #8a8a8a;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --blue: #2563eb;
  --blue-strong: #1f55cf;
  --cyan: #22d3ee;
  --success: #22c55e;
  --error: #ef4444;
  --container: 1220px;
  --section: clamp(72px, 10vw, 140px);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.28);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(37, 99, 235, .035), transparent 540px),
    var(--bg);
  color: var(--text);
  font-family: Manrope, "Plus Jakarta Sans", Inter, "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(37, 99, 235, .075), transparent 28%),
    linear-gradient(245deg, rgba(34, 211, 238, .04), transparent 22%);
  opacity: .72;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(34, 211, 238, .9);
  outline-offset: 4px;
}

::selection {
  background: rgba(37, 99, 235, .45);
  color: var(--text);
}

.container {
  width: calc(100% - 32px);
  max-width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--text);
  color: var(--bg);
  font-weight: 800;
  transition: transform 180ms var(--ease);
}

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

.device-notice[hidden] {
  display: none;
}

.device-notice {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.device-notice.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.device-notice-card {
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background: rgba(17, 17, 17, .96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .48), 0 0 0 1px rgba(37, 99, 235, .08);
  backdrop-filter: blur(16px);
}

.device-notice-label {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.device-notice h2 {
  max-width: 18rem;
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.15;
}

.device-notice p:not(.device-notice-label) {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.device-notice-close {
  width: 100%;
  min-height: 44px;
  margin-top: 16px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
  .device-notice {
    display: none !important;
  }
}

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

.cursor-glow {
  position: fixed;
  z-index: 999;
  top: -120px;
  left: -120px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(37, 99, 235, .12), rgba(34, 211, 238, .035) 38%, transparent 68%);
  mix-blend-mode: screen;
  transition: opacity 220ms var(--ease);
}

.has-cursor-glow .cursor-glow {
  opacity: 1;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(9, 9, 9, .62);
  backdrop-filter: blur(18px);
  transition: border-color 220ms var(--ease), background 220ms var(--ease);
}

.site-header.is-scrolled,
.site-header.simple {
  border-color: var(--line);
  background: rgba(9, 9, 9, .86);
}

.nav {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.05;
  white-space: nowrap;
}

.brand img {
  width: 36px;
  height: 36px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
}

.nav-menu > a:not(.button) {
  position: relative;
  transition: color 180ms var(--ease);
}

.nav-menu > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms var(--ease);
}

.nav-menu > a:not(.button):hover {
  color: var(--text);
}

.nav-menu > a:not(.button):hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span[aria-hidden="true"] {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 180ms var(--ease), opacity 180ms var(--ease);
}

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

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .16), transparent);
  transform: translateX(-120%);
  transition: transform 520ms var(--ease);
}

.button:hover::before {
  transform: translateX(120%);
}

.button::after {
  content: "→";
  font-weight: 800;
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 34px rgba(37, 99, 235, .28);
}

.button-primary:hover {
  background: var(--blue-strong);
  box-shadow: 0 18px 46px rgba(37, 99, 235, .32);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .09);
}

.button-small {
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 14px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: min(94vh, 910px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 136px 0 96px;
  border-bottom: 1px solid var(--line);
}

.hero-asset {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .78;
  animation: hero-drift 18s var(--ease) infinite alternate;
}

.hero-cover {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, .97) 0%, rgba(9, 9, 9, .84) 43%, rgba(9, 9, 9, .16) 100%),
    linear-gradient(180deg, rgba(9, 9, 9, .38) 0%, rgba(9, 9, 9, .14) 48%, rgba(9, 9, 9, .97) 100%),
    linear-gradient(135deg, rgba(37, 99, 235, .12), transparent 42%);
}

.hero-content {
  max-width: 780px;
  margin-inline: auto;
  margin-left: max(calc((100vw - var(--container)) / 2), 16px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 88px;
  line-height: .98;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: 54px;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: 0;
}

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

.hero-copy {
  max-width: 630px;
  margin-bottom: 34px;
  color: var(--text-soft);
  font-size: 22px;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-signals li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

@keyframes hero-drift {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.025) translate3d(-10px, 8px, 0);
  }
}

.section,
.value-strip,
.final-cta {
  padding: var(--section) 0;
}

.value-strip {
  border-bottom: 1px solid var(--line);
  background: #0b0b0b;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--line);
}

.value-item {
  min-height: 236px;
  padding: 28px;
  background: var(--surface);
}

.value-item h2 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.18;
}

.value-item p {
  margin-bottom: 0;
  font-size: 15px;
}

.item-number {
  display: block;
  margin-bottom: 42px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 116px;
}

.section-copy p,
.section-header p {
  max-width: 690px;
  font-size: 17px;
}

.section-header {
  max-width: 830px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-header.narrow {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-header.narrow p {
  margin-inline: auto;
}

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

.type-grid span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}

.type-grid span:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, .48);
  background: #141414;
}

.portfolio-section,
.modalities-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b0b0b;
}

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

.project-card,
.reason-card,
.modality-card,
.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.project-card {
  overflow: hidden;
  position: relative;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), background 240ms var(--ease), box-shadow 240ms var(--ease);
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 1;
  pointer-events: none;
  border-radius: calc(var(--radius-lg) - 1px);
  background: linear-gradient(135deg, rgba(255, 255, 255, .12), transparent 34%);
  opacity: .38;
}

.project-card:hover {
  transform: translateY(-5px) scale(1.005);
  border-color: rgba(37, 99, 235, .42);
  background: #141414;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .38), 0 0 0 1px rgba(37, 99, 235, .08);
}

.project-card img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
  background: #101010;
  border-bottom: 1px solid var(--line);
  transition: transform 420ms var(--ease), filter 420ms var(--ease);
}

.project-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.03);
}

.project-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 240px;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
}

.project-category {
  margin: -2px 0 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.tech-list li {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
}

.tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  margin-bottom: 14px;
  border: 1px solid rgba(37, 99, 235, .38);
  border-radius: 999px;
  background: rgba(37, 99, 235, .12);
  color: #d8e4ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

.text-button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cyan);
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.text-button::after {
  content: " →";
}

.text-button:hover {
  color: var(--text);
  transform: translateX(2px);
}

.text-button:active {
  transform: translateX(0);
}

.text-button.quiet {
  color: var(--text-soft);
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.soft-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, rgba(37, 99, 235, .14), rgba(34, 211, 238, .04));
}

.soft-cta p {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 286px;
  padding: 26px;
}

.process-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 58px;
  border-radius: 14px;
  background: var(--blue);
  color: var(--text);
  font-weight: 800;
}

.process-step p,
.reason-card p,
.modality-card p,
.project-card p {
  margin-bottom: 0;
}

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

.proof-ready {
  padding-top: 0;
  background: var(--bg);
}

.proof-ready-inner {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(28px, 5vw, 66px);
  align-items: start;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(37, 99, 235, .055));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.proof-ready h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.2vw, 42px);
}

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

.proof-grid article {
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(9, 9, 9, .34);
}

.proof-grid span {
  display: block;
  margin-bottom: 32px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}

.proof-grid h3 {
  font-size: 18px;
}

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

.reason-card {
  min-height: 170px;
  padding: 24px;
  box-shadow: none;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease);
}

.reason-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .2);
}

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

.modality-card {
  padding: 30px;
  box-shadow: none;
}

.modality-card.featured {
  border-color: rgba(37, 99, 235, .48);
  background: linear-gradient(180deg, rgba(37, 99, 235, .12), var(--surface) 44%);
}

.modality-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  color: var(--text-soft);
  list-style: none;
}

.modality-card li {
  position: relative;
  padding-left: 24px;
}

.modality-card li::before {
  content: "";
  position: absolute;
  top: .64em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

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

.faq-list {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}

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

.faq-item button {
  position: relative;
  width: 100%;
  min-height: 68px;
  padding: 20px 60px 20px 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%) rotate(0deg);
  color: var(--cyan);
  font-size: 24px;
  font-weight: 600;
  transition: transform 180ms var(--ease), color 180ms var(--ease);
}

.faq-item button[aria-expanded="true"]::after {
  content: "\2212";
  transform: translateY(-50%) rotate(180deg);
}

.faq-panel {
  padding: 0 22px 22px;
}

.js .faq-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  opacity: 0;
  transition: max-height 260ms var(--ease), opacity 180ms var(--ease), padding 220ms var(--ease);
}

.js .faq-item button[aria-expanded="true"] + .faq-panel {
  max-height: var(--faq-panel-height, 280px);
  padding: 0 22px 22px;
  opacity: 1;
}

.faq-panel p {
  margin: 0;
}

.final-cta {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, #0b0b0b, var(--bg));
  padding-top: clamp(92px, 12vw, 170px);
  padding-bottom: clamp(92px, 12vw, 170px);
}

.final-cta-inner {
  max-width: 1080px;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(36px, 6vw, 70px);
  border: 1px solid rgba(37, 99, 235, .34);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, .2), rgba(255, 255, 255, .045) 42%, rgba(34, 211, 238, .06)),
    #0d0d0d;
  box-shadow: 0 36px 110px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.final-cta-inner p {
  max-width: 680px;
}

.final-cta-inner h2 {
  max-width: 760px;
  font-size: clamp(38px, 5vw, 68px);
}

.button-hero-final {
  min-width: 230px;
  min-height: 58px;
  border-radius: 18px;
  white-space: nowrap;
}

.site-footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: #070707;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .7fr;
  gap: 36px;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 320px;
  margin: 0;
  color: var(--text-muted);
}

.site-footer nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer a {
  color: var(--text-soft);
  font-weight: 700;
  transition: color 180ms var(--ease);
}

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

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: none;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(34, 197, 94, .35);
  border-radius: 18px;
  background: #22c55e;
  color: #06130a;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(34, 197, 94, .24);
}

.project-dialog {
  width: min(640px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: transparent;
  color: var(--text);
}

.project-dialog::backdrop {
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(8px);
}

.dialog-card {
  position: relative;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-2);
  color: var(--text);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.dialog-list {
  display: grid;
  gap: 16px;
  margin: 26px 0 28px;
}

.dialog-card > .button {
  width: 100%;
  margin-top: 10px;
}

.dialog-list div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-2);
}

.dialog-list dt {
  margin-bottom: 6px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.dialog-list dd {
  margin: 0;
  color: var(--text-soft);
}

.legal-page,
.not-found {
  min-height: 100vh;
  padding: 130px 0 80px;
  background: var(--bg);
}

.legal-content,
.not-found-inner {
  max-width: 820px;
}

.legal-content h1,
.not-found h1 {
  margin-bottom: 20px;
  font-size: 64px;
  line-height: 1;
}

.legal-content h2 {
  margin-top: 42px;
  margin-bottom: 12px;
  font-size: 24px;
}

.legal-content p {
  font-size: 17px;
}

.not-found {
  display: grid;
  align-items: center;
}

.not-found-inner {
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
}

.not-found-inner img {
  margin-bottom: 22px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px) scale(.996);
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
}

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

@media (max-width: 1080px) {
  h1 {
    font-size: 72px;
  }

  h2 {
    font-size: 46px;
  }

  .value-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .proof-ready-inner,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .proof-ready-inner {
    display: block;
  }

  .proof-grid {
    margin-top: 30px;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    min-height: 480px;
  }

  .project-card {
    display: grid;
    grid-template-columns: .95fr 1fr;
  }

  .project-card img {
    height: 100%;
    aspect-ratio: auto;
  }

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

  .section-copy {
    position: static;
  }
}

@media (max-width: 860px) {
  h1 {
    font-size: 58px;
    line-height: 1;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 22px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .nav-toggle {
    display: inline-flex;
    position: fixed;
    right: 12px;
    top: 12px;
    transform: none;
    border-color: rgba(255, 255, 255, .24);
  }

  .nav-menu {
    position: fixed;
    top: 74px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(17, 17, 17, .98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms var(--ease);
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu > a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .nav-menu .button {
    margin-top: 8px;
  }

  .hero {
    min-height: 880px;
    padding: 124px 0 72px;
    align-items: end;
  }

  .hero-cover {
    background:
      linear-gradient(180deg, rgba(9, 9, 9, .22) 0%, rgba(9, 9, 9, .78) 42%, rgba(9, 9, 9, .98) 100%);
  }

  .hero-asset {
    height: 62%;
    object-position: 64% 0;
  }

  .hero-content {
    margin: 0 auto;
  }

  .modalities-grid,
  .reason-grid,
  .proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    display: block;
  }

  .project-content {
    min-height: 0;
  }

  .floating-whatsapp {
    display: inline-flex;
  }
}

@media (max-width: 620px) {
  :root {
    --section: 68px;
  }

  .container {
    width: calc(100% - 28px);
    max-width: none;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-header p,
  .section-copy p,
  .hero-copy,
  .legal-content p {
    font-size: 16px;
    line-height: 1.68;
  }

  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    right: 14px;
    left: auto;
  }

  .nav-menu {
    top: 68px;
    right: 14px;
    left: 14px;
  }

  .brand span {
    font-size: 14px;
  }

  .hero {
    min-height: 760px;
    padding-top: 104px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.04;
  }

  h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  h3 {
    font-size: 21px;
  }

  .hero-content {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .legal-content h1,
  .not-found h1 {
    font-size: 42px;
  }

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

  .button {
    width: 100%;
  }

  .portfolio-grid {
    gap: 18px;
  }

  .project-card img {
    aspect-ratio: 1.18;
  }

  .project-card p {
    font-size: 15.5px;
    line-height: 1.62;
  }

  .project-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 11px;
    margin-top: 2px;
  }

  .project-actions .text-button {
    width: 100%;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 14px;
    background: rgba(255, 255, 255, .07);
    color: var(--text);
    font-size: 15px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
  }

  .project-actions .text-button:not(.quiet) {
    border-color: rgba(37, 99, 235, .58);
    background: linear-gradient(135deg, var(--blue), var(--blue-strong));
    color: #fff;
  }

  .project-actions .text-button.quiet {
    color: var(--text);
    background: rgba(255, 255, 255, .045);
  }

  .value-grid,
  .type-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .value-item {
    min-height: 0;
  }

  .item-number {
    margin-bottom: 28px;
  }

  .process-step {
    min-height: 0;
  }

  .process-step span {
    margin-bottom: 34px;
  }

  .project-content,
  .modality-card,
  .reason-card,
  .value-item {
    padding: 24px 20px;
  }

  .modality-card,
  .reason-card,
  .value-item,
  .process-step,
  .proof-grid article {
    gap: 16px;
  }

  .tech-list {
    gap: 7px;
    margin-top: 16px;
  }

  .tech-list li {
    font-size: 12px;
    padding: 6px 8px;
  }

  .soft-cta {
    padding: 20px;
  }

  .final-cta-inner,
  .proof-ready-inner,
  .not-found-inner {
    padding: 30px 22px;
  }

  .final-cta-inner {
    min-height: auto;
  }

  .button-hero-final {
    min-width: 0;
  }

  .legal-page {
    padding-top: 112px;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 31px;
  }

  .brand span {
    max-width: 128px;
    white-space: normal;
    line-height: 1.1;
  }

  .hero-signals li {
    width: 100%;
    justify-content: center;
  }
}

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

  .js .reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }

  .js .faq-panel {
    transition: none;
  }
}







/* Plans update 2026-07-29 */
.plans-section { position: relative; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, rgba(37,99,235,.08), transparent 38%), radial-gradient(circle at 50% 0%, rgba(34,211,238,.09), transparent 34%), #0b0b0b; }
.plans-section::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent); opacity: .5; }
.plans-section > .container { position: relative; z-index: 1; }
.plans-header { max-width: 880px; }
.plans-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; align-items: stretch; }
.plan-card { position: relative; isolation: isolate; display: flex; min-height: 720px; flex-direction: column; gap: 22px; overflow: hidden; padding: clamp(24px,2.8vw,34px); border: 1px solid rgba(255,255,255,.12); border-radius: 28px; background: linear-gradient(180deg, rgba(255,255,255,.072), rgba(255,255,255,.035)); box-shadow: 0 30px 90px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.08); transition: transform 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease), background 260ms var(--ease); }
.plan-card::after { content: ""; position: absolute; inset: 1px; z-index: -1; pointer-events: none; border-radius: 27px; background: linear-gradient(135deg, rgba(255,255,255,.12), transparent 34%); opacity: .32; }
.plan-card:hover { transform: translateY(-7px); border-color: rgba(37,99,235,.38); box-shadow: 0 42px 120px rgba(0,0,0,.44), 0 0 0 1px rgba(37,99,235,.08), inset 0 1px 0 rgba(255,255,255,.1); }
.plan-card-essential { margin-top: 34px; }
.plan-card-professional { min-height: 760px; border-color: rgba(37,99,235,.48); background: linear-gradient(180deg, rgba(37,99,235,.2), rgba(255,255,255,.055) 36%, rgba(255,255,255,.04)), #111; box-shadow: 0 46px 130px rgba(0,0,0,.5), 0 0 0 1px rgba(37,99,235,.16), inset 0 1px 0 rgba(255,255,255,.12); }
.plan-card-premium { margin-top: -18px; min-height: 790px; border-color: rgba(34,211,238,.34); background: linear-gradient(145deg, rgba(34,211,238,.13), transparent 28%), linear-gradient(210deg, rgba(37,99,235,.22), rgba(255,255,255,.055) 42%, rgba(255,255,255,.025)), #0d0d0f; box-shadow: 0 52px 150px rgba(0,0,0,.55), 0 0 90px rgba(34,211,238,.08), inset 0 1px 0 rgba(255,255,255,.14); }
.plan-glow, .plan-orbit { position: absolute; inset: auto -18% 48% -18%; z-index: -1; height: 210px; pointer-events: none; background: radial-gradient(circle, rgba(37,99,235,.34), transparent 62%); filter: blur(20px); opacity: .9; }
.plan-orbit { inset: -14% -20% auto -20%; height: 300px; background: conic-gradient(from 120deg, rgba(34,211,238,.38), transparent, rgba(37,99,235,.42), transparent, rgba(255,255,255,.2)); filter: blur(26px); animation: planOrbit 12s linear infinite; }
.plan-topline { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.plan-level, .plan-badge { display: inline-flex; min-height: 30px; align-items: center; padding: 7px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: var(--text-soft); font-size: 12px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.plan-badge { border-color: rgba(37,99,235,.32); background: rgba(37,99,235,.12); color: #dbe7ff; }
.plan-card-premium .plan-badge { border-color: rgba(34,211,238,.34); background: rgba(34,211,238,.11); color: #dcfbff; }
.plan-heading h3 { margin: 0 0 10px; font-size: clamp(34px,4vw,54px); line-height: .96; }
.plan-heading p { min-height: 82px; margin: 0; color: var(--text-soft); font-size: 16px; line-height: 1.65; }
.plan-price-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.plan-price-grid div { padding: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.045); }
.plan-price-grid span { display: block; color: var(--text-muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.plan-price-grid strong { display: block; margin-top: 6px; color: var(--text); font-size: clamp(22px,2.4vw,30px); line-height: 1; }
.plan-price-note { margin: -8px 0 0; padding: 13px 14px; border: 1px solid rgba(34,211,238,.2); border-radius: 16px; background: linear-gradient(135deg, rgba(34,211,238,.095), rgba(37,99,235,.06)); color: var(--text-soft); font-size: 13px; line-height: 1.45; }
.plan-price-note span { display: block; margin-bottom: 5px; color: #dffbff; font-size: 11px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.plan-price-note-featured { border-color: rgba(37,99,235,.28); background: linear-gradient(135deg, rgba(37,99,235,.16), rgba(34,211,238,.055)); }
.plan-price-note-premium { border-color: rgba(34,211,238,.32); background: linear-gradient(135deg, rgba(34,211,238,.14), rgba(255,255,255,.045)); }
.plan-preview { position: relative; min-height: 180px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: rgba(0,0,0,.24); }
.simple-preview { display: grid; align-content: center; gap: 14px; padding: 26px; }
.simple-preview span, .simple-preview div { display: block; height: 12px; border-radius: 999px; background: rgba(255,255,255,.18); }
.simple-preview span:nth-child(1) { width: 72%; } .simple-preview span:nth-child(2) { width: 48%; } .simple-preview span:nth-child(3) { width: 62%; }
.simple-preview div { width: 100%; height: 54px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,.04)); }
.professional-preview { display: grid; grid-template-columns: 1.2fr .8fr; gap: 12px; padding: 16px; background: radial-gradient(circle at 18% 20%, rgba(37,99,235,.32), transparent 34%), rgba(0,0,0,.25); }
.preview-window, .preview-card { border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.08); box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.preview-window { display: grid; grid-row: span 2; align-content: end; gap: 10px; padding: 18px; }
.preview-window span { height: 10px; border-radius: 999px; background: rgba(255,255,255,.28); }
.preview-window span:nth-child(1) { width: 72%; } .preview-window span:nth-child(2) { width: 48%; } .preview-window span:nth-child(3) { width: 58%; } .preview-card.wide { min-height: 82px; }
.premium-preview { min-height: 220px; background: radial-gradient(circle at 50% 34%, rgba(34,211,238,.36), transparent 28%), radial-gradient(circle at 78% 68%, rgba(37,99,235,.4), transparent 24%), rgba(255,255,255,.04); }
.premium-core, .premium-panel, .premium-chip { position: absolute; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.1); backdrop-filter: blur(18px); box-shadow: 0 18px 50px rgba(0,0,0,.3); }
.premium-core { inset: 34px 44px auto 44px; height: 92px; border-radius: 24px; animation: floatPreview 5s var(--ease) infinite; }
.premium-panel { right: 26px; bottom: 24px; width: 54%; height: 58px; border-radius: 18px; }
.premium-chip { width: 58px; height: 34px; border-radius: 999px; }
.premium-chip.one { left: 24px; bottom: 38px; } .premium-chip.two { right: 32px; top: 24px; animation: floatPreview 5.6s var(--ease) infinite reverse; } .premium-chip.three { left: 42%; bottom: 22px; }
.plan-feature-list { display: grid; gap: 11px; padding: 0; margin: 0; list-style: none; }
.plan-feature-list li { position: relative; padding: 12px 12px 12px 36px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(255,255,255,.035); color: var(--text-soft); font-size: 14px; line-height: 1.42; }
.plan-feature-list li::before { content: ""; position: absolute; top: 17px; left: 15px; width: 8px; height: 8px; border-radius: 999px; background: var(--cyan); box-shadow: 0 0 18px rgba(34,211,238,.42); }
.plan-actions { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; margin-top: auto; }
.plan-action { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 12px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(255,255,255,.055); color: var(--text); font-size: 12px; font-weight: 900; letter-spacing: .06em; cursor: pointer; transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease); }
.plan-action:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.085); }
.plan-action-primary { border-color: rgba(37,99,235,.55); background: linear-gradient(135deg, var(--blue), var(--blue-strong)); box-shadow: 0 14px 30px rgba(37,99,235,.22); }
.plan-action-demo { color: var(--cyan); }
.checkout-dialog { width: min(620px, calc(100% - 32px)); padding: 0; border: 0; border-radius: 24px; background: transparent; color: var(--text); }
.checkout-dialog::backdrop { background: rgba(0,0,0,.72); backdrop-filter: blur(12px); }
.checkout-card { position: relative; padding: clamp(26px,4vw,38px); border: 1px solid rgba(255,255,255,.16); border-radius: 24px; background: linear-gradient(145deg, rgba(37,99,235,.16), rgba(255,255,255,.055) 42%, rgba(34,211,238,.06)), #101010; box-shadow: 0 34px 110px rgba(0,0,0,.5); }
.checkout-card h2 { margin-bottom: 12px; font-size: clamp(30px,4vw,44px); }
.checkout-card p { color: var(--text-soft); }
.checkout-summary { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 22px 0; }
.checkout-summary div { padding: 14px; border: 1px solid rgba(255,255,255,.11); border-radius: 16px; background: rgba(255,255,255,.045); }
.checkout-summary span { display: block; color: var(--text-muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.checkout-summary strong { display: block; margin-top: 6px; color: var(--text); }
.checkout-note { padding: 14px; border: 1px solid rgba(34,211,238,.18); border-radius: 16px; background: rgba(34,211,238,.06); }
@keyframes planOrbit { to { transform: rotate(360deg); } }
@keyframes floatPreview { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (max-width: 1080px) { .plans-grid { grid-template-columns: 1fr; } .plan-card, .plan-card-essential, .plan-card-premium { min-height: 0; margin-top: 0; } .plan-heading p { min-height: 0; } }
@media (max-width: 620px) { .plans-header { margin-bottom: 24px; } .plan-card { padding: 22px; border-radius: 22px; } .plan-price-grid, .plan-actions, .checkout-summary { grid-template-columns: 1fr; } .plan-topline { display: grid; justify-content: stretch; } .plan-level, .plan-badge { justify-content: center; } .plan-preview { min-height: 160px; } .plan-action { min-height: 50px; } }/* End plans update 2026-07-29 */


/* Checkout form update 2026-07-29 */
.checkout-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 18px 0 0; }
.checkout-fields label { display: grid; gap: 8px; color: var(--text-soft); font-size: 13px; font-weight: 800; }
.checkout-fields label:last-child { grid-column: 1 / -1; }
.checkout-fields input { width: 100%; min-height: 48px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(255,255,255,.055); color: var(--text); padding: 12px 14px; outline: 0; transition: border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease); }
.checkout-fields input:focus { border-color: rgba(34,211,238,.58); background: rgba(255,255,255,.08); box-shadow: 0 0 0 4px rgba(34,211,238,.09); }
.checkout-fields input::placeholder { color: var(--text-muted); }
.checkout-error { margin: 14px 0 0; padding: 12px 14px; border: 1px solid rgba(239,68,68,.28); border-radius: 14px; background: rgba(239,68,68,.08); color: #fecaca !important; font-size: 14px; font-weight: 700; }
.checkout-card .button[type="submit"] { width: 100%; margin-top: 18px; }
.checkout-card .button[aria-busy="true"], .plan-action[aria-busy="true"] { cursor: wait; opacity: .78; }
@media (max-width: 620px) { .checkout-fields { grid-template-columns: 1fr; } }
/* End checkout form update 2026-07-29 */

/* Pricing refresh 2026-08-01 */
.plan-offer-tag { border-color: rgba(34,211,238,.38); background: linear-gradient(135deg, rgba(34,211,238,.16), rgba(37,99,235,.12)); color: #e4fbff; }
.plan-price-stack, .plan-custom-price { display: grid; gap: 8px; padding: 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(37,99,235,.055)); box-shadow: inset 0 1px 0 rgba(255,255,255,.075); }
.plan-price-stack-featured { border-color: rgba(37,99,235,.34); background: linear-gradient(135deg, rgba(37,99,235,.18), rgba(34,211,238,.065)); }
.plan-price-label { color: var(--text-muted); font-size: 11px; font-weight: 900; letter-spacing: .09em; line-height: 1.2; text-transform: uppercase; }
.price-normal { width: fit-content; color: rgba(255,255,255,.48); font-size: clamp(20px,2.2vw,28px); font-weight: 900; line-height: 1; text-decoration-color: rgba(239,68,68,.9); text-decoration-thickness: 3px; }
.price-offer { display: block; color: var(--text); font-size: clamp(48px,5.5vw,76px); font-weight: 900; line-height: .9; letter-spacing: 0; }
.price-installments { margin: 4px 0 0; padding: 12px 14px; border: 1px solid rgba(34,211,238,.2); border-radius: 14px; background: rgba(34,211,238,.065); color: #dffbff; font-size: 15px; font-weight: 800; line-height: 1.35; }
.price-installments strong { color: #fff; }
.plan-custom-price { min-height: 174px; align-content: center; border-color: rgba(34,211,238,.28); background: linear-gradient(135deg, rgba(34,211,238,.13), rgba(37,99,235,.075)); }
.plan-custom-price span { color: var(--text-muted); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.plan-custom-price strong { color: var(--text); font-size: clamp(30px,3.4vw,44px); line-height: 1.02; }
.plan-custom-price p { margin: 4px 0 0; font-size: 14px; line-height: 1.5; }
.plan-actions { grid-template-columns: 1fr; }
.plan-action { min-height: 54px; text-align: center; }
.hosting-section { border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #0b0b0b, var(--bg)); }
.hosting-card { display: grid; grid-template-columns: minmax(0,.92fr) minmax(280px,.5fr); gap: clamp(24px,4vw,46px); align-items: center; padding: clamp(26px,4.6vw,54px); border: 1px solid rgba(255,255,255,.13); border-radius: 28px; background: linear-gradient(135deg, rgba(37,99,235,.14), rgba(255,255,255,.045) 46%, rgba(34,211,238,.07)), #101010; box-shadow: 0 36px 110px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.08); }
.hosting-copy h2 { margin-bottom: 14px; font-size: clamp(38px,5vw,64px); }
.hosting-copy p { max-width: 620px; }
.hosting-offer { display: grid; gap: 14px; padding: 22px; border: 1px solid rgba(34,211,238,.24); border-radius: 22px; background: rgba(0,0,0,.22); }
.hosting-offer span { color: var(--text-muted); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.hosting-offer strong { color: var(--text); font-size: clamp(38px,4.4vw,58px); line-height: .95; }
.hosting-offer small { display: block; margin-top: 6px; color: var(--text-soft); font-size: 15px; font-weight: 800; }
.hosting-feature-list { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; padding: 0; margin: 0; list-style: none; }
.hosting-feature-list li { position: relative; min-height: 56px; padding: 15px 15px 15px 38px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(255,255,255,.038); color: var(--text-soft); font-weight: 800; }
.hosting-feature-list li::before { content: ""; position: absolute; top: 23px; left: 16px; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px rgba(34,211,238,.42); }
@media (max-width: 1080px) { .hosting-card { grid-template-columns: 1fr; } .hosting-feature-list { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 620px) { .price-offer { font-size: 54px; } .hosting-feature-list { grid-template-columns: 1fr; } .hosting-offer .button { width: 100%; } }
/* End pricing refresh 2026-08-01 */
/* Pricing compact cards 2026-08-01 */
.plan-card, .plan-card-essential, .plan-card-professional, .plan-card-premium { min-height: 0; }
.plan-card-essential, .plan-card-premium { margin-top: 0; }
/* End pricing compact cards 2026-08-01 */

.price-hosting-note { margin: -2px 0 0; color: #e4fbff; font-size: 13px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }

.price-line { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 10px 14px; }
.price-hosting-inline { display: inline-flex; align-items: center; min-height: 34px; padding: 8px 11px; border: 1px solid rgba(34,211,238,.24); border-radius: 999px; background: rgba(34,211,238,.075); color: #e4fbff; font-size: 13px; font-weight: 900; letter-spacing: .02em; white-space: nowrap; }
@media (max-width: 620px) { .price-line { align-items: flex-start; flex-direction: column; } .price-hosting-inline { white-space: normal; } }
/* Dark premium visual polish 2026-08-01 */
body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .018), transparent 24%),
    linear-gradient(125deg, rgba(37, 99, 235, .09), transparent 34%),
    linear-gradient(305deg, rgba(34, 211, 238, .045), transparent 30%),
    #070707;
}

body::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .024) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(115deg, rgba(37, 99, 235, .08), transparent 28%),
    linear-gradient(245deg, rgba(34, 211, 238, .05), transparent 22%);
  background-size: 74px 74px, 74px 74px, auto, auto;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .72) 48%, transparent 100%);
  opacity: .86;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .024), transparent 16%, transparent 82%, rgba(0, 0, 0, .34)),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, .012) 0 1px, transparent 1px 7px);
  opacity: .62;
}

.site-header {
  box-shadow: 0 14px 48px rgba(0, 0, 0, .22), inset 0 -1px 0 rgba(255, 255, 255, .035);
}

.hero {
  background: #070707;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 58%, rgba(255, 255, 255, .095) 58.1%, transparent 58.35%),
    linear-gradient(90deg, rgba(255, 255, 255, .034) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
  background-size: auto, 96px 96px, 96px 96px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 44%, #000 100%);
  opacity: .52;
}

.hero::after {
  content: "";
  position: absolute;
  right: max(16px, calc((100vw - var(--container)) / 2));
  bottom: 94px;
  width: min(38vw, 520px);
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, .82), rgba(255, 255, 255, .48), transparent);
  box-shadow: 0 0 30px rgba(34, 211, 238, .28);
}

.hero-asset {
  opacity: .9;
  filter: saturate(1.14) contrast(1.08) brightness(.88);
}

.hero-cover {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, .985) 0%, rgba(7, 7, 7, .88) 43%, rgba(7, 7, 7, .2) 100%),
    linear-gradient(180deg, rgba(7, 7, 7, .24) 0%, rgba(7, 7, 7, .18) 50%, rgba(7, 7, 7, .98) 100%),
    linear-gradient(135deg, rgba(37, 99, 235, .16), transparent 42%);
}

.hero h1 {
  text-shadow: 0 24px 90px rgba(37, 99, 235, .16), 0 0 1px rgba(255, 255, 255, .32);
}

.hero h1 span:nth-child(2) {
  color: #e8f7ff;
}

.hero-signals li,
.tag,
.plan-badge,
.price-hosting-inline {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09), 0 12px 34px rgba(0, 0, 0, .18);
}

.value-strip,
.proof-ready,
.reasons-section,
.faq-section,
.final-cta {
  position: relative;
  overflow: hidden;
}

.value-strip::before,
.proof-ready::before,
.reasons-section::before,
.faq-section::before,
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .048), transparent 28%),
    linear-gradient(260deg, rgba(34, 211, 238, .035), transparent 26%);
  opacity: .72;
}

.value-strip > *,
.proof-ready > *,
.reasons-section > *,
.faq-section > *,
.final-cta > * {
  position: relative;
  z-index: 1;
}

.value-grid,
.faq-list {
  box-shadow: 0 32px 110px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.value-item,
.type-grid span,
.process-step,
.reason-card,
.proof-grid article,
.dialog-list div {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, .13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .072), rgba(255, 255, 255, .032)),
    #0f0f10;
}

.value-item::after,
.type-grid span::after,
.process-step::after,
.reason-card::after,
.proof-grid article::after,
.dialog-list div::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, .13), transparent 38%);
  opacity: .17;
}

.value-item:hover,
.type-grid span:hover,
.process-step:hover,
.reason-card:hover,
.proof-grid article:hover {
  border-color: rgba(34, 211, 238, .28);
  box-shadow: 0 28px 78px rgba(0, 0, 0, .3), 0 0 0 1px rgba(34, 211, 238, .05);
}

.process-step span {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 42px rgba(37, 99, 235, .22);
}

.proof-ready-inner,
.soft-cta,
.final-cta-inner,
.checkout-card,
.dialog-card {
  border-color: rgba(255, 255, 255, .15);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, .16), rgba(255, 255, 255, .055) 42%, rgba(34, 211, 238, .065)),
    #0d0d0e;
  box-shadow: 0 40px 124px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .09);
}

.plan-card {
  border-color: rgba(255, 255, 255, .15);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .082), rgba(255, 255, 255, .035)),
    #0e0e10;
}

.plan-card-professional {
  border-color: rgba(37, 99, 235, .58);
  box-shadow: 0 50px 145px rgba(0, 0, 0, .54), 0 0 0 1px rgba(37, 99, 235, .18), 0 0 70px rgba(37, 99, 235, .1), inset 0 1px 0 rgba(255, 255, 255, .14);
}

.plan-card-premium {
  border-color: rgba(34, 211, 238, .42);
  box-shadow: 0 56px 160px rgba(0, 0, 0, .58), 0 0 0 1px rgba(34, 211, 238, .12), 0 0 80px rgba(34, 211, 238, .08), inset 0 1px 0 rgba(255, 255, 255, .15);
}

.plan-price-stack,
.plan-custom-price,
.plan-feature-list li,
.price-installments {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .075), 0 14px 36px rgba(0, 0, 0, .16);
}

.button-primary,
.plan-action-primary,
.device-notice-close {
  box-shadow: 0 18px 42px rgba(37, 99, 235, .26), inset 0 1px 0 rgba(255, 255, 255, .22);
}

.button-primary:hover,
.plan-action-primary:hover,
.device-notice-close:hover {
  box-shadow: 0 22px 56px rgba(37, 99, 235, .34), 0 0 0 1px rgba(34, 211, 238, .18), inset 0 1px 0 rgba(255, 255, 255, .26);
}

.faq-item button:hover {
  background: rgba(255, 255, 255, .035);
}

.site-footer {
  background:
    linear-gradient(180deg, #080808, #050505);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

@media (max-width: 760px) {
  .hero::before {
    background-size: auto, 72px 72px, 72px 72px;
    opacity: .38;
  }

  .hero::after {
    right: 16px;
    bottom: 62px;
    width: calc(100% - 32px);
  }

  .value-item::after,
  .type-grid span::after,
  .process-step::after,
  .reason-card::after,
  .proof-grid article::after,
  .dialog-list div::after {
    opacity: .12;
  }
}
/* End dark premium visual polish 2026-08-01 */
/* Pricing alignment clarity 2026-08-01 */
.plans-grid {
  align-items: stretch;
}

.plan-card {
  height: 100%;
}

.plan-heading {
  min-height: 174px;
  display: grid;
  align-content: start;
}

.plan-price-stack,
.plan-custom-price {
  min-height: 258px;
  align-content: start;
}

.price-line {
  min-height: 96px;
  align-items: center;
}

.price-offer {
  display: grid;
  gap: 7px;
}

.price-amount {
  display: block;
}

.price-mode {
  display: inline-flex;
  width: fit-content;
  min-height: 27px;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: #dffbff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
}

.price-installments {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-installments span {
  color: #bdebf4;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.price-installments strong {
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.plan-custom-price p {
  max-width: 24rem;
}

@media (max-width: 1080px) {
  .plan-heading,
  .plan-price-stack,
  .plan-custom-price {
    min-height: 0;
  }

  .price-line {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .price-installments {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* End pricing alignment clarity 2026-08-01 */
/* Executive dark elegance 2026-08-01 */
:root {
  --bg: #05070d;
  --surface: #0b0f18;
  --surface-2: #101725;
  --surface-3: #172136;
  --text: #f8fbff;
  --text-soft: #c9d3e7;
  --text-muted: #8290aa;
  --line: rgba(166, 188, 255, .14);
  --line-strong: rgba(166, 188, 255, .24);
  --blue: #2f6dff;
  --blue-strong: #174cff;
  --cyan: #32e6ff;
  --shadow-soft: 0 28px 96px rgba(0, 0, 0, .46);
}

body {
  background:
    linear-gradient(180deg, rgba(47, 109, 255, .105) 0%, rgba(5, 7, 13, 0) 28%),
    linear-gradient(115deg, rgba(50, 230, 255, .045) 0%, transparent 32%),
    linear-gradient(245deg, rgba(23, 76, 255, .07) 0%, transparent 38%),
    #05070d;
}

body::before {
  background:
    linear-gradient(90deg, rgba(125, 157, 255, .05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(125, 157, 255, .04) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 48%, rgba(50, 230, 255, .055) 48.2%, transparent 48.55%);
  background-size: 92px 92px, 92px 92px, auto;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.96), rgba(0,0,0,.72) 48%, transparent 100%);
  opacity: .78;
}

body::after {
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), transparent 18%, transparent 74%, rgba(0,0,0,.5)),
    repeating-linear-gradient(180deg, rgba(255,255,255,.014) 0 1px, transparent 1px 8px);
  opacity: .42;
}

.site-header {
  border-bottom-color: rgba(166, 188, 255, .1);
  background: rgba(5, 7, 13, .72);
  box-shadow: 0 18px 58px rgba(0, 0, 0, .32), inset 0 -1px 0 rgba(255, 255, 255, .04);
  backdrop-filter: blur(24px) saturate(1.25);
}

.site-header.is-scrolled,
.site-header.simple {
  background: rgba(5, 7, 13, .9);
  box-shadow: 0 18px 64px rgba(0, 0, 0, .42), inset 0 -1px 0 rgba(50, 230, 255, .08);
}

.brand {
  color: #f9fbff;
}

.brand img {
  filter: drop-shadow(0 0 18px rgba(50, 230, 255, .34));
}

.nav-menu {
  color: #b7c3db;
}

.nav-menu > a:not(.button)::after {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), transparent);
  box-shadow: 0 0 18px rgba(50, 230, 255, .58);
}

.button,
.plan-action,
.device-notice-close {
  border-radius: 14px;
}

.button-primary,
.plan-action-primary,
.device-notice-close {
  border-color: rgba(92, 142, 255, .48);
  background: linear-gradient(135deg, #3a7bff 0%, #174cff 48%, #19c7ff 120%);
  color: #fff;
  box-shadow: 0 18px 44px rgba(23, 76, 255, .32), 0 0 0 1px rgba(50, 230, 255, .12), inset 0 1px 0 rgba(255, 255, 255, .28);
}

.button-primary:hover,
.plan-action-primary:hover,
.device-notice-close:hover {
  background: linear-gradient(135deg, #4d88ff 0%, #2057ff 46%, #32e6ff 120%);
  box-shadow: 0 24px 62px rgba(23, 76, 255, .42), 0 0 34px rgba(50, 230, 255, .16), inset 0 1px 0 rgba(255, 255, 255, .34);
}

.button-secondary {
  border-color: rgba(166, 188, 255, .18);
  background: rgba(255, 255, 255, .045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.button-secondary:hover {
  border-color: rgba(50, 230, 255, .28);
  background: rgba(50, 230, 255, .075);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255,255,255,.1);
}

.eyebrow {
  color: #79f2ff;
  text-shadow: 0 0 22px rgba(50, 230, 255, .26);
}

h1,
h2,
h3 {
  color: #f9fbff;
}

h1 {
  text-shadow: 0 34px 120px rgba(23, 76, 255, .22), 0 0 1px rgba(255, 255, 255, .34);
}

.hero {
  border-bottom-color: rgba(166, 188, 255, .13);
  background: #05070d;
}

.hero::before {
  background:
    linear-gradient(112deg, transparent 0 54%, rgba(50, 230, 255, .12) 54.15%, transparent 54.45%),
    linear-gradient(90deg, rgba(166, 188, 255, .045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(166, 188, 255, .035) 1px, transparent 1px);
  background-size: auto, 108px 108px, 108px 108px;
  opacity: .58;
}

.hero::after {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(50, 230, 255, .95), rgba(47, 109, 255, .86), transparent);
  box-shadow: 0 0 34px rgba(50, 230, 255, .38);
}

.hero-asset {
  opacity: .92;
  filter: saturate(1.22) contrast(1.12) brightness(.82);
}

.hero-cover {
  background:
    linear-gradient(90deg, rgba(5, 7, 13, .99) 0%, rgba(5, 7, 13, .91) 43%, rgba(5, 7, 13, .28) 100%),
    linear-gradient(180deg, rgba(5, 7, 13, .22) 0%, rgba(5, 7, 13, .2) 48%, rgba(5, 7, 13, .98) 100%),
    linear-gradient(135deg, rgba(47, 109, 255, .18), transparent 44%);
}

.hero h1 span:nth-child(2) {
  background: linear-gradient(90deg, #ffffff, #c8f7ff 38%, #6eeeff 76%, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.hero-copy,
.section-copy p,
.section-header p,
.final-cta-inner p {
  color: #c6d2e7;
}

.hero-signals li,
.tag,
.plan-level,
.plan-badge,
.price-mode,
.price-hosting-inline {
  border-color: rgba(166, 188, 255, .18);
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
  color: #dce8ff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.11), 0 14px 34px rgba(0,0,0,.22);
}

.plan-badge,
.plan-offer-tag,
.plan-card-premium .plan-badge {
  border-color: rgba(50, 230, 255, .34);
  background: linear-gradient(135deg, rgba(50, 230, 255, .16), rgba(47, 109, 255, .12));
  color: #e6fbff;
}

.section,
.value-strip,
.proof-ready,
.reasons-section,
.faq-section,
.plans-section,
.final-cta {
  position: relative;
}

.section::after,
.value-strip::after,
.proof-ready::after,
.reasons-section::after,
.faq-section::after,
.plans-section::after,
.final-cta::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(166, 188, 255, .18), rgba(50, 230, 255, .18), transparent);
}

.value-strip,
.portfolio-section,
.modalities-section,
.proof-ready,
.reasons-section,
.faq-section,
.plans-section,
.final-cta {
  background:
    linear-gradient(180deg, rgba(9, 14, 24, .78), rgba(5, 7, 13, .98)),
    #05070d;
}

.value-strip::before,
.proof-ready::before,
.reasons-section::before,
.faq-section::before,
.final-cta::before,
.plans-section::before {
  background:
    linear-gradient(100deg, transparent 0%, rgba(50, 230, 255, .07) 32%, transparent 62%),
    linear-gradient(90deg, rgba(166, 188, 255, .038) 1px, transparent 1px),
    linear-gradient(180deg, rgba(166, 188, 255, .028) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  opacity: .5;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
}

.value-grid,
.faq-list,
.proof-ready-inner,
.soft-cta,
.final-cta-inner,
.checkout-card,
.dialog-card {
  border-color: rgba(166, 188, 255, .16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .028)),
    linear-gradient(135deg, rgba(47, 109, 255, .09), transparent 42%),
    #09101b;
  box-shadow: 0 34px 120px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.09);
}

.value-item,
.type-grid span,
.process-step,
.reason-card,
.project-card,
.proof-grid article,
.faq-item,
.plan-feature-list li,
.checkout-summary div,
.dialog-list div {
  border-color: rgba(166, 188, 255, .14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.028)),
    #0b101a;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.075);
}

.value-item::after,
.type-grid span::after,
.process-step::after,
.reason-card::after,
.proof-grid article::after,
.dialog-list div::after {
  background: linear-gradient(135deg, rgba(255,255,255,.16), transparent 34%);
  opacity: .14;
}

.value-item:hover,
.type-grid span:hover,
.process-step:hover,
.reason-card:hover,
.proof-grid article:hover,
.project-card:hover {
  border-color: rgba(50, 230, 255, .34);
  background:
    linear-gradient(180deg, rgba(255,255,255,.082), rgba(255,255,255,.038)),
    #0d1421;
  box-shadow: 0 28px 88px rgba(0,0,0,.36), 0 0 0 1px rgba(50,230,255,.07), inset 0 1px 0 rgba(255,255,255,.1);
}

.item-number,
.proof-grid span,
.faq-item button::after {
  color: #32e6ff;
  text-shadow: 0 0 18px rgba(50,230,255,.22);
}

.process-step span {
  background: linear-gradient(135deg, #3a7bff, #174cff 62%, #32e6ff);
  box-shadow: 0 20px 46px rgba(23,76,255,.32), inset 0 1px 0 rgba(255,255,255,.28);
}

.faq-list {
  overflow: hidden;
}

.faq-item button:hover,
.faq-item button[aria-expanded="true"] {
  background: rgba(50, 230, 255, .055);
}

.plans-section {
  background:
    linear-gradient(180deg, rgba(47,109,255,.11), rgba(5,7,13,.92) 38%, rgba(5,7,13,.99)),
    #05070d;
}

.plans-grid {
  gap: 20px;
}

.plan-card {
  border-color: rgba(166, 188, 255, .16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.078), rgba(255,255,255,.032)),
    linear-gradient(135deg, rgba(47,109,255,.075), transparent 46%),
    #090f19;
  box-shadow: 0 38px 120px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.1);
}

.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  z-index: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(50,230,255,.62), rgba(47,109,255,.54), transparent);
}

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

.plan-card-professional {
  border-color: rgba(47, 109, 255, .62);
  background:
    linear-gradient(180deg, rgba(47,109,255,.22), rgba(255,255,255,.055) 34%, rgba(255,255,255,.032)),
    #0a1020;
  box-shadow: 0 48px 150px rgba(0,0,0,.56), 0 0 0 1px rgba(47,109,255,.18), 0 0 90px rgba(47,109,255,.14), inset 0 1px 0 rgba(255,255,255,.14);
}

.plan-card-premium {
  border-color: rgba(50, 230, 255, .48);
  background:
    linear-gradient(145deg, rgba(50,230,255,.15), transparent 28%),
    linear-gradient(210deg, rgba(47,109,255,.23), rgba(255,255,255,.052) 44%, rgba(255,255,255,.026)),
    #08111b;
  box-shadow: 0 52px 158px rgba(0,0,0,.58), 0 0 0 1px rgba(50,230,255,.13), 0 0 96px rgba(50,230,255,.1), inset 0 1px 0 rgba(255,255,255,.14);
}

.plan-price-stack,
.plan-custom-price {
  border-color: rgba(166,188,255,.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03)),
    rgba(7, 12, 22, .76);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 18px 48px rgba(0,0,0,.22);
}

.plan-price-stack-featured,
.plan-custom-price {
  border-color: rgba(50,230,255,.24);
}

.price-normal {
  color: rgba(201, 211, 231, .48);
}

.price-amount,
.plan-custom-price strong {
  color: #ffffff;
  text-shadow: 0 0 26px rgba(50,230,255,.14);
}

.price-installments {
  border-color: rgba(50,230,255,.23);
  background: linear-gradient(135deg, rgba(50,230,255,.095), rgba(47,109,255,.07));
  color: #e2fbff;
}

.price-installments span {
  color: #9fefff;
}

.site-footer {
  border-top-color: rgba(166,188,255,.12);
  background:
    linear-gradient(180deg, #070a11, #03050a);
}

.site-footer a:hover {
  color: #ffffff;
  text-shadow: 0 0 18px rgba(50,230,255,.18);
}

@media (max-width: 860px) {
  .nav-menu {
    border-color: rgba(166,188,255,.16);
    background:
      linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03)),
      rgba(5, 7, 13, .98);
    box-shadow: 0 28px 88px rgba(0,0,0,.54), inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(22px);
  }

  .hero-cover {
    background:
      linear-gradient(180deg, rgba(5,7,13,.28) 0%, rgba(5,7,13,.82) 42%, rgba(5,7,13,.99) 100%);
  }
}

@media (max-width: 620px) {
  .hero::before {
    background-size: auto, 78px 78px, 78px 78px;
    opacity: .42;
  }

  .plans-grid {
    gap: 16px;
  }
}
/* End executive dark elegance 2026-08-01 */