@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Manrope:wght@500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  color-scheme: light;
  --ink: #111418;
  --muted: #5a6472;
  --soft: #f5f7fb;
  --surface: #ffffff;
  --line: #d9e0ea;
  --line-strong: #a9b4c3;
  --red: #e53e3e;
  --blue: #2563eb;
  --green: #0f9f6e;
  --amber: #d97706;
  --purple: #7c3aed;
  --cyan: #0891b2;
  --shadow: 0 18px 46px rgba(17, 20, 24, 0.1);
  font-family: Archivo, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(17, 20, 24, 0.045) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(0deg, rgba(17, 20, 24, 0.035) 1px, transparent 1px) 0 0 / 64px 64px,
    var(--soft);
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--blue); }
h1, h2, h3, p { margin: 0; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  max-width: 1180px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 14px 20px;
  background: rgba(245, 247, 251, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 224, 234, 0.7);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red), var(--blue) 54%, var(--green));
  color: white;
  font-size: 12px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

nav a {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 9px 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

nav a:hover {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.hero {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: center;
  margin: 0 auto;
  padding: 78px 20px 54px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.live-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #1749b6;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3 {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  margin-top: 18px;
  max-width: 700px;
  font-size: 64px;
  line-height: 0.98;
}

h2 {
  max-width: 780px;
  font-size: 42px;
  line-height: 1.05;
}

h3 {
  font-size: 26px;
  line-height: 1.1;
}

.lede {
  max-width: 680px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.48;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  padding: 0 16px;
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: var(--blue);
  color: var(--blue);
}

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

.button.primary:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.button.soft {
  background: #f8fafc;
}

.hero-tools {
  display: grid;
  gap: 12px;
}

.tool-tile {
  display: grid;
  min-height: 154px;
  align-content: start;
  gap: 10px;
  border: 1px solid var(--line);
  border-left: 8px solid var(--blue);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px;
  box-shadow: var(--shadow);
}

.tool-tile:hover {
  border-color: var(--line-strong);
  border-left-color: var(--red);
  color: var(--ink);
}

.tool-tile small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tool-tile strong {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.05;
}

.tool-tile span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.4;
}

.tile-ytd { border-left-color: var(--red); }
.tile-time { border-left-color: var(--green); }
.tile-skills { border-left-color: var(--purple); }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid #222833;
  background: var(--ink);
  color: white;
}

.proof-strip div {
  min-height: 100px;
  padding: 22px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-strip strong {
  display: block;
  color: #97f0c0;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.05;
}

.proof-strip span {
  display: block;
  max-width: 360px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 650;
  line-height: 1.4;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 20px;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.section-head p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.5;
}

.tools-section {
  padding-top: 78px;
}

.priority-grid,
.extension-grid {
  display: grid;
  gap: 16px;
}

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

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

.priority-card,
.extension-card,
.trust-list p {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.priority-card,
.extension-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  padding: 22px;
}

.priority-card::before,
.extension-card::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--accent, var(--blue));
}

.priority-card:nth-child(1) { --accent: var(--red); }
.priority-card:nth-child(2) { --accent: var(--green); }
.priority-card:nth-child(3) { --accent: var(--purple); }

.priority-card h3,
.extension-card h3 {
  margin-top: 14px;
}

.priority-card p,
.extension-card p {
  max-width: 620px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.45;
}

.priority-card .live-pill,
.extension-card .live-pill {
  background: rgba(15, 159, 110, 0.1);
  border-color: rgba(15, 159, 110, 0.18);
  color: #08724b;
}

.accent-blue { --accent: var(--blue); }
.accent-red { --accent: var(--red); }
.accent-amber { --accent: var(--amber); }
.accent-green { --accent: var(--green); }
.accent-purple { --accent: var(--purple); }
.accent-dark { --accent: var(--ink); }
.accent-time { --accent: var(--cyan); }

.trust-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: start;
}

.trust-list {
  display: grid;
  gap: 12px;
}

.trust-list p {
  padding: 18px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

.trust-list strong { color: var(--ink); }

.media-proof {
  display: grid;
  gap: 12px;
}

.media-proof img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.media-proof p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
}

footer {
  display: flex;
  max-width: 1180px;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 28px 20px 48px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: start;
}

body.product-page {
  --product-bg: #090d13;
  --product-ink: #f7fbff;
  --product-muted: rgba(247, 251, 255, 0.72);
  --product-line: rgba(255, 255, 255, 0.16);
  --product-panel: rgba(255, 255, 255, 0.08);
  --product-panel-strong: rgba(255, 255, 255, 0.13);
  --product-accent: #76f2ff;
  --product-accent-2: #ff6fc8;
  --product-warm: #ffd166;
  min-height: 100vh;
  background: var(--product-bg);
  color: var(--product-ink);
  font-family: Manrope, Archivo, ui-sans-serif, system-ui, sans-serif;
}

