:root {
  --bg: #05080d;
  --bg-2: #0b1220;
  --ink: #f8fafc;
  --muted: #a8b3c7;
  --soft: #d8eef4;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-strong: rgba(9, 14, 24, 0.9);
  --line: rgba(148, 163, 184, 0.22);
  --accent: #22d3ee;
  --accent-2: #fb7b45;
  --green: #34d399;
  --red: #fb7185;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    linear-gradient(115deg, rgba(34, 211, 238, 0.12) 0%, transparent 28%),
    linear-gradient(245deg, rgba(251, 123, 69, 0.16) 0%, transparent 32%),
    linear-gradient(180deg, #05080d 0%, #0b1220 44%, #07151b 72%, #05080d 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 72px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 92%);
}

main {
  overflow: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1140px, calc(100% - 32px));
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 8px;
  background: rgba(5, 8, 13, 0.74);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
  padding: 10px 12px;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #041016;
  font-size: 13px;
  font-weight: 900;
}

nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  border-radius: 6px;
  padding: 9px 11px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover {
  background: rgba(34, 211, 238, 0.12);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 850px;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 40px;
  align-items: center;
  padding: 132px max(32px, calc((100vw - 1140px) / 2)) 82px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.96), rgba(5, 8, 13, 0.74) 52%, rgba(5, 8, 13, 0.9)),
    url("assets/salon-bg.png") center / cover no-repeat;
  opacity: 0.88;
  transform: scale(1.04);
  animation: floatBg 14s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

.hero-content,
.mia-stage,
.call-card {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.96;
}

h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.02;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--soft);
  font-size: 19px;
  line-height: 1.68;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--green));
  color: #041016;
  box-shadow: 0 18px 46px rgba(34, 211, 238, 0.26);
}

.button.ghost {
  background: rgba(15, 23, 42, 0.68);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

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

.hero-metrics div {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.58);
  padding: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.hero-metrics span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.mia-stage {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 660px;
}

.portrait-card {
  position: relative;
  display: grid;
  width: min(540px, 100%);
  min-height: 570px;
  place-items: end center;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(251, 123, 69, 0.16)),
    linear-gradient(180deg, rgba(15, 23, 42, 0.58), rgba(2, 6, 23, 0.88));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.065) 0 1px, transparent 1px 30px);
}

.mia-hero-image {
  position: relative;
  z-index: 1;
  width: min(500px, 95%);
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 30px 44px rgba(0, 0, 0, 0.38));
  animation: floatReceiva 5.8s ease-in-out infinite;
}

.float-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(5, 8, 13, 0.76);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  padding: 10px 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(16px);
}

.chip-live {
  top: 72px;
  left: 16px;
}

.chip-calendar {
  right: 14px;
  top: 190px;
}

.chip-booked {
  left: 42px;
  bottom: 142px;
}

.call-card,
.demo-widget,
.value-card,
.mia-card,
.package,
.roi-tool,
.dashboard-shell {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.call-card {
  width: min(430px, calc(100% - 24px));
  margin-top: -74px;
  padding: 20px;
}

.call-top,
.widget-header,
.call-status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(52, 211, 153, 0.12);
}

.call-lines {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.call-lines.is-changing {
  opacity: 0;
  transform: translateY(6px);
}

.call-lines p {
  margin: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  padding: 13px 14px;
  color: var(--soft);
  line-height: 1.45;
}

.call-status {
  justify-content: space-between;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding-top: 16px;
}

.section,
.roi-section,
.demo-section,
.consultation-section,
.contact {
  position: relative;
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
}

.section::before,
.roi-section::before,
.demo-section::before,
.consultation-section::before,
.packages::before {
  content: "";
  position: absolute;
  inset: 36px -46px;
  z-index: -1;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.11), transparent 44%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 44px);
  opacity: 0.88;
}

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

.section-head p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
}

.value-grid,
.mia-grid,
.package-row,
.custom-pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.value-card,
.package {
  padding: 24px;
}

.value-card p,
.mia-card p,
.package p,
.roi-copy p,
.demo-copy p,
.consultation-copy p,
.contact p,
.pricing-note,
.setup-band p {
  color: var(--muted);
  line-height: 1.68;
}

.icon,
.package-kicker,
.dashboard-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 20px;
  border-radius: 8px;
  background: rgba(34, 211, 238, 0.12);
  color: var(--accent);
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.value-card:nth-child(2) .icon,
.package.featured .package-kicker {
  background: rgba(251, 123, 69, 0.13);
  color: var(--accent-2);
}

.roi-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1.18fr);
  gap: 28px;
  align-items: center;
}

.roi-section::before {
  background:
    linear-gradient(135deg, rgba(251, 123, 69, 0.18), rgba(34, 211, 238, 0.08)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.044) 0 1px, transparent 1px 32px);
}

