:root {
  --brand: #ff8a00;
  --brand-hover: #ffb000;
  --brand-gradient: linear-gradient(135deg, #ff4d00 0%, #ff8a00 46%, #ffd166 100%);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.74);
  --text-tertiary: rgba(255, 255, 255, 0.50);
  --glass-bg: rgba(8, 8, 8, 0.88);
  --glass-bg-strong: rgba(14, 14, 14, 0.96);
  --glass-border: rgba(255, 138, 0, 0.28);
  --glass-border-soft: rgba(255, 255, 255, 0.10);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.72), 0 0 0 1px rgba(255, 138, 0, 0.14) inset;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(145deg, rgba(255, 138, 0, 0.18) 0%, rgba(255, 77, 0, 0.06) 24%, rgba(0, 0, 0, 0) 58%),
    linear-gradient(180deg, #14100c 0%, #050505 48%, #000000 100%),
    #000000;
  color: var(--text-primary);
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 138, 0, 0.18), transparent 34%),
    radial-gradient(circle at 84% 12%, rgba(255, 209, 102, 0.10), transparent 28%);
  z-index: -1;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 42px;
}

.site-hero,
.policy-card,
.cta-band {
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  background: var(--glass-bg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px) saturate(1.35);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
}

.site-hero {
  min-height: 690px;
  overflow: hidden;
  padding: 28px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 48px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.site-logo img {
  width: 168px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 0 12px;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text-primary);
  border-color: rgba(255, 138, 0, 0.26);
  background: rgba(255, 138, 0, 0.10);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  background: var(--brand-gradient);
  border-color: rgba(255, 138, 0, 0.62);
  color: #050505;
}

.site-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  max-width: 690px;
  margin-bottom: 20px;
  color: var(--text-primary);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--text-secondary);
  font-size: 21px;
  font-weight: 300;
  line-height: 1.45;
}

.hero-actions,
.cta-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button-primary,
.button-secondary {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  padding: 0 18px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button-primary {
  border: 1px solid rgba(255, 138, 0, 0.62);
  background: var(--brand-gradient);
  box-shadow: 0 16px 36px rgba(255, 104, 0, 0.28);
  color: #050505;
}

.button-secondary {
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-primary);
}

.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-1px);
}

.section {
  padding: 76px 0 0;
}

.section-header {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

h2 {
  margin-bottom: 12px;
  color: var(--text-primary);
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.section-header p,
.policy-intro,
.cta-band p,
.contact-lede {
  color: var(--text-secondary);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.5;
}

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

.info-card,
.pricing-card,
.contact-card {
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 138, 0, 0.06)),
    rgba(8, 8, 8, 0.88);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  padding: 22px;
}

.info-card img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-bottom: 18px;
}

.info-card .number {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #050505;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 18px;
}

.info-card h3,
.pricing-card h3,
.contact-card h3 {
  margin-bottom: 8px;
  color: var(--text-primary);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.05;
}

.info-card p,
.pricing-card p,
.contact-card p,
.policy-card p,
.policy-card li {
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
}

.pricing-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
  align-items: stretch;
}

.pricing-card.featured {
  position: relative;
  border-color: rgba(255, 138, 0, 0.48);
  box-shadow: 0 26px 70px rgba(255, 104, 0, 0.16), 0 22px 54px rgba(0, 0, 0, 0.46);
}

.plan-kicker {
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: end;
  gap: 12px;
  margin: 12px 0 8px;
}

.price strong {
  color: var(--text-primary);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 0.9;
}

.price span {
  color: var(--text-tertiary);
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 6px;
}

.old-price {
  display: inline-block;
  color: var(--text-tertiary);
  font-size: 28px;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  margin: 4px 0 2px;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand);
  margin-top: 6px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 76px;
  padding: 30px;
}

.cta-band h2 {
  margin-bottom: 8px;
  font-size: clamp(32px, 4vw, 48px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 138, 0, 0.18);
  margin-top: 38px;
  padding-top: 24px;
  color: var(--text-tertiary);
  font-size: 14px;
  font-weight: 600;
}

.site-footer nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--text-secondary);
  text-decoration: none;
}

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

.landing-page .site-shell {
  width: min(1320px, calc(100% - 48px));
  padding-top: 0;
}

.landing-page .site-hero {
  min-height: auto;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
}

