:root {
  --navy: #071b63;
  --blue: #0b4fd7;
  --deep: #08245f;
  --green: #078a4e;
  --teal: #12afc2;
  --red: #d71920;
  --gold: #f2a900;
  --orange: #f97316;
  --ink: #061936;
  --muted: #617089;
  --soft: #f6faff;
  --line: #dce8f7;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(8, 36, 95, .15);
  --shadow-soft: 0 18px 45px rgba(8, 36, 95, .10);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, .95) 0 7%, transparent 8%),
    linear-gradient(90deg, rgba(11, 79, 215, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(11, 79, 215, .05) 1px, transparent 1px),
    #f8fbff;
  background-size: 46px 46px;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  overflow: hidden;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background:
    linear-gradient(115deg, rgba(7, 27, 99, .98) 0 48%, rgba(255, 255, 255, .98) 48.2% 100%);
  color: #fff;
  transition: opacity .75s ease, visibility .75s ease, transform .75s ease;
}

.preloader::before,
.preloader::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .22);
  transform: rotate(-14deg);
}

.preloader::before {
  left: -80px;
  top: 110px;
  width: 420px;
  height: 120px;
  border-left: 14px solid var(--green);
  border-bottom: 5px solid var(--red);
}

.preloader::after {
  right: -90px;
  bottom: 130px;
  width: 360px;
  height: 110px;
  border-right: 14px solid var(--teal);
  border-top: 5px solid var(--gold);
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.015);
  pointer-events: none;
}

.preloader-panel {
  position: relative;
  width: min(520px, calc(100vw - 40px));
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 32px;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .22);
  backdrop-filter: blur(20px);
}

.preloader-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.preloader-mark {
  width: 58px;
  height: 58px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.preloader-word {
  font-family: Sora, Inter, sans-serif;
  font-size: 30px;
  font-weight: 800;
}

.preloader-word em {
  color: #9af4c1;
  font-style: normal;
}

.preloader-line {
  position: relative;
  height: 8px;
  margin: 28px 0 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
}

.preloader-line span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green), var(--teal));
  animation: loadSweep 1.25s ease-in-out infinite;
}

.preloader p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11px;
}

.site-header {
  position: fixed;
  left: 24px;
  right: 24px;
  top: 18px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(220, 232, 247, .9);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 60px rgba(8, 36, 95, .12);
  backdrop-filter: blur(18px);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

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

.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.95), rgba(238,248,255,.85));
  box-shadow: inset 0 0 0 1px rgba(11, 79, 215, .13), 0 12px 28px rgba(8,36,95,.12);
}

.brand-mark::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  border: 4px solid var(--blue);
  border-top-color: var(--green);
  border-left-color: var(--teal);
  border-radius: 8px 8px 17px 17px;
  transform: rotate(45deg) translateY(2px);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 19px;
  width: 9px;
  height: 15px;
  border-right: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(40deg);
}

.brand-mark span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.brand-mark span:nth-child(1) {
  top: 1px;
  left: 15px;
}

.brand-mark span:nth-child(2) {
  top: 10px;
  left: 4px;
  background: var(--teal);
}

.brand-mark span:nth-child(3) {
  top: 10px;
  right: 4px;
  background: var(--green);
}

.brand-text {
  font-family: Sora, Inter, sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.03em;
}

.brand-text strong {
  color: var(--navy);
}

.brand-text em {
  color: var(--green);
  font-style: normal;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a,
.ghost-link {
  padding: 10px 12px;
  border-radius: 999px;
  color: #183767;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: .25s ease;
}

.main-nav a:hover,
.ghost-link:hover {
  background: #edf6ff;
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-link,
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.primary-link,
.cta-primary {
  background: linear-gradient(135deg, var(--green), #0a9f8b);
  color: #fff;
  box-shadow: 0 18px 40px rgba(7, 138, 78, .24);
}

.primary-link:hover,
.cta:hover {
  transform: translateY(-2px);
}

.cta-secondary {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 610px);
  align-items: center;
  gap: 42px;
  padding: 150px clamp(24px, 5vw, 74px) 90px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.96) 0 55%, rgba(238, 249, 255, .92) 55% 100%);
  z-index: -3;
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(18px, 5vw, 74px);
  bottom: 34px;
  width: min(58vw, 760px);
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green), transparent);
  opacity: .75;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -2;
}

.hero-photo-wash {
  position: absolute;
  right: clamp(-120px, -7vw, -40px);
  top: 120px;
  width: min(54vw, 760px);
  height: 560px;
  border-radius: 42px;
  background:
    linear-gradient(90deg, rgba(248,251,255,.98) 0 12%, rgba(248,251,255,.24) 46%, rgba(8,36,95,.42) 100%),
    url("assets/photo-congres-medical-premium.png") center / cover no-repeat;
  box-shadow: 0 34px 100px rgba(6, 26, 68, .16);
  opacity: .95;
  transform: skewX(-7deg);
}

.hero-photo-wash::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(8,36,95,.18), transparent 42%),
    radial-gradient(circle at 78% 22%, rgba(18, 175, 194, .20), transparent 28%);
}

.hero-slab {
  position: absolute;
  transform: skewX(-15deg);
  opacity: .95;
}

.slab-blue {
  right: -190px;
  top: 120px;
  width: 420px;
  height: 620px;
  background: linear-gradient(180deg, var(--navy), var(--blue));
  animation: slabFloat 8s ease-in-out infinite;
}

.slab-green {
  right: 90px;
  bottom: -120px;
  width: 96px;
  height: 390px;
  background: var(--green);
  animation: slabFloat 7s ease-in-out infinite reverse;
}

