:root {
  --cyan: #00aeef;
  --blue: #1d75bf;
  --navy: #082f5f;
  --ink: #172436;
  --muted: #556679;
  --line: #dceaf4;
  --surface: #ffffff;
  --mist: #f2f9fd;
  --green: #21b978;
  --amber: #ffbf3f;
  --shadow: 0 18px 44px rgba(8, 47, 95, .12);
  --gradient: linear-gradient(135deg, var(--cyan), var(--blue));
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

.site-header {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(8, 47, 95, .08);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 172px;
  height: auto;
}

.brand span {
  padding-left: 12px;
  border-left: 1px solid var(--line);
  white-space: nowrap;
}

.nav {
  width: fit-content;
  justify-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
  padding: 0;
}

.nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: var(--navy);
  font-size: .95rem;
  font-weight: 900;
  text-decoration: none;
  position: relative;
  transition: color .18s ease;
}

.nav a::after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 4px;
  border-radius: 999px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav a:hover,
.nav-menu:hover > a,
.nav a:focus-visible {
  color: var(--blue);
  outline: none;
}

.nav a:hover::after,
.nav-menu:hover > a::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-menu {
  position: relative;
  padding: 0;
}

.mega-menu {
  width: 280px;
  display: grid;
  gap: 4px;
  padding: 12px;
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.nav-menu:hover .mega-menu,
.nav-menu:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
}

.mega-menu a::after {
  display: none;
}

.mega-menu a:hover {
  background: var(--mist);
  color: var(--navy);
}

.sign-in-link,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 12px 26px rgba(29, 117, 191, .22);
}

.sign-in-link {
  border: 1px solid rgba(0, 174, 239, .38);
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 10px 24px rgba(8, 47, 95, .08);
}

.sign-in-link:hover {
  background: var(--gradient);
  color: #fff;
}

.early-bird-star {
  position: fixed;
  top: 94px;
  right: clamp(12px, 2.4vw, 34px);
  z-index: 18;
  width: min(244px, calc(100vw - 24px));
  min-height: 86px;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 12px;
  padding: 13px 16px 13px 12px;
  border: 1px solid rgba(255, 191, 63, .72);
  border-radius: 8px;
  background: #fff8df;
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(8, 47, 95, .16);
  animation: starCardPulse 1.5s ease-in-out infinite;
}

.early-bird-star span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  grid-row: span 2;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  font-size: 2.85rem;
  font-weight: 900;
  line-height: 1;
  animation: starFlash 1s ease-in-out infinite;
}

.early-bird-star strong {
  align-self: end;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1;
}

.early-bird-star small {
  align-self: start;
  color: var(--blue);
  font-size: .86rem;
  font-weight: 900;
  line-height: 1.25;
}

.early-bird-star:hover,
.early-bird-star:focus-visible {
  outline: 3px solid rgba(255, 191, 63, .38);
  transform: translateY(-2px);
}

.button.primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 12px 26px rgba(29, 117, 191, .22);
}

.button.secondary {
  background: #eaf7fd;
  color: var(--navy);
  border: 1px solid #c7ecfb;
}

.hero,
.section {
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: calc(92vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(32px, 5vw, 70px);
  padding: 44px 0 58px;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  width: fit-content;
  margin: 0;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(0, 174, 239, .12);
  color: var(--blue);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(2.65rem, 5vw, 4.85rem);
  line-height: 1.01;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 14px;
}

h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.25rem;
}

