/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* HSL Tailored Neon Color Palette */
  --bg: #070b1a;
  --bg-rgb: 7, 11, 26;
  --bg2: #101936;
  --bg2-rgb: 16, 25, 54;

  --teal: #00e5b0;
  --teal-rgb: 0, 229, 176;
  --teal-dark: #00b087;
  --teal2: #00c8f0;
  --teal2-rgb: 0, 200, 240;

  --orange: #ff6a2a;
  --orange-rgb: 255, 106, 42;
  --amber: #ffb15c;
  --amber-rgb: 255, 177, 92;

  --purple: #7c3cff;
  --purple-rgb: 124, 60, 255;

  --white: #f5f2ea;
  --dim: rgba(180, 200, 255, 0.42);
  --gb: rgba(255, 255, 255, 0.07);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   RESET & FOUNDATIONS
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  --landing-scroll-progress: 0;
  --landing-scroll-orbit: 0px;
  --landing-scroll-rotate: 0deg;
  --landing-scroll-rotate-inverse: 0deg;
  --landing-scroll-galaxy-opacity: 0.42;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  cursor: none; /* Hide default cursor to use custom 3D cursor */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   CUSTOM CURSOR (RESPONSIVE INTERACTIVE STATES)
   ========================================================================== */
#cur {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 20px var(--teal),
    0 0 50px rgba(0, 229, 176, 0.5);
  transition:
    transform 0.1s ease,
    background-color 0.3s ease;
}

#cur-ring {
  position: fixed;
  z-index: 9998;
  pointer-events: none;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(0, 229, 176, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    height 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.3s ease,
    background-color 0.3s ease;
}

/* Cursor Interactive Hover States */
body.hover-active #cur {
  transform: translate(-50%, -50%) scale(0.6);
  background: var(--teal2);
  box-shadow: 0 0 15px var(--teal2);
}

body.hover-active #cur-ring {
  width: 55px;
  height: 55px;
  border-color: rgba(0, 200, 240, 0.8);
  background: rgba(0, 200, 240, 0.05);
}

body.hover-btn #cur {
  transform: translate(-50%, -50%) scale(0.4);
  background: var(--orange);
  box-shadow: 0 0 20px var(--orange);
}

body.hover-btn #cur-ring {
  width: 65px;
  height: 65px;
  border-color: rgba(255, 106, 42, 0.6);
  background: rgba(255, 106, 42, 0.1);
}

/* ==========================================================================
   SCROLL LINE CANVAS
   ========================================================================== */
#lineCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 200;
}

.mobile-scroll-orbit {
  display: none;
}

.floating-login {
  position: fixed;
  top: 86px;
  right: 34px;
  z-index: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(0, 229, 176, 0.62);
  color: #061016;
  background: linear-gradient(135deg, #00e5b0, #58e6ff);
  box-shadow:
    0 0 36px rgba(0, 229, 176, 0.34),
    0 16px 40px rgba(0, 0, 0, 0.28);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.floating-login:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 52px rgba(0, 229, 176, 0.52),
    0 18px 46px rgba(0, 0, 0, 0.32);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 229, 176, 0.06);
  background: rgba(7, 11, 26, 0.65);
  transition:
    border-bottom-color 0.3s,
    background 0.3s;
}

