:root {
  --bg: #F7F9FC;
  --bg2:radial-gradient(900px 500px at 10% 0%, rgba(16, 176, 202, 0.10), transparent 60%),
    radial-gradient(900px 500px at 90% 100%, rgba(27, 38, 96, 0.08), transparent 60%),
    linear-gradient(180deg, #EEF2F9 0%, #F7F9FC 50%, #EEF2F9 100%);
  --surface: #FFFFFF;
  --ink: #1b2660;
  --ink-soft: #5A6388;
  --line: #E4E9F2;
  --primary: #1b2660;
  --primary-deep: #111842;
  --primary-soft: #2A3780;
  --accent: #10b0ca;
  --accent-deep: #0B8FA3;
  --accent-soft: rgba(16, 176, 202, 0.12);
  --accent-glow: rgba(16, 176, 202, 0.35);
  --shadow-sm: 0 1px 2px rgba(27, 38, 96, 0.05);
  --shadow-md: 0 10px 30px rgba(27, 38, 96, 0.08);
  --shadow-lg: 0 24px 50px rgba(27, 38, 96, 0.12);
  --shadow-glow: 0 20px 50px rgba(16, 176, 202, 0.25);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --font: 'Poppins', system-ui, -apple-system, sans-serif;
  --maxw: 1240px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* EaSee pre-landing cinematic intro */
body.intro-active {
  overflow: hidden
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #050914;
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .85s cubic-bezier(.16, 1, .3, 1), visibility .85s ease;
}

.site-intro.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #050914;
}

.site-intro-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(18, 180, 208, .045), transparent 38%),
    linear-gradient(180deg, rgba(5, 9, 20, .06), rgba(5, 9, 20, .14));
  pointer-events: none;
}

.site-intro-skip {
    position: absolute;
    z-index: 2;
    top: 30px;
    right: 34px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(8, 15, 35, .24);
    color: rgba(255, 255, 255, .9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 999px;
    padding: 11px 16px;
    font: 600 12px "DM Sans", sans-serif;
    letter-spacing: .01em;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-8px);
    animation: introControlIn .5s ease 1.2s forwards;
    transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

.site-intro-skip span {
  margin-left: 6px;
  color: #12B4D0
}

.site-intro-skip:hover {
  background: rgba(8, 15, 35, .48);
  border-color: rgba(255, 255, 255, .5);
  transform: translateY(-2px);
}

.site-intro-progress {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 25px;
  width: min(240px, 28vw);
  height: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, .18);
  overflow: hidden;
  border-radius: 999px;
}

.site-intro-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #12B4D0;
  transform-origin: left center;
}

@keyframes introControlIn {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@media (max-width:720px) {
    .site-intro-skip {
        top: 20px;
        right: 18px;
        padding: 10px 13px;
    }

  .site-intro-progress {
    bottom: 20px;
    width: 34vw;
    left: 38%
  }
}

@media (prefers-reduced-motion:reduce) {
  .site-intro {
    transition: opacity .25s ease, visibility .25s ease
  }

  .site-intro-skip {
    animation: none;
    opacity: 1;
    transform: none
  }
}

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 {
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 700;
}

h2 {
  font-size: clamp(32px, 3.8vw, 52px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s cubic-bezier(.2, .7, .2, 1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(27, 38, 96, 0.5);
}

.btn-primary:hover {
  background: var(--primary-soft);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(27, 38, 96, 0.6);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px -10px var(--accent-glow);
}

.btn-accent:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 252, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}

header.scrolled {
  border-color: var(--line);
  background: rgba(247, 249, 252, 0.96);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--primary);
}

.brand .logo-mark {
  height: 68px;
  width: auto;
  flex: none;
  display: block;
  transition: transform .3s ease;
}

.brand:hover .logo-mark {
  transform: scale(1.05);
}

.brand .ee {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 34px;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-soft);
}

.nav-links a {
  transition: color .2s ease;
  position: relative;
}

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

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

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}


.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 12, 39, .66);
  backdrop-filter: blur(12px);
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: .3s
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto
}

.demo-modal {
  position: relative;
  width: min(700px, 100%);
  max-height: 90svh;
  overflow: auto;
  background: #fff;
  border-radius: 30px;
  padding: 28px;
  transform: translateY(25px) scale(.98);
  transition: .35s;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .3)
}

.open .demo-modal {
  transform: none
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #eef2f8;
  color: var(--navy);
  font-size: 25px
}

.demo-modal h2 {
  font: 800 42px/1.02 Manrope;
  letter-spacing: -.05em;
  margin: 0 0 14px
}

.demo-modal>div>p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 25px
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 15px
}

input,
select,
textarea {
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 13px 14px;
  outline: none;
  color: var(--navy);
  background: #fbfcfe;
  transition: .2s;
  resize: vertical
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(18, 180, 208, .12)
}

.form-status {
  min-height: 18px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px
}

.form-status.error {
  color: #c23939
}

.success-state {
  text-align: center;
  padding: 50px 15px
}

.success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--light-cyan);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin: 0 auto 24px
}

.success-state h2 {
  font: 800 48px Manrope;
  letter-spacing: -.05em;
  margin: 0 0 10px
}

.success-state p {
  margin-bottom: 28px
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(16, 176, 202, 0.18), transparent 60%),
    radial-gradient(800px 400px at 0% 100%, rgba(27, 38, 96, 0.10), transparent 55%),
    linear-gradient(180deg, #F7F9FC 0%, #EEF2F9 100%);
  overflow: hidden;
  padding: 80px 0 120px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(16, 176, 202, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(27, 38, 96, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  margin: 20px 0 24px;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;
}

.hero .lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 400;
}

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

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}

.chip {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 9px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.chip b {
  color: var(--primary);
  font-weight: 600;
}

/* Hero Logo Video */
.hero-video {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  border: 1px solid rgba(16, 176, 202, 0.25);
}

.hero-video::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent), transparent 40%, transparent 60%, var(--primary));
  z-index: -1;
  opacity: 0.55;
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse at center, transparent 55%, rgba(17, 24, 66, 0.35) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.video-brand-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(27, 38, 96, 0.15);
}

.video-brand-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(1.25);
  }
}

/* ---------- Sections ---------- */
.section {
  padding: 110px 0;
}

.section-head {
  max-width: 880px;
}

.section-head p {
  font-size: 17px;
  color: "#000000";
  margin: 16px 0px;
  line-height: 1.7;
  font-weight: 400;
}

.modules-section {
  scroll-margin-top: 100px;
  position: relative;
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(16, 176, 202, 0.10), transparent 60%),
    radial-gradient(900px 500px at 90% 100%, rgba(27, 38, 96, 0.08), transparent 60%),
    linear-gradient(180deg, #EEF2F9 0%, #F7F9FC 50%, #EEF2F9 100%);
  overflow: hidden;
}

.modules-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(27, 38, 96, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.55;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
}

.modules-section::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80%;
  background:
    radial-gradient(400px 300px at 20% 30%, rgba(16, 176, 202, 0.12), transparent 60%),
    radial-gradient(400px 300px at 80% 70%, rgba(27, 38, 96, 0.10), transparent 60%),
    radial-gradient(300px 200px at 50% 50%, rgba(16, 176, 202, 0.08), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.modules-section>.wrap {
  position: relative;
  z-index: 1;
}

.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  box-shadow: var(--shadow-sm);
}

.module-tabs-bottom {
  margin-top: 40px;
  margin-bottom: 0;
}



.tab {
  font-family: var(--font);
  font-weight: 500;
  font-size: 14px;
  padding: 12px 24px;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: all .3s ease;
}

.tab:hover {
  color: var(--primary);
}

.tab[aria-selected="true"] {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 16px -6px rgba(27, 38, 96, 0.4);
}

.panel-intro {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.panel-intro .count {
  font-family: var(--font);
  font-size: 12px;
  color: var(--accent-deep);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
}

.panel-intro p {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 400;
}

.panel {
  display: none;
  animation: fadeUp .6s cubic-bezier(.2, .7, .2, 1) both;
}

.panel.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.mod {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all .4s cubic-bezier(.2, .7, .2, 1);
  position: relative;
  backdrop-filter: blur(6px);
}

.mod:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.mod-ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent-deep);
  margin-bottom: 20px;
  transition: all .3s ease;
}

.mod:hover .mod-ic {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
}

.mod-ic svg {
  width: 24px;
  height: 24px;
}

.mod h3 {
  font-size: 19px;
  margin-bottom: 8px;
  font-weight: 600;
}

.mod p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 400;
}

.mod .added {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 999px;
}

.mod.is-added .mod-ic {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.mod.is-added:hover .mod-ic {
  background: var(--accent);
  color: #fff;
}

#mission {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}


#mission::before { display: none; }

#mission .eyebrow {
  color: var(--accent);
}

