:root {
  --graphite: #101214;
  --deep-black: #070809;
  --warm-white: #f2f0ea;
  --grain-green: #b6f25c;
  --electric-cyan: #35d8ff;
  --deep-teal: #0f766e;
  --muted-gray: #8d949a;
  --line: rgba(242, 240, 234, 0.1);
  --signal-line: rgba(53, 216, 255, 0.22);
  --panel: rgba(14, 17, 18, 0.82);
  --panel-strong: rgba(17, 22, 23, 0.96);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--warm-white);
  background:
    radial-gradient(circle at 72% 4%, rgba(53, 216, 255, 0.07), transparent 30rem),
    radial-gradient(circle at 12% 20%, rgba(15, 118, 110, 0.1), transparent 28rem),
    radial-gradient(circle at 44% 2%, rgba(242, 240, 234, 0.055), transparent 24rem),
    linear-gradient(145deg, var(--deep-black), #0d1011 50%, #090a0b);
  font-family:
    var(--font-inter, Inter), Manrope, "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.09;
  background-image:
    linear-gradient(rgba(53, 216, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 216, 255, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mix-blend-mode: screen;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.16;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(242, 240, 234, 0.16) 0 1px, transparent 1.4px),
    radial-gradient(circle at 72% 64%, rgba(53, 216, 255, 0.13) 0 1px, transparent 1.6px),
    radial-gradient(circle at 40% 76%, rgba(242, 240, 234, 0.1) 0 1px, transparent 1.5px);
  background-position:
    0 0,
    18px 26px,
    42px 8px;
  background-size:
    72px 72px,
    96px 96px,
    128px 128px;
}

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

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

main {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

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

h1,
h2 {
  font-family:
    var(--font-oswald, "Oswald"), "Arial Narrow", "Bebas Neue", Impact, Haettenschweiler, sans-serif;
  font-stretch: condensed;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 13.6ch;
  font-size: clamp(2.75rem, 5vw, 4.8rem);
  line-height: 0.98;
  text-wrap: balance;
  filter: drop-shadow(0 18px 46px rgba(0, 0, 0, 0.28));
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  line-height: 1;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.2;
}

p {
  color: rgba(242, 240, 234, 0.72);
  line-height: 1.65;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-block {
  padding: 106px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(1240px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 8, 9, 0.82);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(242, 240, 234, 0.05);
  backdrop-filter: blur(22px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.12rem, 1.7vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(53, 216, 255, 0.44);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 42%, rgba(182, 242, 92, 0.9) 42% 58%, transparent 58%),
    linear-gradient(rgba(53, 216, 255, 0.9), rgba(53, 216, 255, 0.9));
  background-size: 100% 100%, 2px 18px;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 0 24px rgba(53, 216, 255, 0.16);
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(242, 240, 234, 0.68);
  font-size: 0.8rem;
}

.site-nav a,
.site-footer nav a {
  transition: color 180ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  color: #0a0d0e;
  background: linear-gradient(180deg, #c8ff74, var(--grain-green));
  box-shadow: 0 0 24px rgba(182, 242, 92, 0.16);
}

.button-secondary {
  color: var(--warm-white);
  border-color: rgba(53, 216, 255, 0.32);
  background: rgba(53, 216, 255, 0.06);
}

.button-secondary:hover {
  border-color: rgba(53, 216, 255, 0.72);
}

.nav-toggle,
.nav-button {
  display: none;
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(242, 240, 234, 0.12);
  border-radius: 999px;
  background: rgba(242, 240, 234, 0.04);
}

.language-switch button {
  min-width: 34px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(242, 240, 234, 0.58);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.language-switch button.active {
  background: rgba(182, 242, 92, 0.9);
  color: var(--deep-black);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 72px;
  align-items: center;
  min-height: calc(100vh - 94px);
  padding: 76px 0 108px;
}

.hero-copy {
  display: grid;
  gap: 22px;
  position: relative;
}

.hero-copy::before {
  content: "";
  width: 78px;
  height: 1px;
  background: linear-gradient(90deg, rgba(182, 242, 92, 0.72), transparent);
  order: -1;
}

.eyebrow {
  color: rgba(182, 242, 92, 0.82);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-text {
  max-width: 660px;
  font-size: clamp(1.03rem, 1.4vw, 1.17rem);
  color: rgba(242, 240, 234, 0.74);
}

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

.hero-tags span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(242, 240, 234, 0.11);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(242, 240, 234, 0.055), transparent),
    rgba(242, 240, 234, 0.035);
  color: rgba(242, 240, 234, 0.76);
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-tags span:first-child {
  border-color: rgba(182, 242, 92, 0.26);
  color: rgba(242, 240, 234, 0.88);
}

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

.hero-visual {
  position: relative;
  min-height: 540px;
}

.studio-visual {
  position: relative;
  min-height: 540px;
}

.studio-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(242, 240, 234, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7, 8, 9, 0.22), rgba(7, 8, 9, 0.72)),
    linear-gradient(90deg, rgba(7, 8, 9, 0.28), rgba(7, 8, 9, 0.02) 46%, rgba(7, 8, 9, 0.5)),
    radial-gradient(circle at 78% 16%, rgba(182, 242, 92, 0.08), transparent 12rem),
    url("../public/rod-vicente-portrait.png");
  background-size: cover;
  background-position: 50% 24%;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(242, 240, 234, 0.06);
}

.studio-image::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image:
    radial-gradient(circle at 16% 24%, rgba(242, 240, 234, 0.14) 0 1px, transparent 1.5px),
    radial-gradient(circle at 68% 66%, rgba(242, 240, 234, 0.1) 0 1px, transparent 1.4px);
  background-size: 58px 58px, 94px 94px;
  mix-blend-mode: screen;
}

.studio-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(7, 8, 9, 0.06) 0%, rgba(7, 8, 9, 0.08) 48%, rgba(7, 8, 9, 0.72)),
    radial-gradient(circle at 50% 28%, transparent, rgba(7, 8, 9, 0.22) 62%);
  pointer-events: none;
}