.logo {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 3px;
  background: linear-gradient(110deg, #fff 40%, var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nl {
  display: flex;
  gap: 32px;
}

.nl a {
  font-size: 13px;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.2s;
}

.nl a:hover {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-login {
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(0, 229, 176, 0.45);
  color: var(--teal);
  background: rgba(0, 229, 176, 0.1);
  text-decoration: none;
  box-shadow: 0 0 24px rgba(0, 229, 176, 0.12);
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}

.nav-login:hover {
  color: #05080f;
  border-color: var(--teal);
  background: var(--teal);
  box-shadow: 0 0 42px rgba(0, 229, 176, 0.35);
}

.ncta {
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(0, 229, 176, 0.1);
  border: 1px solid rgba(0, 229, 176, 0.28);
  color: var(--teal);
  text-decoration: none;
  transition: all 0.2s;
}

.ncta:hover {
  background: rgba(0, 229, 176, 0.2);
}

/* ==========================================================================
   HERO SECTION (3D PRESENCE)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 40px 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 94, 35, 0.22), transparent 22%),
    radial-gradient(circle at 12% 35%, rgba(255, 80, 35, 0.14), transparent 28%),
    linear-gradient(180deg, #080b18 0%, #101936 52%, #070b1a 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 120, 45, 0.07) 0px,
    rgba(255, 120, 45, 0.07) 22px,
    rgba(138, 155, 70, 0.05) 22px,
    rgba(138, 155, 70, 0.05) 44px,
    rgba(20, 28, 60, 0.03) 44px,
    rgba(20, 28, 60, 0.03) 66px
  );
  filter: blur(0.5px);
  opacity: 0.5;
  animation: prismSweep 10s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes prismSweep {
  from {
    transform: translateX(-8%) translateY(3%);
    opacity: 0.2;
  }
  to {
    transform: translateX(8%) translateY(-3%);
    opacity: 0.6;
  }
}

.grid3d {
  position: absolute;
  inset: 0;
  z-index: 1;
  perspective: 600px;
  overflow: hidden;
  pointer-events: none;
}

.gp {
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%) rotateX(55deg);
  width: 220%;
  height: 180%;
  background-image:
    linear-gradient(rgba(0, 229, 176, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 176, 0.08) 1px, transparent 1px);
  background-size: 55px 55px;
  transform-origin: center bottom;
  animation: gps 7s linear infinite;
}

@keyframes gps {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -55px;
  }
}

.grid3d::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 100%, transparent 25%, var(--bg) 70%),
    linear-gradient(to bottom, var(--bg) 0%, transparent 28%, transparent 72%, var(--bg) 100%);
}

.hcontent {
  position: relative;
  z-index: 10;
}

.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid rgba(0, 229, 176, 0.25);
  background: rgba(0, 229, 176, 0.07);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  animation: fu 0.8s 0.2s ease forwards;
}

.hbd {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 6px var(--teal);
  }
  50% {
    opacity: 0.3;
  }
}

.htitle {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 1.02;
  letter-spacing: -3px;
  margin-bottom: 28px;
}

.wd {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.lt {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s;
}

.lt.vis {
  transform: translateY(0);
  opacity: 1;
}

.t-teal {
  background: linear-gradient(120deg, var(--teal) 0%, var(--teal2) 55%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hsub {
  font-size: 18px;
  font-weight: 300;
  color: var(--dim);
  max-width: 540px;
  line-height: 1.75;
  margin: 0 auto 44px;
  opacity: 0;
  animation: fu 0.9s 0.9s ease forwards;
}

@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hacts {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  opacity: 0;
  animation: fu 0.9s 1.1s ease forwards;
}

.mbtn {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding: 15px 36px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
  will-change: transform;
}

.mp {
  background: var(--teal);
  color: #05080f;
  box-shadow: 0 0 40px rgba(0, 229, 176, 0.35);
}

.mp::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.mp:hover::after {
  transform: translateX(100%);
}

.mp:hover {
  box-shadow: 0 0 70px rgba(0, 229, 176, 0.6);
}

.mg {
  border: 1px solid var(--gb);
  color: var(--dim);
}

.mg:hover {
  border-color: rgba(0, 229, 176, 0.35);
  color: var(--white);
}

.sbar {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 60px;
  opacity: 0;
  animation: fu 0.9s 1.4s ease forwards;
}

.si {
  text-align: center;
}

.sv {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 32px;
  background: linear-gradient(120deg, var(--white), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sl {
  font-size: 12px;
  color: var(--dim);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.sd {
  width: 1px;
  background: var(--gb);
  align-self: stretch;
}

/* ==========================================================================
   HERO MOCKUP (INTERACTIVE 3D PERSPECTIVE DECK)
   ========================================================================== */
.hmock {
  position: relative;
  z-index: 10;
  margin-top: 72px;
  opacity: 0;
  animation: fu 1s 1.6s ease forwards;
  perspective: 1500px; /* Real 3D depth context */
  width: 100%;
  display: flex;
  justify-content: center;
}

.mwrap {
  width: min(820px, 92vw);
  position: relative;
  transform-style: preserve-3d; /* Key to make floating items push forward in 3D */
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.mglow {
  position: absolute;
  inset: -30px;
  border-radius: 28px;
  background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(0, 229, 176, 0.18), transparent);
  filter: blur(20px);
  pointer-events: none;
  transform: translateZ(-20px);
}

.mframe {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(0, 229, 176, 0.14);
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
  transform-style: preserve-3d;
  animation: mf 6s ease-in-out infinite;
  transition: border-color 0.3s;
}

/* Glass glare reflection layer */
.mframe-glare {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.mwrap:hover .mframe-glare {
  opacity: 1;
}

.mwrap:hover .mframe {
  border-color: rgba(0, 229, 176, 0.3);
}

@keyframes mf {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.mbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dr {
  background: #ff5f56;
}
.dy {
  background: #febc2e;
}
.dg {
  background: #28c840;
}

.murl {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--dim);
  font-family: monospace;
}

.mc {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mst {
  border-radius: 10px;
  padding: 16px;
  background: rgba(0, 229, 176, 0.05);
  border: 1px solid rgba(0, 229, 176, 0.1);
  transition:
    transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    background 0.3s;
}

.mst:hover {
  background: rgba(0, 229, 176, 0.08);
  transform: translateZ(15px);
}

.msl2 {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dim);
}

.msv {
  font-family: "Syne", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--teal);
  margin: 4px 0 2px;
}

.mss {
  font-size: 11px;
  color: rgba(0, 229, 176, 0.45);
}

.mrow {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
}

.mev {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--gb);
  border-radius: 10px;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--dim);
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.mev:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 229, 176, 0.15);
  transform: translateZ(10px);
}