body.product-retro {
  --product-bg: #17110b;
  --product-ink: #fff5df;
  --product-muted: rgba(255, 245, 223, 0.74);
  --product-line: rgba(255, 226, 176, 0.2);
  --product-panel: rgba(255, 237, 202, 0.09);
  --product-panel-strong: rgba(255, 237, 202, 0.16);
  --product-accent: #e33b2f;
  --product-accent-2: #f2c46d;
  --product-warm: #f8deb0;
}

.product-page .topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  border: 1px solid var(--product-line);
  border-radius: 8px;
  background: rgba(9, 13, 19, 0.54);
  color: var(--product-ink);
  backdrop-filter: blur(18px);
}

.product-retro .topbar {
  background: rgba(23, 17, 11, 0.58);
}

.product-page .brand,
.product-page nav a,
.product-page .brand:hover,
.product-page nav a:hover {
  color: var(--product-ink);
}

.product-page nav a {
  color: var(--product-muted);
}

.product-page nav a:hover {
  border-color: var(--product-line);
  background: var(--product-panel);
}

.product-hero {
  position: relative;
  display: grid;
  min-height: min(760px, 84svh);
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding: 112px 20px 56px;
}

.product-hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.product-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.92) 0%, rgba(5, 8, 13, 0.76) 34%, rgba(5, 8, 13, 0.18) 72%, rgba(5, 8, 13, 0.44) 100%),
    linear-gradient(180deg, rgba(5, 8, 13, 0.52), rgba(5, 8, 13, 0.12) 48%, rgba(5, 8, 13, 0.86));
}

.product-retro .product-hero::before {
  background:
    linear-gradient(90deg, rgba(23, 15, 9, 0.9) 0%, rgba(23, 15, 9, 0.68) 36%, rgba(23, 15, 9, 0.08) 72%, rgba(23, 15, 9, 0.3) 100%),
    linear-gradient(180deg, rgba(23, 15, 9, 0.5), rgba(23, 15, 9, 0.08) 48%, rgba(23, 15, 9, 0.86));
}

.product-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px) 0 0 / 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 82%);
}

.product-hero-inner,
.product-section-inner,
.product-proof-strip,
.product-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.product-hero-copy {
  max-width: 720px;
}

.product-page .product-hero .eyebrow {
  border-color: var(--product-line);
  background: var(--product-panel);
  color: var(--product-ink);
}

.product-hero h1 {
  max-width: 760px;
  margin-top: 18px;
  color: var(--product-ink);
  font-family: "Space Grotesk", Manrope, Archivo, sans-serif;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.9;
}

.product-hero .lede {
  max-width: 660px;
  color: var(--product-muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.52;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.product-page .product-actions .button {
  border-color: var(--product-line);
  background: rgba(255, 255, 255, 0.1);
  color: var(--product-ink);
}

.product-page .product-actions .button.primary {
  border-color: var(--product-ink);
  background: var(--product-ink);
  color: var(--product-bg);
}

.product-page .product-actions .button:hover {
  border-color: var(--product-accent);
  background: var(--product-accent);
  color: #061016;
}

.product-quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 34px;
}

.product-quick-facts span {
  display: grid;
  gap: 6px;
  min-height: 86px;
  align-content: center;
  border: 1px solid var(--product-line);
  border-radius: 8px;
  background: var(--product-panel);
  padding: 14px;
  color: var(--product-muted);
  font-size: 13px;
  font-weight: 800;
}

.product-quick-facts strong {
  color: var(--product-ink);
  font-size: 15px;
  font-weight: 900;
}

.product-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--product-line);
  border-radius: 8px;
  background: var(--product-line);
  overflow: hidden;
  transform: translateY(-28px);
}

.product-proof-strip div {
  min-height: 118px;
  background: rgba(12, 16, 23, 0.92);
  padding: 22px;
}

.product-retro .product-proof-strip div {
  background: rgba(38, 27, 17, 0.94);
}

.product-proof-strip strong {
  display: block;
  color: var(--product-accent);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.05;
}

.product-retro .product-proof-strip strong {
  color: var(--product-accent-2);
}

.product-proof-strip span {
  display: block;
  margin-top: 8px;
  color: var(--product-muted);
  font-weight: 750;
  line-height: 1.4;
}

