:root {
  --turquoise: #2fbfb4;
  --turquoise-deep: #1f8f8a;
  --turquoise-soft: #7ed7cf;
  --sky: #7eccf4;
  --mint: #aedda5;
  --white: #ffffff;
  --ink: #16353a;
  --muted: #4f6d72;
  --line: rgba(31, 143, 138, 0.14);
  --grad: linear-gradient(125deg, #7eccf4 0%, #3db8b0 48%, #aedda5 100%);
  --grad-soft: linear-gradient(160deg, rgba(126, 204, 244, 0.28), rgba(61, 184, 176, 0.18) 45%, rgba(174, 221, 165, 0.22));
  --shadow: 0 18px 40px rgba(31, 143, 138, 0.16);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(900px 480px at 8% -10%, rgba(126, 204, 244, 0.35), transparent 60%),
    radial-gradient(700px 420px at 100% 8%, rgba(174, 221, 165, 0.28), transparent 55%),
    linear-gradient(180deg, #f7fcfb 0%, #eef8f7 40%, #f8fbfa 100%);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.page-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background:
    radial-gradient(520px 280px at 70% 20%, rgba(47, 191, 180, 0.12), transparent 70%);
  z-index: -1;
}

main {
  position: relative;
  z-index: 1;
}

.topbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 40;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 16px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: calc(14px + env(safe-area-inset-top, 0px)) 0 14px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: rgba(247, 252, 251, 0.92);
  border-bottom: 1px solid transparent;
}
.topbar.is-solid {
  border-bottom-color: var(--line);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 15px;
}
.brand-mark img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(47, 191, 180, 0.25);
}