p,
li {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero-text {
  max-width: 680px;
  font-size: 1.08rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.proof-strip span {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  box-shadow: 0 10px 24px rgba(8, 47, 95, .07);
}

.proof-strip strong {
  color: var(--navy);
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  width: 68%;
  height: 64%;
  position: absolute;
  right: -18px;
  bottom: -18px;
  z-index: -1;
  border-radius: 8px;
  background: var(--gradient);
}

.hero-media img {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 30px 76px rgba(8, 47, 95, .2);
}

.section {
  padding: 72px 0;
}

.solutions-section {
  padding-top: 18px;
}

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

.solution-card {
  min-height: 250px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  perspective: 1200px;
  padding: 0;
  text-align: left;
}

.solution-card:focus-visible {
  outline: 3px solid rgba(0, 174, 239, .32);
  outline-offset: 4px;
  border-radius: 8px;
}

.solution-card-inner {
  position: relative;
  width: 100%;
  min-height: 250px;
  display: block;
  transform-style: preserve-3d;
  transition: transform .52s ease;
}

.solution-card:hover .solution-card-inner,
.solution-card.is-flipped .solution-card-inner {
  transform: rotateY(180deg);
}

.solution-face {
  min-height: 250px;
  display: grid;
  align-content: end;
  gap: 12px;
  position: absolute;
  inset: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  backface-visibility: hidden;
  box-shadow: 0 18px 42px rgba(8, 47, 95, .12);
  overflow: hidden;
}

.solution-front {
  background: linear-gradient(145deg, #fff, #eef9fe);
}

.solution-front::before {
  content: "";
  width: 132px;
  height: 132px;
  position: absolute;
  top: -42px;
  right: -30px;
  border-radius: 50%;
  background: rgba(0, 174, 239, .15);
}

.solution-back {
  transform: rotateY(180deg);
  background: linear-gradient(145deg, rgba(8, 47, 95, .96), rgba(29, 117, 191, .94));
  color: #fff;
}

.solution-card small {
  color: var(--blue);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.solution-card strong {
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.04;
}

.solution-card em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.solution-back strong,
.solution-back span {
  color: #fff;
}

.solution-back span {
  line-height: 1.65;
}

.intro-band {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  padding: 50px clamp(20px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(242, 249, 253, .96), rgba(255, 255, 255, .96)),
    var(--mist);
  box-shadow: var(--shadow);
}

.intro-band p:last-child {
  margin: 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 26px;
}

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

.feature-card,
.insight-grid article,
.plan {
  min-height: 246px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(8, 47, 95, .08);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  font-weight: 900;
}

.workflow-band {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  padding: 56px;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.workflow-band h2,
.workflow-band p {
  color: white;
}

.workflow-band .eyebrow {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
}

.workflow-steps {
  display: grid;
  gap: 12px;
}

.workflow-steps div {
  min-height: 76px;
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.workflow-steps strong {
  color: #fff;
  font-size: 1.05rem;
}

.workflow-steps span {
  color: #cbeeff;
  line-height: 1.55;
}

.analytics-section {
  background: linear-gradient(180deg, #fff, var(--mist));
  width: 100%;
  padding-left: max(18px, calc((100vw - 1200px) / 2));
  padding-right: max(18px, calc((100vw - 1200px) / 2));
}

.analytics-section .section-heading,
.analytics-section .insight-grid {
  width: 100%;
  max-width: 1200px;
}

.insight-grid article {
  min-height: 186px;
}

.split,
.contact-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
}

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

.entity-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(8, 47, 95, .07);
}

.pricing-section {
  background: var(--mist);
  width: 100%;
  padding-left: max(18px, calc((100vw - 1200px) / 2));
  padding-right: max(18px, calc((100vw - 1200px) / 2));
}

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

.early-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  margin: 0 0 22px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255, 191, 63, .55);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 47, 95, .96), rgba(29, 117, 191, .94)),
    var(--navy);
  color: #fff;
  box-shadow: 0 24px 62px rgba(8, 47, 95, .24);
  position: relative;
  overflow: hidden;
}

.early-offer::before {
  content: "";
  width: 220px;
  height: 220px;
  position: absolute;
  top: -80px;
  right: 18%;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
}

.early-offer h3 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  line-height: 1.06;
  margin-bottom: 12px;
}

.early-offer p {
  max-width: 760px;
  color: #d9f5ff;
  margin-bottom: 0;
}

.offer-kicker {
  width: fit-content;
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--amber);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: offerPulse 1.3s ease-in-out infinite;
}

.price-lockup {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
}

.discount-badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 900;
}

.price-row {
  display: flex;
  align-items: end;
  gap: 12px;
}

.old-price {
  color: #d5edfb;
  font-size: 1.7rem;
  font-weight: 900;
  text-decoration: line-through;
  text-decoration-thickness: 4px;
  text-decoration-color: var(--amber);
}

