/* Click Me Studio — Ultra-modern dark landing (Trongate v2)
   Theme base: bg-slate-950
   Fonts: Space Grotesk (headings), Inter (body)
*/
@font-face {
  font-family: 'Skia';
  src: url('../fonts/skia.ttf') format('truetype');
}
:root {
  --bg: #020617;            /* slate-950 */
  --panel: rgba(255,255,255,0.06);
  --panel-2: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.10);
  --border-2: rgba(255,255,255,0.16);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --muted-2: rgba(255,255,255,0.55);
  --shadow: 0 16px 60px rgba(0,0,0,0.45);

  --font-main: Skia, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  --font-secondary: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";

  --sky: #0ea5e9;           /* sky-500 */
  --sky-2: #38bdf8;         /* sky-400 */
  --violet: #8b5cf6;        /* violet-500 */
  --violet-2: #a78bfa;      /* violet-400 */

  --radius: 18px;
  --radius-lg: 22px;

  --container: 1100px;
  --nav-h: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
}
dialog::backdrop {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
p { margin: 0; color: var(--muted); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

/* Login modal */
#login-title {
  font-family: var(--font-main)
}
.login-dialog::backdrop { background: rgba(0,0,0,.55); }
.login-dialog { border: 0; padding: 0; background: transparent;border-radius: 16px; }
.login-card {
  width: min(440px, calc(100vw - 32px));
  border-radius: 16px;
  padding: 18px;
  background: transparent;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  color: #e5e7eb;
  border: 1px solid rgba(148,163,184,.22);
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
}
.login-header { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom: 14px; }
.login-header h2 { margin: 0; font-size: 20px; }
.login-button {
  padding: 5px 10px;
  background: none;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  z-index: 1;
}
.login-button:focus {
  outline: none;
  border:none;
}
.login-button:hover {
  border: 1px solid rgba(255, 255, 255, 0.75);
  transform: scale(1.05);
}
.login-body { 
  display: grid; 
  gap: 12px; 
}

.login-button svg {
  filter: drop-shadow(0 0 2px var(--sky));
  transition: all 1s ease;
}
.login-button:hover svg {
  fill: var(--sky-2);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid var(--border);
  border-radius: 12px;
  z-index: 9999;
}
.skip-link:focus { left: 12px; }

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

.section {
  padding: 96px 0;
  position: relative;
  min-height: 90vh;
  scroll-margin-top: calc(var(--nav-h) + 34px); 
  isolation: isolate;
}
.section--tight { padding: 78px 0; }
.section--results { padding-bottom: 110px; }
.section--contact { padding: 86px 0 110px; }
.section__head { max-width: 760px; }

.section__sub {
  margin-top: 8px;
  font-size: 1.25rem;
  font-family: var(--font-main);
  color: var(--muted);
}

/* Cursor behavior */
.cursor-circle {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  position: fixed;
  pointer-events: none; /* Crucial: lets clicks pass through */
  z-index: 9999; /* Keeps it on top */
  transform: translate(-50%, -50%); /* Centers circle on cursor */
  transition: transform 0.1s ease-out, opacity 0.2s ease;
}

.cursor-circle.is-hidden {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  /* opacity: 0.5; */
  /* transform: scale(1.5) translate(-35%, -35%); */
}

/* Background effects */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.22;
  mask-image: radial-gradient(circle at 50% 20%, rgba(0,0,0,1), rgba(0,0,0,0.05) 60%, transparent 75%);
}

.bg-glow {
  position: fixed;
  inset: -30%;
  z-index: -4;
  filter: blur(80px);
  opacity: 0.75;
  pointer-events: none;
}
.bg-glow--sky {
  background: radial-gradient(circle at 20% 20%, rgba(14,165,233,0.34), transparent 55%);
}
.bg-glow--violet {
  background: radial-gradient(circle at 75% 35%, rgba(139,92,246,0.26), transparent 55%);
}

/* Glass */
.nav.glass, .glass {
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

/* Navbar */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  pointer-events: none;
}

