:root {
  color-scheme: dark;
  --bg: #030711;
  --surface: #08111f;
  --surface-2: #0d1830;
  --ink: #f3fbff;
  --muted: #9db2c7;
  --line: rgba(108, 218, 255, 0.18);
  --accent: #00d9ff;
  --accent-2: #8f5cff;
  --accent-3: #1d7dff;
  --soft: #071525;
  --shadow: 0 24px 70px rgba(0, 217, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 217, 255, 0.14), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(143, 92, 255, 0.16), transparent 30%),
    var(--bg);
  color: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 clamp(20px, 4vw, 56px);
  background: rgba(3, 7, 17, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(132px, 18vw, 220px);
  min-width: 132px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(0, 217, 255, 0.42));
  animation: logoPulse 4s ease-in-out infinite;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--ink);
}

.icon-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 17, 31, 0.82);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
  min-height: calc(100vh - 72px);
  padding: clamp(56px, 8vw, 110px) clamp(20px, 6vw, 88px) 32px;
  overflow: hidden;
}

.hero-content {
  max-width: 760px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3.2rem, 9vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.7;
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.26) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

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

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

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-3) 50%, var(--accent-2));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 0 28px rgba(0, 217, 255, 0.28);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

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

.orbital-grid {
  position: absolute;
  inset: 6% 0 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(108, 218, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 218, 255, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 32% 22%, rgba(0, 217, 255, 0.34), transparent 24%),
    radial-gradient(circle at 72% 64%, rgba(143, 92, 255, 0.3), transparent 24%),
    #071121;
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: gridDrift 14s linear infinite, panelGlow 5s ease-in-out infinite;
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.orbital-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 7, 17, 0.34), transparent 44%),
    linear-gradient(180deg, rgba(3, 7, 17, 0.05), rgba(3, 7, 17, 0.48));
}

.hero-logo {
  position: absolute;
  z-index: 2;
  left: 5%;
  bottom: 5%;
  width: min(48%, 310px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(0, 217, 255, 0.58)) drop-shadow(0 0 42px rgba(143, 92, 255, 0.28));
  animation: logoFloat 5.5s ease-in-out infinite;
}

.orbital-grid::after {
  position: absolute;
  border: 1px solid rgba(38, 79, 134, 0.32);
  border-radius: 50%;
  box-shadow: 0 0 38px rgba(0, 217, 255, 0.18);
}

.orbital-grid::after {
  content: "";
  z-index: 1;
  width: 30%;
  aspect-ratio: 1;
  left: 35%;
  top: 31%;
  background: rgba(0, 217, 255, 0.08);
}

.floating-panel {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 150px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 17, 31, 0.84);
  box-shadow: 0 18px 50px rgba(0, 217, 255, 0.16);
  backdrop-filter: blur(14px);
  animation: floatPanel 4.8s ease-in-out infinite;
}

.floating-panel span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.floating-panel strong {
  font-size: 1.45rem;
}

.panel-one {
  top: 16%;
  right: -2%;
}

.panel-two {
  left: -5%;
  bottom: 18%;
  animation-delay: -1.8s;
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 17, 31, 0.82);
}