.studio-light {
  position: absolute;
  width: 42%;
  aspect-ratio: 1;
  left: 7%;
  top: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 240, 234, 0.18), rgba(242, 240, 234, 0.035) 44%, transparent 70%);
  mix-blend-mode: screen;
}

.studio-console {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 34%;
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.2fr;
  gap: 12px;
  opacity: 0.22;
}

.studio-console span {
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(242, 240, 234, 0.42), rgba(15, 118, 110, 0.22));
}

.studio-wave {
  position: absolute;
  left: 15%;
  right: 15%;
  top: 28%;
  display: grid;
  gap: 13px;
  opacity: 0.2;
}

.studio-wave span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 240, 234, 0.34), transparent);
}

.studio-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(242, 240, 234, 0.13);
  border-radius: 8px;
  background: rgba(7, 8, 9, 0.72);
  box-shadow: inset 0 1px 0 rgba(242, 240, 234, 0.08);
  backdrop-filter: blur(18px);
}

.studio-overlay p {
  color: rgba(182, 242, 92, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.studio-overlay strong {
  color: var(--warm-white);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.studio-overlay span {
  color: rgba(242, 240, 234, 0.68);
  font-size: 0.92rem;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading.wide {
  max-width: 860px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  border-top: 1px solid rgba(242, 240, 234, 0.08);
}

.about-photo {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(242, 240, 234, 0.11);
  border-radius: 8px;
  background: rgba(242, 240, 234, 0.04);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(242, 240, 234, 0.06);
}

.about-photo::before,
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.about-photo::before {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(53, 216, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 216, 255, 0.06) 1px, transparent 1px);
  background-size: 38px 38px;
  mix-blend-mode: screen;
}

.about-photo::after {
  background:
    linear-gradient(180deg, rgba(7, 8, 9, 0.02), rgba(7, 8, 9, 0.44)),
    radial-gradient(circle at 18% 12%, rgba(182, 242, 92, 0.12), transparent 13rem);
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: 50% 18%;
  filter: contrast(1.04);
}

.about-copy {
  display: grid;
  gap: 16px;
}

.about-copy h2 {
  max-width: 10ch;
}

.about-text {
  display: grid;
  gap: 18px;
  max-width: 680px;
  margin-top: 6px;
}

.about-text p {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
}

.about-text strong {
  display: inline;
  color: var(--warm-white);
  font-weight: 900;
  box-shadow: inset 0 -0.42em 0 rgba(182, 242, 92, 0.18);
}

.step-grid,
.category-grid,
.track-grid {
  display: grid;
  gap: 16px;
}

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

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

.feature-card,
.track-card,
.license-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242, 240, 234, 0.095);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(242, 240, 234, 0.045), transparent 54%),
    linear-gradient(90deg, rgba(242, 240, 234, 0.025), transparent 36%),
    var(--panel);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.feature-card::before,
.track-card::before,
.license-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(182, 242, 92, 0.38), transparent 34%, rgba(242, 240, 234, 0.12));
}

.feature-card::after,
.track-card::after {
  display: none;
}

.feature-card:hover,
.track-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 240, 234, 0.18);
  background:
    linear-gradient(180deg, rgba(242, 240, 234, 0.06), transparent),
    var(--panel-strong);
}

.feature-card {
  min-height: 230px;
  padding: 28px;
}

.category-card:nth-child(2n),
.track-card:nth-child(2n) {
  transform: translateY(18px);
}

.category-card:nth-child(2n):hover,
.track-card:nth-child(2n):hover {
  transform: translateY(14px);
}

.step-card {
  position: relative;
  display: grid;
  align-content: end;
  gap: 12px;
}

.step-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(242, 240, 234, 0.28);
  font-size: 2rem;
  font-weight: 900;
}

.card-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(242, 240, 234, 0.14);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 38%, rgba(242, 240, 234, 0.62) 38% 62%, transparent 62%),
    linear-gradient(rgba(182, 242, 92, 0.72), rgba(182, 242, 92, 0.72));
  background-size: 100% 100%, 2px 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.category-card {
  display: grid;
  gap: 14px;
}

.mini-wave {
  width: 100%;
  height: 38px;
  border-bottom: 1px solid rgba(242, 240, 234, 0.12);
  background: repeating-linear-gradient(
    90deg,
    rgba(242, 240, 234, 0.06) 0 7px,
    rgba(15, 118, 110, 0.42) 7px 9px,
    transparent 9px 18px
  );
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.benefits-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 20%, rgba(242, 240, 234, 0.045), transparent 22rem),
    rgba(7, 8, 9, 0.46);
}

.benefits-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: center;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.benefit-list span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(242, 240, 234, 0.13);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(53, 216, 255, 0.06), transparent),
    rgba(242, 240, 234, 0.035);
  color: rgba(242, 240, 234, 0.82);
  font-size: 0.9rem;
}