.nav { pointer-events: auto; }
.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  gap: 18px;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, backdrop-filter .2s ease, -webkit-backdrop-filter .2s ease;
}
.brand { display: flex; align-items: center; gap: 10px;flex: 1; justify-content: space-evenly; }
.brand__logo { border-radius: 10px; }
.brand__name { font-weight: 700; letter-spacing: -0.02em; font-family:  var(--font-main); font-size: 2.2rem;}
.brand--footer { display: flex;align-items: center; }

/* Animations */ 
.rotate {
  animation: myRotation 60s linear infinite;
}
.pulse {
  animation: pulseAnim 6s ease-in-out infinite;
}

@keyframes myRotation {
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}
@keyframes pulseAnim {
  0%, 100% {opacity: 1; transform: scale(1);}
  50% {opacity: 0.8; transform: scale(1.05);}
}

.nav__burger {
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1;
}

.nav__burger:hover rect:nth-child(1) {
  width: 22px;
  transform: translateX(-4px);
}
.nav__burger:hover rect:nth-child(3) {
  width: 22px;
}
.nav__burger svg rect {
  transition: all .3s 0s;
}

.nav__burger.on rect:nth-child(1) {
  width: 22px;
  transform: rotate(45deg) translate(2px,-9px);
}
.nav__burger.on rect:nth-child(2) {
  width: 0;
}
.nav__burger.on rect:nth-child(3) {
  width: 22px;
  transform: rotate(-45deg) translate(-15px,0px);
}
.nav__burger svg:hover {
  border: 1px solid;
  border-radius: 50%;
}

.nav__links {
  display: flex;
  align-items: center;
  background: var(--bg);
  padding-top: var(--nav-h);
  position: fixed;
  inset: 0;
  transform: translate(-100%);
  transition: all .6s ease;
  z-index: 1;
}

.nav__links div {
  display: flex;
  flex-direction: column;
  align-items: end;
  width: 100%;
}
.nav__links.is-open {
  transform: translate(0);
}
.nav__link {
  position: relative;
  color: transparent;
  -webkit-text-stroke: 2px powderblue;
  font-weight: 900;
  font-family:  var(--font-main);
  padding: 0 10px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  font-size: 5rem;
  line-height: 5rem;
}
.nav__link::before {
  position: absolute;
  content: attr(data-i18n-value);
  width: 0;
  overflow: hidden;
  transition: width 1.5s ease;
  color:powderblue;
}
.nav__link:hover::before {
  width: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(14,165,233,0.12), rgba(255,255,255,0.04));
}

.nav__contact {
  gap: 1rem;
  margin-right: 24px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 1.25rem;
}
.nav__contact a:hover {
  background: radial-gradient(circle at 30% 30%, rgba(14,165,233,0.18), rgba(255,255,255,0.06));
  box-shadow: 0 0 0 6px rgba(14,165,233,0.12);
}

/* Language menu */
.lang { position: relative; font-size:0.75rem}
.lang__btn {
  display: flex;
  align-items: center;
  border: none;
  background: transparent;
  cursor: pointer;
}
.lang__current {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.92);
}
.lang__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  padding: 12px 0;
  display: none;
}
.lang__menu[aria-hidden="false"] { display: grid; gap: 8px; }
.lang__menu button {
  width: 100%;
  text-align: center;
  padding: 0 12px;
  cursor: pointer;
  border: none;
  background: none;
  cursor: pointer;
  transition: all .2s ease, transform .2s ease;
}
.lang__menu button:hover { font-weight: 700; color: rgba(255,255,255,0.92); }