#mission h2 {
  color: #fff !important;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 28px);
  margin-top: clamp(38px, 5vw, 56px);
  position: relative;
  z-index: 1;
}

.mission-item {
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.mission-item .n {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.mission-item h3 {
  color: #000000;
  font-size: 21px;
  margin: 14px 0 10px;
  font-weight: 600;
}

.mission-item p {
  color: rgba(0, 0, 0, 0.72);
  font-size: 14.5px;
  line-height: 1.6;
  font-weight: 400;
}

.diff {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #E7ECF7;
  position: relative;
  overflow: hidden;
}

.diff::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 176, 202, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.diff .eyebrow {
  color: var(--accent);
}

.diff h2 {
  color: #fff;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.diff-item {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.diff-item .n {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.diff-item h3 {
  color: #fff;
  font-size: 21px;
  margin: 14px 0 10px;
  font-weight: 600;
}

.diff-item p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  line-height: 1.6;
  font-weight: 400;
}

#included {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #E7ECF7;
  position: relative;
  overflow: hidden;
}

#included::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 176, 202, 0.2) 0%, transparent 60%);
  pointer-events: none;
}


#included h2 {
  color: #fff;
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: all .4s cubic-bezier(.2, .7, .2, 1);
}

.fcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.fcard .fic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all .3s ease;
}

.fcard:hover .fic {
  background: var(--accent);
  color: #fff;
}

.fcard .fic svg {
  width: 26px;
  height: 26px;
}

.fcard h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.fcard p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 400;
}

/* ---------- Pricing ---------- */
.pricing {
  background: var(--bg);
}

.price-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
  align-items: start;
}

.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all .4s cubic-bezier(.2, .7, .2, 1);
}

.plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.plan.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--accent-soft);
  transform: scale(1.02);
}

.plan.featured:hover {
  transform: scale(1.02) translateY(-6px);
}

.plan .tag {
  position: absolute;
  top: -14px;
  left: 44px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 20px -6px var(--accent-glow);
}

.plan h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.plan .sub {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 8px 0 22px;
  font-weight: 400;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.price-now {
  font-family: var(--font);
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.price-was {
  font-family: var(--font);
  font-size: 16px;
  color: var(--ink-soft);
  text-decoration: line-through;
  font-weight: 400;
}

.price-per {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 400;
}

/* GST badge next to price */
.gst-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 4px;
  vertical-align: middle;
}

.gst-badge svg {
  width: 12px;
  height: 12px;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.plan li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink);
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-weight: 400;
}

.plan li:first-child {
  border-top: none;
}

.plan li svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--accent);
  margin-top: 3px;
}

/* Per-plan renewal callout (top price already shows the all-inclusive first-year amount) */
.price-breakdown {
  margin-top: 22px;
  background: var(--accent-soft);
  border: 1px solid rgba(16, 176, 202, 0.25);
  border-radius: var(--radius-md);
  padding: 14px 18px;
}

.pb-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 400;
}

