:root {
  --background: #07110e;
  --foreground: #f7f9f3;
  --muted: #aebbb2;
  --line: rgba(181, 255, 218, 0.14);
  --line-strong: rgba(181, 255, 218, 0.28);
  --amber: #ffc947;
  --mint: #57f2b2;
  --cyan: #52d7ff;
  --coral: #ff715b;
  --danger: #ff8a7a;
  --success: #8affcd;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  cursor: pointer;
}

.landing-page {
  position: relative;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(82, 215, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 201, 71, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #07110e 0%, #0b1713 48%, #11140d 100%);
  background-size:
    72px 72px,
    72px 72px,
    auto;
}

.hero-section,
.mockup-section,
.how-section,
.delivery-section,
.dashboard-section,
.love-section,
.fit-section,
.waitlist-section,
.faq-section {
  position: relative;
  padding: 96px 28px;
}

.hero-section {
  min-height: 92vh;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 36%;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(7, 17, 14, 1), transparent);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      115deg,
      transparent 0 36%,
      rgba(87, 242, 178, 0.1) 42%,
      transparent 50%
    ),
    linear-gradient(155deg, rgba(255, 201, 71, 0.14), transparent 31%),
    linear-gradient(25deg, transparent 55%, rgba(255, 113, 91, 0.08));
  animation: scanSweep 9s linear infinite;
}

.hero-nav,
.hero-content,
.section-heading,
.install-flow,
.two-column,
.delivery-section,
.dashboard-mock,
.feature-grid,
.fit-section,
.waitlist-section,
.faq-list,
.laptop-mockup {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 56px;
}

.brand-mark,
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-sun {
  width: 22px;
  height: 22px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 201, 71, 0.12);
}

.nav-cta {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--mint);
  background: rgba(8, 20, 17, 0.68);
}

.hero-content {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: 56px;
  align-items: center;
  padding: 58px 0 36px;
}

.hero-copy,
.hero-visual,
.section-heading,
.process-block,
.delivery-grid > div,
.dashboard-mock,
.feature-grid article,
.waitlist-copy,
.waitlist-form,
.faq-list details {
  animation: riseIn 760ms ease both;
}

.secondary-button,
.copy-button,
.widget-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--mint);
  background: rgba(7, 17, 14, 0.58);
  font-weight: 900;
  cursor: pointer;
}

.secondary-button:hover,
.copy-button:hover,
.widget-secondary:hover {
  border-color: var(--mint);
  background: rgba(87, 242, 178, 0.1);
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 7vw, 4.5rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.6vw, 2.625rem);
  line-height: 1.06;
}

h3 {
  margin-bottom: 14px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.42;
}

.hero-support,
.section-heading p,
.delivery-copy p,
.waitlist-copy p,
.feature-grid p,
.faq-list p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 34px 0 24px;
}

.hero-actions p {
  max-width: 330px;
  margin: 0;
  color: #dbeee5;
  line-height: 1.5;
}

.primary-button,
.widget-panel button,
.hero-widget button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border: 0;
  border-radius: 6px;
  padding: 0 22px;
  color: #07110e;
  font-weight: 900;
  background: linear-gradient(90deg, var(--amber), var(--mint));
  box-shadow: 0 14px 42px rgba(87, 242, 178, 0.2);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.primary-button:hover,
.widget-panel button:hover,
.hero-widget button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 54px rgba(255, 201, 71, 0.25);
}

.primary-button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.proof-list,
.benefit-list,
.perfect-fit ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.proof-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 780px;
}

.proof-list li,
.benefit-list li,
.perfect-fit li {
  position: relative;
  min-height: 44px;
  padding: 11px 14px 11px 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #edf8f2;
  background: rgba(7, 17, 14, 0.72);
}

.proof-list li::before,
.benefit-list li::before,
.perfect-fit li::before {
  content: "\2713";
  position: absolute;
  left: 14px;
  color: var(--mint);
  font-weight: 900;
}

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

.hero-widget {
  position: absolute;
  top: 68px;
  right: 0;
  width: min(460px, 100%);
  min-height: 440px;
  padding: 22px;
  border: 1px solid rgba(255, 201, 71, 0.46);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(16, 38, 31, 0.96), rgba(6, 16, 14, 0.98)),
    repeating-linear-gradient(
      0deg,
      transparent 0 34px,
      rgba(255, 255, 255, 0.04) 35px
    );
  box-shadow:
    0 0 0 1px rgba(87, 242, 178, 0.12),
    0 34px 92px rgba(0, 0, 0, 0.45),
    0 0 64px rgba(255, 201, 71, 0.18);
  transform: rotateY(-9deg) rotateX(4deg);
  animation: floatPanel 5s ease-in-out infinite;
}