.authority-section,
.positioning-layout,
.clarity-panel {
  display: grid;
  gap: 42px;
}

.authority-section {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  border-top: 1px solid rgba(242, 240, 234, 0.08);
}

.authority-copy,
.positioning-copy,
.clarity-copy {
  display: grid;
  gap: 16px;
}

.authority-copy h2 {
  max-width: 10ch;
}

.authority-copy p:not(.eyebrow),
.positioning-copy p,
.clarity-copy p {
  font-size: clamp(1rem, 1.25vw, 1.08rem);
}

.positioning-statement {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(182, 242, 92, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(182, 242, 92, 0.12), transparent 12rem),
    rgba(242, 240, 234, 0.035);
  box-shadow: inset 0 1px 0 rgba(242, 240, 234, 0.06);
}

.positioning-statement span {
  color: rgba(242, 240, 234, 0.68);
  line-height: 1.55;
}

.positioning-statement strong {
  color: var(--warm-white);
  font-family:
    var(--font-oswald, "Oswald"), "Arial Narrow", "Bebas Neue", Impact, Haettenschweiler, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.positioning-section {
  border-top: 1px solid rgba(242, 240, 234, 0.08);
}

.positioning-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
}

.positioning-copy {
  padding: 28px;
  border-left: 2px solid rgba(182, 242, 92, 0.42);
  background:
    linear-gradient(90deg, rgba(182, 242, 92, 0.055), transparent 34%),
    rgba(242, 240, 234, 0.022);
}

.comparison-section {
  border-top: 1px solid rgba(242, 240, 234, 0.08);
}

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

.comparison-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(242, 240, 234, 0.095);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(242, 240, 234, 0.045), transparent 54%),
    radial-gradient(circle at 90% 8%, rgba(53, 216, 255, 0.055), transparent 11rem),
    var(--panel);
}

.comparison-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(182, 242, 92, 0.38), transparent 42%, rgba(53, 216, 255, 0.18));
}

.comparison-card > span {
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--grain-green);
  box-shadow: 0 0 18px rgba(182, 242, 92, 0.22);
}

.comparison-card h3 {
  color: var(--warm-white);
}

.clarity-section {
  padding-top: 56px;
}

.clarity-panel {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  padding: 34px;
  border: 1px solid rgba(242, 240, 234, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(53, 216, 255, 0.075), transparent 32%),
    radial-gradient(circle at 98% 12%, rgba(182, 242, 92, 0.08), transparent 16rem),
    rgba(7, 8, 9, 0.58);
  box-shadow: inset 0 1px 0 rgba(242, 240, 234, 0.06), 0 24px 80px rgba(0, 0, 0, 0.16);
}

.clarity-copy p:last-child {
  color: rgba(242, 240, 234, 0.88);
  font-weight: 900;
}

.pricing-section {
  border-top: 1px solid rgba(242, 240, 234, 0.08);
}

.pricing-grid,
.addons-grid {
  display: grid;
  gap: 16px;
}

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

.launch-notice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.44fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 22px;
}

.launch-notice > div,
.launch-notice > span,
.important-note,
.pricing-callout {
  border: 1px solid rgba(182, 242, 92, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(182, 242, 92, 0.07), transparent 48%),
    rgba(242, 240, 234, 0.035);
  box-shadow: inset 0 1px 0 rgba(242, 240, 234, 0.055);
}

.launch-notice > div {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.launch-notice strong,
.important-note strong,
.pricing-callout strong {
  color: var(--warm-white);
  font-size: 0.9rem;
  font-weight: 900;
}

.launch-notice > span {
  display: flex;
  align-items: center;
  padding: 18px;
  color: rgba(242, 240, 234, 0.82);
  font-weight: 900;
  line-height: 1.45;
}

.pricing-card,
.addon-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(242, 240, 234, 0.105);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(242, 240, 234, 0.048), transparent 48%),
    radial-gradient(circle at 88% 8%, rgba(53, 216, 255, 0.055), transparent 12rem),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(242, 240, 234, 0.045);
}

.pricing-card {
  min-height: 100%;
  padding: 26px;
}

.pricing-card::before,
.addon-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(182, 242, 92, 0.42), transparent 40%, rgba(53, 216, 255, 0.18));
}

.pricing-card.is-popular {
  border-color: rgba(182, 242, 92, 0.42);
  background:
    linear-gradient(180deg, rgba(182, 242, 92, 0.09), transparent 44%),
    radial-gradient(circle at 88% 8%, rgba(182, 242, 92, 0.12), transparent 13rem),
    var(--panel-strong);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28), 0 0 34px rgba(182, 242, 92, 0.08);
}

.pricing-card.is-premium {
  border-color: rgba(53, 216, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(53, 216, 255, 0.08), transparent 45%),
    radial-gradient(circle at 90% 8%, rgba(182, 242, 92, 0.08), transparent 13rem),
    var(--panel-strong);
}

.pricing-card.is-value {
  border-color: rgba(242, 240, 234, 0.18);
  background:
    linear-gradient(180deg, rgba(242, 240, 234, 0.07), transparent 45%),
    radial-gradient(circle at 90% 8%, rgba(182, 242, 92, 0.08), transparent 13rem),
    var(--panel-strong);
}

.pricing-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.pricing-card-top h3,
.addon-card h3 {
  color: var(--warm-white);
  font-size: 1.08rem;
}

.pricing-card-top span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(182, 242, 92, 0.32);
  border-radius: 999px;
  background: rgba(182, 242, 92, 0.1);
  color: rgba(182, 242, 92, 0.94);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-line {
  color: var(--warm-white);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
}

