@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&family=IBM+Plex+Mono:wght@400;600&display=swap');

:root {
  --ink-1: #112132;
  --ink-2: #2f455d;
  --surface: rgba(255, 255, 255, 0.76);
  --line: rgba(8, 42, 74, 0.12);
  --accent: #0d70c4;
  --accent-strong: #04509c;
  --mint: #0f9d77;
  --bg-a: #ecf5ff;
  --bg-b: #f3fff8;
  --bg-c: #f7f5ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: 'Manrope', 'Segoe UI', Tahoma, sans-serif;
  color: var(--ink-1);
  background: linear-gradient(160deg, #f8fcff 0%, #f2f9ff 40%, #f8fffb 100%);
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.blob {
  position: absolute;
  filter: blur(24px);
  opacity: 0.66;
  border-radius: 999px;
}

.blob-a {
  width: 560px;
  height: 560px;
  left: -90px;
  top: -140px;
  background: radial-gradient(circle, rgba(15, 112, 196, 0.26), transparent 65%);
}

.blob-b {
  width: 520px;
  height: 520px;
  right: -130px;
  top: -120px;
  background: radial-gradient(circle, rgba(15, 157, 119, 0.23), transparent 65%);
}

.grid-fade {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 28, 49, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 28, 49, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 10%, black 10%, transparent 70%);
}

.topbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 22px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.wordmark {
  display: inline-block;
  width: clamp(128px, 16vw, 188px);
  line-height: 0;
  text-decoration: none;
}

.wordmark-logo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(16, 60, 96, 0.12));
}

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

.site-nav a {
  text-decoration: none;
  color: #284966;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 6px 8px;
  border-radius: 8px;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.75);
}

.topbar-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-meta span {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--ink-2);
}

.btn-compact {
  padding: 8px 12px;
  font-size: 0.82rem;
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 22px 70px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.hero-copy {
  animation: rise 540ms ease both;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.76rem;
  color: #32547a;
  font-weight: 700;
}

h1 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.04;
  max-width: 13ch;
}

.lead {
  margin: 14px 0 0;
  color: var(--ink-2);
  max-width: 60ch;
  line-height: 1.55;
  font-size: 1rem;
}

.pricing-signal {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pricing-signal span {
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #355875;
}

.pricing-signal span + span {
  border-left: 1px solid rgba(7, 66, 111, 0.22);
  padding-left: 10px;
}

.cta-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  border: 1px solid transparent;
  border-radius: 11px;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 14px 26px rgba(13, 112, 196, 0.27);
}

.btn-secondary {
  color: #11324f;
  border-color: rgba(11, 75, 123, 0.23);
  background: rgba(255, 255, 255, 0.8);
}

.release-note {
  margin-top: 13px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  color: #456380;
  font-size: 0.83rem;
}

.release-note .divider {
  opacity: 0.35;
}

code {
  font-family: 'IBM Plex Mono', Consolas, monospace;
  font-size: 0.86em;
}

.hero-media {
  position: relative;
  min-height: 440px;
  animation: rise 650ms ease both;
}

.shot {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 44px rgba(9, 36, 64, 0.2);
  background: #fff;
}

.shot img {
  width: 100%;
  display: block;
}

.shot-main {
  width: min(560px, 100%);
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 2;
}

.shot-sub {
  width: 47%;
  position: absolute;
  z-index: 3;
}

.shot-left {
  left: 0;
  bottom: 16px;
  transform: rotate(-4deg);
}

.shot-right {
  right: 0;
  bottom: -2px;
  transform: rotate(4deg);
}

.section-block {
  margin-top: 54px;
}

.pricing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 14px;
  align-items: stretch;
}

.pricing-copy {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  padding: 18px;
}

.pricing-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.pricing-copy p {
  margin: 10px 0 0;
  color: var(--ink-2);
  line-height: 1.55;
}