.slab-red {
  left: 0;
  top: 0;
  width: 7px;
  height: 100%;
  background: var(--red);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(18, 175, 194, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(215, 25, 32, .48);
  animation: pulse 1.8s infinite;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(44px, 7vw, 92px);
  line-height: .92;
  font-weight: 900;
  letter-spacing: 0;
  font-family: Sora, Inter, sans-serif;
}

.hero h1 span {
  display: inline;
  background: linear-gradient(100deg, var(--navy), var(--blue) 45%, var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1::after {
  content: "";
  display: block;
  width: 92px;
  height: 5px;
  margin-top: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
}

.hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: #34466a;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.7;
  font-weight: 650;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(8, 36, 95, .08);
}

.hero-visual {
  position: relative;
}

.device-stack {
  position: relative;
  min-height: 520px;
}

.desktop-frame {
  position: relative;
  width: min(100%, 610px);
  min-height: 440px;
  padding: 16px;
  border: 1px solid rgba(220, 232, 247, .86);
  border-radius: 30px;
  background: linear-gradient(145deg, #fff, #f4f9ff);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-7deg) rotateX(3deg);
  transform-origin: center;
  animation: deviceFloat 6.5s ease-in-out infinite;
}

.desktop-frame::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -80px;
  width: 230px;
  height: 230px;
  border: 40px solid rgba(18, 175, 194, .18);
  border-radius: 50%;
}

.desktop-frame::after {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  transform: skewX(-18deg);
  animation: glassSweep 5.6s ease-in-out infinite;
}

.premium-ribbon {
  position: absolute;
  right: 24px;
  top: -18px;
  z-index: 4;
  display: grid;
  gap: 2px;
  min-width: 170px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #eef9ff);
  box-shadow: 0 24px 60px rgba(8,36,95,.18);
}

.premium-ribbon span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.premium-ribbon strong {
  color: var(--green);
  font-size: 18px;
  font-family: Sora, Inter, sans-serif;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 12px;
  border-radius: 16px;
  background: var(--navy);
  color: #fff;
}

.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}

.window-bar span:nth-child(2) {
  background: var(--gold);
}

.window-bar span:nth-child(3) {
  background: var(--green);
}

.window-bar strong {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dashboard-grid {
  position: relative;
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 16px;
  margin-top: 16px;
}

.dashboard-grid aside {
  display: grid;
  gap: 9px;
  align-content: start;
  padding: 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, var(--navy), #0b3b82);
}

.dashboard-grid aside span {
  padding: 11px 12px;
  border-radius: 12px;
  color: rgba(255,255,255,.78);
  font-size: 11px;
  font-weight: 800;
}

.dashboard-grid aside .nav-active {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.dash-main {
  display: grid;
  gap: 14px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.metric-strip div,
.score-row div {
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(8, 36, 95, .07);
}

.metric-strip strong,
.proof-stats strong,
.score-row strong {
  display: block;
  color: var(--blue);
  font-size: 23px;
  font-weight: 900;
}

.metric-strip small,
.score-row span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.chart-row {
  display: grid;
  grid-template-columns: 1.5fr .8fr;
  gap: 14px;
}

.line-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 160px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(0deg, rgba(11, 79, 215, .06) 1px, transparent 1px),
    #fff;
  background-size: 100% 32px;
}

.line-chart span {
  flex: 1;
  min-height: 22px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--blue), var(--teal));
  animation: growBar 1.4s ease both;
}

.donut {
  min-height: 160px;
  border: 18px solid transparent;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 0 46%, transparent 47%),
    conic-gradient(var(--blue) 0 38%, var(--green) 38% 62%, var(--red) 62% 78%, var(--gold) 78% 100%);
  box-shadow: inset 0 0 0 1px var(--line), 0 18px 40px rgba(8,36,95,.1);
}

.review-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.review-table span {
  height: 34px;
  border-radius: 10px;
  background: #eef6ff;
}

.review-table span:nth-child(3n) {
  background: #e9f9f1;
}

.review-table span:nth-child(4n) {
  background: #fff3f3;
}

.app-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #f7fbff);
  box-shadow: 0 12px 30px rgba(8,36,95,.07);
}

.app-toolbar strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  font-family: Sora, Inter, sans-serif;
}

.app-toolbar span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.app-toolbar em {
  position: relative;
  padding: 7px 10px 7px 22px;
  border-radius: 999px;
  background: #e9fbf2;
  color: var(--green);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.app-toolbar em::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
}

.app-metrics div {
  position: relative;
  padding-left: 42px;
}

.mini-icon {
  position: absolute;
  left: 12px;
  top: 14px;
  width: 20px;
  height: 20px;
  border-radius: 8px;
  background: #eef6ff;
}

.mini-icon::before,
.mini-icon::after {
  content: "";
  position: absolute;
}

.mini-icon.users::before {
  left: 5px;
  top: 4px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--green);
  border-radius: 50%;
}

.mini-icon.docs::before {
  inset: 4px 5px;
  border: 2px solid var(--blue);
  border-radius: 3px;
}

.mini-icon.ok::before {
  left: 5px;
  top: 4px;
  width: 9px;
  height: 13px;
  border-right: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(38deg);
}

.mini-icon.pay::before {
  left: 4px;
  top: 6px;
  width: 12px;
  height: 8px;
  border: 2px solid var(--red);
  border-radius: 3px;
}

.product-board {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 12px;
}

.abstract-queue,
.compliance-card,
.ops-strip div {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(8,36,95,.07);
}

.abstract-queue,
.compliance-card {
  padding: 14px;
}

.board-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.board-head strong {
  color: var(--navy);
  font-size: 12px;
  font-family: Sora, Inter, sans-serif;
}

.board-head span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.queue-row {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  border-top: 1px solid #eef4fb;
}

.queue-row b {
  min-width: 0;
  color: #19345f;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.queue-row em {
  padding: 4px 7px;
  border-radius: 999px;
  background: #f3f7fb;
  color: var(--muted);
  font-size: 8.5px;
  font-style: normal;
  font-weight: 900;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.dot.green { background: var(--green); }
.dot.red { background: var(--red); }
.dot.gold { background: var(--gold); }

.radial-score {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 2px auto 12px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 0 55%, transparent 56%),
    conic-gradient(var(--green) 0 78%, #e7eef6 78% 100%);
  box-shadow: inset 0 0 0 1px var(--line);
}

.radial-score strong {
  color: var(--green);
  font-size: 20px;
  line-height: 1;
  font-family: Sora, Inter, sans-serif;
}

.radial-score span {
  margin-top: -20px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.score-bars {
  display: grid;
  gap: 7px;
}

.score-bars span {
  position: relative;
  display: block;
  height: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: #f0f5fa;
}

.score-bars i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--green));
}

.score-bars b {
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--navy);
  font-size: 8.5px;
}

.ops-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ops-strip div {
  position: relative;
  padding: 12px 10px 12px 38px;
}

.ops-strip span {
  position: absolute;
  left: 12px;
  top: 16px;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.ops-strip strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  font-family: Sora, Inter, sans-serif;
}