.landing-page .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(612px, calc(100% - 28px));
  min-height: 54px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  border: 0;
  border-radius: 0 0 18px 18px;
  background: rgba(0, 0, 0, 0.94);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.30),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
  padding: 8px 10px;
  margin: 0 auto 88px;
}

.landing-page .site-logo img {
  width: 112px;
}

.landing-page .site-nav {
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap;
}

.landing-page .site-nav a {
  border: 0;
  border-radius: 0;
  min-height: 32px;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 600;
  padding: 0;
}

.landing-page .site-nav a:hover,
.landing-page .site-nav a.active {
  background: transparent;
  color: var(--text-primary);
  transform: none;
}

.landing-page .nav-cta {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
  color: #050505;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  padding: 0 13px;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.landing-page .nav-cta:hover {
  background: #fff3df;
  box-shadow: 0 12px 26px rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.phone-icon,
.phone-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

.phone-icon svg {
  fill: currentColor;
}

.landing-page .site-grid {
  display: block;
  padding-top: 32px;
}

.landing-hero-copy {
  max-width: 940px;
  display: grid;
  justify-items: center;
  margin: 0 auto;
  text-align: center;
}

.landing-hero-icon {
  width: 58px;
  height: 58px;
  display: block;
  border-radius: 12px;
  margin: 0 auto 18px;
  box-shadow: 0 18px 46px rgba(255, 104, 0, 0.26);
}

.landing-page h1 {
  max-width: 920px;
  font-size: 78px;
  line-height: 1;
  margin-bottom: 20px;
}

.landing-page h1 span {
  display: inline-block;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-page .hero-copy {
  max-width: 760px;
  margin: 0 auto 28px;
}

.landing-page .hero-actions {
  justify-content: center;
}

.landing-page .button-primary,
.landing-page .button-secondary {
  border: 0;
  border-radius: 13px;
}

.landing-page .info-card,
.landing-page .pricing-card,
.landing-page .cta-band {
  border: 0;
  border-radius: 25px;
}

.landing-page .info-card,
.landing-page .pricing-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 138, 0, 0.065)),
    rgba(10, 10, 10, 0.82);
}

.demo-video-shell {
  position: relative;
  width: min(980px, 100%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 0;
  border-radius: 25px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 138, 0, 0.16), transparent 40%),
    #050505;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.62), 0 0 68px rgba(255, 104, 0, 0.12);
  margin: 58px auto 0;
}

.demo-video-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 138, 0, 0.18), rgba(255, 255, 255, 0.04) 46%, rgba(255, 138, 0, 0.10)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 86px);
}

.demo-preview-card {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 34px;
}

.demo-preview-card img {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(255, 104, 0, 0.22);
  margin-bottom: 18px;
}

.demo-preview-card p {
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.demo-preview-card h2 {
  max-width: 560px;
  font-size: clamp(30px, 4.6vw, 54px);
  margin-bottom: 24px;
}

.demo-play-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 13px;
  background: #ffffff;
  color: #050505;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  padding: 0 20px;
}

.demo-play-link span {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.landing-page .section {
  padding-top: 96px;
}

.landing-page .section-header {
  max-width: 790px;
  margin-inline: auto;
  text-align: center;
}

.landing-page h2 {
  font-size: 54px;
  line-height: 1;
}

.landing-page .card-grid {
  gap: 18px;
}

.landing-page .pricing-wrap {
  gap: 18px;
}

.landing-page .pricing-card.featured {
  border: 0;
}

.landing-page .cta-band {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 138, 0, 0.20), transparent 42%),
    rgba(8, 8, 8, 0.88);
}

.landing-page .site-footer {
  border-top: 0;
}

.testimonials-title {
  margin: 58px 0 0;
  color: var(--text-primary);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.welcome-marquee {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 12px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  margin-top: 28px;
}

.welcome-marquee-row {
  overflow: hidden;
}

.welcome-marquee-row.reverse .welcome-marquee-track {
  animation-direction: reverse;
}

.welcome-marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: welcome-marquee 24s linear infinite;
}

.welcome-marquee:hover .welcome-marquee-track {
  animation-play-state: paused;
}

.welcome-review-card {
  position: relative;
  width: 254px;
  min-height: 118px;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 138, 0, 0.08)),
    rgba(8, 8, 8, 0.92);
  color: var(--text-primary);
  padding: 14px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.welcome-review-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42px;
  background: linear-gradient(180deg, rgba(255, 138, 0, 0), rgba(255, 138, 0, 0.14));
  pointer-events: none;
}