.mini-browser {
  display: flex;
  gap: 8px;
  margin-bottom: 46px;
}

.mini-browser span,
.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.mini-browser span:nth-child(2),
.window-dots span:nth-child(2) {
  background: var(--amber);
}

.mini-browser span:nth-child(3),
.window-dots span:nth-child(3) {
  background: var(--mint);
}

.hero-widget-copy span,
.hero-widget-copy small,
.metric-grid span,
.pipeline-card span,
.delivery-grid span,
.table-head {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-widget-copy strong {
  display: block;
  margin: 8px 0;
  color: var(--mint);
  font-size: clamp(3.5rem, 8vw, 4.625rem);
  line-height: 1;
}

.hero-meter {
  height: 16px;
  margin: 34px 0;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.hero-meter span {
  display: block;
  width: 78%;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--amber), var(--mint));
  animation: meterPulse 2.4s ease-in-out infinite;
}

.radar-card {
  position: absolute;
  bottom: 70px;
  left: 4%;
  width: 240px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(7, 17, 14, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  animation: riseIn 880ms ease both 220ms;
}

.radar-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.radar-card strong {
  color: var(--amber);
  font-size: 26px;
}

.radar-line {
  height: 72px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(90deg, transparent, rgba(87, 242, 178, 0.18), transparent),
    repeating-linear-gradient(
      90deg,
      transparent 0 19px,
      rgba(82, 215, 255, 0.08) 20px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 19px,
      rgba(255, 201, 71, 0.08) 20px
    );
  background-size:
    180px 100%,
    20px 20px,
    20px 20px;
  animation: radarMove 2.6s linear infinite;
}

.section-heading {
  max-width: 780px;
  text-align: center;
  margin-bottom: 44px;
}

.section-heading .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.laptop-screen {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(21, 48, 39, 0.94), rgba(5, 13, 12, 0.96)),
    linear-gradient(90deg, rgba(255, 201, 71, 0.08), transparent);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.48);
}

.laptop-screen::after {
  content: "";
  position: absolute;
  inset: 48px 14px 14px;
  pointer-events: none;
  border: 1px solid rgba(82, 215, 255, 0.1);
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0 1px,
      transparent 1px 58px
    );
  animation: scanSweep 11s linear infinite;
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 38px;
  padding: 0 10px;
  border-bottom: 1px solid var(--line);
}

.window-dots {
  display: flex;
  gap: 7px;
}

.address-bar {
  width: min(360px, 45%);
  min-height: 18px;
  padding: 2px 12px;
  border-radius: 999px;
  color: rgba(247, 249, 243, 0.6);
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
}

.screens-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 24px 10px 18px;
}

.widget-panel {
  min-height: 468px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(7, 17, 14, 0.86);
  backdrop-filter: blur(18px);
}
select option {
  background: #000;
}
.widget-panel input,
.widget-panel select,
.widget-panel textarea,
.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(174, 187, 178, 0.24);
  border-radius: 6px;
  padding: 0 12px;
  color: #f7f9f3;
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.waitlist-form textarea,
.widget-panel textarea {
  min-height: 96px;
  padding-top: 10px;
  resize: vertical;
}

.widget-panel input:focus,
.widget-panel select:focus,
.widget-panel textarea:focus,
.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
  border-color: rgba(87, 242, 178, 0.74);
  box-shadow: 0 0 0 3px rgba(87, 242, 178, 0.1);
}

.input-panel,
.booking-panel {
  display: grid;
  gap: 10px;
}

.widget-panel label,
.waitlist-form label,
.waitlist-form legend {
  display: grid;
  gap: 8px;
  color: #dfece5;
  font-size: 13px;
  font-weight: 700;
}

.floating-button {
  width: fit-content;
  margin-bottom: 4px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #07110e;
  font-size: 12px;
  font-weight: 900;
  background: var(--amber);
  box-shadow: 0 0 36px rgba(255, 201, 71, 0.26);
}

.radio-line,
.install-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.radio-line label,
.install-options label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0;
}

.metric-grid div {
  min-height: 100px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.metric-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--mint);
  font-size: 26px;
}

.green-banner,
.success-message {
  margin: 16px 0;
  padding: 13px;
  border: 1px solid rgba(87, 242, 178, 0.4);
  border-radius: 6px;
  color: #e9fff6;
  background: rgba(43, 164, 105, 0.2);
}

.success-message small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.laptop-base {
  width: 86%;
  height: 28px;
  margin: 0 auto;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, #101c19, #31413b, #101c19);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.35);
}

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