.med {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.meb {
  margin-left: auto;
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(0, 229, 176, 0.12);
  color: var(--teal);
  font-weight: 700;
}

/* Floating Badges with Z-Parallax push */
.fc {
  position: absolute;
  background: rgba(10, 14, 26, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  z-index: 12;
  will-change: transform;
  transform-style: preserve-3d;
  transition:
    transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
    border-color 0.3s;
}

.fc:hover {
  border-color: var(--teal);
}

.ftl {
  top: 8%;
  left: -160px;
  animation: fc1 5.5s ease-in-out infinite;
}

.ftr {
  top: 30%;
  right: -140px;
  animation: fc2 7s ease-in-out infinite;
}

.fbr {
  bottom: 12%;
  right: -120px;
  animation: fc3 6s ease-in-out infinite;
}

@keyframes fc1 {
  0%,
  100% {
    transform: translateY(0) translateZ(60px);
  }
  50% {
    transform: translateY(-10px) translateZ(60px);
  }
}

@keyframes fc2 {
  0%,
  100% {
    transform: translateY(0) translateZ(80px);
  }
  50% {
    transform: translateY(12px) translateZ(80px);
  }
}

@keyframes fc3 {
  0%,
  100% {
    transform: translateY(0) translateZ(70px);
  }
  50% {
    transform: translateY(-8px) translateZ(70px);
  }
}

.fn {
  font-weight: 700;
  color: var(--white);
}

.fsub {
  font-size: 11px;
  color: var(--dim);
  margin-top: 3px;
}

.fbar {
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal2));
  margin-top: 8px;
  animation: fb 3s ease-in-out infinite alternate;
}

@keyframes fb {
  0% {
    width: 35%;
  }
  100% {
    width: 100%;
  }
}

/* ==========================================================================
   SECTIONS GENERAL STYLING
   ========================================================================== */
section {
  padding: 120px 64px;
  position: relative;
}

.maxw {
  max-width: 1160px;
  margin: 0 auto;
}

.slbl {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 14px;
}

.stit {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -1px;
}

.ssub {
  font-size: 17px;
  color: var(--dim);
  max-width: 500px;
  line-height: 1.75;
  margin-top: 14px;
}

/* ==========================================================================
   FEATURES (3D TILT CARDS WITH REFLECTIVE SHEEN)
   ========================================================================== */
.feats {
  background: var(--bg2);
}

.fgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
  overflow: hidden;
  border: 2px solid rgba(0, 229, 176, 0.05);
}

.fcard {
  padding: 40px 32px;
  background: rgba(16, 25, 54, 0.9);
  position: relative;
  overflow: hidden;
  transition: background 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
  will-change: transform;
}

.fcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: transparent;
  transition: background 0.4s;
  z-index: 2;
}

.fcard:hover {
  background: rgba(0, 229, 176, 0.04);
}

.fcard:hover::before {
  background: linear-gradient(90deg, transparent, rgba(0, 229, 176, 0.6), transparent);
}

.fcard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 220px at var(--mx, 50%) var(--my, 50%), rgba(0, 229, 176, 0.07), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