.price-row strong {
  color: #fff;
  font-size: clamp(3.4rem, 7vw, 5rem);
  line-height: .9;
}

.price-note {
  color: #d9f5ff;
  font-weight: 800;
}

.offer-button {
  width: 100%;
  background: var(--amber);
  color: var(--navy);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
}

.plan {
  display: grid;
  align-content: start;
  gap: 12px;
}

.plan strong {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eaf7fd;
  color: var(--blue);
}

.plan ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.plan-price {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 6px 12px;
  padding: 16px;
  border: 1px solid #cdeffc;
  border-radius: 8px;
  background: #f7fcff;
}

.old-plan-price {
  color: var(--muted);
  font-size: 1.35rem;
  font-weight: 900;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--amber);
}

.plan-price b {
  color: var(--navy);
  font-size: clamp(2.35rem, 5vw, 3.4rem);
  line-height: .95;
}

.plan-price small {
  grid-column: 1 / -1;
  color: var(--blue);
  font-weight: 900;
}

.plan .button {
  width: 100%;
  align-self: end;
  margin-top: 6px;
}

.featured-plan {
  border-color: rgba(0, 174, 239, .45);
  box-shadow: 0 22px 54px rgba(29, 117, 191, .18);
}

.innovation-section {
  width: 100%;
  padding-left: max(18px, calc((100vw - 1200px) / 2));
  padding-right: max(18px, calc((100vw - 1200px) / 2));
  background:
    linear-gradient(135deg, rgba(0, 174, 239, .12), rgba(8, 47, 95, .05)),
    #fff;
  overflow: hidden;
}

.innovation-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-button {
  width: 46px;
  height: 46px;
  border: 1px solid #b9e4f6;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(8, 47, 95, .1);
}

.carousel-button:hover {
  background: var(--navy);
  color: #fff;
}

.carousel-shell {
  width: 100%;
  overflow: visible;
}

.innovation-track {
  display: flex;
  gap: 18px;
  transform: translateX(var(--carousel-offset, 0));
  transition: transform .42s ease;
  will-change: transform;
}

.innovation-card {
  min-width: min(72vw, 520px);
  min-height: 360px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(8, 47, 95, .96), rgba(29, 117, 191, .9)),
    var(--navy);
  color: #fff;
  box-shadow: 0 22px 60px rgba(8, 47, 95, .2);
  opacity: .55;
  transform: scale(.92);
  transition: opacity .42s ease, transform .42s ease;
}

.innovation-card:nth-child(2n) {
  background:
    linear-gradient(145deg, rgba(0, 174, 239, .95), rgba(8, 47, 95, .94)),
    var(--blue);
}

.innovation-card:nth-child(3n) {
  background:
    linear-gradient(145deg, rgba(33, 185, 120, .88), rgba(8, 47, 95, .96)),
    var(--green);
}

.innovation-card.active {
  opacity: 1;
  transform: scale(1);
}

.innovation-card span {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.innovation-card h3 {
  max-width: 430px;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.08;
  margin-bottom: 0;
}

.innovation-card p {
  max-width: 460px;
  color: #ecfbff;
  margin-bottom: 0;
}

@keyframes offerPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 191, 63, .45);
    transform: translateY(0);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(255, 191, 63, 0);
    transform: translateY(-1px);
  }
}

@keyframes starFlash {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
    box-shadow: 0 0 0 0 rgba(255, 191, 63, .55);
  }

  50% {
    transform: rotate(16deg) scale(1.12);
    box-shadow: 0 0 0 10px rgba(255, 191, 63, 0);
  }
}

@keyframes starCardPulse {
  0%,
  100% {
    border-color: rgba(255, 191, 63, .72);
  }

  50% {
    border-color: rgba(0, 174, 239, .72);
  }
}

.contact-section {
  padding: 72px 0 84px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.field-label {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--navy);
}

.field-label strong,
.lead-form label > span:not(.field-label) {
  color: #c43d32;
}

.phone-field {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
}

.country-code-field select {
  font-weight: 900;
}

.recaptcha-panel {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid #cddfea;
  border-radius: 8px;
  background: #f7fcff;
}