.product-main {
  margin-top: -30px;
  background:
    linear-gradient(90deg, rgba(17, 20, 24, 0.045) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(0deg, rgba(17, 20, 24, 0.035) 1px, transparent 1px) 0 0 / 64px 64px,
    #f5f7fb;
  color: var(--ink);
}

.product-section {
  padding: 82px 0;
}

.product-section + .product-section {
  border-top: 1px solid rgba(17, 20, 24, 0.08);
}

.product-section-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 52px;
  align-items: start;
}

.product-section h2 {
  max-width: 520px;
  font-family: "Space Grotesk", Manrope, Archivo, sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
}

.product-section .eyebrow {
  margin-bottom: 14px;
}

.product-copy-stack,
.product-steps,
.product-faq {
  display: grid;
  gap: 12px;
}

.product-copy-card,
.product-step,
.product-faq p {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  padding: 20px;
}

.product-copy-card strong,
.product-step strong,
.product-faq strong {
  color: var(--ink);
}

.product-copy-card,
.product-step,
.product-faq p {
  color: var(--muted);
  font-weight: 720;
  line-height: 1.48;
}

.product-proof-frame {
  display: grid;
  gap: 12px;
}

.product-proof-frame picture,
.product-proof-frame img {
  display: block;
}

.product-proof-frame img {
  width: 100%;
  border: 1px solid rgba(17, 20, 24, 0.16);
  border-radius: 8px;
  background: white;
  box-shadow: 0 24px 64px rgba(17, 20, 24, 0.16);
}

.product-proof-frame p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 740;
  line-height: 1.45;
}

.product-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.product-step span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-weight: 900;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 0 54px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

@media (max-width: 980px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  nav { justify-content: flex-start; }

  .hero,
  .trust-section,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .proof-strip,
  .priority-grid,
  .extension-grid,
  .product-proof-strip,
  .product-quick-facts,
  .product-section-inner {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: auto;
    padding: 18px 20px;
  }

  .product-page .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-hero {
    min-height: auto;
    padding-top: 134px;
  }

  .product-hero::before {
    background:
      linear-gradient(180deg, rgba(5, 8, 13, 0.84), rgba(5, 8, 13, 0.48) 34%, rgba(5, 8, 13, 0.9)),
      linear-gradient(90deg, rgba(5, 8, 13, 0.7), rgba(5, 8, 13, 0.2));
  }

  .product-retro .product-hero::before {
    background:
      linear-gradient(180deg, rgba(23, 15, 9, 0.82), rgba(23, 15, 9, 0.38) 34%, rgba(23, 15, 9, 0.9)),
      linear-gradient(90deg, rgba(23, 15, 9, 0.7), rgba(23, 15, 9, 0.18));
  }

  .product-hero-media img {
    object-position: 58% center;
  }

  .product-proof-strip {
    transform: translateY(-18px);
  }

  .product-proof-strip div {
    min-height: auto;
    padding: 18px;
  }

  .product-section {
    padding: 62px 0;
  }

  .product-section-inner {
    gap: 24px;
  }
}

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

  .brand { font-size: 17px; }

  nav a {
    padding: 7px 8px;
    font-size: 12px;
  }

  .hero {
    padding: 34px 12px 36px;
    gap: 18px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.02;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 23px;
  }

  .lede {
    font-size: 17px;
  }

  .hero-actions,
  .card-actions {
    flex-direction: column;
  }

  .button { width: 100%; }

  .tool-tile {
    min-height: 146px;
  }

  .section {
    padding: 54px 12px;
  }

  .priority-card,
  .extension-card {
    min-height: 270px;
    padding: 18px;
  }

  footer {
    flex-direction: column;
    padding-inline: 12px;
  }

  .product-page .topbar {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px;
  }

  .product-hero {
    padding: 128px 10px 42px;
  }

  .product-hero-inner,
  .product-section-inner,
  .product-proof-strip,
  .product-footer {
    width: calc(100% - 20px);
  }

  .product-hero h1 {
    font-size: 44px;
    line-height: 0.96;
  }

  .product-hero .lede {
    font-size: 16px;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-quick-facts span {
    min-height: 74px;
  }

  .product-main {
    margin-top: -18px;
  }

  .product-section h2 {
    font-size: 34px;
  }

  .product-copy-card,
  .product-step,
  .product-faq p {
    padding: 16px;
  }

  .product-step {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
  }

  .product-step span {
    width: 36px;
    height: 36px;
  }

  .product-footer {
    flex-direction: column;
    padding-bottom: 40px;
  }
}