.fcard:hover::after {
  opacity: 1;
}

/* Metallic reflection sheen overlay */
.fcard-sheen {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.04) 50%, transparent 60%);
  opacity: 0;
  mix-blend-mode: overlay;
  transition: opacity 0.3s ease;
}

.fcard:hover .fcard-sheen {
  opacity: 1;
}

.fico {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 176, 0.1);
  border: 1px solid rgba(0, 229, 176, 0.18);
  font-size: 20px;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fcard:hover .fico {
  transform: translateZ(20px) scale(1.1);
  background: rgba(0, 229, 176, 0.2);
}

.ftit {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
  transform: translateZ(10px);
}

.fdesc {
  font-size: 14px;
  color: var(--dim);
  line-height: 1.75;
  transition:
    transform 0.3s ease,
    color 0.3s;
  transform: translateZ(5px);
}

.fcard:hover .fdesc {
  color: rgba(180, 200, 255, 0.7);
}

/* ==========================================================================
   HOW IT WORKS (STEPS LAYOUT)
   ========================================================================== */
.steps {
  display: flex;
  flex-direction: column;
  margin-top: 64px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(to bottom, var(--teal), rgba(0, 229, 176, 0.05));
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--gb);
  position: relative;
}

.step:last-child {
  border: none;
}

.snum {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 17px;
  border: 1px solid rgba(0, 229, 176, 0.3);
  background: rgba(0, 229, 176, 0.07);
  color: var(--teal);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step:hover .snum {
  background: rgba(0, 229, 176, 0.18);
  box-shadow: 0 0 30px rgba(0, 229, 176, 0.3);
  transform: scale(1.1);
}

.sbody h3 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 10px;
}

.sbody p {
  font-size: 15px;
  color: var(--dim);
  line-height: 1.75;
  max-width: 520px;
}

.stag {
  display: inline-block;
  margin-top: 16px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  background: rgba(0, 229, 176, 0.08);
  border: 1px solid rgba(0, 229, 176, 0.2);
  color: var(--teal);
}

/* ==========================================================================
   TESTIMONIALS (3D CARD GLIDE)
   ========================================================================== */
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.tcard {
  border-radius: 16px;
  padding: 32px;
  background: var(--glass);
  border: 1px solid var(--gb);
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    background 0.3s;
  will-change: transform;
}

.tcard:hover {
  border-color: rgba(0, 229, 176, 0.22);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-8px);
}

.tcard::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 72px;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  color: rgba(0, 229, 176, 0.07);
  line-height: 1;
}

.ttext {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
  color: rgba(245, 242, 234, 0.88);
}

.tauth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #05080f;
}

.tnm {
  font-weight: 600;
  font-size: 14px;
}

.trl {
  font-size: 12px;
  color: var(--dim);
}

/* ==========================================================================
   FINAL CTA — INTERACTIVE 3D GALAXY STAR FLIGHT
   ========================================================================== */
.ctaf {
  position: relative;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(120, 60, 255, 0.18), transparent 34%),
    radial-gradient(circle at 70% 30%, rgba(255, 120, 60, 0.1), transparent 32%),
    linear-gradient(180deg, #090817 0%, #03030a 70%);
}

.ctaf::before,
.ctaf::after {
  content: "";
  position: absolute;
  inset: -18%;
  pointer-events: none;
  z-index: 0;
}

.ctaf::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.7px),
    radial-gradient(circle at 28% 42%, rgba(88, 230, 255, 0.55) 0 1px, transparent 1.9px),
    radial-gradient(circle at 68% 54%, rgba(255, 155, 74, 0.5) 0 1px, transparent 2px),
    conic-gradient(
      from 40deg at 50% 50%,
      transparent 0 18%,
      rgba(0, 229, 176, 0.24) 22%,
      transparent 34%,
      rgba(124, 60, 255, 0.28) 46%,
      transparent 64%,
      rgba(255, 155, 74, 0.24) 74%,
      transparent 100%
    );
  background-size:
    52px 52px,
    96px 96px,
    132px 132px,
    100% 100%;
  opacity: 0.34;
  filter: blur(0.2px);
  transform: rotate(var(--landing-scroll-rotate)) scale(1.04);
  animation: cssGalaxyDrift 34s linear infinite;
}

