:root {
  --navy: #1b2b49;
  --navy-2: #11213d;
  --navy-3: #0d1930;
  --blue-overlay: rgba(28, 55, 101, 0.76);
  --orange: #f0a000;
  --orange-dark: #db9200;
  --white: #ffffff;
  --soft: #f3f6fb;
  --text: #1c2740;
  --muted: #69758b;
  --border: rgba(27, 43, 73, 0.12);
  --shadow: 0 22px 45px rgba(8, 17, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--soft);
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(6, 15, 32, 0.18);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 89px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 250px;
  text-decoration: none;
}

.brand-logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 5px;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-copy small {
  font-size: 0.78rem;
  font-weight: 500;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 0.72rem;
  font-weight: 600;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 8px 14px;
  color: var(--white);
  text-decoration: none;
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  transition: background 160ms ease, color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.login-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.login-icon {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border: 2px solid var(--white);
  border-radius: 999px;
  color: transparent;
  position: relative;
}

.login-icon::after {
  content: "";
  position: absolute;
  bottom: -3px;
  width: 12px;
  height: 6px;
  border-radius: 999px 999px 0 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 455px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(12, 23, 46, 0.86), rgba(26, 57, 104, 0.62)),
    radial-gradient(circle at 18% 32%, rgba(255, 255, 255, 0.16), transparent 22rem),
    linear-gradient(135deg, #526b96 0%, #192846 46%, #476da7 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(7, 17, 34, 0.35), rgba(7, 17, 34, 0.35)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='560' viewBox='0 0 1200 560'%3E%3Cdefs%3E%3Cfilter id='b'%3E%3CfeGaussianBlur stdDeviation='3'/%3E%3C/filter%3E%3C/defs%3E%3Crect width='1200' height='560' fill='%233c5788'/%3E%3Cpath d='M0 0h410l-120 560H0z' fill='%2318213a' opacity='.72'/%3E%3Cpath d='M215 0h245L338 560H105z' fill='%23ffffff' opacity='.10'/%3E%3Crect x='630' y='96' width='430' height='260' rx='18' fill='%2310203d' opacity='.82'/%3E%3Crect x='657' y='122' width='376' height='207' rx='9' fill='%237e9bcc' opacity='.75' filter='url(%23b)'/%3E%3Ccircle cx='812' cy='184' r='44' fill='%23304b7b' opacity='.58'/%3E%3Crect x='738' y='250' width='158' height='28' rx='14' fill='%23ffffff' opacity='.24'/%3E%3Crect x='150' y='360' width='270' height='118' rx='18' fill='%23ffffff' opacity='.11'/%3E%3Crect x='970' y='365' width='170' height='80' rx='18' fill='%23ffffff' opacity='.12'/%3E%3C/svg%3E") center / cover no-repeat;
  transform: scale(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(28, 55, 101, 0.34);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.screen-shape {
  position: absolute;
  display: block;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(1px);
}

.screen-shape--one {
  right: 11%;
  top: 19%;
  width: 260px;
  height: 155px;
  transform: rotate(4deg);
}

.screen-shape--two {
  left: 7%;
  bottom: 11%;
  width: 310px;
  height: 140px;
  transform: rotate(-6deg);
}

.screen-shape--three {
  right: 2%;
  bottom: 13%;
  width: 210px;
  height: 95px;
  transform: rotate(11deg);
}

.hero-panel {
  width: min(560px, calc(100% - 32px));
  min-height: 235px;
  padding: 42px 36px 44px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 30px 55px rgba(5, 14, 31, 0.28);
}

.pretitle {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-panel h1 {
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 3.35rem);
  line-height: 1.07;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-panel p:not(.pretitle) {
  margin: 14px 0 0;
  font-size: 0.92rem;
  font-weight: 400;
}

.hero-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 34px;
  min-width: 114px;
  min-height: 32px;
  padding: 10px 28px;
  color: var(--white);
  background: var(--orange);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  transition: background 160ms ease, transform 160ms ease;
}

.hero-button:hover,
.hero-button:focus-visible,
.primary-button:hover,
.primary-button:focus-visible {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.intro {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.intro p {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.96rem;
  line-height: 1.7;
}

.products-section,
.access-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.products-section {
  padding: 56px 0 36px;
}

.section-heading {
  text-align: center;
  margin-bottom: 28px;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2,
.access-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.18;
  font-weight: 800;
}

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

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 455px;
  padding: 34px;
  overflow: hidden;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--navy);
}

.product-card--featured::before {
  background: var(--orange);
}

.product-tag {
  width: fit-content;
  padding: 8px 12px;
  color: var(--navy);
  background: #edf2fb;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 26px 0 12px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.product-card ul {
  margin: 24px 0 30px;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 25px;
  font-size: 0.94rem;
  font-weight: 600;
}

.product-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(240, 160, 0, 0.12);
}

.primary-button,
.secondary-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 46px;
  padding: 12px 22px;
  text-align: center;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.primary-button {
  margin-top: auto;
  color: var(--white);
  background: var(--orange);
}

.secondary-button {
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(27, 43, 73, 0.22);
}

.secondary-button:hover,
.secondary-button:focus-visible {
  color: var(--white);
  background: var(--navy);
  transform: translateY(-2px);
}

.card-actions {
  margin-top: auto;
  display: grid;
  gap: 12px;
}

.access-section {
  margin-bottom: 52px;
  padding: 28px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 24px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border);
}

.access-list {
  display: grid;
  gap: 10px;
}

.access-list a {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  color: var(--text);
  background: #f7f9fd;
  border-left: 4px solid var(--orange);
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.access-list a:hover,
.access-list a:focus-visible {
  background: #eef3fb;
  transform: translateX(2px);
}

.access-list span {
  color: var(--navy);
  font-weight: 800;
}

.access-list strong {
  color: var(--muted);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 24px 16px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-3);
  text-align: center;
  font-size: 0.82rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1060px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 0 14px;
  }

  .brand {
    min-width: auto;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 6px;
  }
}

@media (max-width: 800px) {
  .brand-logo {
    width: 62px;
    height: 62px;
  }

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .brand-copy small {
    font-size: 0.72rem;
  }

  .main-nav {
    display: none;
  }

  .header-inner {
    min-height: 76px;
    padding: 7px 0;
  }

  .hero {
    min-height: 420px;
  }

  .hero-panel {
    min-height: 225px;
    padding: 36px 24px;
  }

  .hero-panel h1 {
    font-size: clamp(2.1rem, 10vw, 2.75rem);
  }

  .product-grid,
  .access-section {
    grid-template-columns: 1fr;
  }

  .products-section {
    padding-top: 42px;
  }

  .product-card {
    min-height: auto;
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .login-link span:last-child {
    display: none;
  }

  .hero-panel {
    width: calc(100% - 24px);
  }

  .intro p,
  .products-section,
  .access-section {
    width: calc(100% - 24px);
  }
}