.topnav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.topnav a {
  text-decoration: none;
  transition: color .2s ease;
}
.topnav a:hover { color: var(--turquoise-deep); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
  color: #ffffff;
  background-color: #3db8b0;
  background-image: -webkit-linear-gradient(125deg, #7eccf4 0%, #3db8b0 48%, #aedda5 100%);
  background-image: linear-gradient(125deg, #7eccf4 0%, #3db8b0 48%, #aedda5 100%);
  box-shadow: 0 10px 22px rgba(47, 191, 180, 0.28);
}
.btn-primary {
  color: #ffffff;
  background-color: #3db8b0;
  background-image: -webkit-linear-gradient(125deg, #7eccf4 0%, #3db8b0 48%, #aedda5 100%);
  background-image: linear-gradient(125deg, #7eccf4 0%, #3db8b0 48%, #aedda5 100%);
  box-shadow: 0 14px 28px rgba(47, 191, 180, 0.3);
}
.btn-ghost {
  color: var(--turquoise-deep);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(47, 191, 180, 0.22);
}

.hero {
  position: relative;
  /* Gradient on the section itself — Safari drops z-index:-1 layers. */
  background-color: #3db8b0;
  background-image: -webkit-linear-gradient(125deg, #7eccf4 0%, #3db8b0 48%, #aedda5 100%);
  background-image: linear-gradient(125deg, #7eccf4 0%, #3db8b0 48%, #aedda5 100%);
  min-height: min(92vh, 820px);
  min-height: min(92dvh, 820px);
  display: -webkit-grid;
  display: grid;
  -webkit-align-items: end;
  align-items: end;
  -webkit-justify-items: start;
  justify-items: start;
  width: min(1120px, calc(100% - 32px));
  margin: 8px auto 0;
  padding: 0 0 56px;
  overflow: hidden;
  border-radius: 36px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  -webkit-filter: blur(8px);
  filter: blur(8px);
  opacity: 0.45;
  -webkit-animation: drift 12s ease-in-out infinite;
  animation: drift 12s ease-in-out infinite;
}
.hero-orb-a {
  width: 280px; height: 280px;
  left: -60px; top: -40px;
  background: rgba(255,255,255,0.35);
}
.hero-orb-b {
  width: 220px; height: 220px;
  right: 8%; bottom: 12%;
  background: rgba(174, 221, 165, 0.55);
  animation-delay: -4s;
}
.hero-orb-c {
  width: 160px; height: 160px;
  right: 28%; top: 18%;
  background: rgba(126, 204, 244, 0.55);
  animation-delay: -7s;
}
.hero-lotus {
  position: absolute;
  width: min(52vw, 420px);
  right: 4%;
  top: 10%;
  opacity: 0.92;
  -webkit-filter: drop-shadow(0 18px 30px rgba(22, 53, 58, 0.18));
  filter: drop-shadow(0 18px 30px rgba(22, 53, 58, 0.18));
  -webkit-animation: floaty 7s ease-in-out infinite;
  animation: floaty 7s ease-in-out infinite;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 48px 36px 8px;
  color: #ffffff;
}
.eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.88;
}
.brand-hero {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(52px, 10vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 700;
  text-shadow: 0 10px 30px rgba(22, 53, 58, 0.18);
}
.hero-lead {
  margin: 18px 0 0;
  max-width: 28em;
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero .btn-ghost {
  color: var(--turquoise-deep);
  background: rgba(255,255,255,0.92);
}

.marquee {
  position: relative;
  z-index: 1;
  margin: 28px 0 8px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
  -webkit-mask-image: -webkit-linear-gradient(left, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-items: center;
  align-items: center;
  gap: 22px;
  width: -webkit-max-content;
  width: max-content;
  padding: 16px 0;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--turquoise-deep);
  white-space: nowrap;
  will-change: transform;
  -webkit-animation: marquee 28s linear infinite;
  animation: marquee 28s linear infinite;
}
.marquee-track > span {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  white-space: nowrap;
}
.marquee-track .dot {
  color: var(--turquoise);
  opacity: 0.7;
}

.section {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0 24px;
}
.section-tint {
  margin-top: 40px;
  padding: 72px 28px 40px;
  border-radius: 36px;
  background: var(--grad-soft);
  border: 1px solid rgba(255,255,255,0.65);
}
.section-head {
  max-width: 680px;
  margin-bottom: 40px;
}
.section-head .eyebrow { color: var(--turquoise-deep); }
.section-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(30px, 4.5vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.section-lead {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
}

.float-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  min-height: 280px;
}
.plaque {
  position: relative;
  padding: 26px 24px 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transition: transform .35s ease, box-shadow .35s ease;
}
.plaque:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(31, 143, 138, 0.2);
}
.plaque-a { transform: translateY(18px) rotate(-1.2deg); }
.plaque-b { transform: translateY(0) rotate(0.8deg); }
.plaque-c { transform: translateY(28px) rotate(-0.6deg); }
.plaque-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  color: var(--white);
  background: var(--grad);
  box-shadow: 0 10px 20px rgba(47, 191, 180, 0.28);
}
.plaque-icon svg { width: 28px; height: 28px; }
.plaque h3, .info-tile h3, .secure-point h3, .inspire-card h3 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.plaque p, .info-tile p, .secure-point p, .inspire-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 15px;
}

.infogrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.info-tile {
  padding: 22px 18px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: 0 12px 28px rgba(31, 143, 138, 0.1);
}
.info-visual {
  width: 80px;
  height: 80px;
  margin-bottom: 14px;
  border-radius: 22px;
  background: var(--grad);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(47, 191, 180, 0.22);
}
.info-visual svg { width: 72px; height: 72px; }

.security-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: center;
}
.security-orbit {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}
.orbit-ring {
  position: absolute;
  width: min(360px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(47, 191, 180, 0.45);
  animation: spin 28s linear infinite;
}
.orbit-core {
  width: 180px;
  height: 180px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: floaty 6.5s ease-in-out infinite;
}
.orbit-core svg { width: 100%; height: 100%; }

.float-chip {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(47, 191, 180, 0.18);
  box-shadow: 0 12px 24px rgba(31, 143, 138, 0.14);
  font-size: 13px;
  font-weight: 700;
  color: var(--turquoise-deep);
  white-space: nowrap;
  animation: bob 5.5s ease-in-out infinite;
}
.chip-1 { top: 12%; left: 4%; animation-delay: -.5s; }
.chip-2 { top: 18%; right: 0; animation-delay: -1.4s; }
.chip-3 { bottom: 18%; left: 0; animation-delay: -2.2s; }
.chip-4 { bottom: 10%; right: 6%; animation-delay: -3s; }

.security-points {
  display: grid;
  gap: 14px;
}
.secure-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
}
.secure-point .num {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: var(--turquoise);
  font-size: 18px;
  padding-top: 2px;
}

.section-inspire {
  padding-bottom: 40px;
}
.inspire-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.inspire-card {
  padding: 24px 20px;
  border-radius: 24px;
  color: var(--white);
  background: var(--grad);
  box-shadow: var(--shadow);
  min-height: 220px;
}
.inspire-card:nth-child(2) { transform: translateY(18px); }
.inspire-card:nth-child(3) { transform: translateY(8px); }
.inspire-card:nth-child(4) { transform: translateY(26px); }
.inspire-card p { color: rgba(255,255,255,0.9); }

.cta-band {
  width: min(1120px, calc(100% - 32px));
  margin: 40px auto 24px;
  padding: 48px 28px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.78)),
    var(--grad-soft);
  border: 1px solid rgba(255,255,255,0.8);
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-lotus {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(47, 191, 180, 0.28);
}
.cta-band h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.03em;
}
.cta-band p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}
.cta-band .hero-actions { justify-content: center; }

