:root {
  --bg: #f7f2e8;
  --paper: #fff9ef;
  --ink: #1f2130;
  --muted: #5e6072;
  --line: #d8cfbf;
  --accent: #1866a3;
  --accent-2: #f47a3d;
  --accent-soft: #89c8ee;
  --dark: #111a2a;
  --shadow: 0 20px 60px rgba(18, 16, 14, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 10%, #ffffff, transparent 40%),
    linear-gradient(160deg, #fbf4e7 0%, #f0e5d4 100%);
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
  line-height: 1.6;
}

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

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: radial-gradient(#000 0.4px, transparent 0.4px);
  background-size: 3px 3px;
  z-index: 1;
}

.bg-shape {
  position: fixed;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
  animation: drift 18s ease-in-out infinite alternate;
}

.bg-shape-a {
  width: 460px;
  height: 460px;
  background: var(--accent-soft);
  top: -120px;
  right: -90px;
}

.bg-shape-b {
  width: 360px;
  height: 360px;
  background: #ffb07c;
  bottom: -110px;
  left: -100px;
  animation-delay: -6s;
}

.nav,
main,
footer {
  position: relative;
  z-index: 2;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.nav nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-weight: 500;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(24, 102, 163, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  padding: 42px 0 72px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  max-width: 12ch;
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--accent);
}

.lead {
  color: var(--muted);
  max-width: 50ch;
  margin-bottom: 24px;
}

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

.btn {
  border: 1px solid transparent;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(120deg, var(--accent), #1f82c8);
  color: #fff;
  box-shadow: 0 12px 22px rgba(24, 102, 163, 0.3);
}

.btn-outline {
  border-color: var(--ink);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.btn-block {
  display: block;
  text-align: center;
  margin-top: 20px;
}

.hero-proof {
  margin-top: 28px;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.hero-proof strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.8rem;
}

.hero-proof span {
  font-size: 0.86rem;
  color: var(--muted);
}

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

.shot {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shot-main {
  width: 78%;
  height: 440px;
  right: 0;
  top: 22px;
}

.shot-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(17, 16, 15, 0.78);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.shot-small {
  width: 46%;
  height: 180px;
}

.shot-one {
  left: 0;
  top: 0;
  transform: rotate(-5deg);
}

.shot-two {
  left: 8%;
  bottom: 20px;
  transform: rotate(4deg);
}

.logos-wrap {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
}

.logos-track {
  display: flex;
  gap: 38px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 18s linear infinite;
  padding: 15px 0;
  font-family: "Syne", sans-serif;
  color: #524a43;
}

.section {
  padding: 86px 0;
}

.section-head {
  max-width: 660px;
  margin-bottom: 30px;
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

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

.feature {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  backdrop-filter: blur(8px);
}

.feature h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

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

.section-dark {
  background: var(--dark);
  color: #f5efe3;
  position: relative;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(244, 122, 61, 0.24), transparent 35%);
  pointer-events: none;
}

.stats-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.stats-copy p {
  color: #cbc1b3;
  margin-top: 14px;
}

.stats-cards {
  display: grid;
  gap: 14px;
}

.stat {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.stat strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 6px;
}

.pricing {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: start;
}

.pricing-copy p {
  color: var(--muted);
  margin-top: 14px;
  max-width: 52ch;
}

.pricing-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px;
}

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

.pricing-card-pro {
  border-color: rgba(24, 102, 163, 0.35);
  background: linear-gradient(170deg, #fff9ef 0%, #f2f8ff 100%);
}

.pricing-card-enterprise {
  background: linear-gradient(165deg, #fff9ef 0%, #fff2e8 100%);
  border-color: rgba(244, 122, 61, 0.35);
}

.pricing-card-lite {
  background: rgba(255, 249, 239, 0.88);
}

.plan {
  color: var(--muted);
  margin-bottom: 8px;
}

.price {
  font-family: "Syne", sans-serif;
  font-size: 2.6rem;
  margin-bottom: 14px;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
}

.pricing-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-card li {
  padding: 9px 0;
  border-bottom: 1px dashed #d8cfbf;
  color: #393c4d;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-family: "Syne", sans-serif;
}

.faq p {
  color: var(--muted);
  margin-top: 10px;
  max-width: 70ch;
}

.cta {
  padding-bottom: 110px;
}

.cta-card {
  border-radius: 30px;
  padding: 44px;
  background: linear-gradient(130deg, #fffaf2 0%, #edf6ff 100%);
  border: 1px solid #d0deef;
  box-shadow: var(--shadow);
}

.cta h2 {
  margin-bottom: 12px;
}

.cta p {
  color: #5d5851;
  margin-bottom: 20px;
}

.footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 20px 0 28px;
  color: #6e655b;
  font-size: 0.95rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.8s cubic-bezier(0.2, 0.75, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.25s ease;
}

@keyframes drift {
  to {
    transform: translate(30px, -20px) scale(1.12);
  }
}

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

@media (max-width: 1024px) {
  .hero,
  .stats-layout,
  .pricing {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 470px;
    margin-top: 12px;
  }

  .shot-main {
    width: 85%;
  }

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

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

@media (max-width: 700px) {
  .nav nav {
    display: none;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-proof {
    gap: 14px;
  }

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

  .shot-main {
    height: 330px;
  }

  .shot-small {
    height: 130px;
  }

  .cta-card {
    padding: 28px;
  }

  .footer {
    flex-direction: column;
    gap: 8px;
  }
}