.package-price {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(242, 240, 234, 0.09);
  border-radius: 8px;
  background: rgba(7, 8, 9, 0.34);
}

.package-price span {
  color: rgba(182, 242, 92, 0.82);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-price strong {
  color: var(--warm-white);
  font-family:
    var(--font-oswald, "Oswald"), "Arial Narrow", "Bebas Neue", Impact, Haettenschweiler, sans-serif;
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  line-height: 0.95;
}

.package-price em {
  color: rgba(242, 240, 234, 0.56);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 800;
}

.package-block {
  display: grid;
  gap: 8px;
  padding-top: 2px;
}

.package-block strong,
.package-note strong {
  color: rgba(182, 242, 92, 0.86);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-block ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-block li {
  position: relative;
  padding-left: 18px;
  color: rgba(242, 240, 234, 0.76);
  font-size: 0.9rem;
  line-height: 1.45;
}

.package-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(182, 242, 92, 0.68);
}

.package-muted {
  padding: 14px;
  border: 1px solid rgba(242, 240, 234, 0.08);
  border-radius: 8px;
  background: rgba(7, 8, 9, 0.28);
}

.package-muted li {
  color: rgba(242, 240, 234, 0.58);
}

.package-muted li::before {
  background: rgba(242, 240, 234, 0.26);
}

.package-note {
  padding: 14px;
  border-left: 2px solid rgba(53, 216, 255, 0.38);
  background: rgba(53, 216, 255, 0.045);
  color: rgba(242, 240, 234, 0.66);
  font-size: 0.88rem;
  line-height: 1.55;
}

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

.pricing-note-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: 16px;
  margin-top: 18px;
}

.important-note,
.pricing-callout {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.pricing-callout .button {
  width: fit-content;
  margin-top: 4px;
}

.payment-note {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(53, 216, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(53, 216, 255, 0.055), transparent 46%),
    rgba(242, 240, 234, 0.032);
  color: rgba(242, 240, 234, 0.68);
  box-shadow: inset 0 1px 0 rgba(242, 240, 234, 0.05);
}

.payment-note strong {
  color: var(--warm-white);
  font-size: 0.9rem;
  font-weight: 900;
}

.payment-note p {
  max-width: 78ch;
  font-size: 0.9rem;
  line-height: 1.55;
}

.addons-block {
  margin-top: 54px;
}

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

.addon-card {
  padding: 22px;
}

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

.book-call-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 8%, rgba(182, 242, 92, 0.09), transparent 18rem),
    radial-gradient(circle at 84% 76%, rgba(53, 216, 255, 0.07), transparent 20rem),
    rgba(7, 8, 9, 0.58);
}

.book-call-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 52px;
  align-items: start;
}

.book-call-copy {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(242, 240, 234, 0.1);
  border-radius: 8px;
  background: rgba(242, 240, 234, 0.035);
  box-shadow: inset 0 1px 0 rgba(242, 240, 234, 0.05);
}

.book-subtitle {
  color: var(--warm-white);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  font-weight: 900;
}

.book-call-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.call-platforms {
  display: grid;
  gap: 12px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(242, 240, 234, 0.09);
}

.call-platforms p {
  color: rgba(242, 240, 234, 0.62);
  font-size: 0.86rem;
  line-height: 1.45;
}

.call-platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.call-platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 11px;
  border: 1px solid rgba(242, 240, 234, 0.11);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(53, 216, 255, 0.045), transparent),
    rgba(242, 240, 234, 0.035);
  color: rgba(242, 240, 234, 0.74);
  font-size: 0.78rem;
  font-weight: 900;
}

.call-platform-badge svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: none;
  overflow: visible;
}

.floating-whatsapp-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(182, 242, 92, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(242, 240, 234, 0.28), transparent 34%),
    linear-gradient(180deg, #c8ff74, var(--grain-green));
  color: #071009;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34), 0 0 28px rgba(182, 242, 92, 0.16);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.floating-whatsapp-button svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.floating-whatsapp-button:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(242, 240, 234, 0.52);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.38), 0 0 36px rgba(182, 242, 92, 0.24);
}

.track-card {
  min-height: 300px;
  padding: 22px;
}

.track-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(242, 240, 234, 0.1);
  border-radius: 999px;
  background: rgba(242, 240, 234, 0.035);
  color: rgba(242, 240, 234, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.play-button {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(53, 216, 255, 0.5);
  border-radius: 50%;
  background: rgba(53, 216, 255, 0.08);
  cursor: pointer;
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--grain-green);
}

.track-lines {
  display: grid;
  gap: 7px;
  margin: 36px 0 24px;
}

.track-lines span {
  height: 2px;
  background: linear-gradient(90deg, rgba(242, 240, 234, 0.62), rgba(15, 118, 110, 0.22), transparent);
}

.track-lines span:nth-child(2) {
  width: 72%;
}

.track-lines span:nth-child(3) {
  width: 48%;
}

.track-card h3 {
  margin-bottom: 8px;
}

.track-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted-gray);
  font-size: 0.82rem;
}

.track-meta strong {
  color: rgba(182, 242, 92, 0.8);
}

.custom-player {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 22px;
  padding: 14px;
  border: 1px solid rgba(242, 240, 234, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(53, 216, 255, 0.055), transparent 42%),
    rgba(7, 8, 9, 0.44);
  box-shadow: inset 0 1px 0 rgba(242, 240, 234, 0.04);
}