.pb-line .pb-lbl {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.pb-line .pb-sub {
  font-size: 11px;
  color: var(--ink-soft);
  opacity: 0.85;
}

.pb-line .pb-val {
  font-family: var(--font);
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.pb-renew .pb-lbl span:first-child {
  color: var(--accent-deep);
  font-weight: 600;
}

.pb-renew .pb-val {
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 16px;
}

.addons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.addon {
  flex: 1;
  min-width: 260px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all .3s;
}

.addon:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.addon .ac {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.addon h4 {
  font-size: 16px;
  margin: 0 0 4px;
  font-family: var(--font);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.addon .ap {
  font-family: var(--font);
  font-weight: 600;
  color: var(--accent-deep);
  font-size: 14px;
}

.addon .gst-mini {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--accent-soft);
  padding: 3px 8px;
  border-radius: 999px;
}

.addon .gst-mini.exempt {
  color: #5A6388;
  background: #EEF2F9;
}

.addon p {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 400;
}

/* configurator */
.config {
  margin-top: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #E7ECF7;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.config::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 176, 202, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.config>* {
  position: relative;
  z-index: 1;
}

.config h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 10px;
}

.config .ctip {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin-bottom: 28px;
  font-weight: 400;
}

.seg {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 5px;
  gap: 5px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.seg button {
  font-family: var(--font);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: none;
  padding: 11px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .3s ease;
}

.seg button.on {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 6px 16px -4px var(--accent-glow);
}

.toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.switch {
  width: 50px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  transition: background .3s ease;
  flex: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform .3s cubic-bezier(.2, .7, .2, 1);
}

.toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle input:checked+.switch {
  background: var(--accent);
  border-color: var(--accent);
}

.toggle input:checked+.switch::after {
  transform: translateX(22px);
}

.toggle input:focus-visible+.switch {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.bill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 32px;
  backdrop-filter: blur(10px);
}

.bill-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
  font-weight: 400;
  gap: 12px;
}

.bill-line .lbl-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bill-line .sub-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

.bill-line span:last-child {
  font-family: var(--font);
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.bill-line.gst-row {
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  padding-top: 12px;
  margin-top: 4px;
}

.bill-line.gst-row .sub-lbl {
  color: var(--accent);
}

.bill-line.exempt-row .sub-lbl {
  color: rgba(255, 255, 255, 0.5);
}

.bill-total {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 14px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.bill-total .lbl {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.bill-total .amt {
  font-family: var(--font);
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  letter-spacing: -0.02em;
}

.bill-renew {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 18px;
  font-weight: 400;
}

.price-foot {
  margin-top: 36px;
  font-size: 13.5px;
  color: var(--ink-soft);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-weight: 400;
}

.price-foot b {
  color: var(--accent-deep);
  font-weight: 600;
}

/* ---------- What you get with us (benefits band) ---------- */
.benefits-band {
  margin-top: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.benefits-band .bb-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.benefits-band h3 {
  font-size: 22px;
  font-weight: 600;
}

.benefits-band .bb-tip {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 28px;
  font-weight: 400;
}

/* ---------- Founder ---------- */

.founder{
  background-color: #0b123d;
}

.founder-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 56px;
  margin-top: 16px;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: center;
}

.founder h2{
  color: #fff;
}

.fimg {
  position: relative;
}

.fimg img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
}

.fimg::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: calc(var(--radius-lg) + 6px);
  border: 1px dashed var(--accent);
  opacity: 0.4;
  pointer-events: none;
}

.founder-meta {
  margin-top: 24px;
  text-align: center;
}

.founder-meta .fname {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}

.founder-meta .frole {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-top: 4px;
}

.founder-msg .quote {
  font-size: 60px;
  line-height: 0.8;
  color: var(--accent);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.founder-msg .lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 500;
 }

.founder-msg p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-weight: 400;
  text-align: justify;
}

.founder-sign {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.founder-sign .sname {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.founder-sign .srole {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.tcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 26px 34px;
  text-align: center;
  transition: all .4s cubic-bezier(.2, .7, .2, 1);
}

.tcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.tphoto {
  width: 100%;
  aspect-ratio: 4/5;
  margin: 0 auto 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
  box-shadow: 0 22px 44px -18px rgba(27, 38, 96, 0.45), 0 0 0 4px var(--accent-soft);
}

.tphoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tcard h3 {
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 600;
}

.tcard .role {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

/* =========================================
   FINAL CTA - SINGLE ROW
   ========================================= */

.cta-final .wrap {
  width: 100%;
}

.cta-final__content {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-final__content .eyebrow {
  display: block;
  margin-bottom: 22px;
}

.cta-final__content h2 {
  width: 100%;
  margin: 0;
 
  font-size: clamp(42px, 4.2vw, 72px);
 
  letter-spacing: -0.045em;
  text-align: center;
  color: #000000;
}

.cta-final__content p {
  max-width: 700px;
  margin: 28px auto 0;
  text-align: center;
  color: #1B2600;
}

.cta-final__action {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-final__action .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 900px) {

  .cta-final__content h2 {
    white-space: normal;
    font-size: clamp(38px, 7vw, 58px);
  }

  .cta-final__content p {
    max-width: 620px;
  }
}

@media (max-width: 600px) {

  .cta-final__content h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  .cta-final__content p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 22px;
  }

  .cta-final__action {
    margin-top: 30px;
  }
}

footer {
  background: var(--primary-deep);
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 0;
  font-size: 14px;
}

.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

footer .brand {
  color: #fff;
}

footer .brand .ee {
  color: var(--accent);
}

footer .brand .logo-mark {
  height: 68px;
}

footer p {
  font-size: 14px;
  max-width: 420px;
  line-height: 1.6;
  font-weight: 400;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.foot-brandcol .brand {
  margin-bottom: 20px;
}

.foot-tag {
  color: rgba(255, 255, 255, 0.6);
}

.foot-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.foot-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.foot-item svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.92);
  flex: 0 0 20px;
  margin-top: 2px;
}

.footer-contact-icon {
  display: block;
}

.foot-item:hover .footer-contact-icon {
  color: #fff;
}

.foot-item p,
.foot-item a {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-weight: 400;
  max-width: none;
}

.foot-item a {
  display: block;
  transition: color .2s ease;
}

.foot-item a:hover {
  color: var(--accent);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 26px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.reveal {
  opacity: 0;
  transform: perspective(1100px) translate3d(0, 46px, -42px) rotateX(8deg) scale(.965);
  transform-origin: 50% 0%;
  filter: blur(2px);
  transition:
    opacity .85s cubic-bezier(.2, .75, .2, 1),
    transform .95s cubic-bezier(.16, 1, .3, 1),
    filter .85s ease;
  will-change: opacity, transform, filter;
}

.reveal.in {
  opacity: 1;
  transform: perspective(1100px) translate3d(0, 0, 0) rotateX(0deg) scale(1);
  filter: blur(0);
}

/* A little more depth for grouped content as it enters the viewport. */
.benefits-grid,
.diff-grid,
.mission-grid,
.future-grid,
.founder-grid,
.modules-grid {
  perspective: 1200px;
}

.benefits-grid .reveal:nth-child(2),
.future-grid .reveal:nth-child(2),
.diff-grid .reveal:nth-child(2),
.mission-grid .reveal:nth-child(2),
.modules-grid .reveal:nth-child(2) { transition-delay: .07s; }
.benefits-grid .reveal:nth-child(3),
.future-grid .reveal:nth-child(3),
.diff-grid .reveal:nth-child(3),
.mission-grid .reveal:nth-child(3),
.modules-grid .reveal:nth-child(3) { transition-delay: .14s; }
.benefits-grid .reveal:nth-child(4),
.future-grid .reveal:nth-child(4),
.diff-grid .reveal:nth-child(4),
.mission-grid .reveal:nth-child(4),
.modules-grid .reveal:nth-child(4) { transition-delay: .21s; }
.benefits-grid .reveal:nth-child(5),
.future-grid .reveal:nth-child(5),
.diff-grid .reveal:nth-child(5),
.mission-grid .reveal:nth-child(5),
.modules-grid .reveal:nth-child(5) { transition-delay: .28s; }
.benefits-grid .reveal:nth-child(6),
.future-grid .reveal:nth-child(6),
.diff-grid .reveal:nth-child(6),
.mission-grid .reveal:nth-child(6),
.modules-grid .reveal:nth-child(6) { transition-delay: .35s; }

@media (max-width: 700px) {
  .reveal {
    transform: perspective(900px) translate3d(0, 30px, -20px) rotateX(5deg) scale(.98);
    filter: blur(1px);
    transition-duration: .7s;
  }

  .reveal.in {
    transform: perspective(900px) translate3d(0, 0, 0) rotateX(0deg) scale(1);
  }
}

@media(max-width:980px) {
  .hero {
    padding: 60px 0 80px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-video {
    aspect-ratio: 16/10;
  }

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

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

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

  .founder-card {
    padding: 40px;
  }

  .fimg {
    max-width: 320px;
    margin: 0 auto;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .foot-brandcol {
    grid-column: 1 / -1;
  }

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

  .plan.featured {
    transform: none;
  }

  .plan.featured:hover {
    transform: translateY(-6px);
  }

  .config {
    grid-template-columns: 1fr;
    padding: 36px;
  }

  .brand .logo-mark {
    height: 56px;
  }
}

@media(max-width:680px) {
  .nav-links {
    display: none;
  }

  .section {
    padding: 70px 0;
  }

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

  .diff-grid,
  .mission-grid,
  .future-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .founder-card {
    padding: 28px;
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .foot-brandcol {
    grid-column: auto;
  }

  .foot-bottom {
    justify-content: flex-start;
  }

  .plan {
    padding: 32px;
  }

  .price-now {
    font-size: 34px;
  }

  .tabs {
    width: 100%;
  }

  .tab {
    flex: 1;
    text-align: center;
    padding: 10px 16px;
  }

  .brand .logo-mark {
    height: 52px;
  }
}

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

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

/* CINEMATIC HERO V2 START */

/* =========================================================
   Cinematic Hero — scoped so it overrides the original
   .hero / .hero-video styling without changing other sections.
   ========================================================= */

.hero.hero-cinematic {
  position: relative;
  height: 100svh;
  min-height: 680px;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  display: block;
  background: #0b123d;
}

.hero.hero-cinematic::before {
  display: none;
}

.hero-cinematic .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0b123d;
  transform: scale(calc(1 + var(--hero-progress, 0) * .035));
  transform-origin: center;
  will-change: transform;
}

.hero-cinematic .hero-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(16, 176, 202, .32), transparent 28%),
    linear-gradient(135deg, #0b123d, #1b2660 58%, #0b8fa3);
}

.hero-cinematic .hero-video {
  position: absolute;
  inset: -4%;
  z-index: 1;
  width: 108%;
  height: 108%;
  max-width: none;
  aspect-ratio: auto;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  margin: 0;
  background: #0b123d;
  box-shadow: none;
  opacity: 0;
  will-change: opacity, transform;
  transition: none;
}

.hero-cinematic .hero-video::before,
.hero-cinematic .hero-video::after {
  display: none;
}

.hero-cinematic .hero-video-one {
  opacity: 1;
  transform: scale(calc(1 + var(--hero-progress, 0) * .025)) translate3d(calc(var(--hero-progress, 0) * -18px), calc(var(--hero-progress, 0) * 8px), 0);
}


.hero-cinematic .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 10, 42, .72) 0%, rgba(5, 10, 42, .52) 38%, rgba(5, 10, 42, .18) 74%, rgba(5, 10, 42, .28) 100%),
    linear-gradient(180deg, rgba(5, 10, 42, .28), transparent 30%, rgba(5, 10, 42, .34));
  opacity: calc(.94 - var(--hero-progress, 0) * .18);
}

.hero-cinematic .hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 42%, rgba(2, 7, 32, .52) 100%);
}

.hero-cinematic .hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  perspective: 1200px;
}

.hero-cinematic .hero-state {
  position: absolute;
  left: 0;
  top: 50%;
  width: min(660px, 58%);
  margin: 0;
  color: #fff;
  transform-style: preserve-3d;
  will-change: opacity, transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-cinematic .hero-state-one {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
}

.hero-cinematic .hero-state-two {
  opacity: 0;
  transform: translate3d(0, calc(-50% + 46px), -45px);
}

.hero-cinematic .hero-state .eyebrow {
  color: rgba(255, 255, 255, .78);
}

.hero-cinematic .hero-state h1 {
  margin: 20px 0 24px;
  max-width: 720px;
  color: #fff;
  font-size: clamp(48px, 6vw, 86px);
  line-height: .98;
  letter-spacing: -.055em;
}

.hero-cinematic .hero-state h1 em {
  font-style: normal;
  color: #39c9dd;
}

.hero-cinematic .hero-state h1 .accent {
  background: linear-gradient(135deg, #39c9dd, #a3eaf1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-cinematic .hero-state .lede {
  max-width: 590px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
  line-height: 1.7;
}

.hero-cinematic .hero-state .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .30);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
}

.hero-cinematic .hero-state .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-cinematic .hero-state .chip {
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .22);
  backdrop-filter: blur(10px);
}

.hero-cinematic .hero-state .chip b {
  color: #44ccdf;
}

.hero-cinematic .hero-progress {
  position: absolute;
  z-index: 12;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  padding: 0;
  background: rgba(255, 255, 255, .18);
  overflow: hidden;
}

.hero-cinematic .hero-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: #24c5db;
  box-shadow: 0 0 18px rgba(36, 197, 219, .75);
  will-change: transform;
}

.hero-cinematic .hero-scroll-cue {
  position: absolute;
  z-index: 12;
  left: 50%;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .76);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: opacity .06s linear, transform .06s linear;
}

.hero-cinematic .hero-scroll-cue i {
  width: 1px;
  height: 30px;
  background: linear-gradient(#39c9dd, transparent);
}


.hero-cinematic.hero-complete .hero-media {
  transform: scale(1.035);
}

/* Header changes with the same Hero timeline. */
body:has(.hero-cinematic) header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease, backdrop-filter .22s ease, color .22s ease;
}

body:has(.hero-cinematic) header .nav-links a {
  color: rgba(0, 0, 0, 0.88);
}

body:has(.hero-cinematic) header .btn-primary {
  background: #18245e;
  color: #fff;
}