.process-block {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.process-block ol {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-block li {
  position: relative;
  min-height: 48px;
  padding-left: 64px;
  color: #eaf7f0;
  line-height: 1.45;
  counter-increment: process;
  display: flex;
  align-items: center;
}

.process-block li::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--amber);
  font-weight: 900;
}

.delivery-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 36px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.delivery-grid > div {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(87, 242, 178, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(7, 17, 14, 0.74);
}

.delivery-grid strong {
  display: block;
  margin-top: 16px;
  color: #ffffff;
  font-size: 18px;
}

.dashboard-mock {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(4, 12, 10, 0.82);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

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

.pipeline-card {
  min-height: 108px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.pipeline-card strong {
  display: block;
  margin-top: 14px;
  color: var(--amber);
  font-size: 34px;
}

.lead-table {
  overflow-x: auto;
}

.table-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.9fr 0.9fr 1.25fr 0.85fr 0.75fr;
  min-width: 900px;
  border-bottom: 1px solid var(--line);
}

.table-row span {
  padding: 15px 12px;
  color: #eaf7f0;
  white-space: nowrap;
}

.table-head span {
  color: var(--muted);
  font-weight: 800;
}

mark {
  padding: 5px 8px;
  border-radius: 999px;
  color: #07110e;
  background: var(--mint);
}

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

.feature-grid article {
  /* min-height: 222px; */
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.feature-grid article .head {
  display: flex;
  gap: 5px;
  align-items: start;
}

.feature-grid article:nth-child(2) {
  border-color: rgba(255, 201, 71, 0.28);
}

.feature-grid article:nth-child(3) {
  border-color: rgba(82, 215, 255, 0.28);
}

.feature-grid article:nth-child(4) {
  border-color: rgba(255, 113, 91, 0.28);
}

.fit-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.logo-cloud span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: #eaf7f0;
  background: rgba(255, 255, 255, 0.04);
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  gap: 32px;
  align-items: start;
}

.waitlist-copy,
.waitlist-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 17, 14, 0.78);
}

.waitlist-copy {
  position: sticky;
  top: 20px;
  padding: 30px;
}

.benefit-list {
  margin-top: 26px;
}

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

.waitlist-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

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

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

.form-status {
  min-height: 22px;
  margin-top: 0;
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-success {
  color: var(--success);
}

.field-error {
  border-color: rgba(255, 138, 122, 0.82) !important;
  box-shadow: 0 0 0 3px rgba(255, 138, 122, 0.12) !important;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: #ffffff;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: rotateY(-9deg) rotateX(4deg) translateY(0);
  }

  50% {
    transform: rotateY(-7deg) rotateX(5deg) translateY(-12px);
  }
}

@keyframes meterPulse {
  0%,
  100% {
    width: 72%;
  }

  50% {
    width: 88%;
  }
}

@keyframes radarMove {
  from {
    background-position:
      -180px 0,
      0 0,
      0 0;
  }

  to {
    background-position:
      180px 0,
      0 0,
      0 0;
  }
}

@keyframes scanSweep {
  from {
    background-position:
      -160px 0,
      0 0,
      0 0;
  }

  to {
    background-position:
      160px 0,
      0 0,
      0 0;
  }
}

@media (max-width: 1040px) {
  .hero-content,
  .delivery-section,
  .fit-section,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

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

  .hero-widget {
    right: auto;
    left: 8%;
  }

  .screens-row,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-panel {
    grid-column: 1 / -1;
  }

  .waitlist-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .hero-section,
  .mockup-section,
  .how-section,
  .delivery-section,
  .dashboard-section,
  .love-section,
  .fit-section,
  .waitlist-section,
  .faq-section {
    padding: 72px 18px;
  }

  .hero-section {
    padding-top: 20px;
  }

  .hero-nav {
    align-items: flex-start;
  }

  .brand-mark {
    max-width: 190px;
  }

  .hero-lead {
    font-size: 20px;
  }

  .proof-list,
  .two-column,
  .delivery-grid,
  .pipeline,
  .screens-row,
  .feature-grid,
  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 34px;
  }

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

  .hero-widget {
    top: 44px;
    left: 0;
    transform: none;
  }

  .radar-card {
    right: 0;
    bottom: 12px;
    left: auto;
    width: 210px;
  }

  .screens-row {
    padding: 18px 0 10px;
  }

  .widget-panel,
  .booking-panel {
    grid-column: auto;
  }

  .waitlist-form,
  .waitlist-copy,
  .process-block {
    padding: 20px;
  }

  .form-wide {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .hero-nav {
    gap: 12px;
  }

  .nav-cta {
    padding: 0 12px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .primary-button {
    width: 100%;
  }

  .radar-card {
    position: relative;
    width: 100%;
    margin-top: 370px;
  }
}

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

  .hero-widget {
    transform: none;
  }
}