.custom-play {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 240, 234, 0.18);
  border-radius: 50%;
  background: rgba(242, 240, 234, 0.045);
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.custom-play:hover {
  transform: scale(1.04);
  border-color: rgba(182, 242, 92, 0.42);
  background: rgba(182, 242, 92, 0.08);
}

.custom-play span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--warm-white);
}

.custom-player.is-playing .custom-play span {
  width: 12px;
  height: 15px;
  margin-left: 0;
  border: 0;
  background:
    linear-gradient(90deg, var(--grain-green) 0 4px, transparent 4px 8px, var(--grain-green) 8px 12px);
}

.player-main {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.player-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(242, 240, 234, 0.58);
  font-size: 0.76rem;
  font-weight: 800;
}

.player-wave {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
  height: 46px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.player-wave i {
  position: relative;
  z-index: 1;
  flex: 1 0 2px;
  min-width: 2px;
  max-width: 3px;
  border-radius: 999px;
  background: rgba(242, 240, 234, 0.32);
}

.player-wave-progress {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  width: 0%;
  background: linear-gradient(90deg, rgba(53, 216, 255, 0.34), rgba(182, 242, 92, 0.22));
  transition: width 80ms linear;
}

.custom-player.is-playing .player-wave i {
  background: rgba(53, 216, 255, 0.74);
  box-shadow: 0 0 8px rgba(53, 216, 255, 0.16);
}

.track-source {
  display: none;
}

.license-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 42px;
  align-items: center;
}

.license-copy {
  display: grid;
  gap: 16px;
}

.license-card {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.license-card div {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(242, 240, 234, 0.08);
  color: rgba(242, 240, 234, 0.84);
  line-height: 1.35;
}

.license-card div:last-child {
  border-bottom: 0;
}

.license-card span {
  width: 9px;
  height: 9px;
  display: inline-block;
  align-self: start;
  margin-top: 0.42em;
  border-radius: 50%;
  background: rgba(182, 242, 92, 0.86);
  box-shadow: 0 0 18px rgba(182, 242, 92, 0.22);
}

.license-card div > span:last-child {
  width: auto;
  height: auto;
  display: block;
  align-self: center;
  margin-top: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.human-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 44px;
  align-items: center;
  border-top: 1px solid rgba(242, 240, 234, 0.08);
  border-bottom: 1px solid rgba(242, 240, 234, 0.08);
}

.human-copy {
  display: grid;
  gap: 16px;
}

.human-copy p:not(.eyebrow) {
  max-width: 720px;
  font-size: 1.05rem;
}

.human-card {
  padding: 30px;
  border: 1px solid rgba(242, 240, 234, 0.11);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 10%, rgba(182, 242, 92, 0.07), transparent 12rem),
    rgba(242, 240, 234, 0.035);
  box-shadow: inset 0 1px 0 rgba(242, 240, 234, 0.06);
}

.human-card-label {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(182, 242, 92, 0.82);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.human-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.human-card li {
  position: relative;
  padding-left: 20px;
  color: rgba(242, 240, 234, 0.78);
  line-height: 1.55;
}

.human-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(182, 242, 92, 0.72);
}

.trust-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.66fr);
  align-items: center;
  gap: 42px;
  padding: 88px 28px;
  border: 1px solid rgba(242, 240, 234, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(53, 216, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(242, 240, 234, 0.045), rgba(242, 240, 234, 0.018)),
    rgba(7, 8, 9, 0.58);
  box-shadow: inset 0 1px 0 rgba(242, 240, 234, 0.06), 0 24px 80px rgba(0, 0, 0, 0.18);
}

.trust-copy {
  display: grid;
  gap: 18px;
}

.trust-copy h2 {
  max-width: 12ch;
}

.trust-text {
  display: grid;
  gap: 14px;
  max-width: 780px;
}

.trust-text p {
  font-size: 1.04rem;
}

.trust-support {
  max-width: 640px;
  color: rgba(242, 240, 234, 0.88);
  font-weight: 800;
}

.trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.trust-signal {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(182, 242, 92, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(182, 242, 92, 0.12), transparent 12rem),
    rgba(16, 18, 20, 0.68);
  box-shadow: inset 0 1px 0 rgba(242, 240, 234, 0.06);
}