/* Hero section */
.hero {
  padding: 46px 0 64px;
  position: relative;
  min-height: calc(100vh - var(--nav-h));
}
.hero__sub{ font-size: 1.12rem; max-width: 560px; }
.hero__panel img {
  width: min(520px, 100%);
  height: auto;
  display:block;
  margin-left:auto;
  filter: drop-shadow(0 30px 70px rgba(0,0,0,.55));
  transform: translateY(6px);
}
.hero__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  position: absolute;
  inset: 0;
  min-height: 100%;
  padding: 0 3rem;
  align-items: center;
  justify-content: center;
}
.hero-card {
  padding: 20px;
  position: relative;
  overflow: hidden;
  display: grid;
  justify-content: center;
  align-items: center;
}
.hero-card::before,
.hero-card::after {
  position:absolute;
  width: 100%;
  height: 100%;
  padding:2px;
  border-radius: var(--radius);
  background: conic-gradient(
            from 0deg at center,
            #00c3ff,
            #800080,
            #6300c3,
            #009dcd);
  box-shadow: none;
  z-index: -2;
}
.hero-card::after {
  top: -4px; left: -4px; right: -4px; bottom: -4px;
  filter: blur(12px);
  opacity: 0.6;
  z-index: -3;
}

.hero-card > * { position: relative; }
.hero-card__title { font-size: 1.35rem; }
.hero-card__meta { color: var(--muted); margin-bottom: 16px; }
.hero-card__bottom { margin-top: 16px; display: grid; gap: 12px; }
.hero__title, .section__title {
  font-size: clamp(2.7rem, 4.9vw, 4.45rem);
  line-height: 1.02;
  margin-bottom: 14px;
  text-shadow: 0 20px 70px rgba(0,0,0,0.55);
}
.hero__actions {
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.hero__chips{ display:flex; gap: 10px; flex-wrap: wrap; }

body::before {
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(900px 600px at 70% 50%, rgba(91,169,255,.35), transparent 60%),
    radial-gradient(800px 520px at 86% 75%, rgba(167,90,255,.24), transparent 62%),
    radial-gradient(900px 700px at 20% 80%, rgba(0,120,255,.10), transparent 65%),
    linear-gradient(180deg, #050b16 0%, #020617 65%, #020617 100%);
  filter: saturate(1.15);
  z-index: 0;
}

/* subtle grain/noise (cheap) */
body::after{
  content:"";
  position:absolute; 
  inset:0;
  opacity:.08;
  pointer-events:none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}
.pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
}

.chip{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(2,6,23,.35);
  border: 1px solid rgba(148,163,184,.18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: rgba(226,232,240,.8);
  font-size: 13px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--sky-2), var(--violet-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(56,189,248,0.12);
}

.btn {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 16px;
  font-weight: 600;
  background: rgba(255,255,255,0.04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn--primary {
  border-color: rgba(14,165,233,0.35);
  background: radial-gradient(circle at 30% 30%, rgba(14,165,233,0.32), rgba(139,92,246,0.08));
  box-shadow: 0 0 0 0 rgba(14,165,233,0.18);
}
.btn--ghost { background: rgba(255,255,255,0.03); }
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px rgba(14,165,233,0.12);
  border-color: rgba(14,165,233,0.45);
}
.btn--wide { width: 100%; padding: 14px 18px; border-radius: 18px; }

/* Buttons + trust chips like the reference */
.btn{
  border-radius: 999px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.05);
}
.btn--primary{
  border: 1px solid transparent;
  background:
    radial-gradient(circle at 22% 28%, rgba(56,189,248,0.34), rgba(167,139,250,0.10)) padding-box,
    linear-gradient(90deg, rgba(56,189,248,0.60), rgba(167,139,250,0.26)) border-box;
  box-shadow: 0 0 0 6px rgba(56,189,248,0.12);
}
.btn--primary:hover{
  box-shadow: 0 0 0 8px rgba(56,189,248,0.14), 0 24px 70px rgba(0,0,0,0.35);
}
.btn--ghost{
  background: rgba(2,6,23,0.35);
}


.trust { margin-top: 22px; display: flex; gap: 14px; flex-wrap: wrap; }
.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--sky);
  box-shadow: 0 1px 2px 0 var(--sky) inset, 0 1px 2px 0 var(--sky), 0 -1px 2px 0 var(--sky) inset, 0 -1px 2px 0 var(--sky);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
}
.trust__item:has(.dot--violet) {
  border-color: var(--violet);
  box-shadow: 0 1px 2px 0 var(--violet) inset, 0 1px 2px 0 var(--violet), 0 -1px 2px 0 var(--violet) inset, 0 -1px 2px 0 var(--violet);
}
.dot {
  width: 10px; height: 10px; border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(14,165,233,0.10);
}
.dot--sky { background: var(--sky); }
.dot--violet { background: var(--violet); box-shadow: 0 0 0 6px rgba(139,92,246,0.10); }

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat {
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  box-shadow: none;
}
.stat__value {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.45rem;
  align-items: center;
  display: flex;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.96);
}
.stat__label { color: rgba(255,255,255,0.68); margin-top: 2px; font-size: 0.95rem; }