body:has(.hero-cinematic) header.hero-header-state-two {
  background: rgba(247, 249, 252, .92);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(17, 24, 66, .08);
  backdrop-filter: blur(18px);
}

body:has(.hero-cinematic) header.hero-header-state-two .nav-links a {
  color: var(--ink-soft);
}

body:has(.hero-cinematic) header.hero-header-state-two .btn-primary {
  background: var(--primary);
  color: #fff;
}

@media(max-width:980px) {
  .hero.hero-cinematic {
    min-height: 650px;
  }

  .hero-cinematic .hero-state {
    width: 74%;
  }

  .hero-cinematic .hero-state h1 {
    font-size: clamp(44px, 7vw, 68px);
  }
}

@media(max-width:680px) {
  .hero.hero-cinematic {
    min-height: 100svh;
  }

  .hero-cinematic .hero-content {
    width: calc(100% - 36px);
  }

  .hero-cinematic .hero-state {
    width: 100%;
  }

  .hero-cinematic .hero-state h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .hero-cinematic .hero-state .lede {
    font-size: 14px;
    max-width: 100%;
  }

  .hero-cinematic .hero-scroll-cue {
    bottom: 18px;
  }
}

@media(prefers-reduced-motion:reduce) {

  .hero-cinematic .hero-media,
  .hero-cinematic .hero-video,
  .hero-cinematic .hero-state,
  .hero-cinematic .hero-scroll-cue {
    transform: none !important;
    transition: none !important;
  }
}

/* CINEMATIC HERO V2 END */

/* =========================================================
   RESPONSIVE POLISH + DEMO CTA / FORM V2
   Keeps the existing copy and visual language intact.
   ========================================================= */
.hero-cinematic .hero-state h1,
.hero-cinematic .hero-heading {
  /* Keep the headline readable without becoming oversized on large displays. */
  font-size: clamp(42px, min(5.2vw, 7vh), 72px);
}

.hero-cinematic .hero-copy {
  width: min(720px, 62vw);
}

.hero-cinematic .hero-state .lede,
.hero-cinematic .lede {
  font-size: clamp(14px, min(1.05vw, 1.9vh), 17px);
}

.hero-cinematic .hero-state .chips {
  gap: 8px;
}

.hero-cinematic .chip {
  font-size: clamp(11px, min(.82vw, 1.55vh), 13px);
  padding: 8px 13px;
}

body:has(.hero-cinematic) header,
body:has(.hero-cinematic) header.hero-header-state-two,
header,
header.scrolled {
  background: #fff !important;
  border-bottom-color: rgba(27, 38, 96, .08) !important;
  box-shadow: 0 5px 24px rgba(17, 24, 66, .06);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body:has(.hero-cinematic) header .nav-links a,
body:has(.hero-cinematic) header.hero-header-state-two .nav-links a,
header .nav-links a {
  color: var(--ink) !important;
}

body:has(.hero-cinematic) header .btn-primary,
body:has(.hero-cinematic) header.hero-header-state-two .btn-primary,
header .btn-primary {
  background: var(--primary) !important;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transition: transform .25s ease, opacity .25s ease;
}

.mobile-nav {
  display: none;
}

#contact {
  scroll-margin-top: 90px;
}

.cta-final {
  padding: clamp(76px, 9vw, 120px) 0;
  text-align: center;
}

.cta-final .section-head {
  max-width: 850px;
  margin: 0 auto;
}

/* .cta-final h2 {
  font-size: clamp(30px, min(4vw, 6vh), 52px);
} */

.cta-final p {
  font-size: clamp(15px, 1.2vw, 17px);
}

.cta-final .hero-actions {
  gap: 12px;
}

.cta-final .btn-light {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.cta-final .btn-light:hover {
  background: #f3fbfd;
  color: var(--primary);
  border-color: #f3fbfd;
}

body.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  z-index: 300;
  padding: clamp(12px, 3vw, 28px);
  background: rgba(7, 13, 39, .70);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.demo-modal {
  max-height: min(900px, calc(100svh - 28px));
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(27, 38, 96, .08);
  border-radius: clamp(20px, 3vw, 30px);
  background: #fff;
  box-shadow: 0 35px 100px rgba(0, 0, 0, .30);
}

.demo-modal h2,
.success-state h2 {
  font-family: var(--font);
  color: var(--primary);
}

.demo-modal h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -.04em;
  margin: 12px 0 10px;
}

.demo-modal>div>p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 26px;
}

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

.demo-modal label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0 0 16px;
  color: var(--primary);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
}

.demo-modal input,
.demo-modal select,
.demo-modal textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d9e1ee;
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--primary);
  background: #f7f9fc;
  font: 400 14px/1.45 var(--font);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.demo-modal textarea {
  min-height: 112px;
}

.demo-modal input::placeholder,
.demo-modal textarea::placeholder {
  color: #8b94a9;
}

.demo-modal input:hover,
.demo-modal select:hover,
.demo-modal textarea:hover {
  border-color: #b9c6da;
  background: #fbfcfe;
}

.demo-modal input:focus,
.demo-modal select:focus,
.demo-modal textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(16, 176, 202, .12);
}

.demo-modal .btn-full {
  width: 100%;
  justify-content: center;
  min-height: 50px;
  margin-top: 2px;
}

.form-status {
  min-height: 18px;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 12px;
}

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

.modal-close {
  z-index: 2;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid #dfe5ef;
  background: #f4f7fb;
  color: var(--primary);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.modal-close:hover {
  background: var(--primary);
  color: #fff;
  transform: rotate(90deg);
}

.success-state {
  padding: 40px 10px 20px;
}

.success-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 20px;
  background: var(--accent-soft);
  color: var(--accent-deep);
}

@media (max-width:1100px) {
  .nav {
    height: 82px;
  }

  .brand .logo-mark {
    height: 58px;
  }

  .nav-links {
    gap: 22px;
    font-size: 14px;
  }

  .nav-cta {
    gap: 10px;
  }

  .btn {
    font-size: 14px;
    padding: 12px 22px;
  }

  .hero.hero-cinematic {
    min-height: 620px;
  }

  .hero-cinematic .hero-copy {
    width: min(680px, 64vw);
  }

  .hero-cinematic .hero-state h1,
  .hero-cinematic .hero-heading {
    font-size: clamp(40px, min(5.15vw, 6.8vh), 68px);
  }
}

@media (max-width:800px) {
  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav {
    height: 76px;
  }

  .brand .logo-mark {
    height: 52px;
  }

  .nav-links {
    display: none;
  }

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

  .nav-toggle {
    display: flex;
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 20px 50px rgba(17, 24, 66, .16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }

  header.mobile-open .mobile-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .mobile-nav a {
    padding: 13px 14px;
    border-radius: 10px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
  }

  .mobile-nav a:hover {
    background: var(--bg);
  }

  header.mobile-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  header.mobile-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  header.mobile-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero.hero-cinematic {
    min-height: 100svh;
  }

  .hero-cinematic .hero-content {
    width: 100%;
    padding-top: 76px;
    padding-bottom: 54px;
  }

  .hero-cinematic .hero-copy {
    width: 100%;
    max-width: 680px;
  }

  .hero-cinematic .hero-state h1,
  .hero-cinematic .hero-heading {
    font-size: clamp(38px, min(9.2vw, 6.3vh), 58px);
    letter-spacing: -.045em;
  }

  .hero-cinematic .hero-state .lede,
  .hero-cinematic .lede {
    font-size: 14px;
    line-height: 1.65;
    max-width: 620px;
  }

  .hero-cinematic .chip {
    font-size: 11px;
    padding: 7px 11px;
  }

  .demo-modal {
    max-height: calc(100svh - 20px);
    padding: 24px 18px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .demo-modal h2 {
    padding-right: 32px;
  }
}

@media (max-width:480px) {
  .nav-cta>.btn {
    padding: 10px 15px;
    font-size: 12px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-cinematic .hero-content {
    padding-top: 72px;
    padding-bottom: 48px;
  }

  .hero-cinematic .hero-heading-stage {
    min-height: 125px;
    margin-top: 14px;
    margin-bottom: 18px;
  }

  .hero-cinematic .hero-state h1,
  .hero-cinematic .hero-heading {
    font-size: clamp(34px, 10.5vw, 50px);
  }

  .hero-cinematic .hero-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .hero-cinematic .chips {
    gap: 7px;
    margin-top: 28px;
  }

  .hero-cinematic .chip {
    padding: 6px 9px;
  }

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

  .cta-final .hero-actions .btn {
    justify-content: center;
  }
}

@media (max-height:820px) and (min-width:801px) {
  .hero.hero-cinematic {
    min-height: 600px;
  }

  .hero-cinematic .hero-content {
    padding-top: 70px;
    padding-bottom: 40px;
  }

  .hero-cinematic .hero-copy {
    width: min(680px, 62vw);
  }

  .hero-cinematic .hero-state h1,
  .hero-cinematic .hero-heading {
    font-size: clamp(40px, min(5.15vw, 6.7vh), 66px);
  }

  .hero-cinematic .hero-state .lede {
    margin-bottom: 22px;
  }

  .hero-cinematic .chips {
    margin-top: 24px;
  }
}


/* Mission section — independent reveal animation */
#mission .mission-grid {
  perspective: 1200px;
}

#mission .mission-item.reveal {
  transform-origin: 50% 0%;
}

#mission .mission-item.reveal.in {
  transform: perspective(900px) translate3d(0, 0, 0) rotateX(0deg) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  #mission .mission-item.reveal,
  #mission .mission-item.reveal.in {
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}


