:root {
  color-scheme: dark;
  --bg: #07090d;
  --bg-soft: #0c1017;
  --surface: #111722;
  --surface-strong: #171f2c;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f7f9fb;
  --muted: #a9b3c1;
  --muted-strong: #d6dce5;
  --cyan: #31d6e8;
  --teal: #3ff2bb;
  --amber: #f5b85a;
  --rose: #ff7d9d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --max: 1160px;
  --radius: 8px;
  --header-h: 76px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(49, 214, 232, 0.16), transparent 32rem),
    linear-gradient(180deg, #07090d 0%, #0a0d13 46%, #07090d 100%);
  color: var(--text);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 72%);
}

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

svg {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 18px clamp(18px, 5vw, 52px);
  background: rgba(7, 9, 13, 0.76);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 9, 13, 0.9);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #061014;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(49, 214, 232, 0.26);
}

.main-nav {
  display: none;
  gap: 28px;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.main-nav a,
.header-action {
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.main-nav a:hover {
  color: var(--text);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.header-action:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.section-pad {
  width: min(100% - 36px, var(--max));
  margin-inline: auto;
}

.hero {
  display: grid;
  gap: 42px;
  align-items: center;
  min-height: calc(100svh - var(--header-h));
  padding: 44px 0 76px;
}

.hero-copy {
  max-width: 730px;
}

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

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 12vw, 6.85rem);
  font-weight: 900;
  line-height: 0.92;
}

.hero-copy p {
  max-width: 610px;
  margin-top: 24px;
  color: var(--muted-strong);
  font-size: clamp(1.08rem, 2.4vw, 1.3rem);
  line-height: 1.62;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  font-size: 0.96rem;
  font-weight: 800;
  border-radius: 8px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  color: #051115;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  box-shadow: 0 18px 44px rgba(49, 214, 232, 0.24);
}

.button-primary:hover {
  box-shadow: 0 22px 54px rgba(49, 214, 232, 0.34);
}

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

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: var(--line-strong);
}

.hero-visual {
  position: relative;
  min-height: 420px;
  perspective: 1100px;
}

.browser-frame {
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.1), transparent 45%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotateY(-7deg) rotateX(2deg);
  transform-origin: center;
}