.mini-proof { display: flex; gap: 12px; align-items: baseline; }
.mini-proof__kpi { font-size: 1.3rem; font-weight: 700; }
.mini-proof__txt { color: rgba(255,255,255,0.72); }

.mini-bar { display: grid; gap: 8px; }
.mini-bar span {
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
}
.mini-bar span::after {
  content: "";
  position: absolute; inset: 0;
  width: var(--w);
  background: linear-gradient(90deg, rgba(56,189,248,0.45), rgba(167,139,250,0.35));
  box-shadow: 0 0 24px rgba(56,189,248,0.14);
}

.floating {
  margin-top: 14px;
  height: 110px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
}
.floating__ring {
  position: absolute;
  inset: -60px 20% -60px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: radial-gradient(circle at 50% 50%, rgba(14,165,233,0.10), transparent 60%);
  animation: floatRing 7s ease-in-out infinite;
}
.floating__dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--sky);
  box-shadow: 0 0 24px rgba(14,165,233,0.35);
  animation: floatDot 4.6s ease-in-out infinite;
}
.floating__dot--a { left: 18px; top: 22px; animation-delay: .2s; }
.floating__dot--b { left: 56%; top: 60px; background: var(--violet); box-shadow: 0 0 24px rgba(139,92,246,0.35); animation-delay: .9s; }
.floating__dot--c { right: 22px; top: 26px; animation-delay: 1.4s; }

@keyframes floatRing {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.9; }
  50% { transform: translateY(-8px) rotate(8deg); opacity: 1; }
}
@keyframes floatDot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(18px); }
}

/* Cards */
.grid-3 {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.grid-4 {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card {
  padding: 18px;
  border-radius: 20px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 30% 20%, rgba(56,189,248,0.10), transparent 55%),
              radial-gradient(circle at 80% 30%, rgba(167,139,250,0.08), transparent 60%);
  opacity: 0.0;
  transition: opacity .22s ease;
}
.card > * { position: relative; }
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(56,189,248,0.22);
  box-shadow: 0 0 0 4px rgba(14,165,233,0.10), var(--shadow);
}
.card:hover::before { opacity: 1; }
.card__title { 
  font-size: 1.75rem;
  margin-bottom: 0;
  margin-left: 1rem;
  font-family:  var(--font-main); 
}
.card__text { font-size: 0.98rem; color: var(--muted); }
.card__icon {
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border: 1px solid rgba(14,165,233,0.22);
  background: rgba(14,165,233,0.08);
  box-shadow: 0 0 30px rgba(14,165,233,0.08);
  margin-bottom: 12px;
}
.card__icon_nb {
  width: 44px; height: 44px;
}
.icon { width: 22px; height: 22px; color: rgba(255,255,255,0.92); }
.icon--sm { width: 18px; height: 18px; }