.recaptcha-panel small {
  color: var(--muted);
  line-height: 1.45;
}

.trap-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.robot-check {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #cddfea;
  border-radius: 8px;
  background: #f7fcff;
}

.robot-check input {
  width: 20px;
  min-height: 20px;
  accent-color: var(--blue);
}

.robot-check span {
  color: var(--navy);
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cddfea;
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

input:focus,
select:focus {
  outline: 3px solid rgba(0, 174, 239, .18);
  border-color: var(--cyan);
}

.lead-form button,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  display: none;
  min-height: 0;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.form-status.error {
  color: #c43d32;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px clamp(18px, 5vw, 72px) 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .94rem;
}

.admin-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0 88px;
}

.admin-login {
  min-height: calc(86vh - 78px);
  display: grid;
  grid-template-columns: minmax(320px, 460px);
  align-items: center;
  justify-content: center;
}

.admin-login h1,
.admin-dashboard h1 {
  color: var(--navy);
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 1.02;
  margin-bottom: 14px;
}

.admin-card,
.admin-panel,
.admin-metric-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.admin-card {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.admin-card h1 {
  margin-bottom: 4px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.admin-signin-form,
.admin-signin-form > div {
  display: grid;
  gap: 16px;
}

.admin-signin-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.admin-signin-form .button + .button {
  margin-top: -4px;
}

.admin-recaptcha {
  padding: 12px;
}

.admin-card h2,
.admin-panel h2 {
  font-size: 1.55rem;
}

.admin-auth-button {
  width: 100%;
}

.admin-security-list {
  display: grid;
  gap: 8px;
}

.admin-security-list span {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--mist);
  color: var(--navy);
  font-weight: 900;
}

.admin-status {
  min-height: 24px;
  margin: 0;
  color: #c43d32;
  font-weight: 900;
}

.admin-status.success {
  color: var(--green);
}

.admin-dashboard {
  display: grid;
  gap: 22px;
}

.admin-dashboard-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.app-nav {
  display: flex;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fcff;
  box-shadow: 0 10px 24px rgba(8, 47, 95, .07);
  overflow-x: auto;
}

.app-nav button {
  min-height: 42px;
  flex: 0 0 auto;
  border: 1px solid #cdeffc;
  border-radius: 999px;
  padding: 0 15px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: .9rem;
  font-weight: 900;
  cursor: pointer;
}

.app-nav button.active,
.app-nav button:hover {
  border-color: transparent;
  background: var(--gradient);
  color: #fff;
}

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

.admin-metric-grid article {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
}

.admin-metric-grid span {
  color: var(--blue);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: .95;
  font-weight: 900;
}

.admin-metric-grid strong {
  color: var(--navy);
}

.admin-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.admin-table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

th {
  color: var(--navy);
  font-size: .82rem;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 16px 18px;
  }

  .brand {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand img {
    width: min(170px, 62vw);
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 22px;
    padding: 8px 2px;
    border-bottom: 1px solid var(--line);
  }

  .nav a {
    white-space: nowrap;
  }

  .nav-menu {
    padding: 0;
  }

  .mega-menu {
    display: none;
  }

  .sign-in-link {
    width: 100%;
  }

  .early-bird-star {
    position: static;
    width: min(100% - 36px, 360px);
    margin: 12px auto 0;
  }

  .hero,
  .admin-login,
  .admin-dashboard-heading,
  .intro-band,
  .workflow-band,
  .split,
  .contact-section,
  .early-offer,
  .innovation-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 38px 0 52px;
  }

  .hero-media::before {
    right: -8px;
    bottom: -8px;
  }

  .proof-strip,
  .admin-metric-grid,
  .solution-grid,
  .feature-grid,
  .insight-grid,
  .plan-grid,
  .pricing-section .plan-grid,
  .entity-list,
  .phone-field,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .workflow-band {
    padding: 30px;
  }

  .workflow-steps div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .innovation-card {
    min-width: 82vw;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.25rem, 12vw, 2.95rem);
  }

  .actions .button {
    width: 100%;
  }

  .intro-band,
  .lead-form {
    padding: 22px;
  }

  .phone-field {
    grid-template-columns: 82px minmax(0, 1fr);
  }
}