/* Mobile module grid — center the native cards without changing desktop layout */
@media (max-width: 680px) {
  .modules-section .grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .modules-section .grid .card {
    width: min(300px, 100%);
    max-width: 100%;
    box-sizing: border-box;
  }
}


/* =========================================================
   CTA — split text + inline form
   ========================================================= */
.cta-split {
  background: #fff;
  color: var(--ink);
  overflow: hidden;
}

.cta-split .cta-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
}

.cta-split__copy {
  max-width: 620px;
}

.cta-split__copy .eyebrow,
.cta-split__form-label {
  display: inline-block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-split__copy h2 {
  color: var(--primary);
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: .98;
  letter-spacing: -3px;
  margin: 0 0 24px;
}

.cta-split__copy p {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.7;
  margin: 0;
}

.cta-split__form {
  width: 100%;
  max-width: 650px;
  justify-self: end;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #f8fafc;
  box-sizing: border-box;
}

.cta-split__form-head {
  margin-bottom: 24px;
}

.cta-split__form-head h3 {
  color: var(--primary);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
  margin: 0;
}

.cta-split__form form {
  width: 100%;
}

.cta-split__form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.cta-split__form label {
  min-width: 0;
}

.cta-split__form input,
.cta-split__form select,
.cta-split__form textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.cta-split__form textarea {
  resize: vertical;
}

.cta-split__success {
  padding: 20px 0 8px;
}

.cta-split__success .success-icon {
  margin-bottom: 18px;
}

.cta-split__success h3 {
  color: var(--primary);
  font-size: 34px;
  margin: 0 0 10px;
}

.cta-split__success p {
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .cta-split .cta-split__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-split__copy,
  .cta-split__form {
    max-width: 100%;
  }

  .cta-split__form {
    justify-self: stretch;
  }
}

@media (max-width: 620px) {
  .cta-split__form {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .cta-split__form .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-split__copy h2 {
    font-size: clamp(38px, 10.5vw, 52px);
    letter-spacing: -2px;
  }
}

@media (max-width: 420px) {
  .cta-split__form {
    padding: 20px 15px;
  }
}


/* =========================================================
   CTA split — final visual polish
   Scoped only to the new split CTA.
   ========================================================= */

.cta-final.cta-split {
  background: radial-gradient(900px 500px at 10% 0%, rgba(16, 176, 202, 0.10), transparent 60%),
    radial-gradient(900px 500px at 90% 100%, rgba(27, 38, 96, 0.08), transparent 60%),
    linear-gradient(180deg, #EEF2F9 0%, #F7F9FC 50%, #EEF2F9 100%) !important;
  color: var(--ink);
  padding: clamp(72px, 8vw, 120px) 0;
}

.cta-final.cta-split::before {
  display: none !important;
}

.cta-final.cta-split > .wrap {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.cta-final.cta-split .cta-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
  justify-items: center;
}

.cta-final.cta-split .cta-split__copy {
  max-width: 610px;
  text-align: left;
  align-self: start;
  /* padding-top: clamp(18px, 4vw, 64px); */
}

.cta-final.cta-split .cta-split__copy .eyebrow {
  display: block;
  width: fit-content;
  margin: 0 0 20px;
  color: var(--accent);
  text-align: left;
}

.cta-final.cta-split .cta-split__copy h2 {
  max-width: 590px;
  margin: 0 0 24px;
  color: var(--primary);
  text-align: left;
  font-size: clamp(42px, 4.8vw, 68px);
  line-height: 1.02;
  letter-spacing: -2.8px;
}

.cta-final.cta-split .cta-split__copy p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  text-align: left;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
}

.cta-final.cta-split .cta-split__form {
  width: 100%;
  max-width: 620px;
  justify-self: end;
  align-self: start;
  padding: clamp(28px, 3.5vw, 44px);
  border: 1px solid #dbe3ed;
  border-radius: 22px;
  background: radial-gradient(900px 500px at 10% 0%, rgba(16, 176, 202, 0.10), transparent 60%),
    radial-gradient(900px 500px at 90% 100%, rgba(27, 38, 96, 0.08), transparent 60%),
    linear-gradient(180deg, #EEF2F9 0%, #F7F9FC 50%, #EEF2F9 100%);
  box-shadow: 0 20px 60px rgba(27, 38, 96, .08);
  box-sizing: border-box;
}

.cta-final.cta-split .cta-split__form-head {
  margin: 0 0 26px;
  text-align: left;
}

.cta-final.cta-split .cta-split__form-label {
  display: block;
  width: fit-content;
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.cta-final.cta-split .cta-split__form-head h3 {
  margin: 0;
  color: var(--primary);
  text-align: left;
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.1;
  letter-spacing: -1px;
}

.cta-final.cta-split #ctaDemoForm {
  width: 100%;
  text-align: left;
}

.cta-final.cta-split #ctaDemoForm .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
  align-items: start;
}

.cta-final.cta-split #ctaDemoForm label {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 7px;
  width: 100%;
  min-width: 0;
  margin: 0;
  color: var(--primary);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.3;
  text-align: left;
}

.cta-final.cta-split #ctaDemoForm input,
.cta-final.cta-split #ctaDemoForm select,
.cta-final.cta-split #ctaDemoForm textarea {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #c8d3e1;
  border-radius: 10px;
  outline: none;
  background: #fff !important;
  color: var(--primary) !important;
  -webkit-text-fill-color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(27, 38, 96, .02);
  font: 400 14px/1.45 var(--font);
  opacity: 1 !important;
  box-sizing: border-box;
}

.cta-final.cta-split #ctaDemoForm input::placeholder,
.cta-final.cta-split #ctaDemoForm textarea::placeholder {
  color: #7b8799 !important;
  opacity: 1;
  -webkit-text-fill-color: #7b8799;
}

.cta-final.cta-split #ctaDemoForm input:hover,
.cta-final.cta-split #ctaDemoForm select:hover,
.cta-final.cta-split #ctaDemoForm textarea:hover {
  border-color: #aebdce;
  background: #fff !important;
}

.cta-final.cta-split #ctaDemoForm input:focus,
.cta-final.cta-split #ctaDemoForm select:focus,
.cta-final.cta-split #ctaDemoForm textarea:focus {
  border-color: var(--accent);
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(16, 176, 202, .12);
}

.cta-final.cta-split #ctaDemoForm > label {
  display: flex;
  margin-top: 18px;
}

.cta-final.cta-split #ctaDemoForm textarea {
  min-height: 108px;
  resize: vertical;
}

.cta-final.cta-split #ctaDemoForm .btn-full {
  width: 100%;
  min-width: 150px;
  margin-top: 18px;
  justify-content: center;
}

.cta-final.cta-split #ctaDemoStatus {
  text-align: left;
}

@media (max-width: 1000px) {
  .cta-final.cta-split .cta-split__grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr);
    gap: 42px;
  }

  .cta-final.cta-split .cta-split__copy h2 {
    font-size: clamp(40px, 5vw, 58px);
  }
}

@media (max-width: 820px) {
  .cta-final.cta-split {
    padding: 72px 0;
  }

  .cta-final.cta-split .cta-split__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .cta-final.cta-split .cta-split__copy {
    padding-top: 0;
    max-width: 720px;
  }

  .cta-final.cta-split .cta-split__form {
    max-width: 720px;
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .cta-final.cta-split > .wrap {
    width: min(100% - 32px, 720px);
  }

  .cta-final.cta-split {
    padding: 60px 0;
  }

  .cta-final.cta-split .cta-split__copy h2 {
    font-size: clamp(38px, 10vw, 52px);
    letter-spacing: -2px;
  }

  .cta-final.cta-split .cta-split__form {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .cta-final.cta-split #ctaDemoForm .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 420px) {
  .cta-final.cta-split > .wrap {
    width: min(100% - 24px, 720px);
  }

  .cta-final.cta-split .cta-split__form {
    padding: 20px 15px;
  }
}


/* ---------- Benefits — Future Ready UI structure ---------- */
#included {
  background:  var(--ink);
  color:var(--bg);
  position: relative;
  overflow: hidden;
}

#included::before {
  display: none;
}

