@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;
  position: relative;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  background: #0b1220;
  color: white;
  font-size: 0;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.brand span::before,
.hub-brand span::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 3px solid #5eead4;
  border-radius: 999px;
}

.brand span::after,
.hub-brand span::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  width: 14px;
  height: 20px;
  background: linear-gradient(135deg, #f8fafc 0 52%, #d9f99d 53% 100%);
  clip-path: polygon(56% 0, 100% 100%, 50% 72%, 0 100%);
  transform: rotate(38deg);
}

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;
  min-width: 0;
}

.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;
  overflow-wrap: anywhere;
}

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;
  overflow-wrap: anywhere;
}

.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;
  max-width: 100%;
  overflow-wrap: anywhere;
  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;
  min-width: 0;
}

.tool-tile {
  display: grid;
  min-width: 0;
  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;
  overflow-wrap: anywhere;
}

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

.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); }

.answer-section {
  padding-top: 34px;
}

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

.answer-card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 22px;
}

.answer-card h3 {
  font-size: 25px;
}

.answer-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

.answer-card strong {
  color: var(--ink);
}

.faq-section {
  padding-top: 34px;
}

.faq-list {
  display: grid;
  max-width: 860px;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.faq-list p {
  border-top: 1px solid var(--line);
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.5;
}

.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;
}

.about-hero {
  padding-bottom: 34px;
}

.about-support {
  padding-top: 34px;
}

.support-note {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

@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,
  .answer-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;
  }
}

body.hub-page {
  min-height: 100vh;
  background: #f7fafc;
  color: #101828;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hub-page a { color: inherit; }

.hub-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  padding: 12px clamp(16px, 4vw, 44px);
  backdrop-filter: blur(18px);
}

.hub-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #101828;
  font-size: 19px;
  font-weight: 900;
}

.hub-brand span {
  display: grid;
  position: relative;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  background: #0b1220;
  color: #d9f99d;
  font-size: 0;
  font-weight: 900;
}

.hub-brand span::before {
  inset: 9px;
  border-width: 3px;
}

.hub-brand span::after {
  left: 13px;
  top: 8px;
  width: 16px;
  height: 23px;
}

.hub-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.hub-nav a {
  min-height: 36px;
  border-radius: 8px;
  padding: 8px 10px;
  color: #475467;
  font-size: 14px;
  font-weight: 800;
}

.hub-nav a:hover {
  background: #eef4ff;
  color: #175cd3;
}

.hub-hero {
  position: relative;
  display: grid;
  min-height: min(680px, 82svh);
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.96), rgba(5, 8, 13, 0.86) 48%, rgba(5, 8, 13, 0.38)),
    url("assets/hub-hero.png") center / cover no-repeat;
  padding: clamp(54px, 8vw, 86px) clamp(16px, 5vw, 64px);
}

.hub-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(5, 8, 13, 0.52));
}

.hub-hero-inner {
  width: min(760px, 100%);
}

.hub-kicker {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(23, 92, 211, 0.16);
  border-radius: 8px;
  background: #eef4ff;
  color: #175cd3;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hub-hero .hub-kicker {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #d9f99d;
}

.hub-hero h1 {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: clamp(64px, 11vw, 132px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hub-lede {
  max-width: 620px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 850;
  line-height: 1.15;
}

.hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hub-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  background: #ffffff;
  color: #101828;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 900;
}

.hub-button:hover {
  background: #eef4ff;
  color: #175cd3;
}

.hub-button-primary {
  border-color: #d9f99d;
  background: #d9f99d;
  color: #101828;
}

.hub-button-primary:hover {
  border-color: #5eead4;
  background: #5eead4;
}

.hub-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid #d0d5dd;
  background: #101828;
  color: #ffffff;
}

.hub-strip div {
  min-height: 108px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px clamp(16px, 3vw, 34px);
}

.hub-strip strong {
  display: block;
  color: #d9f99d;
  font-size: 26px;
  font-weight: 900;
}

.hub-strip span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  font-weight: 700;
}

.hub-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 88px) 0;
}

.hub-section-alt {
  width: 100%;
  max-width: none;
  background: #eef4ff;
  padding-inline: max(16px, calc((100% - 1180px) / 2));
}

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

.hub-section h2 {
  max-width: 760px;
  color: #101828;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.hub-section-head p:not(.hub-kicker) {
  max-width: 650px;
  color: #475467;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
}

.hub-ip-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 30px;
  align-items: center;
}

.hub-ip-copy {
  display: grid;
  gap: 16px;
}

.hub-ip-copy p:not(.hub-kicker) {
  max-width: 620px;
  color: #475467;
  font-size: 20px;
  font-weight: 720;
  line-height: 1.45;
}

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

