:root {
  --black: #03070e;
  --ink: #07101f;
  --navy-950: #031127;
  --navy-900: #061a3c;
  --navy-800: #0a2b5f;
  --blue-700: #005dc7;
  --blue-600: #0878ef;
  --cyan-400: #24b7ff;
  --gold-700: #c88900;
  --gold-600: #e7a400;
  --gold-500: #f5b800;
  --yellow-400: #ffd54a;
  --yellow-200: #ffe993;
  --cream: #fff8d9;
  --white: #ffffff;
  --mist-100: #f5f9fd;
  --mist-200: #eaf2f9;
  --line: #d8e4ef;
  --slate: #536579;
  --slate-dark: #263b52;
  --success: #22c58b;
  --shadow-sm: 0 12px 32px rgba(7, 26, 60, 0.09);
  --shadow-md: 0 24px 70px rgba(3, 17, 39, 0.17);
  --shadow-dark: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.85rem, 4.7vw, 4.85rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 3.8vw, 3.9rem);
  font-weight: 800;
}

h3 {
  font-size: 1.18rem;
}

p {
  color: var(--slate-dark);
}

::selection {
  color: var(--black);
  background: var(--yellow-400);
}

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

.sr-only,
.svg-library {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 18px;
  color: var(--white);
  background: var(--black);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.top-spectrum {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1200;
  height: 7px;
  background: linear-gradient(90deg, var(--gold-500) 0 18%, var(--blue-600) 37%, var(--cyan-400) 57%, var(--navy-900) 78%, var(--yellow-400) 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  margin-top: 7px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(7, 26, 60, 0.09);
  box-shadow: 0 8px 28px rgba(6, 26, 60, 0.06);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
  width: 260px;
  text-decoration: none;
  transition: transform 180ms ease;
}

.brand:hover {
  transform: translateY(-2px);
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  padding: 13px 12px;
  color: var(--navy-950);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 7px;
  left: 12px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--gold-500));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover {
  color: var(--blue-700);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: var(--navy-950);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  gap: 12px;
  color: var(--white);
  background: var(--navy-900);
  border: 2px solid transparent;
  border-radius: 10px;
  box-shadow: none;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  box-shadow: 0 12px 30px rgba(8, 120, 239, 0.25);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(8, 120, 239, 0.35);
}

.button-outline {
  color: var(--navy-900);
  background: var(--white);
  border-color: var(--navy-900);
}

.button-outline:hover {
  color: var(--white);
  background: var(--navy-900);
}

.button-gold {
  color: var(--black);
  background: linear-gradient(135deg, var(--yellow-400), var(--gold-500));
  box-shadow: 0 10px 26px rgba(231, 164, 0, 0.23);
}

.button-gold:hover {
  background: linear-gradient(135deg, #ffe278, var(--gold-500));
  box-shadow: 0 16px 34px rgba(231, 164, 0, 0.34);
}

.button-black {
  color: var(--white);
  background: var(--black);
  box-shadow: 0 12px 28px rgba(3, 7, 14, 0.25);
}

.button-black:hover {
  color: var(--black);
  background: var(--yellow-400);
}

.header-cta {
  flex: 0 0 auto;
  min-height: 46px;
  padding-inline: 19px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
  color: var(--blue-700);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-label span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--black);
  background: var(--yellow-400);
  border-radius: 50%;
  font-size: 0.7rem;
  letter-spacing: 0;
}

.section-label-dark {
  color: var(--cyan-400);
}

.section-label-yellow {
  color: var(--black);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-gold {
  color: var(--yellow-400);
}

.eyebrow-black {
  color: var(--black);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    linear-gradient(113deg, rgba(255,255,255,1) 0 49%, rgba(243,248,253,1) 49% 55%, rgba(7,26,60,1) 55% 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -260px;
  left: -240px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(8, 120, 239, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(8, 120, 239, 0.035), 0 0 0 160px rgba(8, 120, 239, 0.025);
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -230px;
  width: 700px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(245, 184, 0, 0.36), transparent 66%);
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(8, 120, 239, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 120, 239, 0.09) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000 0 30%, transparent 53%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(520px, 0.95fr);
  align-items: center;
  min-height: 760px;
  padding-block: 70px 100px;
  gap: 54px;
}

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

.hero-copy h1 span {
  color: var(--blue-600);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: 1.15rem;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  margin: 28px 0 0;
  padding: 0;
  gap: 12px 18px;
  list-style: none;
  color: var(--navy-900);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-points svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--gold-600);
  stroke-width: 2.4;
}

.hero-visual {
  position: relative;
  align-self: center;
  overflow: hidden;
  min-height: 520px;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
  transform: perspective(1400px) rotateY(-3deg);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(3,7,14,0.45), transparent 30%), linear-gradient(0deg, rgba(3,7,14,0.85), transparent 32%);
  pointer-events: none;
}

.visual-topline,
.visual-footer {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(3, 7, 14, 0.82);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.visual-topline {
  top: 0;
  min-height: 54px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(36, 183, 255, 0.22);
}

.visual-footer {
  bottom: 0;
  min-height: 50px;
  padding: 0 22px;
  border-top: 1px solid rgba(245, 184, 0, 0.22);
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--success);
}

.status-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(34, 197, 139, 0.13);
}