#included h2 {
  color: var(--bg);
}

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

#included .benefits-card-1,
#included .benefits-card-2,
#included .benefits-card-3 {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: all .4s cubic-bezier(.2, .7, .2, 1);
}

#included .benefits-card-1:hover,
#included .benefits-card-2:hover,
#included .benefits-card-3:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

#included .benefits-icon-1,
#included .benefits-icon-2,
#included .benefits-icon-3 {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all .3s ease;
}

#included .benefits-card-1:hover .benefits-icon-1,
#included .benefits-card-2:hover .benefits-icon-2,
#included .benefits-card-3:hover .benefits-icon-3 {
  background: var(--accent);
  color: #fff;
}

#included .benefits-icon-1 svg,
#included .benefits-icon-2 svg,
#included .benefits-icon-3 svg {
  width: 26px;
  height: 26px;
}

#included .benefits-card-1 h3,
#included .benefits-card-2 h3,
#included .benefits-card-3 h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

#included .benefits-card-1 p,
#included .benefits-card-2 p,
#included .benefits-card-3 p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 400;
}

#included .benefits-plan-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 400;
}

#included .benefits-plan-note b {
  color: var(--accent-deep);
  font-weight: 600;
}

@media(max-width:980px) {
  #included .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media(max-width:680px) {
  #included .benefits-grid {
    grid-template-columns: 1fr;
  }
}

#differentiators{
  background-color: var(--ink);
  color: white;
}

#differentiators h2{
  color: white;
}

#pillars,#features,#team{
  background: var(--bg2);
  color: rgb(0, 0, 0);
}


/* ---------- Section-specific Future Ready grids ---------- */
#mission .future-grid,
#pillars .future-grid,
#differentiators .future-grid,
#features .future-grid {
  display: grid;
  gap: 24px;
}

#mission .future-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
#pillars .future-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
#differentiators .future-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
#features .future-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 980px) {
  #pillars .future-grid,
  #differentiators .future-grid,
  #features .future-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #mission .future-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  #mission .future-grid,
  #pillars .future-grid,
  #differentiators .future-grid,
  #features .future-grid {
    grid-template-columns: 1fr;
  }
}


/* ---------- Vision: active-section left-to-right reveal ---------- */
#vision .vision-typing-text {
  opacity: 0;
  transform: translateX(-28px);
  clip-path: inset(0 100% 0 0);
  will-change: transform, opacity, clip-path;
}

#vision.vision-is-active .vision-typing-text {
  animation: visionTextReveal 2s cubic-bezier(.22, .61, .36, 1) forwards;
}

#vision.vision-is-active .vision-typing-text:nth-child(2) {
  animation-delay: .3s;
}

@keyframes visionTextReveal {
  0% {
    opacity: 0;
    transform: translateX(-28px);
    clip-path: inset(0 100% 0 0);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  #vision .vision-typing-text,
  #vision.vision-is-active .vision-typing-text {
    opacity: 1;
    transform: none;
    clip-path: none;
    animation: none !important;
  }
}

/* ---------- FAQ ---------- */
.faq-section {
  position: relative;
  background: var(--surface);
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  width: min(620px, 65vw);
  height: min(620px, 65vw);
  top: 8%;
  right: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 176, 202, 0.08) 0%, rgba(16, 176, 202, 0) 68%);
  pointer-events: none;
}

.faq-section > .wrap {
  position: relative;
  z-index: 1;
}

.faq-head {
  max-width: 820px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.faq-list {
  width: min(980px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.faq-item:hover {
  background: #fff;
}

.faq-item[open] {
  background: #fff;
  box-shadow: 0 12px 32px rgba(27, 38, 96, 0.06);
  border-color: rgba(16, 176, 202, 0.28);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(20px, 2.2vw, 28px) clamp(18px, 2.5vw, 32px);
  color: var(--ink);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 600;
  line-height: 1.4;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:focus-visible {
  outline: 3px solid rgba(16, 176, 202, 0.25);
  outline-offset: -3px;
}

.faq-icon {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--primary);
  transform: translate(-50%, -50%);
  transition: transform .3s ease, background .3s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon {
  background: var(--accent-soft);
  border-color: rgba(16, 176, 202, 0.3);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 clamp(18px, 2.5vw, 32px) clamp(22px, 2.5vw, 30px);
  max-width: 850px;
}

.faq-answer p {
  color: var(--ink-soft);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.8;
}

@media (max-width: 680px) {
  .faq-section {
    padding: 72px 0;
  }

  .faq-item summary {
    gap: 16px;
    padding: 19px 16px;
  }

  .faq-icon {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }

  .faq-answer {
    padding: 0 16px 22px;
  }
}


/* ---------- benefits typing-slider ---------- */
#included .benefits-typing-text {
  opacity: 0;
  transform: translateX(-28px);
  clip-path: inset(0 100% 0 0);
  will-change: transform, opacity, clip-path;
}

#included.benefits-is-active .benefits-typing-text {
  animation: benefitsTextReveal 2s cubic-bezier(.22, .61, .36, 1) forwards;
}

@keyframes benefitsTextReveal {
  0% {
    opacity: 0;
    transform: translateX(-28px);
    clip-path: inset(0 100% 0 0);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  #included .benefits-typing-text,
  #included.benefits-is-active .benefits-typing-text {
    opacity: 1;
    transform: none;
    clip-path: none;
    animation: none !important;
  }
}


/* ---------- cta typing-slider ---------- */
#contact .cta-typing-text {
  opacity: 0;
  transform: translateX(-28px);
  clip-path: inset(0 100% 0 0);
  will-change: transform, opacity, clip-path;
}

#contact.cta-is-active .cta-typing-text {
  animation: ctaTextReveal 2s cubic-bezier(.22, .61, .36, 1) forwards;
}

@keyframes ctaTextReveal {
  0% {
    opacity: 0;
    transform: translateX(-28px);
    clip-path: inset(0 100% 0 0);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  #contact .cta-typing-text,
  #contact.cta-is-active .cta-typing-text {
    opacity: 1;
    transform: none;
    clip-path: none;
    animation: none !important;
  }
}


/* ---------- differentiators typing-slider ---------- */
#differentiators .differentiators-typing-text {
  opacity: 0;
  transform: translateX(-28px);
  clip-path: inset(0 100% 0 0);
  will-change: transform, opacity, clip-path;
}

#differentiators.differentiators-is-active .differentiators-typing-text {
  animation: differentiatorsTextReveal 2s cubic-bezier(.22, .61, .36, 1) forwards;
}

@keyframes differentiatorsTextReveal {
  0% {
    opacity: 0;
    transform: translateX(-28px);
    clip-path: inset(0 100% 0 0);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  #differentiators .differentiators-typing-text,
  #differentiators.differentiators-is-active .differentiators-typing-text {
    opacity: 1;
    transform: none;
    clip-path: none;
    animation: none !important;
  }
}


/* ---------- faq typing-slider ---------- */
#faq .faq-typing-text {
  opacity: 0;
  transform: translateX(-28px);
  clip-path: inset(0 100% 0 0);
  will-change: transform, opacity, clip-path;
}

#faq.faq-is-active .faq-typing-text {
  animation: faqTextReveal 2s cubic-bezier(.22, .61, .36, 1) forwards;
}

@keyframes faqTextReveal {
  0% {
    opacity: 0;
    transform: translateX(-28px);
    clip-path: inset(0 100% 0 0);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  #faq .faq-typing-text,
  #faq.faq-is-active .faq-typing-text {
    opacity: 1;
    transform: none;
    clip-path: none;
    animation: none !important;
  }
}


/* ---------- founder typing-slider ---------- */
#founder .founder-typing-text {
  opacity: 0;
  transform: translateX(-28px);
  clip-path: inset(0 100% 0 0);
  will-change: transform, opacity, clip-path;
}

#founder.founder-is-active .founder-typing-text {
  animation: founderTextReveal 2s cubic-bezier(.22, .61, .36, 1) forwards;
}

@keyframes founderTextReveal {
  0% {
    opacity: 0;
    transform: translateX(-28px);
    clip-path: inset(0 100% 0 0);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  #founder .founder-typing-text,
  #founder.founder-is-active .founder-typing-text {
    opacity: 1;
    transform: none;
    clip-path: none;
    animation: none !important;
  }
}


/* ---------- future-ready typing-slider ---------- */
#features .future-ready-typing-text {
  opacity: 0;
  transform: translateX(-28px);
  clip-path: inset(0 100% 0 0);
  will-change: transform, opacity, clip-path;
}

