:root {
  --paper: #ffffff;
  --ink: #000000;
  --muted: #737373;
  --line: #ededed;
  --line-strong: #dedede;
  --soft: #f9f9f9;
  --pink: #ff4665;
  --pink-text: #c72546;
  --pink-soft: #fff3f7;
  --focus: #ff4665;
  --brand-gradient: linear-gradient(90deg, #fe7ac6 31%, #ff4665 84%);
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  font-size: 16px;
  line-height: 1.4;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: -64px;
  left: 18px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  top: 14px;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.topbar-inner {
  width: min(1120px, 100%);
  min-height: 57px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.vertus-wordmark {
  width: 96px;
  height: 20px;
  display: block;
}

.brand-label {
  padding-left: 12px;
  border-left: 1px solid #d6d6d6;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.company-link {
  min-height: 42px;
  padding: 9px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  color: #222;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.company-link:hover {
  border-color: #000;
}

main {
  flex: 1;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -110%;
  right: -13%;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 205, 234, 0.82) 0%, rgba(254, 122, 198, 0.25) 38%, transparent 70%);
}

.hero-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 76px 20px 68px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 14px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand-gradient);
}

h1 {
  max-width: 760px;
  margin: 14px 0 18px;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.brand-gradient {
  color: transparent;
  background: var(--brand-gradient);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero p {
  max-width: 650px;
  margin: 0;
  color: #666;
  font-size: 16px;
}

.page {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 50px 20px 76px;
}

.access-section + .access-section {
  margin-top: 58px;
}

.section-heading {
  margin-bottom: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-heading > div {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.section-index {
  color: var(--pink-text);
  font-size: 11px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

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

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

.access-card {
  position: relative;
  min-height: 224px;
  padding: 23px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.access-card::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-gradient);
}

.access-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.055);
}

.access-type {
  padding-right: 24px;
  color: var(--muted);
  font-size: 11px;
}

h3 {
  margin: 22px 0 10px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.access-card p {
  max-width: 290px;
  margin: 0;
  color: #696969;
  font-size: 13px;
}

.card-action {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #222;
  font-size: 12px;
  font-weight: 500;
}

.card-action span {
  font-size: 16px;
  line-height: 1;
  transition: transform 160ms ease;
}

.access-card:hover .card-action span {
  transform: translateX(3px);
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--soft);
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 27px 20px 32px;
  display: flex;
  justify-content: space-between;
  gap: 36px;
}

.footer p {
  max-width: 760px;
  margin: 0;
}

.footer strong {
  color: #444;
}

.generated {
  max-width: 285px;
  text-align: right;
}

@media (max-width: 900px) {
  .access-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operations-grid .access-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .topbar-inner,
  .hero-inner,
  .page,
  .footer-inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand-label {
    display: none;
  }

  .hero-inner {
    padding-top: 50px;
    padding-bottom: 48px;
  }

  h1 {
    font-size: 38px;
  }

  .page {
    padding-top: 38px;
    padding-bottom: 56px;
  }

  .access-section + .access-section {
    margin-top: 46px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 7px;
  }

  .section-heading > p {
    padding-left: 31px;
    text-align: left;
  }

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

  .access-card,
  .operations-grid .access-card:last-child {
    min-height: 210px;
    grid-column: auto;
  }

  .footer-inner {
    display: block;
  }

  .generated {
    max-width: none;
    margin-top: 14px !important;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