.price-card {
  border: 1px solid rgba(5, 74, 129, 0.2);
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(9, 111, 196, 0.14), rgba(7, 79, 140, 0.06)),
    rgba(255, 255, 255, 0.9);
  padding: 16px;
  box-shadow: 0 18px 32px rgba(8, 59, 104, 0.14);
}

.price-label {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #3f6387;
}

.price-value {
  margin: 6px 0 0;
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 800;
  color: #0c3961;
}

.price-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #1f486d;
  display: grid;
  gap: 6px;
}

.story {
  max-width: 860px;
}

.story h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
}

.story p {
  margin: 12px 0 0;
  color: var(--ink-2);
  line-height: 1.55;
}

.license-help-card {
  border: 1px solid rgba(9, 86, 150, 0.3);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(13, 112, 196, 0.2), rgba(12, 84, 148, 0.1) 45%, rgba(255, 255, 255, 0.92)),
    rgba(255, 255, 255, 0.9);
  padding: 18px;
  max-width: 760px;
  box-shadow: 0 20px 34px rgba(8, 66, 112, 0.18);
}

.license-help {
  display: flex;
  justify-content: center;
}

.license-help-card h2 {
  margin: 8px 0 0;
}

.license-help-card p {
  margin: 10px 0 0;
  color: var(--ink-2);
  line-height: 1.55;
}

.license-help-card .kicker {
  color: #2d5f90;
}

.license-help-card h2 {
  color: #103f67;
}

.license-help-card .btn-secondary {
  border-color: rgba(8, 79, 135, 0.35);
  background: rgba(255, 255, 255, 0.9);
}

.section-head {
  margin-bottom: 14px;
}

.section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(1.35rem, 2.8vw, 1.95rem);
  line-height: 1.18;
}

.license-help-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.feature-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  backdrop-filter: blur(4px);
  padding: 14px;
}

.feature-grid h3 {
  margin: 0;
  font-size: 1rem;
}

.feature-grid ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--ink-2);
  display: grid;
  gap: 6px;
}

.showcase {
  display: grid;
  gap: 16px;
}

.showcase-row {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, var(--surface), rgba(248, 254, 255, 0.92));
  padding: 16px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.showcase-row.reverse {
  grid-template-columns: minmax(0, 1fr) 300px;
}

.showcase-row.reverse .showcase-text {
  order: 2;
}

.showcase-row.reverse .showcase-image {
  order: 1;
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.73rem;
  color: #4a6782;
  font-weight: 700;
}

.showcase-text h3 {
  margin: 7px 0 0;
  font-size: 1.26rem;
  line-height: 1.2;
}

.showcase-text p {
  margin: 10px 0 0;
  color: var(--ink-2);
  line-height: 1.52;
}

.showcase-image {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 30px rgba(14, 44, 72, 0.17);
}

.showcase-image img {
  width: 100%;
  display: block;
}

.updates-strip {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background:
    linear-gradient(90deg, rgba(13, 112, 196, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.85);
}

.updates-strip h3 {
  margin: 0;
}

.updates-strip p {
  margin: 10px 0 0;
  color: var(--ink-2);
}

.updates-meta a {
  color: var(--accent-strong);
  font-weight: 700;
}

.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px 30px;
  color: #4f677d;
  font-size: 0.87rem;
}

.site-footer p {
  margin: 4px 0;
}

.tiny-note {
  opacity: 0.85;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

  .shot-main {
    width: 100%;
    right: 0;
  }
}

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

  .topbar-meta span {
    display: none;
  }

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

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

  .showcase-row,
  .showcase-row.reverse {
    grid-template-columns: 1fr;
  }

  .showcase-row.reverse .showcase-text,
  .showcase-row.reverse .showcase-image {
    order: initial;
  }
}

@media (max-width: 680px) {
  .topbar {
    padding-top: 12px;
  }

  .wordmark {
    width: clamp(112px, 34vw, 152px);
  }

  .topbar-meta {
    gap: 6px;
  }

  .btn-compact {
    padding: 7px 10px;
    font-size: 0.78rem;
  }

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

  .shot-sub {
    display: none;
  }

}