#features.future-ready-is-active .future-ready-typing-text {
  animation: future-readyTextReveal 2s cubic-bezier(.22, .61, .36, 1) forwards;
}

@keyframes future-readyTextReveal {
  0% {
    opacity: 0;
    transform: translateX(-28px);
    clip-path: inset(0 100% 0 0);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  #features .future-ready-typing-text,
  #features.future-ready-is-active .future-ready-typing-text {
    opacity: 1;
    transform: none;
    clip-path: none;
    animation: none !important;
  }
}


/* ---------- mission typing-slider ---------- */
#mission .mission-typing-text {
  opacity: 0;
  transform: translateX(-28px);
  clip-path: inset(0 100% 0 0);
  will-change: transform, opacity, clip-path;
}

#mission.mission-is-active .mission-typing-text {
  animation: missionTextReveal 2s cubic-bezier(.22, .61, .36, 1) forwards;
}

@keyframes missionTextReveal {
  0% {
    opacity: 0;
    transform: translateX(-28px);
    clip-path: inset(0 100% 0 0);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  #mission .mission-typing-text,
  #mission.mission-is-active .mission-typing-text {
    opacity: 1;
    transform: none;
    clip-path: none;
    animation: none !important;
  }
}


/* ---------- modules typing-slider ---------- */
#modules .modules-typing-text {
  opacity: 0;
  transform: translateX(-28px);
  clip-path: inset(0 100% 0 0);
  will-change: transform, opacity, clip-path;
}

#modules.modules-is-active .modules-typing-text {
  animation: modulesTextReveal 2s cubic-bezier(.22, .61, .36, 1) forwards;
}

@keyframes modulesTextReveal {
  0% {
    opacity: 0;
    transform: translateX(-28px);
    clip-path: inset(0 100% 0 0);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  #modules .modules-typing-text,
  #modules.modules-is-active .modules-typing-text {
    opacity: 1;
    transform: none;
    clip-path: none;
    animation: none !important;
  }
}


/* ---------- principles typing-slider ---------- */
#pillars .principles-typing-text {
  opacity: 0;
  transform: translateX(-28px);
  clip-path: inset(0 100% 0 0);
  will-change: transform, opacity, clip-path;
}

#pillars.principles-is-active .principles-typing-text {
  animation: principlesTextReveal 2s cubic-bezier(.22, .61, .36, 1) forwards;
}

@keyframes principlesTextReveal {
  0% {
    opacity: 0;
    transform: translateX(-28px);
    clip-path: inset(0 100% 0 0);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  #pillars .principles-typing-text,
  #pillars.principles-is-active .principles-typing-text {
    opacity: 1;
    transform: none;
    clip-path: none;
    animation: none !important;
  }
}


/* ---------- team typing-slider ---------- */
#team .team-typing-text {
  opacity: 0;
  transform: translateX(-28px);
  clip-path: inset(0 100% 0 0);
  will-change: transform, opacity, clip-path;
}

#team.team-is-active .team-typing-text {
  animation: teamTextReveal 2s cubic-bezier(.22, .61, .36, 1) forwards;
}

@keyframes teamTextReveal {
  0% {
    opacity: 0;
    transform: translateX(-28px);
    clip-path: inset(0 100% 0 0);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  #team .team-typing-text,
  #team.team-is-active .team-typing-text {
    opacity: 1;
    transform: none;
    clip-path: none;
    animation: none !important;
  }
}


/* ---------- Mobile typing-slider safety ---------- */
@media (max-width: 680px) {
  #included .benefits-typing-text {
    max-width: 100%;
    white-space: normal;
  }
}

@media (max-width: 680px) {
  #contact .cta-typing-text {
    max-width: 100%;
    white-space: normal;
  }
}

@media (max-width: 680px) {
  #differentiators .differentiators-typing-text {
    max-width: 100%;
    white-space: normal;
  }
}

@media (max-width: 680px) {
  #faq .faq-typing-text {
    max-width: 100%;
    white-space: normal;
  }
}

@media (max-width: 680px) {
  #founder .founder-typing-text {
    max-width: 100%;
    white-space: normal;
  }
}

@media (max-width: 680px) {
  #features .future-ready-typing-text {
    max-width: 100%;
    white-space: normal;
  }
}

@media (max-width: 680px) {
  #mission .mission-typing-text {
    max-width: 100%;
    white-space: normal;
  }
}

@media (max-width: 680px) {
  #modules .modules-typing-text {
    max-width: 100%;
    white-space: normal;
  }
}

@media (max-width: 680px) {
  #pillars .principles-typing-text {
    max-width: 100%;
    white-space: normal;
  }
}

@media (max-width: 680px) {
  #team .team-typing-text {
    max-width: 100%;
    white-space: normal;
  }
}


/* ---------- Mobile typing-slider visibility ---------- */
@media (max-width: 680px) {
  #included .benefits-typing-text,
  #contact .cta-typing-text,
  #differentiators .differentiators-typing-text,
  #faq .faq-typing-text,
  #founder .founder-typing-text,
  #features .future-ready-typing-text,
  #mission .mission-typing-text,
  #modules .modules-typing-text,
  #pillars .principles-typing-text,
  #team .team-typing-text {
    white-space: normal;
    max-width: 100%;
    width: 100%;
  }
}





/* =========================================================
   HERO HEADLINE — CLEAN SEQUENTIAL HANDOFF
   Reserve the complete multi-line H1 height so the CTA/chips
   never collide with the headline on smaller screens.
   ========================================================= */
.hero-cinematic .hero-heading-stage {
  position: relative;
  min-height: clamp(190px, 13vw, 210px);
  margin-top: 10px;
  margin-bottom: 22px;
  overflow: visible;
}

.hero-cinematic .hero-heading-stage .hero-heading {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  margin: 20px 0 24px;
  pointer-events: none;
  will-change: opacity, transform, filter;
  clip-path: none !important;
}

.hero-cinematic .hero-heading-one {
  z-index: 2;
}

.hero-cinematic .hero-heading-two {
  z-index: 1;
}

@media (max-width: 800px) {
  .hero-cinematic .hero-heading-stage {
    min-height: 150px;
    margin-top: 12px;
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .hero-cinematic .hero-heading-stage {
    min-height: 180px;
    margin-top: 12px;
    margin-bottom: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cinematic .hero-heading-one,
  .hero-cinematic .hero-heading-two {
    transform: none !important;
    filter: none !important;
  }
}


/* =========================================================
   PRELOADER VIDEO — MOBILE PORTRAIT COMPOSITION
   Uses the dedicated portrait crop so the intro fills the
   mobile preloader cleanly and the final EaSee logo/text
   remains completely visible.
   ========================================================= */
@media (max-width: 600px) {
  .site-intro {
    background: #fff;
  }

  .site-intro-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background: #fff;
  }
}

/* Skip Intro — force top-right placement */
.site-intro .site-intro-skip {
  position: absolute !important;
  top: 30px !important;
  right: 34px !important;
  bottom: auto !important;
  left: auto !important;
}

@media (max-width: 700px) {
  .site-intro .site-intro-skip {
    top: 20px !important;
    right: 18px !important;
    bottom: auto !important;
    left: auto !important;
  }
}

/* ---------- Reference healthcare icon system ---------- */
.ea-icon-img{
  width:30px;
  height:30px;
  display:block;
  flex:0 0 auto;
  object-fit:contain;
  object-position:center;
}
.mod-ic .ea-icon-img{width:30px;height:30px;}
.foot-item .ea-icon-img{width:18px;height:18px;margin-top:3px;}

.brand-mark{
  width:40px;
  height:40px;
  border:2px solid currentColor;
  border-radius:50%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  line-height:1;
  text-align:center;
  color:var(--accent-deep);
  letter-spacing:-.02em;
}
.brand-mark strong{font-size:13px;font-weight:800;}
.brand-mark small{font-size:5px;font-weight:600;letter-spacing:.02em;margin-top:2px;}
.future-ready-card-1:hover .brand-mark{color:#fff;}

@media(max-width:680px){
  .mod-ic .ea-icon{width:28px;height:28px;}
  .brand-mark{width:38px;height:38px;}
}


/* Larger module/benefit icons without a filled hover background */
#modules .mod-ic,
#included :is(.benefits-icon-1,.benefits-icon-2,.benefits-icon-3) {
  width: 62px;
  height: 62px;
  background: transparent !important;
  border-radius: 0;
}
#modules .mod-ic .ea-icon-img,
#included :is(.benefits-icon-1,.benefits-icon-2,.benefits-icon-3) .ea-icon-img {
  width: 44px;
  height: 44px;
  transition: transform .28s ease;
}
#modules .module-card:hover .mod-ic,
#included :is(.benefits-card-1:hover .benefits-icon-1,.benefits-card-2:hover .benefits-icon-2,.benefits-card-3:hover .benefits-icon-3) {
  background: transparent !important;
}
#modules .module-card:hover .mod-ic .ea-icon-img,
#included :is(.benefits-card-1:hover .benefits-icon-1,.benefits-card-2:hover .benefits-icon-2,.benefits-card-3:hover .benefits-icon-3) .ea-icon-img {
  transform: scale(1.12);
}

