* {
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --bg-soft: #f5f8fb;
  --text: #162433;
  --muted: #5d6b79;
  --line: #dbe4ec;
  --accent: #1769aa;
  --accent-dark: #0f4f83;
  --shadow: 0 18px 45px rgba(18, 45, 70, 0.08);
  --radius: 18px;
  --max: 1160px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand {
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

.site-nav a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  color: #334659;
}

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

.site-nav .nav-cta {
  color: white;
  background: var(--accent);
  padding: 10px 16px;
  border-radius: 10px;
}

.site-nav .nav-cta:hover {
  color: white;
  background: var(--accent-dark);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.65rem;
  cursor: pointer;
}

.hero {
  padding: 90px 0 80px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 12px;
}

h1, h2, h3 {
  line-height: 1.16;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 4.6rem);
  letter-spacing: -0.055em;
  margin-bottom: 24px;
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.hero-text,
.section-heading p,
.dedicated p,
.contact-box p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-text {
  max-width: 720px;
  font-size: 1.18rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 11px;
  font-weight: 750;
  transition: 0.15s ease;
}

.button.primary {
  color: white;
  background: var(--accent);
}



.button.secondary {
  border: 1px solid var(--line);
  background: white;
}



.hero-note {
  margin: 0;
  color: #71808e;
  font-size: 0.94rem;
}

.hero-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.panel-label {
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: #708091;
  margin-bottom: 18px;
}

.question {
  background: #eef6fc;
  border-radius: 14px;
  padding: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}

.answer {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  color: #425466;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.mini-tags span {
  font-size: 0.78rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: #587083;
}

.section {
  padding: 88px 0;
}

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

.section-heading {
  max-width: 770px;
  margin-bottom: 42px;
}

.cards {
  display: grid;
  gap: 20px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e9f3fb;
  color: var(--accent-dark);
  font-weight: 800;
  margin-bottom: 20px;
}

.icon {
  font-size: 1.55rem;
  margin-bottom: 16px;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.use-item {
  background: white;
  padding: 26px;
}

.use-item strong {
  display: block;
  margin-bottom: 8px;
}

.use-item span {
  color: var(--muted);
}

.cta-section {
  padding-top: 24px;
  padding-bottom: 24px;
}

.cta-box {
  background: #172c3f;
  color: white;
  border-radius: 24px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-box h2 {
  margin-bottom: 8px;
}

.cta-box p {
  color: #ced9e3;
  margin: 0;
  max-width: 720px;
}

.cta-actions {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.text-link {
  color: white;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
}

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

.link-card {
  display: block;
  text-decoration: none;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  transition: 0.15s ease;
}

.link-card:hover {
  border-color: #adc2d3;
  transform: translateY(-2px);
}

.link-card strong,
.link-card span {
  display: block;
}

.link-card span {
  margin-top: 5px;
  color: var(--muted);
}

.dedicated {
  border-top: 1px solid var(--line);
}

.dedicated-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.dedicated-grid > div:first-child {
  max-width: 800px;
}

.small-copy {
  font-size: 0.95rem !important;
}

.dedicated-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
}

.contact {
  background: var(--bg-soft);
}

.contact-box {
  max-width: 760px;
  text-align: center;
}

.email-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: #687888;
  font-size: 0.9rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--line);
    padding: 18px 20px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

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

  .site-nav a {
    padding: 10px 0;
  }

  .site-nav .nav-cta {
    text-align: center;
    margin-top: 6px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-grid,
  .dedicated-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cards.four {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    width: 100%;
  }

  .dedicated-actions {
    min-width: 0;
  }
}

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

  .section {
    padding: 66px 0;
  }

  h1 {
    font-size: 2.65rem;
  }

  .cards.three,
  .cards.four,
  .use-grid,
  .developer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .card,
  .cta-box {
    padding: 22px;
  }

  .footer-wrap {
    flex-direction: column;
  }
}


/* V2 product screenshot presentation */
h1 {
  font-size: clamp(2.55rem, 5vw, 3.75rem);
  letter-spacing: -0.035em;
}

.hero-grid {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
}

.product-shot {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.product-shot figcaption {
  padding: 10px 6px 2px;
  color: var(--muted);
  font-size: 0.84rem;
}

.feature-showcase {
  display: grid;
  gap: 28px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: 42px;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
}

.feature-row.reverse {
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
}

.feature-row.reverse .feature-copy {
  order: 2;
}

.feature-row.reverse .product-shot {
  order: 1;
}

.feature-copy p {
  color: var(--muted);
  margin-bottom: 0;
}

.feature-copy h3 {
  font-size: 1.45rem;
}

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

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .feature-row.reverse .feature-copy,
  .feature-row.reverse .product-shot {
    order: initial;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 2.45rem;
  }

  .feature-row {
    padding: 18px;
  }
}


/* Final mobile touch fix: hover effects only on devices with a real mouse/pointer */
@media (hover: hover) and (pointer: fine) {
  .button.primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
  }

  .button.secondary:hover {
    border-color: #b7c8d7;
    transform: translateY(-1px);
  }
}