.ctaf::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(245, 242, 234, 0.2), transparent 11%),
    radial-gradient(ellipse at 50% 50%, rgba(124, 60, 255, 0.24), transparent 28%),
    radial-gradient(ellipse at 54% 48%, rgba(0, 229, 176, 0.18), transparent 34%),
    radial-gradient(ellipse at 46% 56%, rgba(255, 155, 74, 0.18), transparent 38%);
  opacity: 0.76;
  filter: blur(18px);
  transform: rotate(var(--landing-scroll-rotate-inverse)) scale(1.08);
}

@keyframes cssGalaxyDrift {
  0% {
    background-position:
      0 0,
      0 0,
      0 0,
      center;
  }
  100% {
    background-position:
      52px -52px,
      -96px 96px,
      132px -132px,
      center;
  }
}

/* Canvas Three.js Galaxy */
#galaxy {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.92;
}

.ctaf-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 35%, rgba(0, 0, 0, 0.55) 100%);
}

.ctaf-glass {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: screen;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 42%,
    rgba(255, 255, 255, 0.06) 49%,
    rgba(255, 180, 120, 0.1) 52%,
    transparent 62%
  );
  filter: blur(12px);
  animation: glassSweep 10s ease-in-out infinite;
}

@keyframes glassSweep {
  0% {
    opacity: 0;
    transform: translateX(-45%) skewX(-8deg);
  }
  45% {
    opacity: 0.45;
  }
  100% {
    opacity: 0;
    transform: translateX(45%) skewX(-8deg);
  }
}

.ctaf-flash {
  position: absolute;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  background: radial-gradient(
    circle at center,
    #fff 0%,
    rgba(210, 170, 255, 0.75) 22%,
    rgba(124, 60, 255, 0.35) 48%,
    transparent 75%
  );
  opacity: 0;
  mix-blend-mode: screen;
}

.ctaf-shock {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 8;
  pointer-events: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid rgba(210, 170, 255, 0.9);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}

.ctaf-inner {
  position: relative;
  z-index: 10;
  padding: 40px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid rgba(150, 110, 255, 0.4);
  background: linear-gradient(180deg, rgba(124, 60, 255, 0.18), rgba(124, 60, 255, 0.06));
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #d8c4ff;
  text-transform: uppercase;
  margin-bottom: 30px;
  box-shadow: 0 0 30px rgba(124, 60, 255, 0.3);
}