.hero-visual img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(1.05) contrast(1.05);
}

.visual-stat {
  position: absolute;
  z-index: 5;
  width: 165px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(3, 17, 39, 0.82);
  border: 1px solid rgba(36, 183, 255, 0.38);
  border-radius: 12px;
  box-shadow: 0 18px 30px rgba(0,0,0,0.2);
  backdrop-filter: blur(12px);
}

.visual-stat span,
.visual-stat small {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.63rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.visual-stat strong {
  display: block;
  margin: 3px 0;
  color: var(--yellow-400);
  font-size: 1.35rem;
}

.visual-stat-one {
  top: 95px;
  left: 26px;
}

.visual-stat-two {
  right: 24px;
  bottom: 78px;
}

.benefit-band {
  position: relative;
  z-index: 10;
  padding: 44px 0 72px;
  background: var(--white);
}

.benefit-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 24px;
}

.benefit-heading-row .section-label {
  margin-bottom: 0;
}

.benefit-heading-row h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.benefit-card {
  position: relative;
  display: flex;
  min-height: 190px;
  padding: 32px 24px;
  gap: 18px;
  border-right: 1px solid var(--line);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.benefit-card:last-child {
  border-right: 0;
}

.benefit-card::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-600), var(--gold-500));
  border-radius: 999px 999px 0 0;
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 180ms ease;
}

.benefit-card:hover {
  color: var(--white);
  background: var(--navy-900);
  transform: translateY(-6px);
}

.benefit-card:hover::after {
  transform: scaleX(1);
}

.icon-wrap {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--blue-700);
  background: linear-gradient(135deg, var(--mist-100), var(--cream));
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 180ms ease, background 180ms ease;
}

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

.benefit-card:hover .icon-wrap {
  color: var(--black);
  background: var(--yellow-400);
  border-color: var(--yellow-400);
}

.benefit-card h3 {
  margin-bottom: 9px;
  color: inherit;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.92rem;
  transition: color 180ms ease;
}

.benefit-card:hover p {
  color: rgba(255,255,255,0.75);
}

.all-sight-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: var(--white);
  background:
    linear-gradient(145deg, var(--black), var(--navy-950) 48%, #08244f 100%);
}

.all-sight-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(36,183,255,0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,183,255,0.11) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, #000, transparent 78%);
}

.section-orbit {
  position: absolute;
  border: 1px solid rgba(36, 183, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(36, 183, 255, 0.022), 0 0 0 100px rgba(245, 184, 0, 0.018);
}

.section-orbit-one {
  top: -180px;
  right: -160px;
  width: 530px;
  height: 530px;
}

.section-orbit-two {
  bottom: -220px;
  left: -180px;
  width: 480px;
  height: 480px;
}

.all-sight-section .container {
  position: relative;
  z-index: 2;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  align-items: end;
  margin-bottom: 52px;
  gap: 70px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.section-heading-light h2,
.section-heading-light > p {
  color: var(--white);
}

.section-heading-light > p {
  color: rgba(255,255,255,0.72);
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(560px, 1.28fr);
  align-items: center;
  gap: 60px;
}

.product-copy h3 {
  margin-bottom: 18px;
  color: var(--yellow-400);
  font-size: 1.6rem;
}

.product-copy p {
  color: rgba(255,255,255,0.72);
}

.feature-list {
  display: grid;
  margin: 28px 0;
  padding: 0;
  gap: 16px;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 12px;
  color: rgba(255,255,255,0.76);
}

.feature-list svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--yellow-400);
  stroke-width: 2.4;
}

.feature-list strong {
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow-400);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(6px);
}

.dashboard-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--black);
  border: 1px solid rgba(36,183,255,0.32);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-dark), 0 0 0 7px rgba(245,184,0,0.05);
  transform: perspective(1200px) rotateY(-3deg);
}

.dashboard-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(245,184,0,0.18);
  border-radius: inherit;
  pointer-events: none;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 18px;
  color: rgba(255,255,255,0.64);
  background: #020817;
  border-bottom: 1px solid rgba(36,183,255,0.18);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.dashboard-header span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dashboard-header i {
  width: 8px;
  height: 8px;
  background: var(--yellow-400);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--yellow-400);
}