/* Process */
.process {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
}
.process__step { 
  padding: 18px;
  position: relative;
  height: 280px;
  background: linear-gradient(to bottom right, hsl(225, 40%, 35%), hsl(225, 40%, 15%));
 }
 .process__step::before {
  position: absolute;
  content: '';
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(to right, skyblue, purple);
  clip-path: polygon(0 10%, 100% 10%, 100% -5%, 0% -5%);
  z-index: -2;
  transform: translateY(-10px);
  filter: blur(2px);
}
.process__step::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1px;
  /* Inherit all the decorations defined on the main element */
  background: inherit;
  border: 2px solid rgba(171, 171, 171, 0.5);
  border-radius: var(--radius);
  box-shadow: inherit;
}
.process__step svg {
  display: block;
  padding: 5px;
  background: rgba(66, 66, 66, 0.46);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  border: 1px solid;
  filter: drop-shadow(0 0 3px);
  margin-bottom: 1rem;
}
.process__num {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(56,189,248,0.85);
}
.process__title { margin-top: 10px; font-size: 1.5rem; font-family: var(--font-main); }
.process__text { color: var(--muted); font-size: 0.98rem; }
.process__line {
  position: absolute;
  left: 40px;
  right: 40px;
  top: 38px;
  height: 2px;
  background: linear-gradient(90deg, rgba(56,189,248,0.35), rgba(167,139,250,0.28));
  opacity: 0.6;
  z-index: -1;
}

/* Services tags */
.tag-row { margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.78);
  font-size: 0.85rem;
}

/* Results */
.results {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
}
.results__kpis { padding: 20px; border-radius: 22px; }
.kpi { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.kpi:last-child { border-bottom: 0; }
.kpi__value {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 2.1rem;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.96);
  line-height: 1;
}
.kpi__label { color: var(--muted); margin-top: 6px; }

.results__showcase { padding: 20px; border-radius: 22px; }
.showcase__title { font-size: 1.3rem; }
.showcase__sub { margin-top: 6px; }