/* ---------- Benefits visual cards ---------- */
#included .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

#included .benefits-card-1,
#included .benefits-card-2,
#included .benefits-card-3 {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s cubic-bezier(.2,.7,.2,1), border-color .3s ease;
}

#included .benefits-card-1:hover,
#included .benefits-card-2:hover,
#included .benefits-card-3:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

#included .benefits-visual {
  width: 100%;
  height: clamp(190px, 18vw, 255px);
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: #edf6ff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#included .benefits-visual-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}

#included .benefits-card-1:hover .benefits-visual-img,
#included .benefits-card-2:hover .benefits-visual-img,
#included .benefits-card-3:hover .benefits-visual-img {
  transform: scale(1.035);
}

#included .benefits-content {
  padding: 26px 28px 30px;
  flex: 1;
}

#included .benefits-card-1 h3,
#included .benefits-card-2 h3,
#included .benefits-card-3 h3 {
  margin: 0 0 10px;
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.2;
  font-weight: 650;
}

#included .benefits-card-1 p,
#included .benefits-card-2 p,
#included .benefits-card-3 p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 400;
}

#included .benefits-plan-note {
  margin-top: 24px;
}

@media (max-width: 980px) {
  #included .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #included .benefits-visual {
    height: clamp(190px, 30vw, 235px);
  }
}

@media (max-width: 680px) {
  #included .benefits-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  #included .benefits-visual {
    height: min(58vw, 250px);
  }
  #included .benefits-content {
    padding: 22px 22px 25px;
  }
}
/* =========================================================
   MODULE IMAGE CARDS
========================================================= */

#modules .grid .mod {
  display: flex;
  flex-direction: column;

  padding: 18px;
  overflow: hidden;

  min-height: 360px;
}


/* Large module illustration area */
#modules .mod-media {
  width: 100%;
  height: 165px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: -2px 0 14px;

  overflow: hidden;

  border-radius: 16px;

  background:
    linear-gradient(
      180deg,
      rgba(238, 246, 255, .72),
      rgba(247, 250, 255, .35)
    );
}


/* Individual transparent module image */
#modules .ea-module-img {
  display: block;

  width: 94%;
  height: 94%;

  object-fit: contain;
  object-position: center;

  transition:
    transform .35s cubic-bezier(.2, .7, .2, 1);
}


/* Image animation */
#modules .mod:hover .ea-module-img {
  transform: scale(1.045);
}


/* Heading */
#modules .mod h3 {
  margin-bottom: 8px;
  line-height: 1.25;
}


/* =========================================================
   RESPONSIVE
========================================================= */

/* Smaller desktop / tablet landscape */
@media (max-width: 1100px) {

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

  #modules .mod-media {
    height: 150px;
  }
}


/* Tablet */
@media (max-width: 820px) {

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

  #modules .grid .mod {
    min-height: 340px;
  }
}


/* Mobile */
@media (max-width: 680px) {

  #modules .grid {
    grid-template-columns: 1fr;
  }

  #modules .grid .card {
    width: min(340px, 100%);
  }

  #modules .grid .mod {
    min-height: 0;
  }

  #modules .mod-media {
    height: 175px;
  }
}

/* =========================================================
   HERO — LARGE DESKTOP / 1440P + 4K RESPONSIVE FIX
   Keep the existing laptop/mobile composition unchanged.
   On wide displays the cinematic headings need a wider stage;
   otherwise the second line wraps to a third line and the CTA
   can visually collide with the animated headline.
   ========================================================= */
@media (min-width: 1201px) {
  .hero-cinematic .hero-copy {
    width: min(900px, 70vw);
  }

  .hero-cinematic .hero-heading-stage {
    min-height: 250px;
  }

  .hero-cinematic .hero-heading-stage .hero-heading {
    max-width: 900px;
  }

  .hero-cinematic .hero-state h1,
  .hero-cinematic .hero-heading {
    font-size: clamp(58px, min(5.15vw, 6.8vh), 76px);
  }
}

/* Extra-wide displays: prevent the copy from becoming visually tiny
   relative to the viewport while keeping the layout anchored to the
   existing .wrap/grid system. */
@media (min-width: 2000px) {
   .hero-cinematic .hero-heading-stage {
    min-height: 450px;
  }
  .hero-cinematic .hero-copy {
    width: min(920px, 62vw);
  }

  .hero-cinematic .hero-heading-stage .hero-heading {
    max-width: 1200px;
  }

  .hero-cinematic .hero-state h1,
  .hero-cinematic .hero-heading {
    font-size: clamp(64px, min(4.2vw, 7vh), 82px);
  }
}

/* ---------- Video Showcase ---------- */
.video-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(520px 320px at 0% 22%, rgba(16, 176, 202, 0.08), transparent 68%),
    radial-gradient(520px 320px at 100% 18%, rgba(16, 176, 202, 0.07), transparent 68%),
    linear-gradient(180deg, #F8FBFE 0%, #F7F9FC 100%);
}

.video-showcase::before,
.video-showcase::after {
  content: "";
  position: absolute;
  border: 48px solid rgba(16, 176, 202, 0.055);
  border-radius: 50%;
  pointer-events: none;
}

.video-showcase::before {
  width: 210px;
  height: 210px;
  left: -150px;
  top: 120px;
}

.video-showcase::after {
  width: 250px;
  height: 250px;
  right: -175px;
  top: 70px;
}

.video-showcase > .wrap {
  position: relative;
  z-index: 1;
}

.video-showcase__head {
  max-width: 920px;
  margin: 0 auto clamp(34px, 4.5vw, 56px);
  text-align: center;
}

.video-showcase__head .eyebrow {
  display: inline-block;
  margin-bottom: 10px;
}

.video-showcase__head h2 {
  margin: 0;
  color: var(--primary);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.video-showcase__head h2 span {
  color: var(--accent);
}

.video-showcase__head p {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.7;
}

.video-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 32px);
}

.video-showcase__card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(27, 38, 96, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease;
}

.video-showcase__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.video-showcase__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #eaf0f7;
  overflow: hidden;
}

.video-showcase__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-showcase__content {
  padding: clamp(20px, 2vw, 28px) clamp(20px, 2.2vw, 32px) clamp(22px, 2.2vw, 30px);
}

.video-showcase__content h3 {
  color: var(--primary);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.25;
  margin-bottom: 7px;
}

.video-showcase__content p {
  color: var(--ink-soft);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.65;
}

.video-showcase__cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2.2vw, 30px);
  margin-top: clamp(28px, 3.5vw, 44px);
  padding: clamp(22px, 2.5vw, 30px) clamp(22px, 3vw, 40px);
  border: 1px solid rgba(16, 176, 202, 0.10);
  border-radius: var(--radius-lg);
  background: linear-gradient(100deg, rgba(218, 247, 252, 0.94), rgba(231, 247, 251, 0.72));
}

.video-showcase__cta-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(16, 176, 202, 0.22);
}

.video-showcase__cta-icon span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
}

.video-showcase__cta-copy h3 {
  color: var(--primary);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.3;
  margin-bottom: 5px;
}

.video-showcase__cta-copy p {
  color: var(--ink-soft);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.55;
}

.video-showcase__cta-button {
  white-space: nowrap;
  text-decoration: none;
  border-radius: 999px;
  padding: 15px 28px;
}

.video-showcase__cta-button span {
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 900px) {
  .video-showcase__grid {
    gap: 20px;
  }

  .video-showcase__cta {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .video-showcase__cta-button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .video-showcase {
    padding: 78px 0;
  }

  .video-showcase__grid {
    grid-template-columns: 1fr;
  }

  .video-showcase__card:hover {
    transform: none;
  }

  .video-showcase__cta {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 16px;
  }

  .video-showcase__cta-button {
    grid-column: auto;
    justify-self: center;
  }
}

@media (max-width: 420px) {
  .video-showcase__cta {
    padding: 22px 18px;
  }

  .video-showcase__cta-icon {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .video-showcase__cta-icon span {
    border-top-width: 8px;
    border-bottom-width: 8px;
    border-left-width: 12px;
  }

  .video-showcase__cta-button {
    width: 100%;
    justify-content: center;
  }
}