.footer {
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 13px;
}
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
}
.footer a { text-decoration: none; font-weight: 600; color: var(--turquoise-deep); }

/* reveal / motion */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity .7s cubic-bezier(.2,.7,.2,1),
    transform .7s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--d, 0s);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.plaque.reveal.is-in.plaque-a { transform: translateY(18px) rotate(-1.2deg); }
.plaque.reveal.is-in.plaque-b { transform: translateY(0) rotate(0.8deg); }
.plaque.reveal.is-in.plaque-c { transform: translateY(28px) rotate(-0.6deg); }
.inspire-card.reveal.is-in:nth-child(2) { transform: translateY(18px); }
.inspire-card.reveal.is-in:nth-child(3) { transform: translateY(8px); }
.inspire-card.reveal.is-in:nth-child(4) { transform: translateY(26px); }

@-webkit-keyframes marquee {
  from { -webkit-transform: translateX(0); transform: translateX(0); }
  to { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@-webkit-keyframes floaty {
  0%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
  50% { -webkit-transform: translateY(-12px); transform: translateY(-12px); }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@-webkit-keyframes bob {
  0%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
  50% { -webkit-transform: translateY(-8px); transform: translateY(-8px); }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@-webkit-keyframes drift {
  0%, 100% { -webkit-transform: translate(0,0) scale(1); transform: translate(0,0) scale(1); }
  50% { -webkit-transform: translate(18px, -14px) scale(1.05); transform: translate(18px, -14px) scale(1.05); }
}
@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(18px, -14px) scale(1.05); }
}
@-webkit-keyframes spin {
  to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 960px) {
  .topnav { display: none; }
  .float-stage,
  .infogrid,
  .inspire-rail,
  .security-layout {
    grid-template-columns: 1fr 1fr;
  }
  .inspire-card:nth-child(n) { transform: none !important; }
  .plaque-a, .plaque-b, .plaque-c { transform: none; }
  .plaque.reveal.is-in.plaque-a,
  .plaque.reveal.is-in.plaque-b,
  .plaque.reveal.is-in.plaque-c { transform: none; }
}

@media (max-width: 720px) {
  .hero {
    min-height: 78vh;
    border-radius: 28px;
    place-items: end stretch;
  }
  .hero-lotus {
    width: 58vw;
    top: 6%;
    right: -4%;
    opacity: 0.75;
  }
  .hero-copy { padding: 36px 22px 10px; }
  .float-stage,
  .infogrid,
  .inspire-rail,
  .security-layout {
    grid-template-columns: 1fr;
  }
  .security-orbit { min-height: 340px; }
  .float-chip { font-size: 12px; padding: 8px 12px; }
  .section { padding: 64px 0 16px; }
  .section-tint { padding: 48px 18px 28px; }
}