.browser-top {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.browser-top span {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.browser-top strong {
  min-width: 0;
  margin-left: 8px;
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-preview {
  display: grid;
  gap: 22px;
  padding: clamp(20px, 5vw, 34px);
}

.preview-label,
.site-url {
  display: inline-block;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 850;
}

.profile-preview h2 {
  max-width: 450px;
  margin-top: 12px;
  font-size: clamp(1.65rem, 5vw, 3rem);
  line-height: 1.02;
}

.preview-media {
  min-height: 148px;
  background:
    linear-gradient(135deg, rgba(49, 214, 232, 0.95), rgba(63, 242, 187, 0.7)),
    linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.3) 18% 20%, transparent 20% 100%);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.preview-actions,
.site-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.preview-actions span,
.site-buttons span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 760;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.module-stack {
  position: absolute;
  right: 18px;
  bottom: -22px;
  display: grid;
  gap: 8px;
  width: min(210px, 48vw);
}

.phone-preview {
  position: absolute;
  bottom: 12px;
  left: -18px;
  display: grid;
  gap: 12px;
  width: 158px;
  padding: 20px 14px 14px;
  background: linear-gradient(180deg, #111a25, #080c12);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.42);
}

.phone-speaker {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 42px;
  height: 4px;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-preview span {
  margin-top: 6px;
  color: var(--muted-strong);
  font-size: 0.7rem;
  font-weight: 800;
}

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

.phone-grid i {
  display: block;
  height: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.phone-grid i:nth-child(5) {
  background: rgba(49, 214, 232, 0.25);
  border-color: rgba(49, 214, 232, 0.56);
}

.phone-preview strong {
  display: grid;
  min-height: 32px;
  place-items: center;
  color: #051115;
  font-size: 0.72rem;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  border-radius: 7px;
}

.module-stack span {
  padding: 14px 16px;
  font-size: 0.88rem;
  font-weight: 850;
  background: rgba(12, 16, 23, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.modules,
.customer-page,
.vision,
.cta {
  padding-top: clamp(74px, 11vw, 128px);
  padding-bottom: clamp(74px, 11vw, 128px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.customer-copy h2,
.cta h2 {
  font-size: clamp(2.2rem, 7vw, 4.6rem);
  font-weight: 900;
  line-height: 0.98;
}

.section-heading p,
.customer-copy p,
.cta p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.module-grid {
  display: grid;
  gap: 16px;
}

.module-card,
.roadmap article,
.site-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.module-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 24px;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.module-card::before {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 132px;
  height: 132px;
  content: "";
  background: currentColor;
  border-radius: 8px;
  filter: blur(42px);
  opacity: 0.12;
}

.module-card:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.module-booking {
  color: var(--cyan);
}

.module-ticket {
  color: var(--rose);
}

.module-menu {
  color: var(--amber);
}

.module-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
  place-items: center;
  color: currentColor;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.module-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.module-card h3 {
  color: var(--text);
  font-size: clamp(1.8rem, 6vw, 3.1rem);
  line-height: 1;
}

.module-card p {
  max-width: 360px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.68;
}

.module-preview {
  display: grid;
  gap: 10px;
  min-height: 92px;
  padding: 14px;
  margin-top: auto;
  color: var(--text);
  background: rgba(5, 8, 12, 0.44);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.module-preview span {
  font-size: 0.84rem;
  font-weight: 850;
}

.module-preview strong {
  color: var(--muted-strong);
  font-size: 0.78rem;
}

.booking-preview div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
}

.booking-preview i {
  display: block;
  height: 28px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}

.booking-preview i:nth-child(4) {
  background: rgba(49, 214, 232, 0.28);
}

.ticket-preview {
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.2), rgba(7, 9, 13, 0.92)),
    linear-gradient(135deg, rgba(255, 125, 157, 0.5), rgba(49, 214, 232, 0.42));
}

.menu-preview {
  background:
    radial-gradient(circle at 82% 40%, rgba(245, 184, 90, 0.35), transparent 28%),
    rgba(5, 8, 12, 0.44);
}

.customer-page {
  display: grid;
  gap: 34px;
  align-items: center;
}

.customer-copy strong {
  color: var(--text);
  font-weight: 850;
}

.site-card {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.site-card-cover {
  min-height: 188px;
  background:
    linear-gradient(120deg, rgba(7, 9, 13, 0.1), rgba(7, 9, 13, 0.58)),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.38), transparent 28%),
    linear-gradient(135deg, rgba(49, 214, 232, 0.82), rgba(245, 184, 90, 0.72));
}

.site-card-body {
  display: grid;
  gap: 22px;
  padding: 22px;
  background: rgba(12, 16, 23, 0.9);
}

.site-card h3 {
  margin-top: 8px;
  font-size: clamp(1.7rem, 6vw, 2.8rem);
  line-height: 1;
}

.site-card p {
  margin-top: 10px;
  color: var(--muted);
}

.roadmap {
  position: relative;
  display: grid;
  gap: 12px;
}

.roadmap article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  align-items: baseline;
  padding: 20px;
}

.roadmap span {
  grid-row: span 2;
  color: var(--cyan);
  font-size: 0.84rem;
  font-weight: 900;
}

.roadmap h3 {
  font-size: 1.28rem;
}

.roadmap p {
  color: var(--muted);
  line-height: 1.5;
}

.cta-inner {
  display: grid;
  gap: 22px;
  justify-items: start;
  padding: clamp(26px, 7vw, 58px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(49, 214, 232, 0.16), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta p {
  max-width: 560px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: space-between;
  width: min(100% - 36px, var(--max));
  padding: 28px 0 44px;
  margin-inline: auto;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer span:first-child {
  color: var(--text);
  font-weight: 850;
}

@media (min-width: 760px) {
  .main-nav {
    display: flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.78fr);
    padding-top: 28px;
  }

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

  .customer-page {
    grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.78fr);
  }

  .roadmap {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-top: 28px;
  }

  .roadmap::before {
    position: absolute;
    top: 28px;
    right: 10%;
    left: 10%;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--cyan), var(--cyan), var(--amber));
    box-shadow: 0 0 22px rgba(49, 214, 232, 0.38);
  }

  .roadmap article {
    position: relative;
    min-height: 190px;
    align-content: end;
    grid-template-columns: 1fr;
  }

  .roadmap article::before {
    position: absolute;
    top: -36px;
    left: 22px;
    width: 22px;
    height: 22px;
    content: "";
    background: var(--bg);
    border: 3px solid currentColor;
    border-radius: 50%;
    box-shadow: 0 0 24px currentColor;
  }

  .roadmap span {
    grid-row: auto;
  }
}

@media (min-width: 1040px) {
  .hero {
    gap: 54px;
  }

  .module-card {
    min-height: 340px;
    padding: 30px;
  }
}

@media (max-width: 500px) {
  .site-header {
    padding-inline: 16px;
  }

  .header-action {
    display: none;
  }

  .section-pad,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 44px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.45rem);
  }

  .hero-copy p {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.52;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-height: 44px;
  }

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

  .browser-frame {
    transform: none;
  }

  .browser-top {
    min-height: 38px;
  }

  .profile-preview {
    gap: 14px;
    padding: 16px;
  }

  .profile-preview h2 {
    font-size: 1.36rem;
  }

  .preview-media {
    min-height: 94px;
  }

  .preview-actions span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.7rem;
  }

  .phone-preview {
    display: none;
  }

  .module-stack {
    display: none;
  }
}

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