.roi-tool {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.roi-tool label {
  display: grid;
  gap: 10px;
  color: var(--soft);
  font-weight: 800;
}

.roi-tool label strong {
  color: var(--accent);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.roi-output {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 18px;
}

.roi-output span,
.summary-card span,
.dashboard-summary span,
.appointment-focus span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.roi-output strong {
  display: block;
  margin-top: 8px;
  color: white;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 0.95;
}

.roi-output p {
  margin: 14px 0 0;
  color: var(--muted);
}

.mia-gallery::before {
  background:
    linear-gradient(120deg, rgba(34, 211, 238, 0.12), rgba(5, 8, 13, 0.62), rgba(251, 123, 69, 0.11)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 38px);
}

.mia-card {
  display: grid;
  grid-template-rows: 280px auto;
  overflow: hidden;
}

.mia-card img {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(251, 123, 69, 0.1)),
    #08111e;
  object-fit: cover;
  object-position: center top;
}

.mia-card:first-child img {
  object-fit: contain;
  padding: 8px 8px 0;
}

.mia-card div {
  padding: 22px;
}

.dashboard-section::before {
  background:
    linear-gradient(135deg, rgba(52, 211, 153, 0.12), rgba(34, 211, 238, 0.08)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 50px);
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 260px;
  gap: 14px;
  padding: 18px;
}

.dashboard-side,
.dashboard-main,
.dashboard-summary {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.42);
  padding: 18px;
}

.dashboard-side > strong {
  display: block;
  margin-bottom: 18px;
  font-size: 28px;
}

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

.call-item {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 12px;
}

.call-item.active {
  border-color: rgba(34, 211, 238, 0.44);
  background: rgba(34, 211, 238, 0.1);
}

.call-item span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.call-item p {
  margin: 5px 0 0;
  color: var(--soft);
  font-weight: 800;
}

.dashboard-main {
  display: grid;
  gap: 14px;
}

.appointment-focus {
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.13), rgba(52, 211, 153, 0.1));
  padding: 18px;
}

.appointment-focus h3 {
  margin-top: 10px;
}

.appointment-focus p,
.dashboard-summary p {
  color: var(--muted);
  line-height: 1.6;
}

.clean-calendar {
  display: grid;
  gap: 10px;
}

.time-row {
  display: grid;
  grid-template-columns: 70px 86px 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 12px;
}

.time-row span,
.time-row strong {
  color: var(--accent);
  font-weight: 900;
}

.time-row strong {
  border-radius: 6px;
  background: rgba(34, 211, 238, 0.11);
  padding: 6px 8px;
  text-align: center;
}

.time-row p {
  margin: 0;
  color: var(--soft);
}

.time-row.busy strong {
  background: rgba(251, 113, 133, 0.14);
  color: var(--red);
}

.time-row.booked strong {
  background: rgba(52, 211, 153, 0.14);
  color: var(--green);
}

.demo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 26px;
  align-items: center;
}

.demo-section::before {
  background:
    linear-gradient(135deg, rgba(2, 6, 23, 0.94), rgba(14, 116, 144, 0.56), rgba(251, 123, 69, 0.18)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 42px);
}

.demo-widget {
  padding: 20px;
}

.phone-demo {
  animation: floatCard 4.8s ease-in-out infinite;
}

.phone-screen {
  display: grid;
  min-height: 300px;
  place-items: center;
  margin: 20px 0;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 8px;
  padding: 28px;
  background: rgba(2, 6, 23, 0.46);
  text-align: center;
}

.phone-avatar-wrap {
  position: relative;
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
}

.phone-avatar {
  position: relative;
  z-index: 1;
  width: 98px;
  height: 98px;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.34), rgba(251, 123, 69, 0.22));
  object-fit: cover;
  object-position: 50% 14%;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.36);
}

.phone-ring {
  position: absolute;
  width: 104px;
  height: 104px;
  border: 2px solid rgba(52, 211, 153, 0.58);
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.28);
  animation: ringPulse 1.8s ease-out infinite;
}

.phone-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-screen strong {
  font-size: 22px;
}

.phone-screen p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.wave-bars {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 42px;
}

.wave-bars span {
  width: 7px;
  height: 16px;
  border-radius: 999px;
  background: var(--accent);
  animation: wave 900ms ease-in-out infinite alternate;
}

.wave-bars span:nth-child(2) {
  animation-delay: 120ms;
}

.wave-bars span:nth-child(3) {
  animation-delay: 240ms;
}

.wave-bars span:nth-child(4) {
  animation-delay: 360ms;
}

.wave-bars span:nth-child(5) {
  animation-delay: 480ms;
}

.demo-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.verification-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.verification-form label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.demo-form input,
.demo-form button {
  min-height: 44px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 8px;
  padding: 10px 12px;
}

.demo-form input {
  min-width: 0;
  background: rgba(2, 6, 23, 0.48);
  color: white;
}

.demo-form input::placeholder {
  color: rgba(168, 179, 199, 0.55);
}