.visual-proof {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(0, 0.78fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(64px, 8vw, 104px) clamp(20px, 6vw, 88px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.visual-proof img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.visual-proof h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.visual-proof p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.metrics-band article {
  display: grid;
  gap: 6px;
  padding: 28px clamp(20px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.metrics-band article:last-child {
  border-right: 0;
}

.metrics-band strong {
  font-size: 1.08rem;
}

.metrics-band span {
  color: var(--muted);
  line-height: 1.5;
}

.section,
.split-section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 6vw, 88px);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

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

.trend-card {
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(13, 24, 48, 0.92), rgba(8, 17, 31, 0.92));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.trend-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 217, 255, 0.42);
  box-shadow: 0 22px 44px rgba(0, 217, 255, 0.13);
}

.card-index {
  color: var(--accent-2);
  font-weight: 800;
}

.trend-card h3 {
  margin: 48px 0 12px;
  font-size: 1.35rem;
}

.trend-card p {
  color: var(--muted);
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: var(--soft);
}

.ai-demo {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.process-visual {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.demo-toolbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}

.tab {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.tab.active {
  background: linear-gradient(135deg, var(--accent-3), var(--accent-2));
  color: #ffffff;
}

.demo-output {
  min-height: 270px;
  padding: clamp(24px, 5vw, 46px);
  background:
    linear-gradient(135deg, rgba(0, 217, 255, 0.14), transparent 44%),
    linear-gradient(315deg, rgba(143, 92, 255, 0.18), transparent 48%);
}

.output-label {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
}

.demo-output h3 {
  max-width: 15ch;
  margin: 12px 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.demo-output p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.seo-section {
  background:
    linear-gradient(135deg, rgba(0, 217, 255, 0.12), transparent 40%),
    linear-gradient(315deg, rgba(143, 92, 255, 0.16), transparent 46%),
    #02050d;
  color: #ffffff;
}

.packages-section {
  background: var(--surface);
}

.single-package-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 520px);
  align-items: start;
  gap: clamp(28px, 6vw, 76px);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.single-package-grid {
  grid-template-columns: 1fr;
}

.single-package-section .section-heading {
  max-width: 900px;
  margin-bottom: 0;
}

.single-package-section .section-heading h2 {
  max-width: 10ch;
}

.single-package-section .section-heading p:last-child {
  max-width: 620px;
}

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(22px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 217, 255, 0.42);
  box-shadow: 0 22px 44px rgba(0, 217, 255, 0.13);
}

.package-card.featured {
  background:
    linear-gradient(150deg, rgba(0, 217, 255, 0.18), transparent 36%),
    linear-gradient(330deg, rgba(143, 92, 255, 0.28), transparent 44%),
    var(--surface-2);
  color: #ffffff;
  border-color: rgba(0, 217, 255, 0.36);
  box-shadow: var(--shadow);
}

.package-name {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
}

.featured .package-name {
  color: #b8d7ce;
}

.package-card h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1;
}

.price {
  margin: 12px 0 18px;
  color: var(--accent-2);
  font-size: 1.1rem;
  font-weight: 800;
}

.featured .price {
  color: #ffffff;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.featured ul {
  color: #dce8e3;
}

.package-card .button {
  margin-top: auto;
}

.package-note {
  grid-column: 2;
  max-width: 520px;
  margin: -54px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 920px;
  margin-bottom: 34px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-panel h3 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.contact-panel p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.seo-section .eyebrow,
.seo-section .section-heading p:last-child {
  color: #b8d7ce;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 900px;
}

.checklist label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.checklist input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
  flex: 0 0 auto;
}

@keyframes logoPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 14px rgba(0, 217, 255, 0.35));
  }

  50% {
    filter: drop-shadow(0 0 24px rgba(0, 217, 255, 0.65)) drop-shadow(0 0 26px rgba(143, 92, 255, 0.34));
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.02);
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0, center, center, center;
  }

  to {
    background-position: 34px 34px, 34px 34px, center, center, center;
  }
}

@keyframes panelGlow {
  0%,
  100% {
    box-shadow: 0 24px 70px rgba(0, 217, 255, 0.12);
  }

  50% {
    box-shadow: 0 24px 90px rgba(143, 92, 255, 0.22);
  }
}

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

.accordion {
  max-width: 920px;
  border-top: 1px solid var(--line);
}

.accordion-trigger {
  width: 100%;
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 1.12rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.accordion-panel {
  padding: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 6vw, 88px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-nav {
    position: fixed;
    inset: 72px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .icon-button {
    display: grid;
  }

  .hero,
  .visual-proof,
  .single-package-section,
  .split-section {
    grid-template-columns: 1fr;
  }

  .single-package-section .section-heading h2 {
    max-width: 12ch;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 420px;
    order: -1;
  }

  .visual-proof img {
    aspect-ratio: 16 / 10;
  }

  .package-note {
    grid-column: auto;
    max-width: 680px;
    margin: 0;
  }

  .trend-grid,
  .checklist,
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
  }

  .brand {
    width: 136px;
    min-width: 136px;
  }

  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.7rem);
  }

  .hero-media {
    min-height: 330px;
  }

  .hero-logo {
    width: min(58%, 230px);
  }

  .floating-panel {
    min-width: 128px;
    padding: 12px;
  }

  .panel-one {
    right: 4%;
  }

  .panel-two {
    left: 4%;
  }

  .metrics-band,
  .trend-grid,
  .checklist,
  .package-grid,
  .demo-toolbar {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .metrics-band article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics-band article:last-child {
    border-bottom: 0;
  }

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

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