.trust-signal-kicker {
  color: rgba(53, 216, 255, 0.84);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-signal strong {
  max-width: 13ch;
  font-family:
    var(--font-oswald, "Oswald"), "Arial Narrow", "Bebas Neue", Impact, Haettenschweiler, sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.65rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.trust-signal-lines {
  display: grid;
  gap: 6px;
  padding: 10px 0;
}

.trust-signal-lines span {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(182, 242, 92, 0.76), rgba(53, 216, 255, 0.2), transparent);
}

.trust-signal-lines span:nth-child(2) {
  width: 84%;
}

.trust-signal-lines span:nth-child(3) {
  width: 66%;
}

.trust-signal-lines span:nth-child(4) {
  width: 42%;
}

.trust-signal ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-signal li {
  padding-top: 10px;
  border-top: 1px solid rgba(242, 240, 234, 0.08);
  color: rgba(242, 240, 234, 0.76);
  font-size: 0.88rem;
  font-weight: 800;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  align-items: start;
  gap: 34px;
  padding: 96px 28px;
  border: 1px solid rgba(182, 242, 92, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(182, 242, 92, 0.14), transparent 25rem),
    rgba(7, 8, 9, 0.62);
}

.cta-copy {
  display: grid;
  gap: 18px;
}

.cta-section p:not(.eyebrow),
.form-note {
  max-width: 640px;
}

.brief-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(242, 240, 234, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(242, 240, 234, 0.055), transparent 46%),
    rgba(7, 8, 9, 0.46);
  box-shadow: inset 0 1px 0 rgba(242, 240, 234, 0.045);
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.brief-form label {
  display: grid;
  gap: 8px;
}

.brief-form label span {
  color: rgba(242, 240, 234, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-form input,
.brief-form textarea {
  width: 100%;
  border: 1px solid rgba(242, 240, 234, 0.13);
  border-radius: 6px;
  background: rgba(16, 18, 20, 0.86);
  color: var(--warm-white);
  font: inherit;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.brief-form input {
  min-height: 48px;
  padding: 0 14px;
}

.brief-form textarea {
  min-height: 132px;
  resize: vertical;
  padding: 13px 14px;
}

.brief-form input:focus,
.brief-form textarea:focus {
  border-color: rgba(182, 242, 92, 0.46);
  background: rgba(16, 18, 20, 0.96);
  box-shadow: 0 0 0 3px rgba(182, 242, 92, 0.08);
}

.brief-form ::placeholder {
  color: rgba(141, 148, 154, 0.75);
}

.file-field {
  padding: 14px;
  border: 1px dashed rgba(53, 216, 255, 0.24);
  border-radius: 8px;
  background: rgba(53, 216, 255, 0.035);
}

.file-field input {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(242, 240, 234, 0.78);
}

.file-field input::file-selector-button {
  min-height: 36px;
  margin-right: 12px;
  padding: 0 13px;
  border: 1px solid rgba(242, 240, 234, 0.16);
  border-radius: 999px;
  background: rgba(242, 240, 234, 0.08);
  color: var(--warm-white);
  font-weight: 900;
  cursor: pointer;
}

.file-field small,
.form-note {
  color: rgba(242, 240, 234, 0.56);
  font-size: 0.82rem;
  line-height: 1.5;
}

.selected-file-list {
  display: grid;
  gap: 10px;
}

.selected-file-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 38px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(53, 216, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(53, 216, 255, 0.055), transparent 46%),
    rgba(7, 8, 9, 0.42);
}

.selected-file-main {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.selected-file-main strong,
.selected-file-main span {
  overflow-wrap: anywhere;
}

.selected-file-main strong {
  color: var(--warm-white);
  font-size: 0.9rem;
  line-height: 1.35;
}

.selected-file-main span {
  color: rgba(242, 240, 234, 0.58);
  font-size: 0.78rem;
  line-height: 1.4;
}

.selected-file-item em {
  min-width: 78px;
  padding: 6px 9px;
  border: 1px solid rgba(182, 242, 92, 0.2);
  border-radius: 999px;
  background: rgba(182, 242, 92, 0.08);
  color: rgba(182, 242, 92, 0.92);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.selected-file-item.is-uploading em {
  border-color: rgba(53, 216, 255, 0.26);
  background: rgba(53, 216, 255, 0.08);
  color: rgba(143, 223, 231, 0.96);
}

.selected-file-item.is-uploaded em {
  border-color: rgba(182, 242, 92, 0.34);
  background: rgba(182, 242, 92, 0.12);
}

.selected-file-item.is-error {
  border-color: rgba(255, 105, 105, 0.36);
}

.selected-file-item.is-error em {
  border-color: rgba(255, 105, 105, 0.38);
  background: rgba(255, 105, 105, 0.1);
  color: rgba(255, 160, 160, 0.95);
}

.remove-file-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 240, 234, 0.14);
  border-radius: 50%;
  background: rgba(242, 240, 234, 0.055);
  color: rgba(242, 240, 234, 0.82);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.remove-file-button:hover {
  border-color: rgba(182, 242, 92, 0.36);
  background: rgba(182, 242, 92, 0.1);
  color: var(--warm-white);
}

.remove-file-button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.file-feedback {
  margin: -2px 0 0;
  color: rgba(242, 240, 234, 0.58);
  font-size: 0.82rem;
  line-height: 1.45;
}

.file-feedback.is-error {
  color: rgba(255, 160, 160, 0.92);
}

.upload-progress {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 58px;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(182, 242, 92, 0.18);
  border-radius: 999px;
  background: rgba(242, 240, 234, 0.035);
}

.upload-progress[hidden] {
  display: none;
}

.upload-progress em {
  color: rgba(242, 240, 234, 0.62);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.upload-progress-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(242, 240, 234, 0.08);
}

.upload-progress-bar span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--electric-cyan), var(--grain-green));
  transition: width 160ms ease;
}

.upload-progress strong {
  color: rgba(242, 240, 234, 0.78);
  font-size: 0.78rem;
  text-align: right;
}

.brief-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.brief-form .button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 46px;
  color: rgba(242, 240, 234, 0.62);
}

.site-footer p {
  margin-top: 10px;
  font-size: 0.92rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.86rem;
}

.social-space {
  display: flex;
  gap: 10px;
}