.tabs { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.tab {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.tab:hover { transform: translateY(-1px); border-color: rgba(56,189,248,0.25); }
.tab.is-active {
  border-color: rgba(56,189,248,0.35);
  background: radial-gradient(circle at 30% 30%, rgba(14,165,233,0.24), rgba(139,92,246,0.08));
}

.panels { margin-top: 16px; }
.panel { display: none; }
.panel.is-active { display: block; }
.bullets { margin: 12px 0 0; padding-left: 18px; color: rgba(255,255,255,0.78); }
.bullets li { margin: 6px 0; }

.showcase__foot { margin-top: 18px; display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(56,189,248,0.22);
  background: rgba(14,165,233,0.08);
  color: rgba(255,255,255,0.86);
  font-size: 0.88rem;
}
.badge--alt {
  border-color: rgba(167,139,250,0.20);
  background: rgba(139,92,246,0.08);
}

/* Contact orb button */
.contact {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.8fr;
  gap: 18px;
  align-items: baseline;
}
.contact__other {
    margin-inline:1rem;
}
.contact__link {
  align-items: center;
  display: flex;
  gap: 1rem;
  & :hover {

    text-decoration: underline;

  }
}

.orb {
  position: relative;
  width: 260px;
  height: 260px;
  margin-left: auto;
  border-radius: 999px;
  border: 1px solid rgba(56,189,248,0.25);
  background: radial-gradient(circle at 30% 30%, rgba(56,189,248,0.20), rgba(139,92,246,0.10), rgba(255,255,255,0.03));
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 0 0 0 rgba(56,189,248,0.10);
  transition: transform .22s ease, box-shadow .22s ease;
}
.orb:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 0 0 6px rgba(56,189,248,0.10), 0 22px 80px rgba(0,0,0,0.45);
}
.orb__ring {
  position: absolute;
  inset: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  opacity: 0.9;
  animation: orbPulse 2.8s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.06); opacity: 1; }
}
.orb__txt {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.92);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 60px 0 26px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
  gap: 14px;
  align-items: start;
}
.footer__col { display: grid; }
.footer__desc { margin-top: 10px; }
.footer__title {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.90);
}
.footer__link, .contact__link {
  padding: 8px 10px;
  border-radius: 12px;
  color: rgba(255,255,255,0.78);
  transition: background .2s ease, color .2s ease;
}
.footer__link:hover, .contact__link:hover {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.95);
}
.footer__social { display: flex; gap: 8px; margin-top: 12px; }
.footer__bottom {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.65);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}
.modal.is-open { display: block; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.modal__panel {
  position: absolute;
  inset: 0;
  border-radius: 0;
  border: 0;
  background: rgba(2,6,23,0.86);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transform: translateY(16px);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
  padding: 28px;
  overflow: auto;
}
.modal.is-open .modal__panel { transform: translateY(0); opacity: 1; }
.modal__close {
  position: fixed;
  top: 18px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  font-size: 32px;
  line-height: 0;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.modal__close:hover { transform: translateY(-1px); background: rgba(255,255,255,0.08); }

.modal__head { max-width: 820px; margin: 54px auto 20px; }
.modal__title { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.modal__sub { margin-top: 10px; font-size: 1.05rem; }

.form {
  max-width: 820px;
  margin: 0 auto 60px;
  display: grid;
  gap: 14px;
}
.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field { display:grid; gap: 6px; }
.label { font-size: 12px; color: rgba(226,232,240,.8); }
.field input {
  height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,.22);
  background: rgba(2,6,23,.6);
  color: #e5e7eb;
  outline: none;
  transition:all .2s ease-in-out;
}
.field input:focus, .field input:hover { border-color: rgba(56,189,248,.55); box-shadow: 0 0 0 3px rgba(56,189,248,.18); }
.check { display:flex; align-items:center; gap:10px; font-size: 14px; color: rgba(226,232,240,.9); }
.check input { width: 16px; height: 16px; }
.field__label { display: block; margin: 0 0 8px; color: rgba(255,255,255,0.86); font-weight: 600; }
.field__input {
  width: 100%;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.92);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field__input:focus {
  border-color: rgba(56,189,248,0.38);
  box-shadow: 0 0 0 4px rgba(14,165,233,0.12);
}
.field__textarea { resize: vertical; }
.field__error { min-height: 18px; display: block; color: rgba(248,113,113,0.95); margin-top: 8px; }

.form__actions { display: grid; gap: 10px; }
.form__status { color: rgba(255,255,255,0.78); }
.form__sub {
  font-family: var(--font-main);
  margin-bottom: 12px;
}

.hp { position: absolute !important; left: -9999px !important; opacity: 0 !important; }

.p-1  { padding: 1rem; }
.p-2  { padding: 2rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Reveal animations */
.reveal.right { transform: translateX(-200px); }
.reveal.top { transform: translateY(200px); }
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: transform .6s cubic-bezier(.2,.8,.2,1), opacity .6s ease;
  will-change: transform, opacity;
  transition-delay: 250ms;
}
.reveal.is-in {
  opacity: 1;
  transform: translate(0);
}

/* Responsive */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .results { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr;}
  .orb { margin-left: 0; width: 240px; height: 240px; }
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process__line { display: none; }
  .brand__footer {margin: auto;width: max-content;}
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container { width: min(var(--container), calc(100% - 25px)); }
  .hero { padding: 0px; }
  .hero__grid { padding: 0px; }
  .hero__copy { display: grid; gap:3rem; }
  .footer { padding: 0px 0 26px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__col { display: none; }
  .footer__social { justify-content: center; }
  .section { padding: 50px 0px; }
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .form__grid { grid-template-columns: 1fr; }
  .brand__name { font-size: 1.65rem; }
  .nav { padding: 0 12px; }
  .nav__links {
    position: fixed;
    padding-top: calc(14px + var(--nav-h));
    inset:0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3rem;
    background: var(--bg);
  }
  .nav__links div {
    align-items: center;
  }
  .nav__link {
    font-size: 3.5rem;
    line-height: 3.5rem;
    -webkit-text-stroke: 1.5px powderblue;
    padding: 0;
  }
  .hidden {
    display: none!important;
  }
  .nav__links.is-open { display: flex; }
  .lang__btn { width: 100%; justify-content: space-between; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .tab, .btn, .card, .orb, .floating__ring, .floating__dot {
    transition: none !important;
    animation: none !important;
  }
}

/* =========================================================
   Reference-style polish (v3) — closer to supplied screenshot
   ========================================================= */

/* Space-like background (no image required) */
.bg-space{
  position: fixed;
  inset: 0;
  z-index: -6;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 12%, rgba(56,189,248,0.22), transparent 55%),
    radial-gradient(ellipse at 78% 24%, rgba(167,139,250,0.18), transparent 58%),
    radial-gradient(ellipse at 50% 88%, rgba(14,165,233,0.14), transparent 62%),
    linear-gradient(180deg, rgba(2,6,23,0.88), rgba(2,6,23,1));
}
.bg-space::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.16) 1px, transparent 1.2px),
    radial-gradient(circle, rgba(255,255,255,0.10) 1px, transparent 1.4px),
    radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1.5px);
  background-size: 180px 180px, 260px 260px, 360px 360px;
  background-position: 20px 30px, 80px 120px, 140px 40px;
  opacity: 0.35;
  filter: blur(0.2px);
  transform: translateZ(0);
}