/* Live widget simulator */
.install-section {
  padding: 96px 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(
    135deg,
    rgba(87, 242, 178, 0.06),
    transparent 42%
  );
}

.importance-section {
  padding: 96px 32px;
  background:
    radial-gradient(
      circle at 12% 24%,
      rgba(255, 201, 71, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
}

.importance-section .section-heading,
.importance-grid {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.importance-section .section-heading {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.importance-section .section-heading .eyebrow {
  margin-right: auto;
  margin-left: auto;
}
.importance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.importance-grid article {
  /* min-height: 224px; */
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.045);
}
.importance-grid article > span {
  display: inline-block;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.importance-grid h3 {
  margin: 18px 0 10px;
}
.importance-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.install-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
}

.install-code-card,
.install-steps {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(7, 17, 14, 0.78);
}

.step-number {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--amber);
  font-weight: 900;
}

.install-code-card h3 {
  margin-bottom: 8px;
}
.install-code-card p {
  margin: 0 0 18px;
  color: var(--muted);
}
.install-code-card div {
  overflow-x: auto;
  margin: 0 0 12px;
  padding: 15px;
  border: 1px solid rgba(87, 242, 178, 0.18);
  border-radius: 7px;
  color: #dffdf0;
  background: #06100d;
  font-size: 12px;
  line-height: 1.6;
}

.copy-feedback {
  min-height: 20px;
  margin-top: 10px;
  color: var(--mint);
  font-size: 13px;
}
.install-steps {
  display: grid;
  gap: 20px;
  margin: 0;
  list-style: none;
}
.install-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}
.install-steps li > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  color: var(--amber);
  background: rgba(255, 201, 71, 0.1);
  font-weight: 900;
}
.install-steps strong,
.install-steps small {
  display: block;
}
.install-steps small {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.5;
}

.demo-launch-row {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}
.live-widget-trigger {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #07110e;
  background: var(--amber);
  box-shadow:
    0 16px 46px rgba(0, 0, 0, 0.35),
    0 0 32px rgba(255, 201, 71, 0.32);
  font-weight: 900;
  cursor: pointer;
}
.live-widget-trigger:hover {
  transform: translateY(-2px);
}
.widget-is-open {
  overflow: hidden;
}
.widget-backdrop {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  place-items: end;
  padding: 18px;
  background: rgba(1, 7, 5, 0.64);
  backdrop-filter: blur(8px);
}
.widget-backdrop[aria-hidden="true"] {
  display: none;
}
.live-widget {
  width: min(520px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow-y: auto;
  padding: 18px;
  border: 1px solid rgba(87, 242, 178, 0.4);
  border-radius: 14px;
  color: #eaf7f0;
  background: linear-gradient(170deg, #10241d, #07110e 60%);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.58);
}
.widget-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.widget-topbar > div {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.widget-brand-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(255, 201, 71, 0.12);
}
.widget-close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}
.widget-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 16px 0;
}
.widget-progress span {
  height: 4px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.12);
}
.widget-progress .is-active {
  background: var(--mint);
  box-shadow: 0 0 10px rgba(87, 242, 178, 0.7);
}
.widget-step {
  animation: riseIn 360ms ease both;
}
.widget-step h2 {
  margin-bottom: 7px;
  font-size: clamp(25px, 5vw, 35px);
}
.widget-step
  > p:not(.widget-eyebrow):not(.widget-error):not(.report-disclaimer) {
  margin: 0 0 20px;
  color: var(--muted);
}
.widget-eyebrow {
  margin: 0 0 8px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.live-widget label,
.live-widget legend {
  display: grid;
  gap: 7px;
  color: #dfece5;
  font-size: 13px;
  font-weight: 800;
}
.live-widget form {
  display: grid;
  gap: 14px;
}
.live-widget input,
.live-widget select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(174, 187, 178, 0.25);
  border-radius: 7px;
  padding: 0 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}