.social-space a,
.social-space span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(242, 240, 234, 0.04);
  color: rgba(242, 240, 234, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.social-space svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.social-space a:hover {
  border-color: rgba(182, 242, 92, 0.42);
  background: rgba(182, 242, 92, 0.08);
  color: var(--warm-white);
}

@keyframes pulse-wave {
  0%,
  100% {
    transform: scaleY(0.62);
  }
  50% {
    transform: scaleY(1);
  }
}

@keyframes slow-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes signal-scan {
  0%,
  100% {
    transform: translateX(-18px);
    opacity: 0.26;
  }
  50% {
    transform: translateX(230px);
    opacity: 0.72;
  }
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-button {
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    cursor: pointer;
  }

  .nav-button span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--warm-white);
  }

  .site-nav,
  .header-tools .header-action {
    display: none;
  }

  .header-tools {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .nav-toggle:checked ~ .site-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-items: start;
    gap: 14px;
    width: 100%;
    padding: 14px 2px 4px;
  }

  .hero,
  .about-section,
  .license-section,
  .benefits-layout,
  .human-section,
  .trust-contact,
  .cta-section,
  .authority-section,
  .positioning-layout,
  .clarity-panel,
  .launch-notice,
  .pricing-note-row,
  .book-call-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 520px;
  }

  .step-grid,
  .category-grid,
  .track-grid,
  .pricing-grid,
  .comparison-grid,
  .addons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .book-call-layout {
    gap: 28px;
  }

  .license-section {
    gap: 24px;
  }

  .about-section {
    gap: 34px;
  }

  .about-photo {
    min-height: 520px;
  }
}

@media (max-width: 680px) {
  .section-shell,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .section-block {
    padding: 68px 0;
  }

  .site-header {
    width: min(100% - 24px, 1240px);
    margin-top: 12px;
  }

  h1 {
    font-size: clamp(2.35rem, 11.2vw, 3.65rem);
  }

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

  .hero {
    gap: 34px;
    padding-bottom: 70px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-visual {
    min-height: 450px;
  }

  .studio-visual {
    min-height: 450px;
  }

  .studio-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }

  .studio-console {
    left: 12%;
    right: 12%;
  }

  .about-photo {
    min-height: 420px;
  }

  .about-copy h2 {
    max-width: 12ch;
  }

  .step-grid,
  .category-grid,
  .track-grid,
  .pricing-grid,
  .comparison-grid,
  .addons-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .track-card,
  .pricing-card,
  .comparison-card,
  .addon-card {
    min-height: 210px;
  }

  .pricing-card,
  .positioning-statement,
  .positioning-copy,
  .clarity-panel,
  .launch-notice > div,
  .launch-notice > span,
  .important-note,
  .pricing-callout,
  .book-call-copy {
    padding: 20px;
  }

  .pricing-card-top {
    display: grid;
  }

  .book-call-actions .button {
    width: 100%;
  }

  .selected-file-item {
    grid-template-columns: minmax(0, 1fr) 38px;
  }

  .selected-file-item em {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .call-platform-row {
    gap: 8px;
  }

  .call-platform-badge {
    min-height: 36px;
    padding: 0 10px;
  }

  .floating-whatsapp-button {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .floating-whatsapp-button svg {
    width: 29px;
    height: 29px;
  }

  .pricing-callout .button {
    width: 100%;
  }

  .category-card:nth-child(2n),
  .track-card:nth-child(2n),
  .category-card:nth-child(2n):hover,
  .track-card:nth-child(2n):hover {
    transform: none;
  }

  .cta-section {
    padding: 72px 18px;
  }

  .trust-contact {
    padding: 72px 18px;
  }

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

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

  .brief-form {
    padding: 18px;
  }

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

.site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

/* Contact form hardening for static preview and Chrome file:// rendering. */
#contact.cta-section {
  justify-items: stretch;
  text-align: left;
}

#contact .cta-copy {
  align-self: start;
  justify-items: start;
  max-width: 520px;
}

#contact .brief-form {
  width: 100%;
  max-width: 560px;
  justify-self: end;
  align-self: start;
}

#contact .brief-form,
#contact .brief-form * {
  box-sizing: border-box;
}

#contact .brief-form label,
#contact .file-field {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 8px;
  width: 100%;
  min-width: 0;
}

#contact .brief-form input:not([type="file"]),
#contact .brief-form textarea {
  display: block;
  width: 100%;
  min-width: 0;
  appearance: none;
}

#contact .brief-form textarea {
  line-height: 1.45;
}

#contact .file-field input[type="file"] {
  width: 100%;
  overflow: hidden;
}

#contact .file-field small,
#contact .form-note {
  display: block;
  width: 100%;
}

.result-section,
.result-section.cta-section {
  min-height: 72vh;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  text-align: center;
  justify-items: center;
  align-items: center;
}

.result-card {
  width: min(100%, 680px);
  display: grid;
  justify-items: center;
  gap: 18px;
  margin: 0 auto;
  text-align: center;
}

.result-card h1 {
  max-width: 10ch;
  text-align: center;
  margin-inline: auto;
}

.result-card p {
  max-width: 520px;
  margin-inline: auto;
}

.result-card .button {
  min-width: min(100%, 320px);
}

.result-id {
  padding: 8px 12px;
  border: 1px solid rgba(242, 240, 234, 0.1);
  border-radius: 999px;
  background: rgba(242, 240, 234, 0.035);
  color: rgba(242, 240, 234, 0.58);
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  #contact .brief-form {
    max-width: none;
    justify-self: stretch;
  }
}