.ops-strip small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
}

.phone-frame {
  position: absolute;
  right: 10px;
  bottom: -10px;
  width: 148px;
  height: 272px;
  padding: 34px 14px 18px;
  border: 8px solid #091b38;
  border-radius: 32px;
  background: linear-gradient(180deg, var(--navy), #0d6b8b);
  color: #fff;
  box-shadow: 0 28px 60px rgba(6, 25, 54, .28);
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 54px;
  height: 8px;
  border-radius: 999px;
  background: #091b38;
  transform: translateX(-50%);
}

.phone-frame strong {
  display: block;
  margin-top: 18px;
  font-size: 18px;
}

.phone-frame small {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.78);
  line-height: 1.45;
}

.phone-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 22px;
}

.phone-icons span {
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,.16);
}

.proof-band,
.section,
.demo-section,
.site-footer {
  margin: 0 clamp(18px, 4vw, 58px);
}

.proof-band {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
  align-items: center;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}

.proof-band .section-kicker {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}

.proof-band h2 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.08;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.proof-stats div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}

.proof-stats strong {
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
}

.proof-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
}

.visual-proof {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
  padding-top: 34px;
}

.visual-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--navy);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.visual-large {
  min-height: 480px;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 24%, rgba(6, 26, 68, .72) 100%),
    linear-gradient(90deg, rgba(6, 26, 68, .30), transparent 58%);
}

.visual-card::after {
  content: "";
  position: absolute;
  right: -55px;
  top: -55px;
  z-index: 2;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 20px solid rgba(255,255,255,.16);
}

.visual-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .7s ease;
}

.visual-card:hover img {
  transform: scale(1.065);
}

.visual-caption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 3;
  color: #fff;
}

.visual-caption span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.86);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.visual-caption strong {
  display: block;
  max-width: 680px;
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.material-showcase {
  position: relative;
}

.material-showcase::before {
  content: "";
  position: absolute;
  left: -58px;
  top: 120px;
  width: 190px;
  height: 190px;
  border: 28px solid rgba(18,169,186,.08);
  border-radius: 50%;
  pointer-events: none;
}

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

.material-card {
  position: relative;
  min-height: 285px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(220, 231, 241, .95);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(246,250,255,.92));
  box-shadow: var(--shadow-soft);
}

.material-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(15,69,149,.06);
}

.material-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 11px;
  align-items: center;
}

.material-top strong {
  color: var(--navy);
  font-family: Sora, Inter, sans-serif;
  font-size: 18px;
}

.material-top em {
  grid-column: 2;
  width: fit-content;
  margin-top: -4px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #eef8f3;
  color: var(--green);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.material-icon {
  position: relative;
  grid-row: span 2;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--navy);
  box-shadow: 0 14px 28px rgba(8,36,95,.17);
}

.material-icon::before,
.material-icon::after {
  content: "";
  position: absolute;
}

.m-abstract::before {
  inset: 11px 13px;
  border: 2px solid #fff;
  border-radius: 4px;
}

.m-payment {
  background: var(--green);
}

.m-payment::before {
  left: 10px;
  top: 12px;
  width: 22px;
  height: 15px;
  border: 2px solid #fff;
  border-radius: 5px;
}

.m-cert {
  background: var(--red);
}

.m-cert::before {
  left: 12px;
  top: 8px;
  width: 17px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 4px;
}

.m-program {
  background: var(--teal);
}

.m-program::before {
  inset: 11px;
  border: 2px solid #fff;
  border-radius: 5px;
}

.material-lines {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.material-lines span {
  height: 13px;
  border-radius: 999px;
  background: #eaf2fb;
}

.material-lines span:nth-child(1) { width: 92%; }
.material-lines span:nth-child(2) { width: 68%; background: #eaf8f1; }
.material-lines span:nth-child(3) { width: 82%; background: #fff1f2; }

.material-chart {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  gap: 12px;
  height: 92px;
  margin: 28px 0;
  padding: 14px;
  border-radius: 18px;
  background: #f4f8fc;
}

.material-chart span {
  flex: 1;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--blue), var(--teal));
}

.certificate-mini {
  position: relative;
  z-index: 2;
  height: 106px;
  margin: 26px 0;
  padding: 18px;
  border: 1px solid #eadfc9;
  border-radius: 16px;
  background: #fffdf8;
}

.certificate-mini span {
  display: block;
  color: var(--navy);
  font-family: Sora, Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.certificate-mini i {
  display: block;
  width: 76%;
  height: 8px;
  margin-top: 11px;
  border-radius: 999px;
  background: #edf2f7;
}

.certificate-mini i:nth-child(3) { width: 55%; }
.certificate-mini i:nth-child(4) { width: 36%; background: var(--gold); }

.program-mini {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px;
  margin: 26px 0;
  padding: 14px;
  border-radius: 18px;
  background: #f4f8fc;
}

.program-mini span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}

.program-mini b {
  color: var(--navy);
  font-size: 12px;
}

.material-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #edf3fa;
}

.material-footer b {
  color: var(--navy);
  font-family: Sora, Inter, sans-serif;
  font-size: 16px;
}

.material-footer small {
  color: var(--muted);
  text-align: right;
  font-size: 10px;
  font-weight: 900;
}

.section {
  padding: 104px 0 0;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 44px;
  text-align: center;
}

.section h2,
.demo-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 4.8vw, 62px);
  line-height: 1.02;
  font-weight: 900;
}

.section p,
.demo-card p {
  color: #425478;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 620;
}

.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 42px;
}

.section-copy p {
  max-width: 650px;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 58px 1fr;
  align-items: center;
  gap: 12px;
}

.compare-card {
  min-height: 340px;
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.compare-card h3 {
  margin: 0 0 18px;
  color: var(--navy);
}

.compare-card ul,
.shield-board ul,
.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-card li,
.shield-board li,
.price-card li {
  position: relative;
  padding-left: 25px;
  color: #31456c;
  line-height: 1.45;
  font-weight: 700;
}

.compare-card li::before,
.shield-board li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.danger li::before {
  background: var(--red);
}

.danger {
  border: 1px solid rgba(215,25,32,.18);
}

.success {
  border: 1px solid rgba(7,138,78,.22);
}

.vs {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(8,36,95,.28);
}

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

.feature-card {
  position: relative;
  min-height: 292px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 42px rgba(8,36,95,.08);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--red));
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 79, 215, .24);
  box-shadow: var(--shadow);
}