.live-widget input:focus,
.live-widget select:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(87, 242, 178, 0.1);
}
.live-widget input[readonly] {
  color: rgba(234, 247, 240, 0.72);
  background: rgba(255, 255, 255, 0.035);
}
.money-input {
  display: grid;
  grid-template-columns: 40px 1fr;
  overflow: hidden;
  border: 1px solid rgba(174, 187, 178, 0.25);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
}
.money-input > span {
  display: grid;
  place-items: center;
  color: var(--mint);
  font-weight: 900;
}
.money-input input {
  border: 0;
  border-left: 1px solid rgba(174, 187, 178, 0.17);
  border-radius: 0;
  background: transparent;
}
.widget-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.live-widget fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
.consumer-options {
  display: flex;
  gap: 8px;
}
.consumer-options label {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}
.consumer-options input {
  width: auto;
  min-height: auto;
  accent-color: var(--mint);
}
.widget-error {
  min-height: 18px;
  margin: -5px 0 0;
  color: #ffab9c;
  font-size: 13px;
  font-weight: 700;
}
.field-error {
  border-color: #ff846e !important;
  box-shadow: 0 0 0 3px rgba(255, 132, 110, 0.1) !important;
}
.widget-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  border-radius: 7px;
  color: #07110e;
  background: var(--mint);
  font-weight: 900;
  cursor: pointer;
}
.widget-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.live-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 20px 0;
}
.live-metrics div,
.financial-summary div {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}
.live-metrics span,
.financial-summary span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.live-metrics strong,
.financial-summary strong {
  display: block;
  margin-top: 7px;
  color: var(--mint);
  font-size: 19px;
}
.report-chart-card {
  padding: 14px 12px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.14);
}
.chart-heading {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #eaf7f0;
  font-size: 12px;
}
.chart-heading span {
  color: var(--muted);
}
.monthly-chart {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  gap: 5px;
  height: 138px;
  margin-top: 15px;
}
.chart-column {
  position: relative;
  display: grid;
  align-items: end;
  height: 100%;
}
.chart-column i {
  display: block;
  width: 100%;
  min-height: 12px;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--amber), #f68d43);
}
.chart-column b {
  position: absolute;
  bottom: -16px;
  width: 100%;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-align: center;
}
.chart-tooltip {
  position: absolute;
  z-index: 1;
  bottom: calc(100% + 7px);
  left: 50%;
  width: max-content;
  max-width: 175px;
  padding: 6px;
  border-radius: 4px;
  color: #07110e;
  background: #eaf7f0;
  font-size: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}
.chart-column:hover .chart-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}
.chart-months {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 5px;
  margin-top: 21px;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}
.financial-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 14px 0;
}
.report-disclaimer {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.widget-actions {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 10px;
}
.widget-success {
  display: grid;
  justify-items: start;
  padding: 24px 8px 8px;
}
.widget-step[hidden] {
  display: none !important;
}
.booking-panel .success-message {
  display: none;
}
.success-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #07110e;
  background: var(--mint);
  font-size: 30px;
  font-weight: 900;
}
.table-row small {
  display: block;
  overflow: hidden;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
}
.is-new-lead {
  animation: leadArrive 650ms ease both;
  background: rgba(87, 242, 178, 0.08);
}
@keyframes leadArrive {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .importance-section {
    padding: 72px 18px;
  }
  .importance-grid {
    grid-template-columns: 1fr;
  }
  .install-section {
    padding: 72px 18px;
  }
  .install-flow,
  .widget-field-grid,
  .widget-actions {
    grid-template-columns: 1fr;
  }
  .live-widget-trigger {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 15px;
    font-size: 13px;
  }
  .widget-backdrop {
    padding: 8px;
    place-items: end center;
  }
  .live-widget {
    max-height: calc(100vh - 16px);
    padding: 15px;
    border-radius: 12px;
  }
  .widget-primary,
  .widget-secondary {
    width: 100%;
  }
}

.site-footer {
  padding: 54px 32px 22px;
  border-top: 1px solid var(--line);
  background: #04100c;
}
.footer-content,
.footer-bottom {
  width: min(1180px, 100%);
  margin: 0 auto;
}
.footer-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr) auto;
  gap: 32px;
  align-items: center;
}
.footer-brand p {
  max-width: 400px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}
.footer-connect .eyebrow {
  margin-bottom: 10px;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #eaf7f0;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
}
.social-link:hover {
  border-color: var(--mint);
  color: var(--mint);
  background: rgba(87, 242, 178, 0.08);
}
.social-link > span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #07110e;
  background: var(--mint);
  font-size: 12px;
  font-weight: 900;
}
.social-link.instagram > span {
  background: var(--amber);
}
.social-link.facebook > span {
  background: #7eb7ff;
}
.social-link.youtube > span {
  background: #ff927e;
  font-size: 9px;
}
.footer-waitlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid var(--amber);
  border-radius: 6px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.footer-waitlist:hover {
  color: #07110e;
  background: var(--amber);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
