:root {
  --ink: #0f172a;
  --muted: #526071;
  --line: rgba(15, 23, 42, 0.12);
  --blue: #2563eb;
  --green: #10b981;
  --paper: #f8fafc;
  --white: #ffffff;
  --night: #07111f;
  --radius: 8px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

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

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

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 250, 252, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.18);
}

.links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-size: 0.94rem;
  font-weight: 650;
}

.links a {
  padding: 10px 12px;
  border-radius: 8px;
}

.links a:hover,
.links a.active {
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(16, 185, 129, 0.13) 42%, rgba(245, 158, 11, 0.12)),
    linear-gradient(180deg, #ffffff, #eef6ff);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.86fr);
  gap: 52px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 74px 0 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.16);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.25rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.lead {
  max-width: 640px;
  margin-bottom: 34px;
  color: #344256;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(15, 23, 42, 0.12);
  color: var(--ink);
}

.hero-art {
  position: relative;
  min-height: 640px;
}

.shot {
  position: absolute;
  width: min(72%, 360px);
  border-radius: 30px;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.28);
  background: #dbeafe;
}

.shot.one {
  right: 0;
  top: 14px;
  z-index: 3;
  transform: rotate(4deg);
}

.shot.two {
  left: 0;
  top: 132px;
  z-index: 2;
  transform: rotate(-7deg);
  opacity: 0.95;
}

.shot.three {
  right: 76px;
  bottom: 0;
  z-index: 1;
  transform: rotate(2deg);
  opacity: 0.82;
}

.page-hero {
  padding: 86px 0 58px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.13), rgba(16, 185, 129, 0.12)),
    #ffffff;
  border-bottom: 1px solid var(--line);
}

.page-hero .lead { margin-bottom: 0; }

section { padding: 92px 0; }

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p,
.support-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.feature {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.feature mark {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.marketing-band {
  background: var(--night);
  color: var(--white);
}

.marketing-band .section-head p { color: #b7c4d6; }

.showcase {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: center;
}

.showcase-copy {
  display: grid;
  gap: 14px;
}

.proof {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.proof strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.proof span { color: #b7c4d6; }

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.gallery img {
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.gallery img:nth-child(2) { margin-top: 56px; }

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: start;
}

.support-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.support-panel h3 { margin-bottom: 12px; }

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

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

.support-list li {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
}

.support-list strong {
  display: block;
  margin-bottom: 4px;
}

.support-list span { color: var(--muted); }

footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: #64748b;
  font-size: 0.94rem;
}

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

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

  .hero-grid {
    min-height: auto;
    padding-top: 56px;
  }

  .hero-art { min-height: 560px; }

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

  .links { gap: 2px; }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .nav-inner { min-height: 66px; }

  .links a {
    padding: 8px;
    font-size: 0.86rem;
  }

  .brand span { display: none; }

  section { padding: 68px 0; }

  .hero-art { min-height: 470px; }

  .shot {
    width: min(76%, 292px);
    border-radius: 22px;
  }

  .shot.two { top: 106px; }
  .shot.three { right: 34px; }

  .gallery { grid-template-columns: 1fr; }
  .gallery img:nth-child(2) { margin-top: 0; }

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