.bg-vignette{
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 10%, rgba(0,0,0,0.0), rgba(0,0,0,0.55) 65%, rgba(0,0,0,0.85) 92%);
}

/* Tame the grid; keep it subtle like the reference */
.bg-grid{
  opacity: 0.14;
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 18%, rgba(0,0,0,1), rgba(0,0,0,0.15) 62%, transparent 78%);
}

/* Navbar — floating glass pill */

.nav{
  pointer-events: auto;
  border-radius: var(--radius-lg);
}

.nav.is-scrolled{
  box-shadow: 0 18px 64px rgba(0,0,0,0.58);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.07)) padding-box,
    linear-gradient(90deg, rgba(56,189,248,0.58), rgba(167,139,250,0.30)) border-box;
}

.nav__link{
  padding: 10px 12px;
  border-radius: 999px;
}
.nav__cta{
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(2,6,23,0.55), rgba(2,6,23,0.35)) padding-box,
    linear-gradient(90deg, rgba(56,189,248,0.65), rgba(167,139,250,0.30)) border-box;
  box-shadow: 0 0 0 4px rgba(56,189,248,0.12);
}
.nav__cta:hover{
  box-shadow: 0 0 0 6px rgba(56,189,248,0.14), 0 18px 54px rgba(0,0,0,0.35);
}

.pill{
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.gradient-text{
  background: linear-gradient(90deg, #38bdf8 0%, #60a5fa 48%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px rgba(125,211,252,.5);
}

/* Progress lines with glowing end dots (like reference) */
.mini-bar{ gap: 10px; }
.mini-bar span{
  height: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.mini-bar span::before{
  content:"";
  position:absolute;
  inset:0;
  width: var(--w);
  background: linear-gradient(90deg, rgba(56,189,248,0.85), rgba(167,139,250,0.55));
  box-shadow: 0 0 30px rgba(56,189,248,0.18);
}
.mini-bar span::after{
  content:"";
  position:absolute;
  left: calc(var(--w));
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), rgba(56,189,248,0.80) 42%, rgba(167,139,250,0.35) 72%, transparent 74%);
  box-shadow: 0 0 28px rgba(56,189,248,0.38);
}

/* Bottom floating panel — closer to the "blank glass" card in screenshot */
.floating{
  height: 140px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.floating::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(circle at 18% 44%, rgba(56,189,248,0.18), transparent 56%),
    radial-gradient(circle at 86% 62%, rgba(167,139,250,0.14), transparent 58%);
  opacity: 0.9;
  pointer-events: none;
}
.floating__ring{
  inset: -72px 18% -72px;
  opacity: 0.85;
}
.floating__dot{ width: 10px; height: 10px; }

/* Adjust section scroll offset because navbar is fixed */
.bg-animation::after{
  animation: bgChange linear forwards ;
  animation-timeline: view(700px 200px);
}
.bg-animation::after {
  background:linear-gradient(to right, hsla(198, 94%, 68%, 0.5), hsla(213, 94%, 68%, 0.5) 48%, hsla(255, 94%, 68%, 0.5));
  position: absolute;
  inset: 0;
  content:"";
  opacity: 0;
  transition: opacity 300ms;
  z-index: -1;
}
@keyframes bgChange {
  0% { opacity: 0; }
  100% { opacity: 1; }
}