:root {
  color-scheme: light;
  --ink: #071427;
  --muted: #5c6676;
  --paper: #ffffff;
  --soft: #f3f6fa;
  --line: #dce3ed;
  --blue: #0b5cad;
  --violet: #6f3fd6;
  --cyan: #00a8c8;
  --green: #16a36b;
  --shadow: 0 18px 55px rgba(7, 20, 39, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

main {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 227, 237, 0.7);
  backdrop-filter: blur(18px);
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 148px;
  height: 38px;
}

.brand img {
  width: 148px;
  max-height: 38px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #243247;
  font-size: 0.95rem;
  font-weight: 650;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
}

.menu-button {
  display: none;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 8px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  min-height: calc(100vh - 73px);
  gap: 56px;
  padding: 76px clamp(18px, 4vw, 64px) 56px;
  overflow: hidden;
}

.hero-copy {
  width: 100%;
  min-width: 0;
  max-width: 690px;
}

.hero-mark {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(7, 20, 39, 0.18);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
  overflow-wrap: break-word;
}

h1 {
  max-width: 640px;
  font-size: 4.9rem;
}

h2 {
  font-size: 3.4rem;
}

.hero-text,
.section-heading p,
.editorial-band p,
.launch p {
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

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

.button.primary {
  color: #ffffff;
  background: var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.button:hover,
.category-card:hover {
  transform: translateY(-2px);
}

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-media::before {
  position: absolute;
  inset: 8% -5% -8% 12%;
  z-index: -1;
  content: "";
  background: linear-gradient(135deg, rgba(0, 168, 200, 0.18), rgba(22, 163, 107, 0.12));
  border-radius: 28px;
}

.hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: #061126;
  border: 1px solid rgba(220, 227, 237, 0.85);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.section {
  padding: 88px clamp(18px, 4vw, 64px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.65fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p {
  margin: 0;
}

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

.category-card {
  display: grid;
  min-height: 188px;
  align-content: start;
  gap: 12px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.category-card:hover {
  border-color: rgba(11, 92, 173, 0.35);
  box-shadow: 0 12px 35px rgba(7, 20, 39, 0.08);
}

.category-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  background: #0b5cad;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

.category-card:nth-child(2n) .category-icon {
  background: var(--green);
}

.category-card:nth-child(3n) .category-icon {
  background: var(--violet);
}

.category-card strong {
  font-size: 1.15rem;
}

.category-card small {
  color: var(--muted);
  font-size: 0.98rem;
}

.editorial-band {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(300px, 0.85fr);
  gap: 64px;
  align-items: center;
  padding: 84px clamp(18px, 4vw, 64px);
  color: #ffffff;
  background: #071427;
}

.editorial-band .eyebrow,
.newsletter .eyebrow {
  color: #54d9b0;
}

.editorial-band p {
  margin: 0;
  color: #c8d4e4;
}

.launch {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.55fr);
  gap: 34px;
  align-items: center;
  background: var(--soft);
}

.launch-copy {
  max-width: 760px;
}

.launch-copy p:last-child {
  margin-bottom: 0;
}

.launch-panel {
  display: grid;
  gap: 10px;
}

.launch-panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.launch-panel span {
  color: var(--cyan);
  font-weight: 900;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(300px, 0.55fr);
  gap: 24px;
  align-items: center;
  margin: 56px clamp(18px, 4vw, 64px);
  padding: 48px;
  color: #ffffff;
  background: linear-gradient(135deg, #0b5cad, #071427 72%);
  border-radius: 8px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.newsletter-form input {
  min-width: 0;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.newsletter .button.primary {
  background: #ffffff;
  color: var(--ink);
}

.newsletter .button:disabled {
  cursor: wait;
  opacity: 0.74;
}

.newsletter-hp {
  position: absolute !important;
  left: -10000px;
  width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.newsletter-consent,
.newsletter-message {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.newsletter-message {
  min-height: 1.25em;
  font-weight: 750;
}

.newsletter-message.is-success {
  color: #b9f4da;
}

.newsletter-message.is-error {
  color: #ffd0d0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-page {
  padding: clamp(46px, 7vw, 86px) clamp(18px, 4vw, 64px);
  background: var(--soft);
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 44px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-content h1 {
  max-width: 100%;
  font-size: 2.45rem;
  line-height: 1.12;
}

.legal-content h2 {
  margin-top: 28px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.legal-content p {
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-updated {
  margin-top: 34px;
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(7, 20, 39, 0.14);
  }

  .site-nav.legal-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

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

  .site-nav a {
    padding: 12px;
  }

  .hero,
  .section-heading,
  .editorial-band,
  .launch,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 36px;
    padding-top: 54px;
  }

  h1 {
    max-width: 760px;
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.9rem;
  }

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

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
    width: 126px;
    height: 34px;
  }

  .brand img {
    width: 126px;
    max-height: 34px;
  }

  .menu-button {
    margin-left: auto;
  }

  .hero {
    padding-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
    gap: 26px;
  }

  .hero,
  .hero-copy {
    max-width: 100vw;
  }

  .hero-copy {
    max-width: calc(100vw - 40px);
  }

  h1 {
    max-width: 100%;
    font-size: 2.02rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .legal-nav a:not(:first-child) {
    display: none;
  }

  .legal-content h1 {
    font-size: 1.85rem;
  }

  .legal-content {
    padding: 26px 22px;
  }

  .hero-text,
  .section-heading p,
  .editorial-band p,
  .launch p {
    font-size: 1.05rem;
  }

  .category-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .newsletter-form {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .hero-media {
    width: calc(100% + 40px);
    max-width: none;
    margin: 0 -20px;
  }

  .hero-media img {
    width: 100%;
  }

  .hero-media::before {
    display: none;
  }

  .hero-media img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

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