.demo-form input:focus {
  border-color: rgba(34, 211, 238, 0.74);
  outline: 2px solid rgba(34, 211, 238, 0.24);
}

.demo-form button {
  background: rgba(34, 211, 238, 0.14);
  color: white;
  cursor: pointer;
  font-weight: 900;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.demo-form button:hover:not(:disabled) {
  border-color: rgba(34, 211, 238, 0.5);
  background: rgba(34, 211, 238, 0.22);
  transform: translateY(-1px);
}

.demo-form button:disabled,
.demo-form input:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.verification-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.verification-note[data-status="ok"] {
  color: #bbf7d0;
}

.verification-note[data-status="error"] {
  color: #fecaca;
}

.setup-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(251, 123, 69, 0.08));
  padding: 20px 22px;
}

.setup-band strong {
  font-size: 22px;
}

.setup-band p {
  max-width: 680px;
  margin: 0;
}

.custom-pricing {
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(251, 123, 69, 0.11)),
    rgba(15, 23, 42, 0.74);
  box-shadow: var(--shadow);
  padding: 24px;
}

.custom-pricing h3 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
}

.custom-pricing p {
  color: var(--muted);
  line-height: 1.66;
}

.pricing-calculator {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.42);
  padding: 20px;
}

.pricing-calculator label {
  display: grid;
  gap: 12px;
  color: var(--soft);
  font-weight: 850;
}

.pricing-calculator label strong {
  color: var(--accent);
}

.custom-price-output {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding-top: 18px;
}

.custom-price-output span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.custom-price-output strong {
  display: block;
  margin-top: 8px;
  color: white;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
}

.custom-price-output p {
  margin: 14px 0 0;
}

.package {
  display: grid;
  align-content: start;
  min-height: 278px;
}

.package.featured {
  border-color: rgba(251, 123, 69, 0.38);
  background:
    linear-gradient(180deg, rgba(251, 123, 69, 0.15), rgba(15, 23, 42, 0.72));
}

.package h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
}

.package > strong {
  margin-top: 18px;
  color: var(--ink);
  font-size: 18px;
}

.per-call {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 8px;
  background: rgba(52, 211, 153, 0.1);
  color: #bbf7d0;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 900;
}

.pricing-note {
  max-width: 820px;
  margin: 18px 0 0;
}

.consultation-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1.18fr);
  gap: 28px;
  align-items: start;
}

.consultation-section::before {
  background:
    linear-gradient(135deg, rgba(52, 211, 153, 0.13), rgba(34, 211, 238, 0.1), rgba(251, 123, 69, 0.08)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.044) 0 1px, transparent 1px 34px);
}

.consultation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 22px;
  backdrop-filter: blur(18px);
}

.consultation-form label {
  display: grid;
  gap: 7px;
}

.consultation-form label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.consultation-form input,
.consultation-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.48);
  color: white;
  padding: 11px 12px;
  font: inherit;
}

.consultation-form textarea {
  min-height: 112px;
  resize: vertical;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
  color: rgba(168, 179, 199, 0.55);
}

.consultation-form input:focus,
.consultation-form textarea:focus {
  border-color: rgba(34, 211, 238, 0.74);
  outline: 2px solid rgba(34, 211, 238, 0.24);
}

.field-wide {
  grid-column: 1 / -1;
}

.honeypot {
  display: none !important;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.form-status[data-status="ok"] {
  color: #bbf7d0;
}

.form-status[data-status="error"] {
  color: #fecaca;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

footer {
  display: flex;
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 24px 0 38px;
  color: var(--muted);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

@keyframes floatBg {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-14px, -10px, 0);
  }
}

@keyframes floatReceiva {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes ringPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.28);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(52, 211, 153, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
  }
}

@keyframes wave {
  from {
    height: 12px;
    opacity: 0.58;
  }
  to {
    height: 38px;
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .roi-section,
  .demo-section,
  .consultation-section {
    grid-template-columns: 1fr;
  }

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

  .mia-stage {
    min-height: auto;
  }

  .portrait-card {
    min-height: 500px;
  }

  .value-grid,
  .mia-grid,
  .package-row,
  .custom-pricing,
  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .setup-band,
  .contact,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 43px;
  }

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

  .hero-metrics,
  .demo-form,
  .time-row {
    grid-template-columns: 1fr;
  }

  .portrait-card {
    min-height: 400px;
  }

  .mia-hero-image {
    width: min(340px, 94%);
  }

  .float-chip {
    position: relative;
    inset: auto;
    justify-self: stretch;
    margin: 4px 16px;
  }

  .call-card {
    width: 100%;
    margin-top: 10px;
  }

  .section,
  .roi-section,
  .demo-section,
  .consultation-section,
  .contact {
    width: min(100% - 28px, 1140px);
    padding: 68px 0;
  }

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

  .mia-card {
    grid-template-rows: 230px auto;
  }
}