.dashboard-frame img {
  width: 100%;
  height: auto;
}

.dashboard-frame figcaption {
  padding: 12px 18px;
  color: rgba(255,255,255,0.48);
  background: #020817;
  font-size: 0.72rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 62px;
  gap: 20px;
}

.process-card {
  position: relative;
  min-height: 235px;
  padding: 34px;
  background: linear-gradient(150deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.process-card:hover {
  background: linear-gradient(150deg, rgba(245,184,0,0.17), rgba(8,120,239,0.08));
  border-color: rgba(245,184,0,0.55);
  transform: translateY(-7px);
}

.process-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(255,255,255,0.22);
  font-size: 1.8rem;
  font-weight: 900;
}

.process-card > svg {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  fill: none;
  stroke: var(--yellow-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.process-card h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.45rem;
}

.process-card p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.63);
}

.about-section {
  padding: 100px 0;
  background: linear-gradient(125deg, var(--white), var(--mist-100));
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.85fr) minmax(250px, 0.5fr);
  align-items: center;
  gap: 60px;
}

.about-intro h2 {
  margin-bottom: 0;
  font-size: clamp(2.05rem, 3.3vw, 3.3rem);
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-callout {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  justify-content: flex-end;
  padding: 32px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about-callout::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  border: 18px solid var(--yellow-400);
  border-radius: 50%;
  opacity: 0.95;
}

.about-callout::after {
  content: "";
  position: absolute;
  top: 48px;
  right: 47px;
  width: 9px;
  height: 9px;
  background: var(--yellow-400);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(245,184,0,0.11), 0 0 0 52px rgba(36,183,255,0.09);
}

.about-callout strong,
.about-callout span {
  position: relative;
  z-index: 2;
}

.about-callout strong {
  margin-bottom: 10px;
  color: var(--yellow-400);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-callout span {
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.14;
}

.founders-section {
  padding: 110px 0;
  background: var(--white);
}

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

.founder-card {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  min-height: 240px;
  padding: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.founder-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue-600), var(--yellow-400), var(--navy-900));
}

.founder-card:hover {
  border-color: rgba(8,120,239,0.38);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.founder-photo {
  position: relative;
  display: grid;
  place-items: center;
  width: 126px;
  height: 162px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 32%, rgba(255,255,255,0.15), transparent 18%),
    linear-gradient(145deg, var(--navy-800), var(--black));
  border: 4px solid var(--mist-200);
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}

.founder-photo::before {
  content: "";
  position: absolute;
  bottom: -42px;
  width: 112px;
  height: 112px;
  background: linear-gradient(135deg, var(--blue-600), var(--navy-900));
  border-radius: 50% 50% 24px 24px;
}

.founder-photo span {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
  color: var(--yellow-400);
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.founder-photo small {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 7px;
  color: rgba(255,255,255,0.72);
  background: rgba(3,7,14,0.72);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.founder-role {
  margin-bottom: 7px;
  color: var(--blue-700);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-info h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.founder-detail {
  margin-bottom: 0;
  color: var(--slate);
}

.demo-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: linear-gradient(112deg, var(--yellow-400) 0 46%, var(--gold-500) 46% 49%, var(--black) 49% 100%);
}

.demo-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 18% 26%, transparent 0 40px, rgba(3,7,14,0.13) 41px 42px, transparent 43px),
    linear-gradient(135deg, transparent 0 49%, rgba(255,255,255,0.18) 50%, transparent 51%);
  background-size: 180px 180px, 80px 80px;
}

.demo-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: 90px;
}

.demo-copy h2 {
  color: var(--black);
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
}

.demo-copy > p {
  max-width: 570px;
  color: rgba(3,7,14,0.76);
  font-size: 1.04rem;
}

.demo-notes {
  display: grid;
  margin-top: 28px;
  gap: 10px;
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 800;
}

.demo-notes span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.demo-notes svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--blue-700);
  stroke-width: 2.5;
}

.form-card {
  padding: 38px;
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
}

.form-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-700);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin-bottom: 25px;
  font-size: 1.7rem;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: var(--mist-100);
  border: 1px solid #cbd9e6;
  border-radius: 9px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input,
select {
  min-height: 49px;
  padding: 0 14px;
}

textarea {
  min-height: 112px;
  padding: 13px 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(8,120,239,0.12);
}

.field-full {
  grid-column: 1 / -1;
}

.form-security {
  display: flex;
  align-items: flex-start;
  margin: 18px 0 20px;
  gap: 9px;
  color: var(--slate);
  font-size: 0.73rem;
}

.form-security svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--blue-700);
  stroke-width: 1.8;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: var(--white);
  background: var(--navy-950);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("assets/mission-background.webp");
  background-position: right center;
  background-size: cover;
  mix-blend-mode: screen;
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy-950) 0 48%, rgba(3,17,39,0.88) 72%, rgba(3,17,39,0.78));
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 70px;
}

