:root {
  color-scheme: light;
  --navy: #071a33;
  --blue: #1368ce;
  --blue-light: #eaf4ff;
  --text: #26364d;
  --muted: #64748b;
  --line: #dbe4ee;
  --panel: #f8fafc;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: var(--panel);
  color: var(--text);
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  background: #fff;
}

.content-panel {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: clamp(32px, 6vw, 88px);
  padding-right: clamp(42px, 8vw, 120px);
  position: relative;
  z-index: 2;
}

.content {
  width: min(680px, 100%);
  margin: auto 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  width: 54px;
  height: 54px;
  color: var(--navy);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-name {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.brand-name span {
  color: var(--blue);
}

.eyebrow {
  margin: clamp(44px, 8vh, 84px) 0 12px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.intro {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.75;
}

.status-card {
  width: min(480px, 100%);
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 26, 51, 0.07);
}

.status-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue);
}

.status-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.status-card small,
.status-card strong {
  display: block;
}

.status-card small {
  margin-bottom: 3px;
  color: var(--muted);
}

.status-card strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.tips {
  margin-top: 38px;
}

.tips h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 1.1rem;
}

.tips ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tips li {
  position: relative;
  padding-left: 30px;
  line-height: 1.55;
}

.tips li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 34px;
  color: var(--muted);
}

.contact a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.contact a:hover,
.contact a:focus-visible {
  color: var(--blue);
  text-decoration: underline;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 42px;
  color: var(--muted);
  font-size: 0.88rem;
}

.visual-panel {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 17, 34, 0.08), rgba(3, 17, 34, 0.4)),
    url("/assets/digisafety-hero.webp") center / cover no-repeat;
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: -5% auto -5% -80px;
  width: 160px;
  border-radius: 50%;
  background: #fff;
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 28%, rgba(36, 147, 255, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(6, 28, 55, 0), rgba(6, 28, 55, 0.3));
}

.visual-caption {
  position: absolute;
  right: 34px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(2, 18, 36, 0.62);
  color: #fff;
  font-size: 0.9rem;
  backdrop-filter: blur(12px);
}

.caption-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4fbdff;
  box-shadow: 0 0 0 5px rgba(79, 189, 255, 0.16);
}

@media (max-width: 960px) {
  .page-shell {
    grid-template-columns: 1fr;
  }

  .content-panel {
    min-height: auto;
    padding: 34px 28px 48px;
  }

  .content {
    margin: 0;
  }

  .eyebrow {
    margin-top: 50px;
  }

  .visual-panel {
    min-height: 48vh;
    order: -1;
    background-position: center 44%;
  }

  .visual-panel::before {
    inset: auto -5% -70px -5%;
    width: 110%;
    height: 130px;
  }

  .visual-caption {
    top: 24px;
    right: 24px;
    bottom: auto;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .visual-panel {
    min-height: 38vh;
  }

  .visual-caption {
    left: 18px;
    right: auto;
    max-width: calc(100% - 36px);
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