.ctaf .stit {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 1.04;
  background: linear-gradient(180deg, #fff 35%, #d9b8ff 80%, #ff9b4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 50px rgba(180, 100, 255, 0.4);
}

.ctaf .ssub {
  margin-inline: auto;
  color: rgba(245, 242, 234, 0.7);
  font-size: 18px;
  max-width: 520px;
}

.cta-acts {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 46px;
  flex-wrap: wrap;
}

.cta-bullets {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 13px;
  color: rgba(245, 242, 234, 0.6);
}

.cta-bullet {
  display: flex;
  align-items: center;
  gap: 7px;
}

.cta-bullet::before {
  content: "✓";
  color: #7dffc4;
  font-weight: 700;
  font-size: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(125, 255, 196, 0.12);
  border: 1px solid rgba(125, 255, 196, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Colorful Animated Border Button */
#ctaBtn {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding: 19px 56px;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 700;
  font-family: "Syne", sans-serif;
  color: #070b1a;
  background: linear-gradient(180deg, #fff, #ece0ff);
  z-index: 300;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow:
    0 8px 40px rgba(124, 60, 255, 0.4),
    0 0 0 1px rgba(180, 140, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  will-change: transform;
}

#ctaBtn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 100px;
  z-index: -1;
  background: linear-gradient(120deg, #7c3cff, #ff9b4a, #58e6ff, #7c3cff);
  background-size: 300% 300%;
  animation: borderFlow 4s linear infinite;
  opacity: 0.9;
}

@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

#ctaBtn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 14px 60px rgba(124, 60, 255, 0.7),
    0 0 0 1px rgba(180, 140, 255, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

#ctaBtn.lit {
  animation: btnGlow 2s ease-in-out infinite alternate;
}

@keyframes btnGlow {
  0% {
    box-shadow:
      0 8px 40px rgba(124, 60, 255, 0.5),
      0 0 0 3px rgba(180, 140, 255, 0.3),
      0 0 60px rgba(124, 60, 255, 0.4);
  }
  100% {
    box-shadow:
      0 8px 70px rgba(124, 60, 255, 0.9),
      0 0 0 6px rgba(180, 140, 255, 0.4),
      0 0 130px rgba(88, 230, 255, 0.5);
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  padding: 44px 64px 32px;
  border-top: 1px solid var(--gb);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #03030a;
}

.flogo {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 2.5px;
  color: var(--dim);
}

.flinks {
  display: flex;
  gap: 26px;
}

.flinks a {
  font-size: 13px;
  color: rgba(140, 170, 220, 0.2);
  text-decoration: none;
  transition: color 0.2s;
}

.flinks a:hover {
  color: var(--dim);
}

.fcopy {
  font-size: 12px;
  color: rgba(140, 170, 220, 0.2);
}

/* ==========================================================================
   SCROLLBARS & UTILITIES
   ========================================================================== */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 229, 176, 0.2);
  border-radius: 2px;
}

/* Scroll-triggered reveal anim system */
.rev {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

.rev.vis {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}

/* ==========================================================================
   RESPONSIVE DESIGN (FLUIDITY & FALLBACKS)
   ========================================================================== */
@media (max-width: 1024px) {
  .fgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html,
  body {
    cursor: auto;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  main,
  header,
  footer,
  section {
    max-width: 100vw;
    overflow-x: clip;
  }

  #cur,
  #cur-ring,
  #lineCanvas {
    display: none;
  }

  .mobile-scroll-orbit {
    position: fixed;
    right: max(12px, env(safe-area-inset-right));
    top: 50%;
    z-index: 260;
    display: block;
    width: 4px;
    height: 118px;
    border-radius: 999px;
    border: 1px solid rgba(0, 229, 176, 0.22);
    background: rgba(0, 229, 176, 0.06);
    box-shadow: 0 0 24px rgba(0, 229, 176, 0.16);
    opacity: 0.72;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .mobile-scroll-orbit::before {
    content: "";
    position: absolute;
    inset: -24px -10px;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(0, 229, 176, 0.18), transparent 62%);
    filter: blur(8px);
  }

  .mobile-scroll-orbit span {
    position: absolute;
    left: 50%;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00e5b0, #58e6ff);
    box-shadow:
      0 0 18px rgba(0, 229, 176, 0.9),
      0 0 44px rgba(88, 230, 255, 0.45);
    transform: translate(-50%, var(--landing-scroll-orbit));
  }

  #nav {
    padding: 18px 30px;
  }
  .nl {
    display: none; /* Hide navigation menu list on mobile, use simple cta */
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-login,
  .ncta {
    padding: 9px 13px;
    font-size: 12px;
  }
  .nav-login {
    min-width: 0;
    max-width: none;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    line-height: 1.1;
    text-align: center;
  }
  .floating-login {
    top: 78px;
    right: 18px;
    min-width: 132px;
    min-height: 40px;
    padding: 10px 16px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding: 128px 20px 56px;
    justify-content: flex-start;
  }

  .grid3d,
  .gp,
  .mglow {
    display: none;
  }

  .hcontent {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }

  .hbadge {
    margin-bottom: 22px;
    max-width: 100%;
    justify-content: center;
    line-height: 1.35;
  }

  .htitle {
    font-size: clamp(40px, 11vw, 56px);
    line-height: 1.04;
    letter-spacing: 0;
    margin-bottom: 22px;
  }

  .htitle.is-mobile-static {
    display: grid;
    gap: 6px;
    text-wrap: balance;
  }

  .hero-title-line {
    display: block;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .wd {
    display: inline-block;
    overflow: visible;
    vertical-align: baseline;
  }

  .wd + .wd::before {
    content: " ";
  }

  .lt {
    display: inline-block;
  }

  .hsub {
    max-width: 320px;
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.55;
  }

  .stit {
    max-width: 100%;
    font-size: clamp(30px, 9.2vw, 40px);
    line-height: 1.14;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .hacts {
    width: min(100%, 340px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hacts .mbtn {
    width: 100%;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 20px;
  }

  .fgrid {
    grid-template-columns: 1fr;
  }
  .tgrid {
    grid-template-columns: 1fr;
  }
  .sbar {
    width: min(100%, 340px);
    margin: 38px auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: center;
  }

  .si {
    width: 100%;
    min-height: 86px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
  }

  .sv {
    font-size: clamp(34px, 12vw, 46px);
    line-height: 1;
  }

  .sd {
    display: none;
  }

  /* Fallback: Remove intense floating cards translates and tilt for mobile touch */
  .fc {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin: 10px auto;
    width: 90%;
    transform: none !important;
    animation: none !important;
  }
  .ftl,
  .ftr,
  .fbr {
    animation: none;
    transform: none !important;
  }
  .hmock {
    perspective: none;
  }
  .mwrap {
    transform: none !important;
  }
  .mframe {
    animation: none;
  }

  .hmock {
    width: 100%;
    margin-top: 34px;
    padding: 0;
  }

  .mwrap {
    max-width: 340px;
    margin-inline: auto;
  }

  .mc {
    grid-template-columns: 1fr;
  }
  .mrow {
    flex-direction: column;
  }

  .ctaf {
    min-height: 720px;
    height: auto;
    padding: 96px 18px 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
      radial-gradient(circle at 48% 42%, rgba(245, 242, 234, 0.12), transparent 14%),
      radial-gradient(circle at 50% 58%, rgba(124, 60, 255, 0.28), transparent 34%),
      radial-gradient(circle at 64% 28%, rgba(0, 229, 176, 0.16), transparent 28%),
      linear-gradient(180deg, #080817 0%, #050814 68%, #02030a 100%);
  }

  .ctaf::before {
    inset: -26%;
    opacity: var(--landing-scroll-galaxy-opacity);
    transform: rotate(var(--landing-scroll-rotate)) scale(1.12);
  }

  .ctaf::after {
    opacity: 0.9;
    filter: blur(20px);
  }

  #galaxy {
    opacity: 0.98;
  }

  .ctaf-glass,
  .ctaf-shock,
  .ctaf-flash {
    display: none;
  }

  .ctaf-inner {
    width: 100%;
    max-width: min(360px, calc(100vw - 36px));
    padding: 0;
  }

  .ctaf .stit {
    width: 100%;
    max-width: 100%;
    font-size: clamp(30px, 9.4vw, 38px);
    line-height: 1.12;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }

  .ctaf .ssub {
    max-width: 310px;
    font-size: 15px;
    line-height: 1.55;
  }

  .cta-acts {
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #ctaBtn,
  #cta-info {
    width: 100%;
    max-width: 100%;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 18px;
    transform: none !important;
  }

  .cta-bullets {
    width: 100%;
    max-width: 100%;
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: start;
    text-align: left;
  }

  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 30px 20px;
  }
  .flinks {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  #nav {
    padding: 16px 18px;
    align-items: flex-start;
  }
  .logo {
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 1.15;
    padding-top: 8px;
  }
  .nav-actions {
    gap: 6px;
    align-items: stretch;
  }
  .nav-login,
  .ncta {
    padding: 8px 10px;
    font-size: 11px;
  }
  .nav-login {
    width: 74px;
    min-height: 42px;
    white-space: normal;
  }
  .ncta {
    width: 106px;
    min-height: 42px;
    line-height: 1.08;
    white-space: normal;
    text-align: center;
  }
  .floating-login {
    top: 72px;
    right: 14px;
  }

  .hero {
    padding-inline: 16px;
  }

  .hcontent {
    max-width: 100%;
  }

  .htitle {
    font-size: clamp(38px, 10.8vw, 48px);
    line-height: 1.08;
  }

  .floating-login {
    max-width: 150px;
  }

  .ctaf .stit {
    font-size: clamp(30px, 9.4vw, 38px);
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 360px) {
  #nav {
    padding-inline: 14px;
  }

  .logo {
    font-size: 13px;
    letter-spacing: 1.6px;
  }

  .nav-login {
    width: 70px;
  }

  .ncta {
    width: 104px;
  }

  .hero {
    padding: 132px 14px 52px;
  }

  .hbadge {
    font-size: 10px;
    letter-spacing: 1px;
    padding-inline: 14px;
  }

  .htitle {
    font-size: clamp(34px, 10.4vw, 40px);
    line-height: 1.1;
  }

  .hsub {
    font-size: 15px;
  }

  .ctaf {
    padding-inline: 14px;
  }

  .ctaf-inner {
    width: 100%;
    max-width: 100%;
  }

  .ctaf .stit {
    font-size: clamp(30px, 9.4vw, 36px);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 768px) {
  body {
    background:
      radial-gradient(circle at 50% 0%, rgba(0, 229, 176, 0.08), transparent 38%),
      linear-gradient(180deg, #070b1a 0%, #090e20 100%);
  }

  #nav {
    min-height: 68px;
    padding: max(12px, env(safe-area-inset-top)) 16px 12px;
    align-items: center;
    background: rgba(7, 11, 26, 0.86);
    border-bottom-color: rgba(0, 229, 176, 0.14);
  }

  .logo {
    flex: 0 0 auto;
    padding-top: 0;
    font-size: 14px;
    letter-spacing: 2px;
    white-space: nowrap;
  }

  .nav-actions {
    flex: 0 0 auto;
    gap: 8px;
    align-items: center;
  }

  .nav-login,
  .ncta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    min-height: 38px;
    padding: 9px 12px;
    border-radius: 999px;
    font-size: 0;
    line-height: 1;
    white-space: nowrap;
  }

  .nav-login::after,
  .ncta::after {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.01em;
  }

  .nav-login::after {
    content: "Accedi";
  }

  .ncta::after {
    content: "Info";
  }

  .floating-login {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 96px 16px 44px;
    background:
      radial-gradient(circle at 50% 28%, rgba(0, 229, 176, 0.12), transparent 26%),
      radial-gradient(circle at 50% 58%, rgba(255, 94, 35, 0.15), transparent 34%),
      linear-gradient(180deg, #080b18 0%, #101936 58%, #070b1a 100%);
  }

  .hero::before {
    opacity: 0.26;
    filter: blur(1px);
  }

  .hcontent {
    max-width: 360px;
  }

  .hbadge {
    max-width: min(100%, 330px);
    margin-bottom: 18px;
    padding: 8px 14px;
    font-size: 10px;
    line-height: 1.25;
    letter-spacing: 1.25px;
  }

  .htitle {
    margin-bottom: 18px;
    font-size: clamp(34px, 9.5vw, 44px);
    line-height: 1.08;
  }

  .htitle.is-mobile-static {
    gap: 4px;
  }

  .hsub {
    max-width: 310px;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.48;
  }

  .hacts {
    width: 100%;
    max-width: 330px;
    gap: 10px;
  }

  .hacts .mbtn {
    min-height: 52px;
    border-radius: 18px;
    font-size: 15px;
  }

  .sbar {
    width: 100%;
    max-width: 330px;
    margin-top: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .si {
    min-height: 72px;
    padding: 12px 10px;
    border-radius: 18px;
  }

  .si:last-child:nth-child(5) {
    grid-column: 1 / -1;
  }

  .sv {
    font-size: clamp(26px, 8vw, 34px);
  }

  .sl {
    font-size: 11px;
  }

  .section,
  section {
    scroll-margin-top: 76px;
  }

  .ctaf {
    min-height: 100svh;
    padding: 92px 18px 56px;
    overflow: hidden;
  }

  .ctaf-inner {
    max-width: 354px;
  }

  .cta-badge {
    margin-bottom: 22px;
    padding: 8px 16px;
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .ctaf .stit {
    font-size: clamp(30px, 8.8vw, 36px);
    line-height: 1.08;
  }

  .ctaf .ssub {
    max-width: 318px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.42;
  }

  .cta-acts {
    margin-top: 26px;
    gap: 10px;
  }

  #ctaBtn,
  #cta-info {
    min-height: 54px;
    border-radius: 18px;
    font-size: 15px;
  }

  .cta-bullets {
    margin-top: 20px;
    gap: 8px;
    font-size: 14px;
  }
}

@media (max-width: 390px) {
  #nav {
    padding-inline: 14px;
  }

  .logo {
    font-size: 13px;
    letter-spacing: 1.7px;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-login,
  .ncta {
    min-height: 36px;
    padding-inline: 10px;
  }

  .nav-login::after,
  .ncta::after {
    font-size: 11.5px;
  }

  .hero {
    padding-inline: 14px;
  }

  .htitle {
    font-size: clamp(32px, 9.2vw, 40px);
  }

  .hbadge {
    letter-spacing: 1px;
  }
}

@media (max-width: 350px) {
  .logo {
    max-width: 92px;
    overflow: hidden;
    font-size: 12px;
    letter-spacing: 1.3px;
  }

  .nav-login::after {
    content: "Login";
  }

  .ncta::after {
    content: "Info";
  }

  .htitle {
    font-size: 31px;
  }
}