.welcome-avatar {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.welcome-avatar.green { background: #22c55e; }
.welcome-avatar.blue { background: #38bdf8; }
.welcome-avatar.orange { background: #ff8a00; }
.welcome-avatar.pink { background: #f472b6; }
.welcome-avatar.yellow { background: #facc15; }
.welcome-avatar.purple { background: #a78bfa; }
.welcome-avatar.red { background: #fb7185; }
.welcome-avatar.teal { background: #2dd4bf; }

.welcome-avatar img {
  width: 17px;
  height: 17px;
  display: block;
  border-radius: 4px;
}

.welcome-review-card figcaption {
  display: inline-block;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
  vertical-align: middle;
}

.welcome-review-card small {
  display: block;
  color: var(--text-tertiary);
  font-size: 12px;
  font-weight: 600;
}

.welcome-review-card blockquote {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.35;
}

@keyframes welcome-marquee {
  to {
    transform: translateX(-50%);
  }
}

.policy-card {
  padding: 34px;
}

.policy-card h1 {
  font-size: clamp(40px, 5vw, 64px);
}

.policy-card h2 {
  margin-top: 34px;
  font-size: 28px;
}

.policy-card h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 21px;
}

.policy-card ul {
  padding-left: 22px;
}

.policy-meta {
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 10px;
  margin: 18px 0;
}

.policy-table th,
.policy-table td {
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 12px;
  color: var(--text-secondary);
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  color: var(--text-primary);
  background: rgba(255, 138, 0, 0.12);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 18px;
  align-items: stretch;
}

.contact-card {
  min-height: 100%;
}

.mail-card {
  display: grid;
  align-content: center;
}

.mail-address {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(255, 138, 0, 0.30);
  border-radius: 8px;
  background: rgba(255, 138, 0, 0.10);
  color: var(--brand);
  font-size: 20px;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration: none;
  padding: 12px 14px;
  margin: 12px 0 20px;
}

@media (max-width: 900px) {
  .site-grid,
  .pricing-wrap,
  .cta-band,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

  .site-nav {
    justify-content: flex-start;
  }

  .landing-page .site-shell {
    width: min(100% - 32px, 1320px);
  }

  .landing-page .site-header {
    position: sticky;
    top: 0;
    width: min(612px, calc(100% - 24px));
    min-height: 54px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    justify-items: center;
    gap: 14px;
    border-radius: 0 0 18px 18px;
    padding: 8px 10px;
    margin-bottom: 54px;
  }

  .landing-page .site-nav {
    gap: 14px;
    flex-wrap: nowrap;
  }

  .landing-page .site-nav a {
    font-size: 13px;
  }

  .landing-page .site-grid {
    padding-top: 18px;
  }

  .landing-page .nav-cta {
    min-height: 36px;
    font-size: 13px;
    padding-inline: 13px;
  }

  .landing-page h1 {
    font-size: 58px;
  }

  .landing-page h2 {
    font-size: 42px;
  }

  .demo-video-shell {
    margin-top: 44px;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 24px, 1160px);
    padding-top: 18px;
  }

  .site-hero,
  .policy-card,
  .cta-band {
    border-radius: 14px;
    padding: 18px;
  }

  .site-logo img {
    width: 148px;
  }

  .site-nav a {
    padding: 0 9px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy,
  .section-header p,
  .policy-intro,
  .cta-band p,
  .contact-lede {
    font-size: 17px;
  }

  .landing-page .site-shell {
    width: min(100% - 24px, 1320px);
  }

  .landing-page .site-header {
    min-height: auto;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
    border-radius: 0 0 22px 22px;
    padding: 16px;
    margin-bottom: 44px;
  }

  .landing-page .site-nav {
    gap: 12px 16px;
    flex-wrap: wrap;
  }

  .landing-page .site-nav a {
    min-height: 30px;
    font-size: 15px;
  }

  .landing-page .nav-cta {
    width: 100%;
  }

  .landing-page .site-grid {
    padding-top: 8px;
  }

  .landing-page h1 {
    font-size: 42px;
  }

  .landing-page h2 {
    font-size: 34px;
  }

  .demo-video-shell {
    margin-top: 34px;
  }
}