.feature-number {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.feature-card h3 {
  margin: 22px 0 12px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.12;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.feature-icon {
  position: absolute;
  right: 22px;
  top: 26px;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: #eef6ff;
  border: 1px solid #d9e7f4;
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 3px solid var(--blue);
  border-radius: 8px;
}

.feature-icon.people::after {
  inset: 10px 16px 18px;
  border-radius: 50%;
  border-color: var(--green);
}

.feature-icon.payment::before {
  border-color: #8b1ed6;
}

.feature-icon.calendar::before {
  border-color: var(--orange);
}

.feature-icon.certificate::before {
  border-color: var(--gold);
}

.feature-icon.sponsor::before {
  transform: rotate(45deg);
  border-color: var(--teal);
}

.feature-icon.message::before {
  border-color: var(--blue);
  border-radius: 4px;
}

.feature-icon.stats::before {
  border: 0;
  inset: auto 12px 12px;
  height: 24px;
  background: linear-gradient(90deg, var(--green) 0 20%, transparent 20% 28%, var(--teal) 28% 48%, transparent 48% 56%, var(--blue) 56% 78%, transparent 78%);
}

.science-section {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: stretch;
}

.science-panel,
.shield-board,
.doc-copy,
.doc-showcase,
.demo-card {
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.science-panel {
  padding: clamp(32px, 5vw, 58px);
  background:
    linear-gradient(140deg, rgba(255,255,255,.94), rgba(239,248,255,.9)),
    #fff;
  border: 1px solid var(--line);
}

.score-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.score-row div:last-child strong {
  color: var(--green);
  font-size: 18px;
}

.shield-board {
  position: relative;
  display: grid;
  align-content: center;
  gap: 28px;
  padding: 42px;
  background: linear-gradient(145deg, var(--navy), #0a6175);
  color: #fff;
  overflow: hidden;
}

.shield-board::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border: 34px solid rgba(255,255,255,.12);
  border-radius: 50%;
}

.shield {
  position: relative;
  width: 150px;
  height: 170px;
  margin: 0 auto;
  border: 4px solid rgba(255,255,255,.82);
  border-radius: 48px 48px 70px 70px;
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
}

.shield span {
  position: absolute;
  left: 45px;
  top: 56px;
  width: 55px;
  height: 28px;
  border-left: 8px solid var(--green);
  border-bottom: 8px solid var(--green);
  transform: rotate(-45deg);
}

.shield-board li {
  color: rgba(255,255,255,.86);
}

.shield-board li::before {
  background: var(--gold);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 38px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--red));
}

.timeline-step {
  position: relative;
  padding: 72px 20px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.timeline-step span {
  position: absolute;
  top: 18px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
}

.timeline-step h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

.timeline-step p {
  margin: 0;
  font-size: 13px;
}

.documents-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
  align-items: center;
}

.doc-copy {
  padding: 42px;
  background: var(--navy);
  color: #fff;
}

.doc-copy h2,
.doc-copy p {
  color: #fff;
}

.doc-copy p {
  color: rgba(255,255,255,.78);
}

.doc-showcase {
  position: relative;
  min-height: 560px;
  padding: 24px;
  background: linear-gradient(145deg, #fff, #eef9ff);
  border: 1px solid var(--line);
  overflow: hidden;
}

.doc-showcase img {
  width: min(100%, 390px);
  max-height: 520px;
  margin: auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.floating-doc {
  position: absolute;
  right: 32px;
  bottom: 38px;
  width: 230px;
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.floating-doc strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
}

.floating-doc span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

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

.audience-card,
.price-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.audience-card strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
}

.audience-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 650;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  min-height: 360px;
}

.price-card.featured {
  background: linear-gradient(145deg, var(--navy), #0d6b8b);
  color: #fff;
  transform: translateY(-18px);
}

.price-card span {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

.price-card h3 {
  margin: 16px 0 8px;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.1;
}

.price-card p {
  font-size: 15px;
}

.price-card.featured span,
.price-card.featured h3,
.price-card.featured p,
.price-card.featured li {
  color: #fff;
}

.price-card ul {
  margin-top: 26px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  position: relative;
  width: 100%;
  padding: 24px 62px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  text-align: left;
}

.faq-item span {
  display: block;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.faq-item strong {
  position: absolute;
  right: 24px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
}

.faq-item p {
  display: none;
  margin: 14px 0 0;
  max-width: 760px;
  font-size: 14px;
}

.faq-item.open p {
  display: block;
}

.faq-item.open strong {
  background: var(--red);
}

.demo-section {
  padding: 110px 0;
}

.demo-card {
  position: relative;
  padding: clamp(34px, 6vw, 72px);
  background:
    linear-gradient(120deg, rgba(7, 27, 99, .96), rgba(8, 138, 78, .92)),
    var(--navy);
  color: #fff;
  overflow: hidden;
}

.demo-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -110px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 44px solid rgba(255,255,255,.12);
}

.demo-card h2,
.demo-card p {
  color: #fff;
  max-width: 850px;
}

.demo-card p {
  color: rgba(255,255,255,.82);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.contact-grid a {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 48px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  color: var(--muted);
  font-weight: 700;
}

.site-footer a:last-child {
  color: var(--green);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .12s;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(215,25,32,.5); }
  70% { box-shadow: 0 0 0 13px rgba(215,25,32,0); }
  100% { box-shadow: 0 0 0 0 rgba(215,25,32,0); }
}

@keyframes growBar {
  from { transform: scaleY(.18); transform-origin: bottom; }
  to { transform: scaleY(1); transform-origin: bottom; }
}

@keyframes loadSweep {
  0% { transform: translateX(-110%); width: 38%; }
  50% { width: 62%; }
  100% { transform: translateX(260%); width: 38%; }
}

@keyframes slabFloat {
  0%, 100% { transform: skewX(-15deg) translateY(0); }
  50% { transform: skewX(-15deg) translateY(18px); }
}

@keyframes deviceFloat {
  0%, 100% { transform: perspective(1200px) rotateY(-7deg) rotateX(3deg) translateY(0); }
  50% { transform: perspective(1200px) rotateY(-5deg) rotateX(2deg) translateY(-10px); }
}

@keyframes glassSweep {
  0%, 42% { left: -50%; }
  68%, 100% { left: 120%; }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 135px;
  }

  .hero-visual {
    max-width: 720px;
  }

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

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

  .proof-band,
  .visual-proof,
  .split-section,
  .science-section,
  .documents-section {
    grid-template-columns: 1fr;
  }

  .proof-stats,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .timeline::before {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    left: 12px;
    right: 12px;
    top: 12px;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
  }

  .ghost-link,
  .primary-link {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    padding: 118px 18px 70px;
  }

  .hero h1 {
    font-size: clamp(42px, 15vw, 74px);
  }

  .desktop-frame {
    min-height: auto;
  }

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

  .dashboard-grid aside {
    grid-template-columns: repeat(3, 1fr);
  }

  .metric-strip,
  .chart-row,
  .proof-stats,
  .feature-grid,
  .score-row,
  .audience-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .vs {
    margin: -8px auto;
  }

  .phone-frame {
    display: none;
  }

  .proof-band,
  .section,
  .demo-section,
  .site-footer {
    margin-left: 14px;
    margin-right: 14px;
  }

  .section {
    padding-top: 72px;
  }

  .price-card.featured {
    transform: none;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .desktop-frame,
  .slab-blue,
  .slab-green {
    animation: none;
  }
}

/* Executive premium refinement */
:root {
  --navy: #08245f;
  --blue: #0f4595;
  --deep: #061a44;
  --green: #087c57;
  --teal: #17a9ba;
  --red: #c9151b;
  --gold: #d79a18;
  --ink: #07162f;
  --muted: #64748b;
  --line: #dce7f1;
  --shadow: 0 30px 90px rgba(6, 26, 68, .13);
  --shadow-soft: 0 16px 46px rgba(6, 26, 68, .08);
}

body {
  background:
    linear-gradient(90deg, rgba(15, 69, 149, .035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 69, 149, .03) 1px, transparent 1px),
    #f8fbff;
  background-size: 64px 64px;
}

.site-header {
  left: clamp(16px, 3vw, 42px);
  right: clamp(16px, 3vw, 42px);
  top: 18px;
  padding: 10px 12px 10px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
}

.brand {
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background:
    linear-gradient(145deg, #09245f, #0f4595 58%, #087c57);
  box-shadow: 0 14px 34px rgba(8, 36, 95, .18);
}

.brand-mark::before {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 12px;
  transform: none;
}

.brand-mark::after {
  content: "DC";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border: 0;
  transform: none;
  color: #fff;
  font-family: Sora, Inter, sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.05em;
}

.brand-mark span {
  width: 4px;
  height: 4px;
  opacity: .95;
}

.brand-mark span:nth-child(1) {
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
}

.brand-mark span:nth-child(2) {
  top: auto;
  bottom: 7px;
  left: 8px;
  background: var(--teal);
}

.brand-mark span:nth-child(3) {
  top: auto;
  right: 8px;
  bottom: 7px;
  background: #8ee6b4;
}

.brand-lockup {
  display: grid;
  gap: 1px;
}

.brand-text {
  font-size: 18px;
  line-height: 1;
}

.brand-lockup small,
.preloader-word small {
  color: var(--muted);
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.preloader-word {
  display: grid;
  gap: 4px;
  color: #fff;
}

.preloader-word em {
  color: #8ee6b4;
}

.preloader-word small {
  color: rgba(255,255,255,.66);
}

.preloader {
  background:
    linear-gradient(116deg, #061a44 0 50%, #ffffff 50.2% 100%);
}

.preloader-panel {
  width: min(470px, calc(100vw - 40px));
  border-radius: 26px;
}

.hero {
  min-height: 94vh;
  grid-template-columns: minmax(0, .95fr) minmax(380px, 570px);
  gap: clamp(28px, 5vw, 60px);
  padding-top: 138px;
  padding-bottom: 78px;
}

.hero::before {
  background:
    linear-gradient(118deg, rgba(255,255,255,.98) 0 58%, rgba(239, 247, 255, .96) 58.2% 100%);
}

.hero::after {
  width: min(42vw, 560px);
}

.slab-blue {
  right: -230px;
  top: 105px;
  width: 370px;
  height: 560px;
  opacity: .82;
  background: linear-gradient(180deg, #08245f, #0f4595);
}

.slab-green {
  right: 72px;
  bottom: -140px;
  width: 62px;
  height: 330px;
  opacity: .86;
}

.slab-red {
  width: 4px;
  opacity: .75;
}

.eyebrow,
.section-kicker {
  padding: 7px 11px;
  font-size: 10px;
  letter-spacing: .14em;
  background: rgba(255,255,255,.86);
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.hero h1::after {
  width: 72px;
  height: 4px;
  margin-top: 22px;
}

.hero-lead {
  max-width: 600px;
  margin-top: 22px;
  font-size: clamp(15.5px, 1.25vw, 18px);
  line-height: 1.72;
  font-weight: 620;
}

.primary-link,
.cta {
  min-height: 43px;
  padding: 0 18px;
  font-size: 12.5px;
}

.trust-row span {
  padding: 8px 11px;
  font-size: 11.5px;
}

.desktop-frame {
  min-height: 410px;
  border-radius: 26px;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  animation: deviceFloatExecutive 7s ease-in-out infinite;
}

.premium-ribbon {
  right: 34px;
  top: -12px;
  min-width: 156px;
  padding: 12px 16px;
  border-radius: 16px;
}

.premium-ribbon strong {
  font-size: 16px;
}

.window-bar {
  height: 32px;
  border-radius: 14px;
}

.metric-strip strong,
.proof-stats strong,
.score-row strong {
  font-size: 20px;
}

.section {
  padding-top: 88px;
}

.section h2,
.demo-card h2 {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(28px, 3.7vw, 48px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.section p,
.demo-card p {
  font-size: 15.5px;
  line-height: 1.72;
}

.proof-band {
  border-radius: 28px;
  padding: 24px;
}

.proof-band h2 {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(24px, 2.8vw, 38px);
}

.feature-card {
  min-height: 258px;
  padding: 24px;
  border-radius: 22px;
}

.feature-card h3 {
  font-size: 19px;
}

.feature-card p {
  font-size: 13.5px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.science-panel,
.shield-board,
.doc-copy,
.doc-showcase,
.demo-card {
  border-radius: 28px;
}

.price-card h3 {
  font-size: 26px;
}

@keyframes deviceFloatExecutive {
  0%, 100% { transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(0); }
  50% { transform: perspective(1200px) rotateY(-3deg) rotateX(1deg) translateY(-8px); }
}

@media (max-width: 860px) {
  .brand-lockup small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 56px);
  }
}

/* Responsive product-grade polish */
@media (max-width: 1280px) {
  .site-header {
    gap: 12px;
  }

  .main-nav a,
  .ghost-link {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
  }

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

  .desktop-frame {
    transform: none;
    animation: none;
  }
}

@media (min-width: 861px) and (max-width: 1100px) {
  .site-header {
    border-radius: 20px;
  }

  .brand-text {
    font-size: 16px;
  }

  .brand-lockup small {
    font-size: 7.4px;
    letter-spacing: .13em;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 128px 34px 74px;
  }

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

  .hero h1 {
    max-width: 760px;
    font-size: clamp(42px, 6.6vw, 68px);
  }

  .hero-lead {
    max-width: 700px;
  }

  .hero-visual {
    max-width: 860px;
    width: 100%;
    margin: 12px auto 0;
  }

  .device-stack {
    min-height: 470px;
  }

  .desktop-frame {
    width: 100%;
  }

  .phone-frame {
    right: 28px;
    bottom: -18px;
  }

  .proof-band {
    grid-template-columns: 1fr;
  }

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

  .science-section,
  .documents-section,
  .split-section {
    grid-template-columns: 1fr;
  }

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

  .timeline::before {
    display: none;
  }

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

  .product-board {
    grid-template-columns: 1fr;
  }

  .price-card,
  .price-card.featured {
    min-height: auto;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 118px 18px 58px;
    gap: 28px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255,255,255,.99) 0 48%, rgba(239,247,255,.98) 48.2% 100%);
  }

  .hero::after,
  .slab-red {
    display: none;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    max-width: 720px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(34px, 7.5vw, 58px);
    line-height: 1.04;
  }

  .hero-lead {
    max-width: 680px;
  }

  .hero-visual {
    position: relative;
    z-index: 1;
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

  .device-stack {
    min-height: 0;
  }

  .desktop-frame {
    width: 100%;
    transform: none !important;
    animation: none;
  }

  .slab-blue {
    right: -260px;
    top: 150px;
    width: 360px;
    height: 520px;
    opacity: .55;
  }

  .hero-photo-wash {
    right: -180px;
    top: 180px;
    width: 520px;
    height: 420px;
    opacity: .28;
  }

  .slab-green {
    right: 18px;
    bottom: -110px;
    width: 44px;
    height: 260px;
    opacity: .7;
  }

  .premium-ribbon {
    right: 22px;
    top: -10px;
  }

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

  .dashboard-grid aside {
    grid-template-columns: repeat(3, 1fr);
  }

  .phone-frame {
    display: none;
  }
}

@media (max-width: 920px) {
  .hero {
    padding-top: 108px;
  }

  .eyebrow {
    max-width: 190px;
    padding: 9px 12px;
    border-radius: 22px;
    line-height: 1.25;
  }

  .hero h1 {
    font-size: clamp(32px, 8vw, 52px);
    max-width: 640px;
  }

  .desktop-frame {
    margin-top: 4px;
  }

  .premium-ribbon {
    position: relative;
    right: auto;
    top: auto;
    width: fit-content;
    margin: 0 0 12px auto;
  }
}

@media (max-width: 760px) {
  body {
    background-size: 42px 42px;
  }

  .preloader {
    background: linear-gradient(160deg, #061a44 0 62%, #f8fbff 62.2% 100%);
  }

  .preloader-panel {
    padding: 26px;
    border-radius: 24px;
  }

  .preloader-logo {
    align-items: flex-start;
  }

  .preloader-word {
    font-size: 22px;
  }

  .site-header {
    left: 10px;
    right: 10px;
    top: 10px;
    padding: 9px 10px;
    border-radius: 18px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .brand-mark::before {
    width: 30px;
    height: 30px;
  }

  .brand-mark::after {
    font-size: 15px;
  }

  .brand-text {
    font-size: 15px;
  }

  .main-nav {
    border-radius: 18px;
    padding: 10px;
  }

  .main-nav a {
    padding: 13px 14px;
    border-radius: 14px;
    font-size: 13px;
  }

  .hero {
    display: block;
    padding: 112px 16px 48px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255,255,255,.98) 0 58%, rgba(239,247,255,.96) 58.2% 100%);
  }

  .hero::after {
    display: none;
  }

  .hero-bg {
    opacity: .9;
  }

  .hero-photo-wash {
    display: none;
  }

  .slab-blue {
    right: -250px;
    top: 96px;
    width: 310px;
    height: 480px;
  }

  .slab-green {
    right: -4px;
    bottom: -100px;
    width: 36px;
    height: 240px;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 9.2px;
    line-height: 1.35;
    white-space: normal;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(33px, 9.3vw, 48px);
    line-height: 1.05;
    letter-spacing: -.035em;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.68;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cta {
    width: 100%;
    min-height: 48px;
  }

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

  .trust-row span {
    text-align: center;
  }

  .hero-visual {
    margin-top: 34px;
  }

  .device-stack {
    min-height: 0;
    display: grid;
    gap: 14px;
  }

  .premium-ribbon {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 13px 14px;
    border-radius: 18px;
  }

  .premium-ribbon strong {
    font-size: 15px;
  }

  .desktop-frame {
    width: 100%;
    min-height: 0;
    padding: 12px;
    border-radius: 22px;
    transform: none !important;
    animation: none;
  }

  .desktop-frame::before,
  .desktop-frame::after {
    display: none;
  }

  .window-bar {
    height: 30px;
    padding: 0 10px;
  }

  .window-bar strong {
    font-size: 9px;
  }

  .dashboard-grid {
    display: block;
  }

  .dashboard-grid aside {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 16px;
    scrollbar-width: none;
  }

  .dashboard-grid aside::-webkit-scrollbar {
    display: none;
  }

  .dashboard-grid aside span {
    flex: 0 0 auto;
    padding: 9px 10px;
    font-size: 10px;
    white-space: nowrap;
  }

  .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .product-board,
  .ops-strip,
  .material-grid {
    grid-template-columns: 1fr;
  }

  .app-toolbar {
    align-items: flex-start;
    padding: 12px;
  }

  .app-toolbar strong {
    font-size: 12.5px;
  }

  .app-metrics div {
    padding-left: 38px;
  }

  .abstract-queue,
  .compliance-card {
    padding: 12px;
    border-radius: 16px;
  }

  .queue-row b {
    white-space: normal;
  }

  .radial-score {
    width: 82px;
    height: 82px;
  }

  .ops-strip {
    gap: 8px;
  }

  .material-card {
    min-height: auto;
    padding: 20px;
    border-radius: 20px;
  }

  .metric-strip div {
    padding: 12px 10px;
  }

  .metric-strip strong {
    font-size: 18px;
  }

  .chart-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .line-chart {
    height: 120px;
    padding: 14px;
  }

  .donut {
    min-height: 124px;
    max-width: 124px;
    margin: 0 auto;
  }

  .review-table {
    grid-template-columns: repeat(2, 1fr);
  }

  .phone-frame {
    position: relative;
    display: block;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    min-height: 186px;
    padding: 34px 18px 18px;
    border-width: 6px;
    border-radius: 26px;
  }

  .phone-icons {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 18px;
  }

  .phone-icons span {
    height: 48px;
  }

  .proof-band,
  .section,
  .demo-section,
  .site-footer {
    margin-left: 12px;
    margin-right: 12px;
  }

  .proof-band {
    padding: 20px;
    border-radius: 22px;
  }

  .visual-proof {
    padding-top: 24px;
    gap: 14px;
  }

  .visual-card,
  .visual-large {
    min-height: 330px;
    border-radius: 22px;
  }

  .visual-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .visual-caption strong {
    font-size: 22px;
  }

  .proof-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .proof-stats div {
    min-height: 104px;
    padding: 14px;
  }

  .proof-stats strong {
    font-size: 25px;
  }

  .section {
    padding-top: 64px;
  }

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

  .section h2,
  .demo-card h2 {
    font-size: clamp(27px, 7.4vw, 38px);
    line-height: 1.1;
  }

  .section p,
  .demo-card p {
    font-size: 14.5px;
  }

  .compare-card {
    min-height: auto;
    padding: 22px;
    border-radius: 20px;
  }

  .feature-grid,
  .audience-grid,
  .pricing-grid,
  .score-row,
  .proof-stats {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
    padding: 22px;
    border-radius: 20px;
  }

  .feature-card h3 {
    max-width: calc(100% - 56px);
  }

  .science-panel,
  .shield-board,
  .doc-copy,
  .demo-card {
    padding: 24px;
    border-radius: 22px;
  }

  .shield {
    width: 116px;
    height: 134px;
  }

  .shield span {
    left: 35px;
    top: 43px;
  }

  .timeline {
    gap: 12px;
  }

  .timeline-step {
    padding: 64px 18px 20px;
    border-radius: 20px;
  }

  .doc-showcase {
    min-height: 0;
    padding: 18px;
    border-radius: 22px;
  }

  .doc-showcase img {
    width: min(100%, 280px);
    max-height: 410px;
  }

  .floating-doc {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
    padding: 16px;
    border-radius: 18px;
  }

  .price-card {
    min-height: auto;
    padding: 22px;
    border-radius: 20px;
  }

  .faq-item {
    padding: 20px 56px 20px 18px;
    border-radius: 18px;
  }

  .faq-item span {
    font-size: 16px;
  }

  .demo-section {
    padding: 70px 0;
  }

  .contact-grid {
    display: grid;
  }

  .contact-grid a {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .brand-text {
    font-size: 13.5px;
  }

  .hero {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .proof-stats {
    grid-template-columns: 1fr;
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }
}

/* Final brand symbol: science + book + digital signal */
.brand-mark {
  background:
    linear-gradient(145deg, #ffffff, #eef7ff);
  border: 1px solid rgba(15,69,149,.16);
}

.brand-mark img {
  position: relative;
  z-index: 3;
  width: 35px;
  height: 35px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-mark::before {
  content: none;
  position: absolute;
  left: 9px;
  top: 13px;
  width: 28px;
  height: 21px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, transparent 45%, var(--blue) 46% 54%, transparent 55%) left bottom / 50% 82% no-repeat,
    linear-gradient(45deg, transparent 45%, var(--green) 46% 54%, transparent 55%) right bottom / 50% 82% no-repeat;
  transform: none;
}

.brand-mark::after {
  content: none;
  position: absolute;
  left: 50%;
  top: 9px;
  width: 5px;
  height: 27px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--green));
  transform: translateX(-50%);
  box-shadow:
    -10px 6px 0 -2px var(--blue),
    10px 6px 0 -2px var(--green),
    0 -5px 0 -1px var(--gold);
}

.brand-mark span:nth-child(1) {
  top: 6px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold);
}

.preloader-mark img {
  width: 45px;
  height: 45px;
}

/* More editorial material-design comparison block */
.comparison {
  grid-template-columns: minmax(260px, 1.15fr) minmax(240px, .85fr);
  grid-template-areas:
    "photo danger"
    "photo vs"
    "photo success";
  align-items: stretch;
}

.compare-photo {
  position: relative;
  grid-area: photo;
  min-height: 420px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.compare-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 28%, rgba(6, 26, 68, .78) 100%),
    linear-gradient(90deg, rgba(6, 26, 68, .24), transparent 60%);
}

.compare-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.compare-photo div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: #fff;
}

.compare-photo span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.compare-photo strong {
  display: block;
  max-width: 520px;
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.06;
  letter-spacing: -.035em;
}

.compare-card {
  min-height: auto;
  padding: 24px;
  border-radius: 24px;
}

.compare-card.danger {
  grid-area: danger;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,247,247,.94));
}

.compare-card.success {
  grid-area: success;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(239,251,245,.94));
}

.comparison .vs {
  grid-area: vs;
  width: 48px;
  height: 48px;
  justify-self: center;
  align-self: center;
}

.compare-card h3 {
  font-family: Sora, Inter, sans-serif;
}

.compare-card li {
  padding-left: 31px;
}

.compare-card li::before {
  top: 2px;
  width: 18px;
  height: 18px;
  box-shadow: inset 0 0 0 5px #fff;
}

@media (max-width: 1100px) {
  .comparison {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "danger"
      "vs"
      "success";
  }

  .compare-photo {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .brand-mark img {
    width: 31px;
    height: 31px;
  }

  .compare-photo {
    min-height: 300px;
    border-radius: 22px;
  }

  .compare-photo div {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .compare-photo strong {
    font-size: 23px;
  }

  .compare-card {
    padding: 20px;
    border-radius: 20px;
  }

  .comparison .vs {
    margin: -4px auto;
  }
}

.brand-mark span:nth-child(2) {
  left: 7px;
  bottom: 7px;
  width: 5px;
  height: 5px;
  background: var(--teal);
}

.brand-mark span:nth-child(3) {
  right: 7px;
  bottom: 7px;
  width: 5px;
  height: 5px;
  background: var(--green);
}

/* Product logo v2: refined DigitalCongres identity */
.brand-mark {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 17px;
  background:
    radial-gradient(circle at 70% 18%, rgba(242,169,0,.95) 0 4px, transparent 4.5px),
    linear-gradient(145deg, #08245f 0%, #0f4595 58%, #087c57 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.18),
    0 16px 36px rgba(8,36,95,.20);
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 12px;
  width: 28px;
  height: 24px;
  border: 3px solid #fff;
  border-radius: 8px 13px 13px 8px;
  border-left-width: 4px;
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(255,255,255,.92) 42% 50%, transparent 50% 100%);
  transform: none;
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 15px;
  height: 15px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  border-radius: 2px;
  transform: rotate(-45deg);
}

.brand-mark span {
  position: absolute;
  border-radius: 50%;
}

.brand-mark span:nth-child(1) {
  left: 7px;
  bottom: 7px;
  width: 5px;
  height: 5px;
  background: var(--teal);
  box-shadow: 8px 4px 0 -1px rgba(255,255,255,.55);
}

.brand-mark span:nth-child(2) {
  left: auto;
  right: 7px;
  bottom: 7px;
  width: 5px;
  height: 5px;
  background: #8ee6b4;
}

.brand-mark span:nth-child(3) {
  left: 50%;
  top: 6px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: translateX(-50%);
}

.preloader-mark {
  width: 62px;
  height: 62px;
  border-radius: 20px;
}

/* Hero app mockup polish: clearer, tighter, no visual overflow */
.hero-visual {
  max-width: 650px;
}

.device-stack {
  min-height: 500px;
}

.desktop-frame {
  width: min(100%, 620px);
  min-height: 430px;
  padding: 13px;
  border-radius: 28px;
}

.dashboard-grid {
  grid-template-columns: 118px 1fr;
  gap: 12px;
}

.dashboard-grid aside {
  padding: 12px;
  border-radius: 18px;
}

.dashboard-grid aside span {
  padding: 10px;
  font-size: 10px;
}

.dash-main {
  gap: 10px;
}

.app-toolbar {
  padding: 10px 12px;
  border-radius: 16px;
}

.metric-strip {
  gap: 8px;
}

.metric-strip div {
  padding: 11px 9px;
  border-radius: 14px;
}

.app-metrics div {
  padding-left: 35px;
}

.mini-icon {
  left: 10px;
  top: 12px;
  width: 18px;
  height: 18px;
}

.product-board {
  gap: 10px;
}

.abstract-queue,
.compliance-card {
  padding: 12px;
  border-radius: 16px;
}

.queue-row {
  padding: 7px 0;
}

.radial-score {
  width: 76px;
  height: 76px;
}

.radial-score strong {
  font-size: 17px;
}

.score-bars span {
  height: 21px;
}

.ops-strip {
  gap: 8px;
}

.ops-strip div {
  padding: 10px 8px 10px 34px;
  border-radius: 15px;
}

.phone-frame {
  right: 2px;
  bottom: -6px;
  width: 126px;
  height: 226px;
  padding: 30px 12px 14px;
  border-width: 7px;
  border-radius: 28px;
  z-index: 5;
}

.phone-frame strong {
  font-size: 15px;
}

.phone-frame small {
  font-size: 11px;
}

.phone-icons span {
  height: 34px;
}

.premium-ribbon {
  right: 42px;
  top: -10px;
  min-width: 150px;
  padding: 11px 14px;
}

@media (max-width: 980px) {
  .hero-visual {
    max-width: 760px;
  }

  .device-stack {
    min-height: 0;
  }

  .desktop-frame {
    width: 100%;
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .brand-mark::before {
    left: 8px;
    top: 10px;
    width: 23px;
    height: 20px;
    border-width: 2.5px;
  }

  .brand-mark::after {
    left: 13px;
    top: 16px;
    width: 13px;
    height: 13px;
    border-width: 2.5px;
  }

  .product-board {
    grid-template-columns: 1fr;
  }
}

/* Locked final logo: DC mark + DigitalCongres lockup */
.brand-mark {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border: 1px solid rgba(15,69,149,.14);
  border-radius: 18px;
  background: linear-gradient(145deg, #09245f 0%, #0f4595 62%, #087c57 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.18),
    0 14px 34px rgba(8,36,95,.18);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 13px;
  background: transparent;
  transform: none;
}

.brand-mark::after {
  content: "DC";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  font-family: Sora, Inter, sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.08em;
  transform: none;
  background: transparent;
  box-shadow: none;
}

.brand-mark span {
  position: absolute;
  z-index: 2;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.brand-mark span:nth-child(1) {
  left: 50%;
  top: 7px;
  transform: translateX(-50%);
  background: var(--gold);
}

.brand-mark span:nth-child(2) {
  left: 8px;
  bottom: 8px;
  background: var(--teal);
}

.brand-mark span:nth-child(3) {
  right: 8px;
  bottom: 8px;
  background: #8ee6b4;
}

.brand-text {
  font-size: 20px;
  letter-spacing: -.045em;
}

.brand-lockup small {
  margin-top: 2px;
  color: #66738a;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.preloader-mark {
  width: 62px;
  height: 62px;
  border-radius: 21px;
}

.preloader-mark::after {
  font-size: 23px;
}

@media (max-width: 760px) {
  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .brand-mark::before {
    inset: 7px;
    border-radius: 12px;
  }

  .brand-mark::after {
    font-size: 17px;
  }

  .brand-text {
    font-size: 16px;
  }
}
