:root {
  --bg: #f5f1e8;
  --bg-soft: #efe7d6;
  --surface: rgba(255, 255, 255, 0.62);
  --surface-strong: rgba(255, 255, 255, 0.78);
  --ink: #171512;
  --ink-soft: rgba(23, 21, 18, 0.72);
  --line: rgba(23, 21, 18, 0.12);
  --blue: #1762c2;
  --blue-deep: #0f3970;
  --green: #3d7c50;
  --amber: #a96c16;
  --shadow: 0 24px 70px rgba(60, 40, 14, 0.14);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(23, 98, 194, 0.12), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(169, 108, 22, 0.10), transparent 22%),
    linear-gradient(180deg, #f7f2e8 0%, #efe7d6 100%);
  overflow-x: hidden;
}

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

.page-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 22px 20px 60px;
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(247, 242, 232, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(60, 40, 14, 0.08);
}

.brand {
  font-family: "Sora", sans-serif;
  font-size: 1.48rem;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
}

.site-nav a:hover {
  background: rgba(23, 98, 194, 0.08);
  color: var(--ink);
}

.site-nav .nav-cta {
  background: var(--blue);
  color: white;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 34px;
  align-items: center;
  padding: 52px 0 36px;
  min-width: 0;
}

.hero-copy,
.hero-panel,
.feature-grid,
.faq-list,
.screenshot-grid,
.timeline,
.pricing-card,
.support-card,
.proof-strip {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero h1,
.section-heading h2,
.pricing-card h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.section-heading h2,
.pricing-card h2 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
}

.hero-text,
.feature-card p,
.timeline p,
.faq-list p,
.pricing-card p,
.proof-strip p {
  color: var(--ink-soft);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

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

.button-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 16px 30px rgba(23, 98, 194, 0.22);
}

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

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

.hero-points li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.hero-panel {
  position: relative;
  min-width: 0;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  filter: blur(28px);
}

.hero-panel::before {
  width: 220px;
  height: 220px;
  right: -20px;
  top: -20px;
  background: rgba(23, 98, 194, 0.18);
}

.hero-panel::after {
  width: 170px;
  height: 170px;
  left: -10px;
  bottom: 10px;
  background: rgba(169, 108, 22, 0.16);
}

.panel-window {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(15, 57, 112, 0.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(14, 29, 50, 0.95), rgba(12, 18, 29, 0.98));
  color: white;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-width: 0;
}

.hero-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 60px rgba(5, 10, 22, 0.32);
}

.panel-topbar,
.panel-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel-topbar {
  margin-bottom: 18px;
}

.panel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8bcf8d;
  box-shadow: 0 0 0 8px rgba(139, 207, 141, 0.12);
}

.panel-title {
  margin-right: auto;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.panel-badge,
.tab {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

.tab-active {
  border-color: rgba(108, 152, 255, 0.22);
  background: rgba(88, 125, 232, 0.2);
  color: white;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.metric-card {
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.metric-card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1.34rem;
  letter-spacing: -0.03em;
}

.metric-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.metric-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.accent-blue {
  box-shadow: inset 0 0 0 1px rgba(118, 165, 255, 0.12);
}

.accent-amber {
  box-shadow: inset 0 0 0 1px rgba(255, 184, 87, 0.16);
}

.accent-green {
  box-shadow: inset 0 0 0 1px rgba(139, 207, 141, 0.16);
}

.accent-white {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.10);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 12px 0 18px;
}

.proof-strip > div,
.feature-card,
.faq-list article,
.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(60, 40, 14, 0.06);
}

.proof-strip > div {
  padding: 22px;
}

.proof-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: white;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.section {
  padding: 52px 0;
}

.section-dark {
  margin: 16px 0;
  padding: 42px 24px;
  border-radius: 32px;
  background: linear-gradient(135deg, #14345f, #1e5a77 58%, #355c2a 100%);
  color: white;
}

.section-dark .eyebrow,
.section-dark p,
.section-dark h2 {
  color: white;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-note {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.feature-grid,
.faq-list,
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.faq-list article,
.shot-card {
  padding: 22px;
}

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

.shot-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(60, 40, 14, 0.06);
  min-width: 0;
}

.shot-frame {
  position: relative;
  min-height: 220px;
  margin-bottom: 18px;
  padding: 12px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(13, 24, 40, 0.96), rgba(10, 15, 26, 0.98));
  color: white;
  min-width: 0;
}

.shot-image {
  display: block;
  width: 100%;
  height: auto;
}

.feature-card h3,
.faq-list h3,
.timeline h3,
.shot-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

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

.timeline article {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.timeline span {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.pricing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(23, 98, 194, 0.12);
  border-radius: 999px;
  background: var(--surface-strong);
}

.price-tag strong {
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.price-currency,
.price-note {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.support-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.70), rgba(255, 255, 255, 0.46));
  box-shadow: 0 12px 34px rgba(60, 40, 14, 0.06);
}

.support-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 6px;
  color: var(--ink-soft);
}

.footer-copy p {
  margin: 0;
}

.footer-legal {
  max-width: 720px;
  margin-top: 6px;
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 16px;
}

@media (max-width: 980px) {
  .hero,
  .proof-strip,
  .feature-grid,
  .screenshot-grid,
  .faq-list,
  .timeline,
  .pricing-card,
  .support-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-panel {
    width: 100%;
    max-width: 720px;
    margin: 0;
  }

  .hero-panel::before,
  .hero-panel::after {
    display: none;
  }

  .hero-shot {
    max-height: 560px;
    object-fit: cover;
    object-position: top center;
  }

  .pricing-card,
  .support-card,
  .site-footer,
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 720px) {
  .page-shell {
    padding-inline: 14px;
  }

  .page-shell {
    padding-top: 16px;
    padding-bottom: 44px;
  }

  .site-header {
    position: static;
    border-radius: 24px;
    padding: 16px;
    gap: 14px;
    overflow: hidden;
  }

  .hero h1,
  .section-heading h2,
  .pricing-card h2 {
    line-height: 1;
  }

  .button,
  .site-nav a {
    width: 100%;
  }

  .site-nav,
  .hero-actions,
  .pricing-actions {
    width: 100%;
    min-width: 0;
  }

  .site-nav {
    gap: 8px;
  }

  .hero {
    gap: 22px;
    padding: 28px 0 22px;
  }

  .hero-text {
    font-size: 0.98rem;
  }

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

  .hero-points li {
    width: 100%;
    border-radius: 18px;
    font-size: 0.92rem;
  }

  .panel-window {
    padding: 10px;
    border-radius: 24px;
  }

  .hero-panel {
    width: 100%;
    margin: 0;
  }

  .hero-shot {
    width: 100%;
    max-height: none;
    height: auto;
    object-fit: contain;
    object-position: center top;
    border-radius: 16px;
  }

  .section {
    padding: 38px 0;
  }

  .section-dark {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .feature-card,
  .faq-list article,
  .shot-card,
  .proof-strip > div,
  .pricing-card,
  .support-card {
    padding: 18px;
  }

  .shot-frame {
    min-height: 0;
    margin-bottom: 14px;
    padding: 10px;
    border-radius: 14px;
  }

  .shot-image {
    width: 100%;
  }

  .price-tag {
    width: 100%;
    justify-content: center;
  }

  .footer-links,
  .support-actions {
    width: 100%;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-copy {
    width: 100%;
  }
}
