:root {
  --bg: #08111f;
  --bg-soft: #0f172a;
  --surface: rgba(15, 23, 42, 0.86);
  --surface-2: rgba(30, 41, 59, 0.78);
  --line: rgba(148, 163, 184, 0.18);
  --text: #e5eefc;
  --muted: #9db0cb;
  --heading: #ffffff;
  --primary: #d4af37;
  --primary-strong: #f2c94c;
  --primary-dark: #8f6a08;
  --success: #22c55e;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --container: 1180px;
}

* {
  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 top left, rgba(212, 175, 55, 0.15), transparent 30%),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 28%),
    linear-gradient(180deg, #06101d 0%, #0b1324 40%, #0b1220 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-surface {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.56), rgba(15, 23, 42, 0.2));
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--primary-strong);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--heading);
  line-height: 1.14;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(6, 16, 29, 0.8);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-title,
.brand-subtitle {
  display: block;
}

.brand-title {
  font-weight: 800;
  font-size: 1.08rem;
  color: #fff;
}

.brand-subtitle {
  font-size: 0.84rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a:not(.button) {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:not(.button):hover,
.nav-links a:not(.button):focus-visible {
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: #fff;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #111827;
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  box-shadow: 0 18px 34px rgba(212, 175, 55, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 40px rgba(212, 175, 55, 0.28);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 13px;
  font-size: 0.94rem;
}

.button-full {
  width: 100%;
}

.hero {
  padding-top: 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  max-width: 12ch;
}

.hero-text {
  margin-top: 22px;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dbe7fb;
  font-size: 0.95rem;
}

.app-preview-card {
  padding: 22px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.preview-stats {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.preview-stats article {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-stats strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.preview-stats span {
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-strip {
  padding-top: 22px;
}

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

.trust-grid > div,
.feature-card,
.value-card,
.cta-panel,
.faq-item,
.timeline-item {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.trust-grid > div {
  padding: 24px;
}

.trust-number {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--primary-strong);
  font-weight: 800;
  font-size: 1.4rem;
}

.trust-grid p {
  color: #dbe7fb;
}

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

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

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 14px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
}

.screenshot-showcase {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}

.screenshot-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 320px;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 4px 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.45) rgba(255, 255, 255, 0.08);
}

.screenshot-track:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.7);
  outline-offset: 4px;
  border-radius: 14px;
}

.screenshot-card {
  margin: 0;
  padding: 8px;
  border-radius: 18px;
  scroll-snap-align: start;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.74));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.screenshot-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 19.5;
  max-height: min(72vh, 520px);
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.screenshot-card figcaption {
  margin-top: 6px;
  color: #dce7fb;
  font-weight: 600;
  font-size: 0.72rem;
  text-align: center;
}

.carousel-control {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.carousel-control:hover,
.carousel-control:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.75);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  padding: 0;
}

.carousel-dot.is-active {
  background: var(--primary-strong);
}

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

.pricing-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.pricing-intro code {
  color: var(--primary-strong);
  font-weight: 700;
}

.pricing-status {
  color: #dce7fb;
  font-weight: 600;
}

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

.pricing-card {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.72));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pricing-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -30% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 70%);
  pointer-events: none;
}

.pricing-card-highlight {
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-4px);
}

.pricing-card-loading {
  text-align: center;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.16);
  border: 1px solid rgba(212, 175, 55, 0.24);
  color: var(--primary-strong);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.pricing-card h3 {
  font-size: 1.4rem;
}

.pricing-description {
  margin-top: 10px;
  color: var(--muted);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 24px 0 6px;
}

.pricing-amount strong {
  font-size: 2.5rem;
  line-height: 1;
  color: #fff;
}

.pricing-amount span {
  color: var(--muted);
  font-weight: 600;
}

.pricing-meta,
.pricing-details {
  display: grid;
  gap: 10px;
}

.pricing-meta {
  margin: 20px 0 22px;
}

.pricing-meta div,
.pricing-details li {
  color: var(--muted);
}

.pricing-details {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.pricing-details li {
  position: relative;
  padding-left: 24px;
}

.pricing-details li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--primary-strong);
  font-weight: 800;
}

.pricing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.pricing-per-day {
  color: #dce7fb;
  font-weight: 700;
}

.pricing-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-card {
  padding: 28px;
}

.feature-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.24), rgba(59, 130, 246, 0.14));
  border: 1px solid rgba(212, 175, 55, 0.16);
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 1.24rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  padding: 22px;
  align-items: start;
}

.timeline-step {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  color: #111827;
  font-weight: 800;
  font-size: 1.15rem;
}

.timeline-item h3 {
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--muted);
}

.industry-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.pill {
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #dce7fb;
  font-weight: 600;
}

.value-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.value-card,
.cta-panel {
  padding: 30px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 800;
}

.cta-panel {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.14), rgba(15, 23, 42, 0.95));
}

.cta-panel h3 {
  margin: 6px 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.cta-panel p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 24px;
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border: 0;
  color: #fff;
  background: transparent;
  text-align: left;
  font-weight: 700;
}

.faq-plus {
  font-size: 1.4rem;
  color: var(--primary-strong);
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  color: var(--muted);
}

.faq-item.is-open .faq-plus {
  transform: rotate(45deg);
}

.site-footer {
  padding: 34px 0 26px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  background: rgba(6, 16, 29, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-copy {
  max-width: 44ch;
  color: var(--muted);
}

.footer-grid h3 {
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.legal-page {
  min-height: 100vh;
}

.legal-main {
  padding: 54px 0 88px;
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.legal-card .meta {
  display: grid;
  gap: 6px;
  margin: 18px 0 28px;
  color: var(--muted);
}

.legal-card h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-card h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.legal-card ul {
  padding-left: 20px;
  color: var(--muted);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card strong {
  color: #fff;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--primary-strong);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .hero-grid,
  .value-grid,
  .footer-grid,
  .feature-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 800px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 20px;
    background: rgba(6, 16, 29, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero-grid,
  .value-grid,
  .footer-grid,
  .feature-grid,
  .pricing-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .pricing-intro,
  .pricing-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .screenshot-showcase {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .carousel-control {
    display: none;
  }

  .screenshot-track {
    grid-auto-columns: 145px;
    padding-bottom: 10px;
  }

  .hero {
    padding-top: 34px;
  }

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

  .legal-card {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .button,
  .hero-actions .button {
    width: 100%;
  }

  .hero-badges {
    flex-direction: column;
  }
}