@media print {
  @page {
    margin: 0.55in;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #111 !important;
    filter: none !important;
    text-shadow: none !important;
    transition: none !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  html,
  body,
  main {
    width: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    background: #fff !important;
    color: #111 !important;
  }

  body::before,
  body::after,
  .site-header,
  .nav-toggle,
  .nav-button,
  .site-nav,
  .header-tools,
  .hero-visual,
  .studio-visual,
  .studio-image,
  .studio-light,
  .studio-console,
  .studio-wave,
  .studio-overlay,
  .about-photo,
  .mini-wave,
  .card-icon,
  .track-lines,
  .custom-player,
  .track-source,
  .social-space,
  .site-footer nav,
  .call-platforms,
  .floating-whatsapp-button,
  video,
  canvas,
  iframe {
    display: none !important;
  }

  .section-shell,
  .site-footer {
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .section-block,
  .hero,
  .about-section,
  .authority-section,
  .positioning-section,
  .benefits-band,
  .comparison-section,
  .pricing-section,
  .clarity-section,
  .book-call-band,
  .license-section,
  .human-section,
  .trust-contact,
  .cta-section {
    display: block !important;
    padding: 0 0 24px !important;
    margin: 0 0 24px !important;
    border: 0 !important;
    border-bottom: 1px solid #d7d7d7 !important;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .hero {
    min-height: 0 !important;
  }

  .hero-copy,
  .about-copy,
  .authority-copy,
  .positioning-layout,
  .positioning-copy,
  .benefits-layout,
  .license-copy,
  .human-copy,
  .trust-copy,
  .cta-copy,
  .book-call-layout,
  .book-call-copy,
  .clarity-panel,
  .clarity-copy {
    display: block !important;
    max-width: none !important;
    padding: 0 !important;
    border: 0 !important;
  }

  h1,
  h2,
  h3 {
    page-break-after: avoid;
    break-after: avoid;
    color: #111 !important;
  }

  h1 {
    max-width: none !important;
    font-size: 34pt !important;
    line-height: 1 !important;
  }

  h2 {
    font-size: 22pt !important;
    line-height: 1.08 !important;
    margin: 0 0 10px !important;
  }

  h3 {
    font-size: 13pt !important;
  }

  p,
  li,
  span,
  strong,
  em,
  label,
  small {
    color: #222 !important;
    line-height: 1.45 !important;
  }

  p {
    margin: 0 0 8px !important;
  }

  a {
    color: #111 !important;
    text-decoration: none !important;
  }

  .button {
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    display: inline !important;
    font-weight: 900 !important;
  }

  .button[href^="http"]::after,
  .button[href^="BOOK"]::after,
  .button[href^="LEMON"]::after {
    content: " (" attr(href) ")";
    font-weight: 500;
  }

  .eyebrow,
  .track-kicker,
  .human-card-label,
  .trust-signal-kicker,
  .pricing-card-top span,
  .package-price span {
    color: #333 !important;
    letter-spacing: 0 !important;
  }

  .hero-tags,
  .hero-actions,
  .benefit-list,
  .trust-actions,
  .book-call-actions {
    display: block !important;
  }

  .hero-tags span,
  .benefit-list span {
    display: inline !important;
    padding: 0 !important;
    border: 0 !important;
    margin-right: 8px !important;
  }

  .step-grid,
  .category-grid,
  .comparison-grid,
  .pricing-grid,
  .addons-grid,
  .track-grid,
  .form-grid,
  .pricing-note-row,
  .launch-notice,
  .license-card,
  .human-card,
  .trust-signal {
    display: block !important;
  }

  .feature-card,
  .comparison-card,
  .pricing-card,
  .addon-card,
  .track-card,
  .license-card,
  .human-card,
  .trust-signal,
  .launch-notice > div,
  .launch-notice > span,
  .important-note,
  .pricing-callout,
  .payment-note,
  .positioning-statement {
    min-height: 0 !important;
    padding: 12px !important;
    margin: 0 0 12px !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 0 !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }

  .pricing-card,
  .addon-card,
  .important-note,
  .pricing-callout,
  .payment-note,
  .book-call-copy,
  .brief-form {
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }

  .pricing-card-top,
  .track-meta {
    display: block !important;
  }

  .package-price {
    display: block !important;
    padding: 0 !important;
    margin: 8px 0 !important;
    border: 0 !important;
  }

  .package-price strong {
    display: block !important;
    font-size: 24pt !important;
    line-height: 1 !important;
    margin: 3px 0 !important;
  }

  .package-price em {
    display: block !important;
    color: #555 !important;
    font-style: normal !important;
  }

  .package-block,
  .package-muted,
  .package-note {
    padding: 0 !important;
    border: 0 !important;
    margin: 8px 0 !important;
  }

  .package-block ul,
  .human-card ul,
  .trust-signal ul {
    margin: 6px 0 0 18px !important;
    padding: 0 !important;
    list-style: disc !important;
  }

  .package-block li,
  .human-card li,
  .trust-signal li {
    padding-left: 0 !important;
    border: 0 !important;
  }

  .package-block li::before,
  .human-card li::before,
  .comparison-card > span,
  .step-number,
  .trust-signal-lines {
    display: none !important;
  }

  .brief-form {
    display: block !important;
    padding: 12px !important;
    border: 1px solid #d0d0d0 !important;
  }

  .brief-form input,
  .brief-form textarea,
  .file-field {
    border: 1px solid #bdbdbd !important;
    min-height: 28px !important;
    background: #fff !important;
    color: #111 !important;
  }

  .file-field input,
  .upload-progress {
    display: none !important;
  }

  .site-footer {
    display: block !important;
    padding: 0 !important;
    border: 0 !important;
  }
}