.contact-options {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: grid;
  grid-template-columns: 54px 1fr 28px;
  align-items: center;
  padding: 22px;
  gap: 18px;
  color: var(--white);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.contact-card:hover {
  background: rgba(8,120,239,0.15);
  border-color: rgba(36,183,255,0.45);
  transform: translateX(8px);
}

.contact-card-static:hover {
  transform: none;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--black);
  background: var(--yellow-400);
  border-radius: 50%;
}

.contact-icon svg,
.contact-arrow {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

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

.contact-card small {
  margin-bottom: 3px;
  color: rgba(255,255,255,0.56);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-size: 1rem;
}

.contact-card em {
  margin-top: 4px;
  color: var(--yellow-200);
  font-size: 0.7rem;
  font-style: normal;
}

.contact-arrow {
  width: 23px;
  height: 23px;
  color: var(--yellow-400);
  transition: transform 180ms ease;
}

.contact-card:hover .contact-arrow {
  transform: translateX(5px);
}

.contact-form {
  padding: 36px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-dark);
}

.contact-form .button {
  margin-top: 20px;
}

.site-footer {
  color: rgba(255,255,255,0.68);
  background: var(--black);
  border-top: 5px solid var(--gold-500);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-block: 56px 42px;
  gap: 60px;
}

.footer-brand {
  max-width: 390px;
}

.footer-brand img {
  width: 260px;
  margin-bottom: 18px;
  padding: 8px;
  background: var(--white);
  border-radius: 8px;
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 50px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: var(--yellow-400);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255,255,255,0.64);
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--gold-500);
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 22px;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,0.11);
  font-size: 0.72rem;
}

@media (max-width: 1120px) {
  .header-inner {
    gap: 18px;
  }

  .brand {
    width: 220px;
  }

  .primary-nav a {
    padding-inline: 8px;
  }

  .hero {
    min-height: auto;
    background: var(--white);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 72px 84px;
  }

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

  .hero-visual {
    width: min(100%, 860px);
    min-height: 470px;
    margin-inline: auto;
    transform: none;
  }

  .hero-visual img {
    min-height: 470px;
  }

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

  .benefit-card:nth-child(2) {
    border-right: 0;
  }

  .benefit-card:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .dashboard-frame {
    transform: none;
  }

  .about-layout {
    grid-template-columns: 1fr 1fr;
  }

  .about-callout {
    grid-column: 1 / -1;
    min-height: 210px;
  }

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

  .founder-card {
    max-width: 760px;
  }

  .demo-section {
    background: linear-gradient(180deg, var(--yellow-400) 0 47%, var(--black) 47% 100%);
  }

  .demo-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    justify-content: space-between;
  }

  .menu-button {
    display: block;
    order: 3;
  }

  .header-cta {
    margin-left: auto;
  }

  .primary-nav {
    position: fixed;
    top: calc(var(--header-height) + 7px);
    right: 0;
    bottom: 0;
    display: none;
    width: min(360px, 90vw);
    padding: 30px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    background: var(--navy-950);
    box-shadow: -24px 0 70px rgba(0,0,0,0.28);
  }

  .primary-nav[data-open="true"] {
    display: flex;
  }

  .primary-nav a {
    padding: 16px 12px;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.09);
  }

  .primary-nav a::after {
    right: auto;
    width: 80px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-callout {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand {
    width: 190px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.15rem);
  }

  .hero-layout {
    padding-block: 58px 66px;
    gap: 44px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 410px;
  }

  .hero-visual img {
    object-position: 58% center;
  }

  .visual-stat-one {
    top: 76px;
    left: 14px;
  }

  .visual-stat-two {
    display: none;
  }

  .visual-topline,
  .visual-footer {
    padding-inline: 14px;
    font-size: 0.56rem;
  }

  .benefit-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .benefit-card,
  .benefit-card:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-card:last-child {
    border-bottom: 0;
  }

  .all-sight-section,
  .about-section,
  .founders-section,
  .demo-section,
  .contact-section {
    padding: 82px 0;
  }

  .product-showcase {
    gap: 38px;
  }

  .dashboard-header {
    padding-inline: 11px;
    font-size: 0.52rem;
  }

  .process-card {
    min-height: auto;
  }

  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-photo {
    width: 150px;
    height: 175px;
    margin-inline: auto;
  }

  .form-card,
  .contact-form {
    padding: 26px 20px;
  }

  .form-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .contact-card {
    grid-template-columns: 48px 1fr 22px;
    padding: 18px 16px;
    gap: 13px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }

  .contact-card strong {
    font-size: 0.86rem;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-links {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    align-items: flex-start;
  }
}

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