.hub-ip-preview {
  display: block;
  overflow: hidden;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(16, 24, 40, 0.08);
}

.hub-ip-preview:hover {
  border-color: #175cd3;
}

.hub-ip-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 1200 / 620;
  object-fit: cover;
}

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

.hub-choice,
.hub-product-card,
.hub-link-list a,
.hub-safety-list p,
.hub-faq-list details {
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(16, 24, 40, 0.08);
}

.hub-choice {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  overflow: hidden;
}

.hub-choice:hover,
.hub-link-list a:hover,
.hub-product-card a:hover {
  border-color: #175cd3;
  color: #175cd3;
}

.hub-choice-wide {
  grid-column: span 3;
  min-height: 430px;
}

.hub-choice img {
  width: 100%;
  height: 205px;
  object-fit: cover;
}

.hub-choice-wide img {
  height: 260px;
  min-height: 0;
}

.hub-choice span,
.hub-product-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 27px;
  align-items: center;
  margin: 18px 18px 0;
  border-radius: 8px;
  background: #ecfdf3;
  color: #067647;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hub-choice strong {
  display: block;
  margin: 14px 18px 0;
  color: #101828;
  font-size: 27px;
  font-weight: 950;
  line-height: 1.05;
}

.hub-choice p {
  margin: 12px 18px 0;
  color: #475467;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.42;
}

.hub-choice em {
  margin: auto 18px 18px;
  color: #175cd3;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
}

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

.hub-product-card {
  overflow: hidden;
}

.hub-product-card img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.hub-product-card div {
  padding: 0 18px 18px;
}

.hub-product-card span {
  margin-left: 0;
}

.hub-product-card h3 {
  margin-top: 12px;
  color: #101828;
  font-size: 28px;
  line-height: 1.06;
}

.hub-product-card p {
  margin-top: 10px;
  color: #475467;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.42;
}

.hub-product-card a {
  display: inline-flex;
  margin-top: 16px;
  color: #175cd3;
  font-weight: 900;
}

.hub-link-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hub-link-list a {
  display: grid;
  min-height: 150px;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.hub-link-list strong {
  color: #101828;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.08;
}

.hub-link-list span {
  color: #475467;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.42;
}

.hub-safety {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 30px;
  align-items: start;
}

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

.hub-safety-list p {
  padding: 18px;
  color: #475467;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.42;
}

.hub-safety-list strong {
  color: #101828;
}

.hub-faq {
  padding-top: 42px;
}

.hub-faq-list {
  display: grid;
  max-width: 860px;
  gap: 10px;
}

.hub-faq-list details {
  overflow: hidden;
}

.hub-faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: #101828;
  font-size: 18px;
  font-weight: 900;
}

.hub-faq-list p {
  border-top: 1px solid #eaecf0;
  padding: 0 20px 18px;
  color: #475467;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.hub-footer {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  border-top: 1px solid #d0d5dd;
  padding: 28px 0 46px;
  color: #475467;
  font-size: 14px;
  font-weight: 800;
}

.hub-footer span:last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.hub-footer a:hover {
  color: #175cd3;
}

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

  .hub-nav {
    justify-content: flex-start;
  }

  .hub-strip,
  .hub-ip-section,
  .hub-choice-grid,
  .hub-product-grid,
  .hub-link-list,
  .hub-safety {
    grid-template-columns: 1fr;
  }

  .hub-choice-wide {
    grid-column: auto;
    min-height: 430px;
  }

  .hub-choice-wide img {
    min-height: 0;
    height: 205px;
  }
}

@media (max-width: 640px) {
  .hub-topbar {
    min-height: auto;
    padding: 10px 12px;
  }

  .hub-nav a {
    min-height: 32px;
    padding: 6px 7px;
    font-size: 12px;
  }

  .hub-hero {
    min-height: min(620px, 78svh);
    padding: 46px 14px;
    background-position: 62% center;
  }

  .hub-hero h1 {
    font-size: clamp(58px, 18vw, 84px);
  }

  .hub-lede {
    max-width: 330px;
  }

  .hub-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hub-button {
    width: 100%;
  }

  .hub-ip-section {
    gap: 22px;
  }

  .hub-ip-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hub-section {
    width: min(100% - 24px, 1180px);
    padding: 48px 0;
  }

  .hub-section-alt {
    width: 100%;
    padding-inline: 12px;
  }

  .hub-strip div {
    min-height: auto;
    padding: 18px 14px;
  }

  .hub-choice {
    min-height: 390px;
  }

  .hub-choice img,
  .hub-choice-wide img,
  .hub-product-card img {
    height: 176px;
  }

  .hub-choice strong {
    font-size: 24px;
  }

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

  .hub-footer span:last-child {
    justify-content: flex-start;
  }
}
