/* ==========================================================
   AN STUDIO CONNECT — STYLE.CSS
   Version 2.1
========================================================== */

/* ==========================================================
   01. VARIABLES
========================================================== */

:root {
  --color-bg: #050509;
  --color-bg-soft: #090910;
  --color-bg-card: rgba(17, 15, 28, 0.72);
  --color-bg-card-solid: #11101a;

  --color-white: #ffffff;
  --color-text: #f6f4ff;
  --color-text-soft: #b9b4c8;
  --color-text-muted: #817b91;

  --color-purple: #9d6cff;
  --color-purple-light: #c8a9ff;
  --color-purple-dark: #6d3cff;
  --color-blue: #706dff;
  --color-pink: #e275ff;
  --color-green: #72efb7;

  --gradient-primary:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #d8c8ff 26%,
      #a276ff 58%,
      #6f61ff 100%
    );

  --gradient-button:
    linear-gradient(
      135deg,
      #b68cff 0%,
      #8b61ff 45%,
      #6457ff 100%
    );

  --gradient-card:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.02)
    );

  --border-soft: rgba(255, 255, 255, 0.09);
  --border-medium: rgba(255, 255, 255, 0.15);
  --border-purple: rgba(166, 119, 255, 0.35);

  --shadow-small:
    0 12px 40px rgba(0, 0, 0, 0.24);

  --shadow-medium:
    0 24px 80px rgba(0, 0, 0, 0.42);

  --shadow-large:
    0 45px 140px rgba(0, 0, 0, 0.65);

  --shadow-purple:
    0 24px 80px rgba(117, 72, 255, 0.32);

  --font-primary: "Manrope", sans-serif;
  --font-display: "Sora", sans-serif;

  --container-width: 1240px;
  --container-padding: 32px;

  --radius-small: 12px;
  --radius-medium: 20px;
  --radius-large: 32px;
  --radius-pill: 999px;

  --transition-fast: 180ms ease;
  --transition-medium: 320ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================
   02. RESET
========================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

::selection {
  color: #ffffff;
  background: rgba(144, 92, 255, 0.72);
}

/* ==========================================================
   03. GLOBAL
========================================================== */

.container {
  width: min(
    calc(100% - var(--container-padding) * 2),
    var(--container-width)
  );
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 140px 0;
}

.gradient-text {
  color: transparent;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: var(--color-purple-light);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 26px;
  height: 1px;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-purple-light)
  );
}

.section-heading {
  max-width: 780px;
  margin-bottom: 66px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .section-kicker::after {
  width: 26px;
  height: 1px;
  content: "";
  background: linear-gradient(
    90deg,
    var(--color-purple-light),
    transparent
  );
}

.section-heading h2,
.benefits__content h2,
.demonstration__content h2,
.final-cta h2 {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 4.55rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.section-heading p,
.benefits__content > p,
.demonstration__content > p,
.final-cta__container > p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--color-text-soft);
  font-size: 1.06rem;
  line-height: 1.9;
}

.section-heading--center p {
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 16px;
  left: 16px;
  padding: 12px 18px;
  border-radius: var(--radius-small);
  color: #050509;
  background: #ffffff;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform var(--transition-fast);
}

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

/* ==========================================================
   04. BACKGROUND
========================================================== */

.site-background {
  position: fixed;
  z-index: -10;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 60% -5%,
      rgba(112, 66, 219, 0.14),
      transparent 35%
    ),
    linear-gradient(
      180deg,
      #06060b 0%,
      #050509 48%,
      #06050a 100%
    );
}

.site-background__grid {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.034) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.034) 1px,
      transparent 1px
    );
  background-size: 70px 70px;
  mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.75),
      transparent 75%
    );
}

.site-background__noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
}

.site-background__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.site-background__orb--one {
  top: -250px;
  right: 0;
  width: 650px;
  height: 650px;
  opacity: 0.26;
  background: #7c45ff;
}

.site-background__orb--two {
  top: 45%;
  left: -300px;
  width: 600px;
  height: 600px;
  opacity: 0.13;
  background: #4c53ff;
}

.site-background__orb--three {
  right: -220px;
  bottom: -280px;
  width: 580px;
  height: 580px;
  opacity: 0.12;
  background: #c147ff;
}

.cursor-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  opacity: 0.13;
  background: radial-gradient(
    circle,
    rgba(164, 112, 255, 0.62),
    transparent 68%
  );
  transform: translate(-50%, -50%);
  will-change: transform;
}

/* ==========================================================
   05. BUTTONS
========================================================== */

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  padding: 0 25px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform var(--transition-medium),
    border-color var(--transition-medium),
    background var(--transition-medium),
    box-shadow var(--transition-medium);
}

.button::before {
  position: absolute;
  top: 0;
  left: -130%;
  width: 80%;
  height: 100%;
  content: "";
  opacity: 0.42;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.52),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 700ms ease;
}

.button:hover::before {
  left: 150%;
}

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

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition-medium);
}

.button:hover > svg {
  transform: translateX(4px);
}

.button--primary {
  color: #ffffff;
  background: var(--gradient-button);
  box-shadow:
    0 15px 45px rgba(106, 72, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.button--primary:hover {
  box-shadow:
    0 20px 60px rgba(106, 72, 255, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.button--secondary {
  border-color: var(--border-medium);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.button--secondary:hover {
  border-color: rgba(183, 143, 255, 0.45);
  background: rgba(255, 255, 255, 0.075);
}

.button--small {
  min-height: 43px;
  padding-inline: 20px;
  font-size: 0.83rem;
}

.button--large {
  min-height: 58px;
  padding-inline: 29px;
}

.button__play {
  display: inline-grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.button__play svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke: none;
}

/* ==========================================================
   06. HEADER
========================================================== */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition:
    background var(--transition-medium),
    border-color var(--transition-medium),
    transform var(--transition-medium);
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.07);
  background: rgba(5, 5, 9, 0.76);
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(24px);
}

.site-header__inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 11px;
}

.brand__symbol {
  position: relative;
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid rgba(192, 163, 255, 0.3);
  border-radius: 12px;
  background:
    linear-gradient(
      145deg,
      rgba(173, 125, 255, 0.18),
      rgba(82, 51, 163, 0.05)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 30px rgba(93, 54, 199, 0.22);
}

.brand__symbol-core {
  width: 11px;
  height: 11px;
  border-radius: 4px;
  background: linear-gradient(135deg, #d8bcff, #7b54ff);
  box-shadow: 0 0 22px rgba(169, 119, 255, 0.75);
  transform: rotate(45deg);
}

.brand__symbol-ring {
  position: absolute;
  width: 23px;
  height: 23px;
  border: 1px solid rgba(210, 188, 255, 0.28);
  border-radius: 8px;
  transform: rotate(45deg);
}

.brand__content {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
}

.brand__name {
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 650;
}

.brand__product {
  color: var(--color-purple-light);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-navigation {
  display: flex;
  align-items: center;
  gap: 33px;
}

.desktop-navigation a,
.header-link {
  position: relative;
  color: var(--color-text-soft);
  font-size: 0.82rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.desktop-navigation a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--color-purple-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-medium);
}

.desktop-navigation a:hover,
.header-link:hover {
  color: #ffffff;
}

.desktop-navigation a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu-toggle {
  display: none;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid var(--border-soft);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: #ffffff;
  transition:
    transform var(--transition-medium),
    opacity var(--transition-medium);
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle.is-active span:first-child {
  transform: rotate(45deg);
}

.menu-toggle.is-active span:last-child {
  transform: rotate(-45deg);
}

.mobile-navigation {
  display: none;
}

/* ==========================================================
   07. HERO
========================================================== */

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  padding: 150px 0 60px;
  overflow: hidden;
  align-items: center;
}

.hero::before {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 1px;
  height: 130%;
  content: "";
  opacity: 0.42;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(171, 123, 255, 0.28),
    transparent
  );
  transform: rotate(24deg);
}

.hero__halo {
  position: absolute;
  top: 8%;
  right: -8%;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  opacity: 0.4;
  background:
    radial-gradient(
      circle,
      rgba(124, 78, 255, 0.25),
      transparent 62%
    );
  filter: blur(10px);
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 50px;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.9fr);
}

.hero__content {
  position: relative;
  z-index: 5;
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 26px;
  padding: 8px 14px;
  border: 1px solid rgba(190, 155, 255, 0.17);
  border-radius: var(--radius-pill);
  color: #c9b6ed;
  background: rgba(121, 75, 220, 0.08);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.eyebrow__pulse {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b891ff;
  box-shadow: 0 0 14px rgba(177, 135, 255, 0.9);
}

.eyebrow__pulse::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(184, 145, 255, 0.5);
  border-radius: 50%;
  content: "";
  animation: pulseRing 2s ease-out infinite;
}

.hero__title {
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: clamp(3.55rem, 6.2vw, 6.75rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.hero__title-line {
  display: block;
}

.hero__description {
  max-width: 650px;
  margin-bottom: 35px;
  color: var(--color-text-soft);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  line-height: 1.9;
}

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

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 25px;
  margin-top: 32px;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #918b9f;
  font-size: 0.72rem;
  font-weight: 600;
}

.hero__trust-icon {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid rgba(111, 239, 181, 0.22);
  border-radius: 50%;
  color: var(--color-green);
  background: rgba(111, 239, 181, 0.08);
}

.hero__trust-icon svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__bottom {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 25px;
  left: 0;
}

.hero__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.scroll-indicator {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--color-text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.scroll-indicator__mouse {
  position: relative;
  display: block;
  width: 22px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 20px;
}

.scroll-indicator__mouse span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 6px;
  border-radius: 4px;
  background: var(--color-purple-light);
  transform: translateX(-50%);
  animation: scrollMouse 1.8s ease-in-out infinite;
}

.hero__signature {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--color-text-muted);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__signature strong {
  color: #b7b0c4;
}

/* ==========================================================
   08. HERO VISUAL
========================================================== */

.hero-visual {
  position: relative;
  min-height: 650px;
  perspective: 1600px;
}

.hero-visual__light {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.hero-visual__light--one {
  top: 70px;
  right: 10px;
  width: 440px;
  height: 440px;
  opacity: 0.34;
  background: #7b42ff;
}

.hero-visual__light--two {
  right: 170px;
  bottom: 35px;
  width: 280px;
  height: 280px;
  opacity: 0.18;
  background: #e065ff;
}

.floating-label {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  color: #c7c1d3;
  background: rgba(13, 12, 21, 0.7);
  box-shadow: var(--shadow-small);
  font-size: 0.67rem;
  font-weight: 650;
  backdrop-filter: blur(20px);
}

.floating-label--top {
  top: 58px;
  right: 6px;
  animation: floating 5.5s ease-in-out infinite;
}

.floating-label--bottom {
  right: 25px;
  bottom: 65px;
  animation: floating 6.5s ease-in-out infinite reverse;
}

.floating-label__icon {
  color: var(--color-purple-light);
}

.floating-label__icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-label__status {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 14px rgba(114, 239, 183, 0.8);
}

.connect-card {
  position: absolute;
  z-index: 4;
  top: 235px;
  left: -35px;
  width: 345px;
  aspect-ratio: 1.586;
  overflow: hidden;
  border: 1px solid rgba(214, 191, 255, 0.18);
  border-radius: 21px;
  background:
    radial-gradient(
      circle at 70% 10%,
      rgba(195, 155, 255, 0.2),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #201931 0%,
      #0f0d18 45%,
      #09080f 100%
    );
  box-shadow:
    -30px 40px 100px rgba(0, 0, 0, 0.55),
    0 25px 75px rgba(99, 56, 209, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  transform: rotate(-9deg) rotateY(12deg);
  transform-style: preserve-3d;
  animation: cardFloat 6s ease-in-out infinite;
  will-change: transform;
}

.connect-card__shine {
  position: absolute;
  z-index: 5;
  top: -100%;
  left: -60%;
  width: 60%;
  height: 270%;
  opacity: 0.25;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: rotate(30deg);
  animation: cardShine 7s ease-in-out infinite;
}

.connect-card__texture {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background:
    repeating-linear-gradient(
      110deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 5px
    );
}

.connect-card__header,
.connect-card__footer {
  position: absolute;
  z-index: 3;
  right: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.connect-card__header {
  top: 20px;
}

.connect-card__footer {
  bottom: 18px;
}

.connect-card__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e8e1f3;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 600;
}

.connect-card__brand-symbol {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(199, 167, 255, 0.35);
  border-radius: 6px;
}

.connect-card__brand-symbol span {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: #b993ff;
  transform: rotate(45deg);
}

.connect-card__nfc {
  color: #c9b2f5;
}

.connect-card__nfc svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.connect-card__center {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}

.connect-card__monogram {
  position: relative;
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 10px;
  place-items: center;
  border: 1px solid rgba(213, 188, 255, 0.23);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(183, 135, 255, 0.18),
      rgba(255, 255, 255, 0.02)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 20px 35px rgba(0, 0, 0, 0.2);
  transform: rotate(45deg);
}

.connect-card__monogram::before {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(213, 188, 255, 0.12);
  border-radius: 17px;
  content: "";
}

.connect-card__monogram span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  transform: rotate(-45deg);
}

.connect-card__center p {
  margin: 16px 0 0;
  color: #a397b4;
  font-size: 0.46rem;
  font-weight: 800;
  letter-spacing: 0.45em;
}

.connect-card__person,
.connect-card__role {
  display: block;
}

.connect-card__person {
  color: #ffffff;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.connect-card__role {
  margin-top: 2px;
  color: #7f768e;
  font-size: 0.44rem;
}

.connect-card__tap {
  color: #7f768e;
  font-size: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.connection-waves {
  position: absolute;
  z-index: 3;
  top: 308px;
  left: 273px;
  width: 150px;
  height: 130px;
}

.connection-waves span {
  position: absolute;
  top: 50%;
  left: 0;
  border: 1px solid rgba(184, 145, 255, 0.42);
  border-left: 0;
  border-radius: 0 100px 100px 0;
  transform: translateY(-50%);
  animation: wavePulse 2s ease-out infinite;
}

.connection-waves span:nth-child(1) {
  width: 50px;
  height: 60px;
}

.connection-waves span:nth-child(2) {
  width: 85px;
  height: 95px;
  animation-delay: 0.25s;
}

.connection-waves span:nth-child(3) {
  width: 120px;
  height: 130px;
  animation-delay: 0.5s;
}

.phone-mockup {
  position: absolute;
  z-index: 5;
  top: 30px;
  right: 40px;
  width: 300px;
  aspect-ratio: 0.495;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 48px;
  background:
    linear-gradient(
      135deg,
      #3d3b43,
      #111014 25%,
      #3a373d 50%,
      #0f0e12 75%,
      #2f2d34
    );
  box-shadow:
    0 55px 120px rgba(0, 0, 0, 0.72),
    0 25px 90px rgba(106, 64, 230, 0.23),
    inset 0 0 0 2px rgba(255, 255, 255, 0.07);
  transform: rotate(5deg) rotateY(-7deg);
  transform-style: preserve-3d;
  animation: phoneFloat 7s ease-in-out infinite;
  will-change: transform;
}

.phone-mockup::before {
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 45px;
  content: "";
  pointer-events: none;
}

.phone-mockup__reflection {
  position: absolute;
  z-index: 6;
  top: 20px;
  left: 22px;
  width: 22%;
  height: 80%;
  border-radius: 50%;
  opacity: 0.18;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  filter: blur(10px);
  pointer-events: none;
}

.phone-mockup__button {
  position: absolute;
  width: 4px;
  border-radius: 3px;
  background: linear-gradient(#77737d, #17161a);
}

.phone-mockup__button--silent {
  top: 92px;
  left: -4px;
  height: 28px;
}

.phone-mockup__button--volume-one {
  top: 137px;
  left: -4px;
  height: 54px;
}

.phone-mockup__button--volume-two {
  top: 200px;
  left: -4px;
  height: 54px;
}

.phone-mockup__button--power {
  top: 155px;
  right: -4px;
  height: 82px;
}

.phone-mockup__screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 40px;
  background: #0c0911;
}

.phone-status {
  position: absolute;
  z-index: 20;
  top: 12px;
  right: 23px;
  left: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-size: 0.58rem;
  font-weight: 750;
}

.phone-status__icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.phone-status__icons svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-status__icons svg:first-child {
  fill: currentColor;
  stroke: none;
}

.phone-status__battery {
  display: block;
  width: 17px;
  height: 8px;
  padding: 1px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 3px;
}

.phone-status__battery span {
  display: block;
  width: 75%;
  height: 100%;
  border-radius: 1px;
  background: #ffffff;
}

.phone-island {
  position: absolute;
  z-index: 25;
  top: 9px;
  left: 50%;
  width: 86px;
  height: 25px;
  border-radius: 20px;
  background: #000000;
  transform: translateX(-50%);
}

.phone-island__camera {
  position: absolute;
  top: 50%;
  right: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 35% 35%,
      #31529a,
      #05070c 45%
    );
  transform: translateY(-50%);
}

.profile-screen {
  min-height: 100%;
  background:
    linear-gradient(
      180deg,
      #23162e 0%,
      #0e0b14 43%,
      #0b0910 100%
    );
}

.profile-screen__cover {
  position: relative;
  height: 180px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 60% 25%,
      rgba(175, 110, 255, 0.5),
      transparent 32%
    ),
    linear-gradient(
      140deg,
      #171020,
      #3a2056 48%,
      #0d0a12
    );
}

.profile-screen__cover::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      130deg,
      transparent 10%,
      rgba(255, 255, 255, 0.06) 45%,
      transparent 75%
    );
}

.profile-screen__cover-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px
    );
  background-size: 25px 25px;
  transform: perspective(300px) rotateX(62deg) scale(1.5);
}

.profile-screen__cover-glow {
  position: absolute;
  top: 45px;
  left: 50%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  opacity: 0.42;
  background: #a663ff;
  filter: blur(55px);
  transform: translateX(-50%);
}

.profile-screen__top-actions {
  position: absolute;
  z-index: 5;
  top: 45px;
  right: 17px;
  left: 17px;
  display: flex;
  justify-content: space-between;
}

.profile-screen__top-actions button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(5, 5, 8, 0.32);
  backdrop-filter: blur(12px);
}

.profile-screen__top-actions svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-screen__body {
  position: relative;
  z-index: 6;
  margin-top: -34px;
  padding: 0 18px 34px;
}

.profile-screen__avatar {
  display: grid;
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
  place-items: center;
  border: 4px solid #0d0a12;
  border-radius: 23px;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #c699ff,
      #7446ff
    );
  box-shadow:
    0 14px 35px rgba(95, 48, 215, 0.35);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
}

.profile-screen__identity {
  margin-bottom: 13px;
}

.profile-screen__verified {
  display: flex;
  align-items: center;
  gap: 7px;
}

.profile-screen__verified h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.profile-screen__verified svg {
  width: 15px;
  height: 15px;
  fill: #8b61ff;
  stroke: #ffffff;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-screen__identity p {
  margin: 1px 0 1px;
  color: #cac1d4;
  font-size: 0.68rem;
  font-weight: 650;
}

.profile-screen__identity > span {
  display: block;
  color: #787181;
  font-size: 0.55rem;
}

.profile-screen__bio {
  margin-bottom: 14px;
  color: #9e96aa;
  font-size: 0.58rem;
  line-height: 1.65;
}

.profile-screen__quick-actions {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
  grid-template-columns: repeat(3, 1fr);
}

.profile-screen__quick-actions a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 13px;
  color: #bba7e7;
  background: rgba(255, 255, 255, 0.035);
}

.profile-screen__quick-actions svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-screen__quick-actions span {
  color: #aaa3b3;
  font-size: 0.48rem;
  font-weight: 650;
}

.profile-screen__cta {
  display: flex;
  min-height: 42px;
  margin-bottom: 11px;
  padding: 0 14px;
  align-items: center;
  justify-content: space-between;
  border-radius: 11px;
  color: #ffffff;
  background: var(--gradient-button);
  box-shadow: 0 12px 26px rgba(101, 65, 226, 0.25);
  font-size: 0.58rem;
  font-weight: 750;
}

.profile-screen__cta svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-screen__mini-card {
  display: flex;
  min-height: 49px;
  padding: 8px 10px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
}

.profile-screen__mini-icon {
  display: grid;
  width: 29px;
  height: 29px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 9px;
  color: var(--color-purple-light);
  background: rgba(153, 102, 255, 0.12);
}

.profile-screen__mini-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-screen__mini-card div {
  min-width: 0;
  flex: 1;
}

.profile-screen__mini-card strong,
.profile-screen__mini-card span {
  display: block;
}

.profile-screen__mini-card strong {
  color: #d8d2df;
  font-size: 0.54rem;
}

.profile-screen__mini-card div span {
  color: #746e7d;
  font-size: 0.46rem;
}

.profile-screen__mini-arrow {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #716a7a;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-mockup__home-indicator {
  position: absolute;
  z-index: 20;
  bottom: 7px;
  left: 50%;
  width: 92px;
  height: 4px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  transform: translateX(-50%);
}

/* ==========================================================
   09. PROOF STRIP
========================================================== */

.proof-strip {
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.018);
  backdrop-filter: blur(18px);
}

.proof-strip__inner {
  display: grid;
  min-height: 120px;
  align-items: center;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
}

.proof-strip__item {
  padding: 22px 28px;
  text-align: center;
}

.proof-strip__item strong,
.proof-strip__item span {
  display: block;
}

.proof-strip__item strong {
  margin-bottom: 3px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.proof-strip__item span {
  color: var(--color-text-muted);
  font-size: 0.68rem;
}

.proof-strip__separator {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.08);
}

/* ==========================================================
   10. EXPERIENCE
========================================================== */

.experience {
  overflow: hidden;
}

.experience::before {
  position: absolute;
  top: 28%;
  left: 50%;
  width: 740px;
  height: 420px;
  border-radius: 50%;
  content: "";
  opacity: 0.1;
  background: #6f42ff;
  filter: blur(130px);
  transform: translateX(-50%);
}

.comparison {
  position: relative;
  display: grid;
  align-items: center;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.comparison-card {
  position: relative;
  min-height: 575px;
  padding: 35px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-large);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.01)
    );
  box-shadow: var(--shadow-medium);
}

.comparison-card--old {
  opacity: 0.72;
  filter: saturate(0.35);
}

.comparison-card--new {
  border-color: rgba(174, 130, 255, 0.22);
  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(142, 88, 255, 0.12),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.015)
    );
}

.comparison-card__glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  opacity: 0.24;
  background: #8a54ff;
  filter: blur(80px);
}

.comparison-card__label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: #9891a4;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-card__label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.comparison-card--new .comparison-card__label {
  color: var(--color-purple-light);
}

.paper-card {
  position: relative;
  width: 80%;
  max-width: 340px;
  aspect-ratio: 1.65;
  margin: 30px auto 48px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #5e5a62;
  border-radius: 8px;
  color: #353238;
  background: #cbc8ce;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
  transform: rotate(-4deg);
}

.paper-card::after {
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  content: "";
  background: rgba(0, 0, 0, 0.08);
  filter: blur(20px);
}

.paper-card__logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.paper-card__lines {
  position: absolute;
  bottom: 28px;
  left: 28px;
}

.paper-card__lines span {
  display: block;
  width: 110px;
  height: 5px;
  margin-top: 7px;
  border-radius: 10px;
  background: rgba(33, 31, 35, 0.25);
}

.paper-card__lines span:nth-child(2) {
  width: 80px;
}

.paper-card__lines span:nth-child(3) {
  width: 95px;
}

.digital-card-preview {
  position: relative;
  display: flex;
  min-height: 250px;
  margin: 15px 0 31px;
  align-items: center;
  justify-content: center;
}

.digital-card-preview__card {
  position: relative;
  z-index: 2;
  display: flex;
  width: 220px;
  aspect-ratio: 1.58;
  padding: 18px;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  border: 1px solid rgba(210, 182, 255, 0.23);
  border-radius: 15px;
  background:
    linear-gradient(
      145deg,
      #2a1c3c,
      #111019
    );
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.4),
    0 20px 60px rgba(113, 62, 225, 0.25);
  transform: rotate(-7deg);
}

.digital-card-preview__logo {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border: 1px solid rgba(204, 174, 255, 0.25);
  border-radius: 15px;
  color: #ffffff;
  background: rgba(179, 131, 255, 0.11);
  font-family: var(--font-display);
  font-weight: 650;
}

.digital-card-preview__card > span:last-child {
  color: #91889e;
  font-size: 0.44rem;
  letter-spacing: 0.35em;
}

.digital-card-preview__signal {
  position: relative;
  z-index: 1;
  width: 75px;
  height: 90px;
  margin-left: -7px;
}

.digital-card-preview__signal span {
  position: absolute;
  top: 50%;
  left: 0;
  border: 1px solid rgba(173, 126, 255, 0.35);
  border-left: 0;
  border-radius: 0 100px 100px 0;
  transform: translateY(-50%);
}

.digital-card-preview__signal span:nth-child(1) {
  width: 23px;
  height: 35px;
}

.digital-card-preview__signal span:nth-child(2) {
  width: 43px;
  height: 58px;
}

.digital-card-preview__signal span:nth-child(3) {
  width: 63px;
  height: 80px;
}

.digital-card-preview__phone {
  position: relative;
  z-index: 2;
  width: 90px;
  height: 185px;
  padding: 12px 8px;
  border: 3px solid #3f3c43;
  border-radius: 20px;
  background:
    linear-gradient(
      180deg,
      #3b2751,
      #0b0910
    );
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
  transform: rotate(5deg);
}

.digital-card-preview__phone-island {
  display: block;
  width: 30px;
  height: 8px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: #000000;
}

.digital-card-preview__phone-avatar {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto 9px;
  border-radius: 10px;
  background: linear-gradient(135deg, #c499ff, #7650ff);
}

.digital-card-preview__phone-line {
  display: block;
  width: 60%;
  height: 5px;
  margin: 5px auto;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
}

.digital-card-preview__phone-button {
  display: block;
  width: 70%;
  height: 20px;
  margin: 14px auto 0;
  border-radius: 6px;
  background: linear-gradient(135deg, #9d70ff, #6658ff);
}

.comparison-card__content {
  position: relative;
  z-index: 3;
}

.comparison-card__content h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.comparison-card__content p {
  margin-bottom: 24px;
  color: var(--color-text-soft);
  font-size: 0.9rem;
  line-height: 1.75;
}

.comparison-card__list {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 11px;
}

.comparison-card__list li {
  position: relative;
  padding-left: 22px;
  color: #9a94a5;
  font-size: 0.78rem;
}

.comparison-card__list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 9px;
  height: 1px;
  content: "";
  background: currentColor;
}

.comparison-card--new .comparison-card__list li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 12px rgba(114, 239, 183, 0.5);
}

.comparison__transition {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-purple-light);
}

.comparison__transition span {
  width: 18px;
  height: 1px;
  background: rgba(176, 131, 255, 0.28);
}

.comparison__transition svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================================
   11. DEMONSTRATION
========================================================== */

.demonstration {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.018),
      rgba(255, 255, 255, 0.006)
    );
}

.demonstration__background span {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.demonstration__background span:first-child {
  top: 5%;
  right: -100px;
  width: 520px;
  height: 520px;
  opacity: 0.16;
  background: #7743ff;
}

.demonstration__background span:last-child {
  bottom: -230px;
  left: 20%;
  width: 420px;
  height: 420px;
  opacity: 0.09;
  background: #e05cff;
}

.demonstration__container {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 90px;
  grid-template-columns: 0.8fr 1.2fr;
}

.demonstration__content h2 {
  font-size: clamp(2.75rem, 5.3vw, 5.2rem);
}

.demonstration__steps {
  display: grid;
  gap: 4px;
  margin-top: 40px;
}

.demo-step {
  display: flex;
  padding: 20px 0;
  align-items: flex-start;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.demo-step__number {
  flex-shrink: 0;
  color: var(--color-purple-light);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.demo-step h3 {
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 600;
}

.demo-step p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.76rem;
}

.interactive-demo {
  position: relative;
}

.interactive-demo__stage {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 40px;
  background:
    radial-gradient(
      circle at 60% 45%,
      rgba(137, 79, 255, 0.18),
      transparent 36%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.01)
    );
  box-shadow:
    var(--shadow-large),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.interactive-demo__stage::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    );
  background-size: 45px 45px;
  mask-image:
    radial-gradient(
      circle at center,
      black,
      transparent 75%
    );
}

.interactive-demo__card {
  position: absolute;
  z-index: 4;
  top: 195px;
  left: 45px;
  width: 270px;
  aspect-ratio: 1.58;
  padding: 21px;
  border: 1px solid rgba(208, 179, 255, 0.21);
  border-radius: 19px;
  background:
    radial-gradient(
      circle at 70% 10%,
      rgba(199, 160, 255, 0.18),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #241832,
      #0c0b11
    );
  box-shadow:
    0 35px 70px rgba(0, 0, 0, 0.42),
    0 25px 70px rgba(104, 58, 217, 0.24);
  transform: rotate(-8deg);
  transition:
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    left 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.interactive-demo__card-top,
.interactive-demo__card-bottom {
  display: flex;
  justify-content: space-between;
  color: #bfb3ca;
  font-size: 0.51rem;
  font-weight: 650;
}

.interactive-demo__card-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #cdb7f6;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.interactive-demo__card-center {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}

.interactive-demo__card-center strong {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 10px;
  place-items: center;
  border: 1px solid rgba(214, 187, 255, 0.23);
  border-radius: 18px;
  background: rgba(183, 133, 255, 0.09);
  font-family: var(--font-display);
  font-size: 1rem;
}

.interactive-demo__card-center span,
.interactive-demo__card-bottom {
  color: #7f7589;
  font-size: 0.4rem;
  letter-spacing: 0.27em;
}

.interactive-demo__card-bottom {
  position: absolute;
  right: 21px;
  bottom: 18px;
  left: 21px;
}

.interactive-demo__waves {
  position: absolute;
  z-index: 3;
  top: 222px;
  left: 300px;
  width: 140px;
  height: 130px;
  opacity: 0.75;
}

.interactive-demo__waves span {
  position: absolute;
  top: 50%;
  left: 0;
  border: 1px solid rgba(190, 150, 255, 0.38);
  border-left: 0;
  border-radius: 0 100px 100px 0;
  transform: translateY(-50%);
}

.interactive-demo__waves span:nth-child(1) {
  width: 40px;
  height: 55px;
}

.interactive-demo__waves span:nth-child(2) {
  width: 75px;
  height: 90px;
}

.interactive-demo__waves span:nth-child(3) {
  width: 110px;
  height: 125px;
}

.interactive-demo__device {
  position: absolute;
  z-index: 5;
  top: 50px;
  right: 75px;
  width: 210px;
  height: 430px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 35px;
  background:
    linear-gradient(
      135deg,
      #454149,
      #111015 42%,
      #38353c
    );
  box-shadow:
    0 45px 85px rgba(0, 0, 0, 0.6),
    0 30px 90px rgba(106, 67, 225, 0.2);
  transform: rotate(5deg);
  transition:
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.interactive-demo__device-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 29px;
  background:
    linear-gradient(
      180deg,
      #332044,
      #0d0a12 46%
    );
}

.interactive-demo__device-island {
  position: absolute;
  z-index: 5;
  top: 8px;
  left: 50%;
  width: 65px;
  height: 18px;
  border-radius: 20px;
  background: #000000;
  transform: translateX(-50%);
}

.interactive-demo__device-cover {
  height: 135px;
  background:
    radial-gradient(
      circle at center,
      rgba(176, 108, 255, 0.55),
      transparent 42%
    ),
    linear-gradient(
      140deg,
      #170f20,
      #3b2058
    );
}

.interactive-demo__device-profile {
  position: relative;
  z-index: 3;
  margin-top: -25px;
  padding: 0 15px;
  text-align: center;
}

.interactive-demo__device-avatar {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 8px;
  place-items: center;
  border: 3px solid #0f0b14;
  border-radius: 17px;
  background: linear-gradient(135deg, #c59aff, #7550ff);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 650;
}

.interactive-demo__device-profile strong,
.interactive-demo__device-profile small {
  display: block;
}

.interactive-demo__device-profile strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.interactive-demo__device-profile small {
  color: #857d91;
  font-size: 0.5rem;
}

.interactive-demo__device-actions {
  display: grid;
  gap: 5px;
  margin: 18px 0;
  grid-template-columns: repeat(3, 1fr);
}

.interactive-demo__device-actions span {
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.interactive-demo__device-cta {
  padding: 11px;
  border-radius: 9px;
  color: #ffffff;
  background: var(--gradient-button);
  font-size: 0.52rem;
  font-weight: 700;
}

.interactive-demo__success {
  position: absolute;
  z-index: 8;
  right: 70px;
  bottom: 42px;
  display: flex;
  padding: 11px 15px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(114, 239, 183, 0.2);
  border-radius: var(--radius-pill);
  color: #c8f7df;
  opacity: 0;
  background: rgba(14, 40, 29, 0.75);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  font-size: 0.67rem;
  font-weight: 650;
  transform: translateY(10px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
  backdrop-filter: blur(18px);
}

.interactive-demo__success span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-green);
  background: rgba(114, 239, 183, 0.12);
}

.interactive-demo__success svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.interactive-demo.is-active .interactive-demo__card {
  left: 175px;
  transform: rotate(-2deg) translateY(-4px);
}

.interactive-demo.is-active .interactive-demo__device {
  transform: rotate(1deg) scale(1.02);
}

.interactive-demo.is-active .interactive-demo__waves span {
  animation: wavePulse 1.5s ease-out infinite;
}

.interactive-demo.is-active .interactive-demo__success {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 850ms;
}

.demo-trigger {
  display: flex;
  margin: 24px auto 0;
  padding: 11px 18px 11px 12px;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  color: #d7d1df;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.73rem;
  font-weight: 650;
  transition:
    transform var(--transition-medium),
    border-color var(--transition-medium),
    background var(--transition-medium);
}

.demo-trigger:hover {
  border-color: rgba(176, 130, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.demo-trigger__icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--gradient-button);
  box-shadow: 0 8px 20px rgba(103, 66, 225, 0.3);
}

.demo-trigger__icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ==========================================================
   12. FEATURES
========================================================== */

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

.feature-card {
  position: relative;
  min-height: 360px;
  padding: 35px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-large);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.038),
      rgba(255, 255, 255, 0.012)
    );
  box-shadow: var(--shadow-small);
  transition:
    transform var(--transition-medium),
    border-color var(--transition-medium),
    background var(--transition-medium);
}

.feature-card:hover {
  border-color: rgba(176, 131, 255, 0.2);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.016)
    );
  transform: translateY(-7px);
}

.feature-card--large,
.feature-card--wide {
  min-height: 470px;
  grid-column: span 2;
}

.feature-card--large {
  display: grid;
  align-items: center;
  gap: 50px;
  grid-template-columns: 0.85fr 1.15fr;
}

.feature-card--wide {
  display: grid;
  align-items: center;
  gap: 60px;
  grid-template-columns: 0.8fr 1.2fr;
}

.feature-card__number {
  display: block;
  margin-bottom: 24px;
  color: var(--color-purple-light);
  font-family: var(--font-display);
  font-size: 0.63rem;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.feature-card h3 {
  max-width: 520px;
  margin-bottom: 15px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 2.3rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.feature-card p {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--color-text-soft);
  font-size: 0.88rem;
  line-height: 1.8;
}

.feature-card__details {
  display: grid;
  gap: 9px;
  margin-top: 25px;
}

.feature-card__details li {
  position: relative;
  padding-left: 22px;
  color: #9d96aa;
  font-size: 0.76rem;
}

.feature-card__details li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--color-purple-light);
  box-shadow: 0 0 12px rgba(182, 140, 255, 0.5);
}

.feature-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(192, 157, 255, 0.18);
  border-radius: 16px;
  color: var(--color-purple-light);
  background: rgba(151, 98, 255, 0.08);
}

.feature-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.identity-preview {
  display: grid;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      #16131e,
      #0b0a10
    );
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.45);
  grid-template-columns: 72px 1fr;
  transform: perspective(800px) rotateY(-5deg) rotateX(2deg);
}

.identity-preview__sidebar {
  display: flex;
  padding: 20px 15px;
  align-items: center;
  flex-direction: column;
  gap: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.identity-preview__logo {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #bc91ff, #6f51ff);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 650;
}

.identity-preview__sidebar > span:not(.identity-preview__logo) {
  width: 24px;
  height: 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.identity-preview__main {
  padding: 22px;
}

.identity-preview__header {
  display: flex;
  margin-bottom: 45px;
  align-items: center;
  justify-content: space-between;
}

.identity-preview__header > span {
  width: 90px;
  height: 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.09);
}

.identity-preview__header div {
  display: flex;
  gap: 8px;
}

.identity-preview__header i {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
}

.identity-preview__profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.identity-preview__avatar {
  display: grid;
  width: 66px;
  height: 66px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #c69dff,
      #714eff
    );
  box-shadow: 0 18px 38px rgba(98, 55, 218, 0.28);
  font-family: var(--font-display);
  font-weight: 650;
}

.identity-preview__profile strong,
.identity-preview__profile div span {
  display: block;
}

.identity-preview__profile strong {
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 0.86rem;
}

.identity-preview__profile div span {
  color: #706a7a;
  font-size: 0.58rem;
}

.identity-preview__blocks {
  display: grid;
  gap: 9px;
  margin-top: 28px;
  grid-template-columns: repeat(3, 1fr);
}

.identity-preview__blocks span {
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
}

.update-visual {
  position: absolute;
  right: 35px;
  bottom: 34px;
  left: 35px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.update-visual__old,
.update-visual__new {
  padding: 7px 11px;
  border-radius: var(--radius-pill);
  font-size: 0.58rem;
  font-weight: 700;
}

.update-visual__old {
  color: #817b89;
  background: rgba(255, 255, 255, 0.045);
  text-decoration: line-through;
}

.update-visual__new {
  color: #bcf3d6;
  background: rgba(114, 239, 183, 0.09);
}

.update-visual__line {
  position: relative;
  height: 1px;
  flex: 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.update-visual__line i {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-purple-light),
    transparent
  );
  animation: lineFlow 2.8s linear infinite;
}

.action-icons {
  position: absolute;
  right: 35px;
  bottom: 34px;
  left: 35px;
  display: flex;
  gap: 11px;
}

.action-icons span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 14px;
  color: #bfa6ed;
  background: rgba(255, 255, 255, 0.035);
  transition:
    transform var(--transition-medium),
    background var(--transition-medium);
}

.action-icons span:hover {
  background: rgba(163, 109, 255, 0.1);
  transform: translateY(-5px);
}

.action-icons svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.infinite-flow {
  display: flex;
  min-height: 230px;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.infinite-flow__node {
  padding: 11px 16px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  color: #afa8b8;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.65rem;
  font-weight: 650;
}

.infinite-flow__path {
  width: 70px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08),
    var(--color-purple)
  );
}

.infinite-flow__center {
  display: grid;
  width: 92px;
  height: 92px;
  flex-shrink: 0;
  place-items: center;
  border: 1px solid rgba(203, 174, 255, 0.27);
  border-radius: 28px;
  color: #ffffff;
  background:
    linear-gradient(
      145deg,
      rgba(185, 139, 255, 0.2),
      rgba(93, 58, 182, 0.05)
    );
  box-shadow:
    0 25px 60px rgba(102, 59, 220, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 650;
}

.infinite-flow__destinations {
  display: grid;
  width: 210px;
  gap: 9px;
  grid-template-columns: repeat(2, 1fr);
}

.infinite-flow__destinations span {
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 10px;
  color: #8f8899;
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
  font-size: 0.55rem;
}

/* ==========================================================
   13. PROFESSIONS
========================================================== */

.solutions {
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.012),
      transparent
    );
}

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

.profession-card {
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.012)
    );
  transition:
    transform var(--transition-medium),
    border-color var(--transition-medium),
    box-shadow var(--transition-medium);
}

.profession-card:hover {
  border-color: rgba(176, 131, 255, 0.22);
  box-shadow: var(--shadow-medium);
  transform: translateY(-8px);
}

.profession-card__visual {
  position: relative;
  display: grid;
  min-height: 235px;
  place-items: center;
  overflow: hidden;
}

.profession-card__visual::before,
.profession-card__visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  filter: blur(55px);
}

.profession-card__visual::before {
  top: 35px;
  left: 50%;
  width: 150px;
  height: 150px;
  opacity: 0.55;
  background: var(--profession-color, #8e61ff);
  transform: translateX(-50%);
}

.profession-card__visual::after {
  right: -20px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  opacity: 0.25;
  background: #ffffff;
}

.profession-card__visual--real-estate {
  --profession-color: #8d63ff;
  background:
    linear-gradient(
      140deg,
      #171126,
      #2e2048
    );
}

.profession-card__visual--wellness {
  --profession-color: #d47eff;
  background:
    linear-gradient(
      140deg,
      #211326,
      #422044
    );
}

.profession-card__visual--consulting {
  --profession-color: #6387ff;
  background:
    linear-gradient(
      140deg,
      #10172a,
      #1e2d4d
    );
}

.profession-card__visual--craft {
  --profession-color: #d49266;
  background:
    linear-gradient(
      140deg,
      #231711,
      #483020
    );
}

.profession-card__visual--hospitality {
  --profession-color: #d3ba68;
  background:
    linear-gradient(
      140deg,
      #201d11,
      #413b20
    );
}

.profession-card__visual--creative {
  --profession-color: #5bc6dd;
  background:
    linear-gradient(
      140deg,
      #101e25,
      #1c3d48
    );
}

.profession-card__number {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 22px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-display);
  font-size: 0.57rem;
  letter-spacing: 0.14em;
}

.profession-card__symbol {
  position: relative;
  z-index: 3;
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 29px;
  color: #ffffff;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.13),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow:
    0 25px 55px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  transition: transform var(--transition-medium);
}

.profession-card:hover .profession-card__symbol {
  transform: scale(1.06) rotate(-3deg);
}

.profession-card__symbol svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profession-card__content {
  padding: 27px 27px 29px;
}

.profession-card__content h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
}

.profession-card__content p {
  min-height: 68px;
  margin-bottom: 18px;
  color: var(--color-text-muted);
  font-size: 0.77rem;
  line-height: 1.7;
}

.profession-card__content > span {
  color: var(--color-purple-light);
  font-size: 0.66rem;
  font-weight: 700;
}

/* ==========================================================
   14. BENEFITS
========================================================== */

.benefits {
  overflow: hidden;
}

.benefits::before {
  position: absolute;
  top: 50%;
  left: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  content: "";
  opacity: 0.11;
  background: #7c4eff;
  filter: blur(130px);
  transform: translateY(-50%);
}

.benefits__container {
  display: grid;
  align-items: center;
  gap: 90px;
  grid-template-columns: 0.85fr 1.15fr;
}

.benefits__content {
  max-width: 510px;
}

.benefits__content .button {
  margin-top: 34px;
}

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

.benefit-card {
  min-height: 255px;
  padding: 27px;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.038),
      rgba(255, 255, 255, 0.01)
    );
  transition:
    transform var(--transition-medium),
    border-color var(--transition-medium),
    background var(--transition-medium);
}

.benefit-card:hover {
  border-color: rgba(179, 137, 255, 0.22);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.015)
    );
  transform: translateY(-6px);
}

.benefit-card:nth-child(2),
.benefit-card:nth-child(4) {
  transform: translateY(30px);
}

.benefit-card:nth-child(2):hover,
.benefit-card:nth-child(4):hover {
  transform: translateY(24px);
}

.benefit-card__icon {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(183, 142, 255, 0.18);
  border-radius: 14px;
  color: var(--color-purple-light);
  background: rgba(151, 98, 255, 0.08);
}

.benefit-card__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  margin-bottom: 11px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 0.74rem;
  line-height: 1.7;
}

/* ==========================================================
   15. STATEMENT
========================================================== */

.statement {
  padding-top: 80px;
  padding-bottom: 100px;
}

.statement__card {
  position: relative;
  max-width: 1000px;
  margin-inline: auto;
  padding: 80px 85px;
  overflow: hidden;
  border: 1px solid rgba(182, 142, 255, 0.14);
  border-radius: 38px;
  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(139, 84, 255, 0.13),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.012)
    );
  box-shadow: var(--shadow-medium);
  text-align: center;
}

.statement__glow {
  position: absolute;
  top: -150px;
  left: 50%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  opacity: 0.18;
  background: #8b51ff;
  filter: blur(100px);
  transform: translateX(-50%);
}

.statement__quote {
  position: relative;
  z-index: 2;
  display: block;
  height: 58px;
  color: var(--color-purple-light);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

.statement blockquote {
  position: relative;
  z-index: 2;
  max-width: 790px;
  margin: 0 auto 35px;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.4vw, 2.85rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.statement__author {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-align: left;
}

.statement__author-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: var(--gradient-button);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 650;
}

.statement__author strong,
.statement__author div span {
  display: block;
}

.statement__author strong {
  font-family: var(--font-display);
  font-size: 0.75rem;
}

.statement__author div span {
  color: var(--color-text-muted);
  font-size: 0.6rem;
}

/* ==========================================================
   16. FINAL CTA
========================================================== */

.final-cta {
  min-height: 760px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(121, 71, 240, 0.16),
      transparent 42%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.015),
      transparent
    );
}

.final-cta__background {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.final-cta__ring {
  position: absolute;
  border: 1px solid rgba(181, 139, 255, 0.11);
  border-radius: 50%;
  animation: ringRotate 22s linear infinite;
}

.final-cta__ring--one {
  width: 320px;
  height: 320px;
}

.final-cta__ring--two {
  width: 540px;
  height: 540px;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 32s;
}

.final-cta__ring--three {
  width: 780px;
  height: 780px;
  opacity: 0.45;
  animation-duration: 42s;
}

.final-cta__container {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 480px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.final-cta h2 {
  max-width: 970px;
  margin-inline: auto;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 1.02;
}

.final-cta__container > p {
  max-width: 670px;
  margin-inline: auto;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 37px;
}

.final-cta__reassurance {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: var(--color-text-muted);
  font-size: 0.66rem;
  font-weight: 600;
}

.final-cta__reassurance i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-purple-light);
}

/* ==========================================================
   17. FOOTER
========================================================== */

.site-footer {
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #050509;
}

.site-footer__top {
  display: grid;
  align-items: center;
  gap: 40px;
  grid-template-columns: 1fr 1.2fr 1fr;
}

.brand--footer {
  justify-self: start;
}

.site-footer__top > p {
  max-width: 420px;
  margin: 0;
  justify-self: center;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  line-height: 1.75;
  text-align: center;
}

.site-footer__contact {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 9px;
  color: #d8d2df;
  font-size: 0.75rem;
  font-weight: 650;
}

.site-footer__contact svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--color-purple-light);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition-medium);
}

.site-footer__contact:hover svg {
  transform: translateX(4px);
}

.site-footer__divider {
  height: 1px;
  margin: 48px 0 28px;
  background: rgba(255, 255, 255, 0.065);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.site-footer__bottom p {
  margin: 0;
  color: #686270;
  font-size: 0.63rem;
}

.site-footer__links {
  display: flex;
  gap: 22px;
}

.site-footer__links a,
.back-to-top {
  color: #736d7b;
  font-size: 0.62rem;
  transition: color var(--transition-fast);
}

.site-footer__links a:hover,
.back-to-top:hover {
  color: #ffffff;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.back-to-top svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================================
   18. LOADER
========================================================== */

.page-loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background:
    radial-gradient(
      circle at center,
      #171022,
      #050509 55%
    );
  transition:
    opacity 750ms ease,
    visibility 750ms ease;
}

.page-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.page-loader__logo {
  display: grid;
  width: 76px;
  height: 76px;
  margin-bottom: 27px;
  place-items: center;
  border: 1px solid rgba(203, 169, 255, 0.25);
  border-radius: 24px;
  color: #ffffff;
  background:
    linear-gradient(
      145deg,
      rgba(182, 134, 255, 0.2),
      rgba(255, 255, 255, 0.02)
    );
  box-shadow:
    0 25px 80px rgba(110, 67, 223, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 650;
  animation: loaderPulse 2s ease-in-out infinite;
}

.page-loader__line {
  width: 150px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.page-loader__line span {
  display: block;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-purple-light),
    transparent
  );
  animation: loaderLine 1.4s ease-in-out infinite;
}

.page-loader p {
  margin: 14px 0 0;
  color: #81798c;
  font-size: 0.52rem;
  font-weight: 750;
  letter-spacing: 0.4em;
}

/* ==========================================================
   19. REVEAL ANIMATIONS
========================================================== */

.reveal-item {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-heading,
.comparison-card,
.feature-card,
.profession-card,
.benefit-card,
.statement__card,
.demonstration__content,
.interactive-demo {
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================
   20. KEYFRAMES
========================================================== */

@keyframes pulseRing {
  0% {
    opacity: 0.7;
    transform: scale(0.6);
  }

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

@keyframes scrollMouse {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 11px);
  }
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: rotate(-9deg) rotateY(12deg) translateY(0);
  }

  50% {
    transform: rotate(-7deg) rotateY(8deg) translateY(-13px);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: rotate(5deg) rotateY(-7deg) translateY(0);
  }

  50% {
    transform: rotate(3.5deg) rotateY(-4deg) translateY(-15px);
  }
}

@keyframes cardShine {
  0%,
  45% {
    left: -80%;
  }

  70%,
  100% {
    left: 180%;
  }
}

@keyframes wavePulse {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0.75);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-50%) scale(1.08);
  }
}

@keyframes lineFlow {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(110%);
  }
}

@keyframes ringRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

@keyframes loaderLine {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(220%);
  }
}

/* ==========================================================
   21. RESPONSIVE — 1200 PX
========================================================== */

@media (max-width: 1200px) {
  :root {
    --container-padding: 26px;
  }

  .desktop-navigation {
    gap: 22px;
  }

  .hero__container {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
  }

  .hero-visual {
    min-height: 610px;
  }

  .phone-mockup {
    right: 10px;
    width: 270px;
  }

  .connect-card {
    left: -10px;
    width: 310px;
  }

  .connection-waves {
    left: 260px;
  }

  .interactive-demo__device {
    right: 40px;
  }

  .interactive-demo__card {
    left: 30px;
    width: 245px;
  }

  .interactive-demo.is-active .interactive-demo__card {
    left: 135px;
  }

  .demonstration__container,
  .benefits__container {
    gap: 60px;
  }
}

/* ==========================================================
   22. RESPONSIVE — TABLETTE
========================================================== */

@media (max-width: 1024px) {
  .section {
    padding: 110px 0;
  }

  .desktop-navigation,
  .header-link {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: grid;
  }

  .mobile-navigation {
    display: block;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
    background: rgba(6, 6, 10, 0.96);
    transition:
      max-height var(--transition-slow),
      border-color var(--transition-medium);
    backdrop-filter: blur(24px);
  }

  .mobile-navigation.is-open {
    max-height: 480px;
    border-color: rgba(255, 255, 255, 0.07);
  }

  .mobile-navigation__inner {
    display: flex;
    width: min(
      calc(100% - var(--container-padding) * 2),
      var(--container-width)
    );
    margin-inline: auto;
    padding: 24px 0 30px;
    flex-direction: column;
    gap: 0;
  }

  .mobile-navigation__inner > a:not(.button) {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    color: var(--color-text-soft);
    font-size: 0.9rem;
    font-weight: 600;
  }

  .mobile-navigation__inner .button {
    margin-top: 22px;
  }

  .hero {
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 110px;
  }

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

  .hero__content {
    max-width: 820px;
  }

  .hero__title {
    max-width: 860px;
    font-size: clamp(3.8rem, 9vw, 6.6rem);
  }

  .hero__description {
    max-width: 700px;
  }

  .hero-visual {
    width: 690px;
    max-width: 100%;
    min-height: 650px;
    margin: 20px auto 0;
  }

  .phone-mockup {
    right: 75px;
    width: 290px;
  }

  .connect-card {
    left: 25px;
    width: 330px;
  }

  .connection-waves {
    left: 300px;
  }

  .hero__bottom {
    bottom: 24px;
  }

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

  .proof-strip__separator {
    display: none;
  }

  .proof-strip__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .proof-strip__item:nth-child(1),
  .proof-strip__item:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

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

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

  .comparison__transition {
    justify-content: center;
    transform: rotate(90deg);
  }

  .demonstration__container,
  .benefits__container {
    grid-template-columns: 1fr;
  }

  .demonstration__content,
  .benefits__content {
    max-width: 760px;
  }

  .interactive-demo {
    max-width: 720px;
    margin-inline: auto;
  }

  .feature-card--large,
  .feature-card--wide {
    grid-template-columns: 1fr;
  }

  .identity-preview {
    width: 100%;
  }

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

  .benefits__grid {
    max-width: 760px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand--footer,
  .site-footer__top > p,
  .site-footer__contact {
    justify-self: center;
  }
}

/* ==========================================================
   23. RESPONSIVE — MOBILE
========================================================== */

@media (max-width: 700px) {
  :root {
    --container-padding: 18px;
  }

  .section {
    padding: 90px 0;
  }

  .site-header__inner {
    min-height: 76px;
  }

  .site-header__actions .button {
    display: none;
  }

  .brand__symbol {
    width: 34px;
    height: 34px;
  }

  .brand__name {
    font-size: 0.86rem;
  }

  .brand__product {
    font-size: 0.63rem;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 100px;
  }

  .hero__title {
    font-size: clamp(3rem, 14vw, 4.8rem);
    letter-spacing: -0.065em;
  }

  .hero__title-line {
    display: inline;
  }

  .hero__description {
    font-size: 0.94rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__trust {
    display: grid;
    gap: 11px;
  }

  .hero-visual {
    min-height: 530px;
    margin-top: 5px;
    transform: scale(0.92);
    transform-origin: top center;
  }

  .phone-mockup {
    top: 25px;
    right: 0;
    width: 235px;
    border-radius: 40px;
  }

  .phone-mockup__screen {
    border-radius: 33px;
  }

  .connect-card {
    top: 220px;
    left: -25px;
    width: 255px;
  }

  .connection-waves {
    top: 265px;
    left: 200px;
    width: 90px;
    transform: scale(0.72);
  }

  .floating-label--top {
    top: 0;
    right: 5px;
  }

  .floating-label--bottom {
    right: 5px;
    bottom: 0;
  }

  .hero__bottom {
    display: none;
  }

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

  .proof-strip__item {
    border-right: 0 !important;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .section-heading h2,
  .benefits__content h2,
  .demonstration__content h2 {
    font-size: clamp(2.25rem, 11vw, 3.6rem);
  }

  .comparison-card {
    padding: 24px;
    border-radius: 25px;
  }

  .paper-card {
    width: 92%;
  }

  .digital-card-preview {
    transform: scale(0.86);
  }

  .demonstration__container {
    gap: 55px;
  }

  .interactive-demo__stage {
    min-height: 500px;
    border-radius: 29px;
  }

  .interactive-demo__card {
    top: 210px;
    left: 10px;
    width: 190px;
  }

  .interactive-demo__device {
    top: 45px;
    right: 18px;
    width: 165px;
    height: 345px;
  }

  .interactive-demo__waves {
    top: 230px;
    left: 175px;
    transform: scale(0.68);
    transform-origin: left center;
  }

  .interactive-demo.is-active .interactive-demo__card {
    left: 80px;
  }

  .interactive-demo__success {
    right: 20px;
    bottom: 25px;
  }

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

  .feature-card,
  .feature-card--large,
  .feature-card--wide {
    min-height: auto;
    padding: 27px;
    grid-column: span 1;
  }

  .identity-preview {
    min-height: 270px;
    grid-template-columns: 54px 1fr;
    transform: none;
  }

  .identity-preview__sidebar {
    padding-inline: 8px;
  }

  .identity-preview__logo {
    width: 34px;
    height: 34px;
  }

  .identity-preview__main {
    padding: 17px;
  }

  .identity-preview__profile {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .identity-preview__blocks span:last-child {
    display: none;
  }

  .update-visual,
  .action-icons {
    position: static;
    margin-top: 35px;
  }

  .infinite-flow {
    flex-direction: column;
  }

  .infinite-flow__path {
    width: 1px;
    height: 30px;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.08),
      var(--color-purple)
    );
  }

  .professions-grid,
  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .profession-card__content p {
    min-height: 0;
  }

  .benefit-card:nth-child(2),
  .benefit-card:nth-child(4),
  .benefit-card:nth-child(2):hover,
  .benefit-card:nth-child(4):hover {
    transform: none;
  }

  .statement {
    padding-top: 60px;
  }

  .statement__card {
    padding: 55px 25px;
    border-radius: 28px;
  }

  .statement blockquote {
    font-size: 1.6rem;
  }

  .final-cta {
    min-height: 700px;
  }

  .final-cta h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .final-cta__actions {
    width: 100%;
    flex-direction: column;
  }

  .final-cta__actions .button {
    width: 100%;
  }

  .final-cta__reassurance {
    flex-direction: column;
  }

  .final-cta__reassurance i {
    display: none;
  }

  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .site-footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ==========================================================
   24. TRÈS PETITS ÉCRANS
========================================================== */

@media (max-width: 430px) {
  .hero-visual {
    width: 430px;
    margin-left: 50%;
    transform: translateX(-50%) scale(0.84);
  }

  .eyebrow {
    font-size: 0.6rem;
  }

  .interactive-demo__stage {
    min-height: 460px;
  }

  .interactive-demo__device {
    width: 150px;
    height: 315px;
  }

  .interactive-demo__card {
    top: 200px;
    width: 170px;
  }

  .interactive-demo.is-active .interactive-demo__card {
    left: 55px;
  }

  .interactive-demo__waves {
    left: 150px;
  }

  .interactive-demo__success {
    font-size: 0.57rem;
  }
}

/* ==========================================================
   25. ACCESSIBILITÉ — MOUVEMENTS RÉDUITS
========================================================== */

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

  .reveal-item {
    opacity: 1;
    transform: none;
  }
}
.desktop-navigation a.is-active {
  color: #ffffff;
}

.desktop-navigation a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.keyboard-navigation a:focus-visible,
.keyboard-navigation button:focus-visible {
  outline: 2px solid var(--color-purple-light);
  outline-offset: 5px;
}
/* ==========================================================
   HERO SIGNATURE V2
========================================================== */

.hero--signature-v2 {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  padding: 150px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 78% 38%,
      rgba(111, 61, 255, 0.2),
      transparent 34%
    ),
    radial-gradient(
      circle at 15% 82%,
      rgba(74, 43, 158, 0.09),
      transparent 30%
    ),
    linear-gradient(135deg, #06070d 0%, #090812 47%, #100922 100%);
}

.hero--signature-v2::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: auto;
  height: auto;
  content: "";
  opacity: 0.42;
  background-image:
    linear-gradient(
      rgba(164, 125, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(164, 125, 255, 0.035) 1px,
      transparent 1px
    );
  background-size: 70px 70px;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 55%,
    #000 100%
  );
  transform: none;
}

.hero--signature-v2::after {
  position: absolute;
  z-index: -1;
  top: -35%;
  left: 51%;
  width: 1px;
  height: 160%;
  content: "";
  opacity: 0.5;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(167, 115, 255, 0.34),
    transparent
  );
  transform: rotate(24deg);
}

.hero--signature-v2 .hero__halo {
  top: -120px;
  right: -170px;
  width: 920px;
  height: 920px;
  opacity: 0.72;
  background: radial-gradient(
    circle,
    rgba(114, 63, 255, 0.3) 0%,
    rgba(94, 48, 213, 0.14) 36%,
    transparent 68%
  );
  filter: blur(18px);
}

.hero--signature-v2 .hero__container {
  grid-template-columns: minmax(520px, 1fr) minmax(500px, 0.92fr);
  gap: clamp(35px, 4vw, 80px);
}

.hero--signature-v2 .hero__content {
  max-width: 760px;
}

.hero--signature-v2 .eyebrow {
  margin-bottom: 25px;
  padding: 9px 15px;
  border-color: rgba(187, 151, 255, 0.2);
  color: #cdb9f5;
  background: rgba(119, 71, 219, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 40px rgba(0, 0, 0, 0.18);
}

.hero--signature-v2 .hero__title {
  max-width: 760px;
  margin-bottom: 15px;
  font-size: clamp(3.65rem, 5.7vw, 6.8rem);
  font-weight: 600;
  line-height: 0.91;
  letter-spacing: -0.072em;
  text-wrap: balance;
}

.hero--signature-v2 .gradient-text {
  display: inline-block;
  color: transparent;
  background:
    linear-gradient(
      100deg,
      #ffffff 0%,
      #d4bfff 26%,
      #a879ff 58%,
      #744bff 100%
    );
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 0 24px rgba(145, 91, 255, 0.22));
}

.hero__signature-line {
  margin-bottom: 23px;
  color: #b491ff;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero--signature-v2 .hero__description {
  max-width: 660px;
  margin-bottom: 31px;
  color: #9c96aa;
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  line-height: 1.8;
}

.hero--signature-v2 .hero__actions {
  gap: 12px;
}

.hero--signature-v2 .hero__actions .button {
  min-height: 62px;
}

.hero--signature-v2 .button--primary {
  box-shadow:
    0 16px 45px rgba(103, 58, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero--signature-v2 .hero__trust {
  gap: 12px 23px;
  margin-top: 28px;
}

.hero--signature-v2 .hero__trust-item {
  color: #858090;
}

/* ==========================================================
   VISUEL SIGNATURE V2
========================================================== */

.hero--signature-v2 .hero-visual {
  min-height: 690px;
  perspective: 1800px;
  transform-style: preserve-3d;
}

.hero-visual__orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(173, 132, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-visual__orbit--one {
  top: 60px;
  right: -55px;
  width: 570px;
  height: 570px;
  animation: signatureOrbit 18s linear infinite;
}

.hero-visual__orbit--two {
  top: 135px;
  right: 18px;
  width: 420px;
  height: 420px;
  border-style: dashed;
  opacity: 0.7;
  animation: signatureOrbitReverse 24s linear infinite;
}

.hero-visual__orbit--one::before,
.hero-visual__orbit--two::before {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: #a777ff;
  box-shadow:
    0 0 12px #a777ff,
    0 0 28px rgba(167, 119, 255, 0.8);
}

.hero--signature-v2 .hero-visual__light--one {
  top: 110px;
  right: -40px;
  width: 430px;
  height: 430px;
  opacity: 0.62;
  background: rgba(116, 61, 255, 0.32);
}

.hero--signature-v2 .hero-visual__light--two {
  right: 250px;
  bottom: 30px;
  width: 280px;
  height: 280px;
  opacity: 0.3;
  background: rgba(157, 97, 255, 0.25);
}

/* Carte */

.hero--signature-v2 .connect-card {
  z-index: 4;
  top: 315px;
  right: 255px;
  width: 350px;
  height: 220px;
  border-color: rgba(204, 174, 255, 0.2);
  background:
    radial-gradient(
      circle at 80% 18%,
      rgba(157, 103, 255, 0.18),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(38, 27, 61, 0.97),
      rgba(10, 10, 18, 0.98)
    );
  box-shadow:
    0 45px 90px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.025),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform:
    rotateX(6deg)
    rotateY(19deg)
    rotateZ(-7deg);
}

.hero--signature-v2 .connect-card__brand {
  font-size: 0.78rem;
}

.hero--signature-v2 .connect-card__monogram {
  width: 70px;
  height: 70px;
}

.hero--signature-v2 .connect-card__center p {
  font-size: 0.62rem;
  letter-spacing: 0.38em;
}

.hero--signature-v2 .connect-card__footer {
  align-items: flex-end;
}

/* Téléphone */

.hero--signature-v2 .phone-mockup {
  z-index: 6;
  top: 35px;
  right: 12px;
  width: 330px;
  height: 650px;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 55px 110px rgba(0, 0, 0, 0.62),
    0 0 0 2px rgba(143, 104, 224, 0.12),
    0 0 70px rgba(101, 50, 220, 0.19),
    inset 0 1px 1px rgba(255, 255, 255, 0.25);
  transform:
    rotateX(2deg)
    rotateY(-7deg)
    rotateZ(3deg);
}

.hero--signature-v2 .phone-mockup__screen {
  background: #090810;
}

.hero--signature-v2 .profile-screen__cover {
  min-height: 168px;
  background:
    radial-gradient(
      circle at 70% 30%,
      rgba(191, 145, 255, 0.38),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #30155f 0%,
      #642f9d 48%,
      #1a102e 100%
    );
}

.profile-screen__live {
  position: absolute;
  right: 18px;
  bottom: 17px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(8, 6, 16, 0.35);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero--signature-v2 .profile-screen__body {
  padding-top: 0;
}

.hero--signature-v2 .profile-screen__avatar {
  display: grid;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(
      135deg,
      #b987ff,
      #7045ff
    );
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow:
    0 12px 30px rgba(94, 45, 220, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero--signature-v2 .profile-screen__verified span {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #ad7cff, #7146ff);
  font-size: 0.65rem;
  font-weight: 900;
}

.profile-action__icon {
  display: grid;
  min-height: 18px;
  place-items: center;
  color: #c6a8ff;
  font-size: 0.9rem;
}

.hero--signature-v2 .profile-screen__quick-actions a {
  transition:
    border-color 250ms ease,
    background 250ms ease,
    transform 250ms ease;
}

.hero--signature-v2 .profile-screen__quick-actions a:hover {
  border-color: rgba(171, 125, 255, 0.35);
  background: rgba(139, 87, 255, 0.1);
  transform: translateY(-2px);
}

.hero--signature-v2 .profile-screen__mini-icon {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
}

/* Éléments flottants */

.hero--signature-v2 .floating-label {
  z-index: 10;
  border-color: rgba(190, 157, 255, 0.16);
  background: rgba(17, 13, 29, 0.76);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.hero--signature-v2 .floating-label--top {
  top: 105px;
  right: -15px;
}

.hero--signature-v2 .floating-label--bottom {
  right: -5px;
  bottom: 80px;
}

.hero-visual__badge {
  position: absolute;
  z-index: 9;
  bottom: 36px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 15px;
  border: 1px solid rgba(188, 151, 255, 0.14);
  border-radius: 16px;
  color: #aaa1ba;
  background: rgba(11, 9, 19, 0.7);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.hero-visual__badge > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(181, 139, 255, 0.2);
  border-radius: 10px;
  color: #c8a9ff;
  background: rgba(135, 79, 255, 0.1);
  font-size: 0.67rem;
  font-weight: 800;
}

.hero-visual__badge div {
  display: grid;
  gap: 2px;
}

.hero-visual__badge strong {
  color: #d7d0e1;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
}

.hero-visual__badge small {
  color: #777080;
  font-size: 0.48rem;
  letter-spacing: 0.08em;
}

/* Bas du Hero */

.hero--signature-v2 .hero__bottom {
  bottom: 24px;
}

.hero--signature-v2 .scroll-indicator,
.hero--signature-v2 .hero__signature {
  opacity: 0.78;
}

/* Animations */

@keyframes signatureOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes signatureOrbitReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

/* ==========================================================
   HERO SIGNATURE V2 — TABLETTE
========================================================== */

@media (max-width: 1200px) {
  .hero--signature-v2 .hero__container {
    grid-template-columns: minmax(430px, 1fr) minmax(430px, 0.85fr);
    gap: 25px;
  }

  .hero--signature-v2 .hero__title {
    font-size: clamp(3.4rem, 5.8vw, 5.7rem);
  }

  .hero--signature-v2 .hero-visual {
    transform: scale(0.9);
    transform-origin: center right;
  }
}

@media (max-width: 1024px) {
  .hero--signature-v2 {
    padding-top: 135px;
  }

  .hero--signature-v2 .hero__container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero--signature-v2 .hero__content {
    max-width: 780px;
  }

  .hero--signature-v2 .hero__title {
    font-size: clamp(3.7rem, 8vw, 6.2rem);
  }

  .hero--signature-v2 .hero-visual {
    width: min(100%, 670px);
    min-height: 690px;
    margin: 0 auto;
    transform: none;
  }

  .hero--signature-v2 .hero__bottom {
    display: none;
  }
}

/* ==========================================================
   HERO SIGNATURE V2 — MOBILE
========================================================== */

@media (max-width: 700px) {
  .hero--signature-v2 {
    min-height: auto;
    padding: 115px 0 65px;
  }

  .hero--signature-v2::before {
    background-size: 45px 45px;
  }

  .hero--signature-v2 .hero__container {
    display: flex;
    flex-direction: column;
    gap: 38px;
  }

  .hero--signature-v2 .eyebrow {
    margin-bottom: 20px;
    padding: 8px 12px;
    font-size: 0.61rem;
  }

  .hero--signature-v2 .hero__title {
    margin-bottom: 14px;
    font-size: clamp(3rem, 14vw, 4.65rem);
    line-height: 0.94;
    letter-spacing: -0.065em;
  }

  .hero__signature-line {
    margin-bottom: 18px;
    font-size: 1.05rem;
  }

  .hero--signature-v2 .hero__description {
    margin-bottom: 26px;
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .hero--signature-v2 .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero--signature-v2 .hero__actions .button {
    width: 100%;
    min-height: 57px;
  }

  .hero--signature-v2 .hero__trust {
    display: grid;
    gap: 10px;
    margin-top: 25px;
  }

  .hero--signature-v2 .hero-visual {
    width: 100%;
    min-height: 555px;
    margin: 0;
    transform: none;
  }

  .hero-visual__orbit--one {
    top: 30px;
    right: -145px;
    width: 460px;
    height: 460px;
  }

  .hero-visual__orbit--two {
    top: 91px;
    right: -73px;
    width: 335px;
    height: 335px;
  }

  .hero--signature-v2 .phone-mockup {
    top: 20px;
    right: 0;
    left: auto;
    width: 265px;
    height: 525px;
  }

  .hero--signature-v2 .connect-card {
    top: 280px;
    right: 142px;
    left: auto;
    width: 265px;
    height: 168px;
  }

  .hero--signature-v2 .connect-card__monogram {
    width: 54px;
    height: 54px;
  }

  .hero--signature-v2 .floating-label--top {
    top: 75px;
    right: -12px;
  }

  .hero--signature-v2 .floating-label--bottom {
    right: -7px;
    bottom: 48px;
  }

  .hero-visual__badge {
    bottom: 5px;
    left: 0;
    transform: scale(0.86);
    transform-origin: left bottom;
  }
}

@media (max-width: 430px) {
  .hero--signature-v2 .hero__title {
    font-size: clamp(2.75rem, 13.5vw, 3.65rem);
  }

  .hero--signature-v2 .hero-visual {
    min-height: 510px;
  }

  .hero--signature-v2 .phone-mockup {
    right: -20px;
    width: 238px;
    height: 480px;
  }

  .hero--signature-v2 .connect-card {
    top: 260px;
    right: 115px;
    width: 235px;
    height: 150px;
  }

  .hero--signature-v2 .floating-label {
    font-size: 0.58rem;
  }

  .hero--signature-v2 .floating-label--top {
    right: -15px;
  }

  .hero--signature-v2 .floating-label--bottom {
    right: -14px;
  }

  .hero-visual__badge {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual__orbit {
    animation: none;
  }
}
/* CORRECTION POSITION HERO SIGNATURE V2 */

@media (min-width: 1025px) {
  .hero--signature-v2 .hero__container {
    transform: translateY(-85px);
  }
}
/* CORRECTION TITRE MOBILE HERO SIGNATURE V2 */

@media (max-width: 700px) {
  .hero--signature-v2 .hero__title {
    font-size: clamp(2.8rem, 10.8vw, 3.35rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
  }
}

@media (max-width: 430px) {
  .hero--signature-v2 .hero__title {
    font-size: clamp(2.65rem, 10.5vw, 3.1rem);
  }
}
/* ==========================================================
   BANDE DE PREUVES — SIGNATURE V2
========================================================== */

.proof-strip {
  position: relative;
  z-index: 6;
  overflow: hidden;
  border-top: 1px solid rgba(182, 145, 255, 0.12);
  border-bottom: 1px solid rgba(182, 145, 255, 0.1);
  background:
    linear-gradient(
      90deg,
      rgba(8, 8, 15, 0.96),
      rgba(26, 16, 45, 0.92) 50%,
      rgba(8, 8, 15, 0.96)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 25px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px);
}

.proof-strip::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 55%;
  height: 1px;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    rgba(172, 124, 255, 0.72),
    transparent
  );
  transform: translateX(-50%);
}

.proof-strip::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 120px;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  background: rgba(117, 68, 232, 0.08);
  filter: blur(60px);
  transform: translate(-50%, -50%);
}

.proof-strip__inner {
  position: relative;
  z-index: 2;
  min-height: 132px;
}

.proof-strip__item {
  position: relative;
  padding: 28px 24px;
}

.proof-strip__item strong {
  margin-bottom: 7px;
  color: transparent;
  background: linear-gradient(
    100deg,
    #ffffff,
    #d8c4ff 55%,
    #a778ff
  );
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.proof-strip__item span {
  color: #817b8c;
  font-size: 0.7rem;
  line-height: 1.5;
}

.proof-strip__separator {
  height: 42px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(187, 151, 255, 0.18),
    transparent
  );
}

/* Tablette */

@media (max-width: 1024px) {
  .proof-strip__inner {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
    padding: 15px 0;
  }

  .proof-strip__separator {
    display: none;
  }

  .proof-strip__item {
    padding: 24px 18px;
  }

  .proof-strip__item:nth-of-type(1),
  .proof-strip__item:nth-of-type(3) {
    border-right: 1px solid rgba(185, 148, 255, 0.09);
  }

  .proof-strip__item:nth-of-type(1),
  .proof-strip__item:nth-of-type(2) {
    border-bottom: 1px solid rgba(185, 148, 255, 0.09);
  }
}

/* Mobile */

@media (max-width: 700px) {
  .proof-strip__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px 0;
  }

  .proof-strip__item {
    display: grid;
    min-height: 112px;
    padding: 20px 12px;
    place-content: center;
  }

  .proof-strip__item strong {
    margin-bottom: 5px;
    font-size: 1rem;
  }

  .proof-strip__item span {
    max-width: 150px;
    margin: 0 auto;
    font-size: 0.65rem;
  }

  .proof-strip__item:nth-of-type(1),
  .proof-strip__item:nth-of-type(3) {
    border-right: 1px solid rgba(185, 148, 255, 0.1);
  }

  .proof-strip__item:nth-of-type(1),
  .proof-strip__item:nth-of-type(2) {
    border-bottom: 1px solid rgba(185, 148, 255, 0.1);
  }
}
/* ==========================================================
   COMPARAISON — SIGNATURE V2
========================================================== */

.experience {
  position: relative;
  background:
    radial-gradient(
      circle at 50% 15%,
      rgba(103, 55, 219, 0.14),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      rgba(8, 8, 15, 0.98),
      rgba(11, 8, 20, 1)
    );
}

.experience::after {
  position: absolute;
  top: 32%;
  left: 50%;
  width: 1px;
  height: 52%;
  content: "";
  opacity: 0.22;
  background: linear-gradient(
    to bottom,
    transparent,
    #a36fff,
    transparent
  );
  transform: translateX(-50%);
}

.comparison {
  position: relative;
  z-index: 2;
}

.comparison-card {
  overflow: hidden;
  border-color: rgba(191, 153, 255, 0.13);
  background:
    radial-gradient(
      circle at 50% 10%,
      rgba(115, 66, 218, 0.11),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(18, 14, 30, 0.97),
      rgba(8, 8, 14, 0.99)
    );
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.comparison-card--old {
  opacity: 0.82;
  filter: saturate(0.7);
}

.comparison-card--new {
  border-color: rgba(166, 116, 255, 0.3);
  background:
    radial-gradient(
      circle at 48% 22%,
      rgba(128, 70, 240, 0.2),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      rgba(25, 16, 44, 0.98),
      rgba(8, 8, 15, 0.99)
    );
  box-shadow:
    0 45px 110px rgba(0, 0, 0, 0.36),
    0 0 55px rgba(105, 55, 224, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.065);
}

.comparison-card--new::before {
  position: absolute;
  top: 0;
  left: 12%;
  width: 76%;
  height: 1px;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    rgba(187, 143, 255, 0.9),
    transparent
  );
}

.comparison-card__label {
  letter-spacing: 0.13em;
}

.comparison-card--new .comparison-card__label {
  color: #c9a9ff;
}

/* Ancienne carte papier */

.paper-card {
  border: 1px solid rgba(255, 255, 255, 0.17);
  background:
    linear-gradient(
      145deg,
      #e7e7e9,
      #c8c8cc
    );
  box-shadow:
    0 28px 55px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: rotate(-4deg);
}

.paper-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  opacity: 0.42;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 3px,
      rgba(0, 0, 0, 0.025) 4px
    );
}

.paper-card__logo,
.paper-card__lines {
  position: relative;
  z-index: 2;
}

/* Aperçu Connect */

.digital-card-preview {
  isolation: isolate;
}

.digital-card-preview::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  content: "";
  background: rgba(126, 67, 248, 0.19);
  filter: blur(45px);
  transform: translate(-50%, -50%);
}

.digital-card-preview__card {
  border-color: rgba(204, 170, 255, 0.25);
  background:
    radial-gradient(
      circle at 80% 18%,
      rgba(167, 104, 255, 0.2),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #291b3d,
      #100d18
    );
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.digital-card-preview__logo {
  box-shadow:
    0 12px 25px rgba(105, 54, 220, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.digital-card-preview__phone {
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(
      165deg,
      #21152f,
      #09080f
    );
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.48),
    0 0 30px rgba(122, 66, 245, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.digital-card-preview__phone-avatar,
.digital-card-preview__phone-button {
  background: linear-gradient(
    135deg,
    #b783ff,
    #7046ff
  );
  box-shadow: 0 8px 22px rgba(111, 59, 230, 0.3);
}

.comparison-card--new .comparison-card__list li::before {
  box-shadow:
    0 0 10px rgba(103, 240, 185, 0.7),
    0 0 22px rgba(103, 240, 185, 0.22);
}

/* Flèche de transformation */

.comparison__transition svg {
  color: #b783ff;
  filter: drop-shadow(0 0 12px rgba(167, 111, 255, 0.55));
}

.comparison__transition span {
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(170, 117, 255, 0.55),
    transparent
  );
}

/* Mobile */

@media (max-width: 700px) {
  .experience::after {
    display: none;
  }

  .comparison-card {
    border-radius: 24px;
  }

  .comparison-card--old {
    opacity: 0.76;
  }

  .comparison-card--new {
    opacity: 1;
    transform: translateY(-2px);
  }

  .paper-card {
    transform: rotate(-4deg) scale(0.94);
  }

  .digital-card-preview {
    transform: scale(1.04);
  }

  .comparison__transition {
    min-height: 90px;
  }
}
/* ==========================================================
   DÉMONSTRATION — SIGNATURE V2
========================================================== */

.interactive-demo__stage {
  border-color: rgba(183, 142, 255, 0.16);
  background:
    radial-gradient(
      circle at 60% 38%,
      rgba(129, 69, 246, 0.22),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      rgba(25, 17, 43, 0.94),
      rgba(8, 8, 15, 0.99)
    );
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.065);
}

.interactive-demo__stage::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(168, 116, 255, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.demo-trigger {
  min-height: 58px;
  padding: 11px 24px 11px 12px;
  border-color: rgba(183, 143, 255, 0.2);
  background:
    linear-gradient(
      90deg,
      rgba(122, 69, 226, 0.1),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.demo-trigger__icon {
  background: linear-gradient(
    135deg,
    #af7dff,
    #7047ff
  );
  box-shadow: 0 10px 24px rgba(107, 58, 224, 0.32);
}

/* Mobile */

@media (max-width: 700px) {
  .interactive-demo {
    width: 100%;
  }

  .interactive-demo__stage {
    min-height: 610px;
    border-radius: 28px;
  }

  .interactive-demo__stage::after {
    width: 380px;
    height: 380px;
  }

  .interactive-demo__device {
    top: 45px;
    right: 50%;
    width: 250px;
    height: 510px;
    transform:
      translateX(50%)
      rotate(4deg);
  }

  .interactive-demo__card {
    top: 290px;
    left: 20px;
    width: 265px;
    transform: rotate(-9deg);
  }

  .interactive-demo__waves {
    top: 310px;
    left: 190px;
  }

  .interactive-demo__success {
    right: 18px;
    bottom: 24px;
  }

  .interactive-demo.is-active .interactive-demo__card {
    left: 78px;
    transform:
      rotate(-3deg)
      translateY(-5px);
  }

  .interactive-demo.is-active .interactive-demo__device {
    transform:
      translateX(50%)
      rotate(1deg)
      scale(1.02);
  }

  .demo-trigger {
    width: 100%;
    margin-top: 18px;
    justify-content: center;
    font-size: 0.8rem;
  }
}

@media (max-width: 430px) {
  .interactive-demo__stage {
    min-height: 560px;
  }

  .interactive-demo__device {
    top: 38px;
    width: 225px;
    height: 470px;
  }

  .interactive-demo__card {
    top: 270px;
    left: 10px;
    width: 235px;
  }

  .interactive-demo__waves {
    top: 288px;
    left: 155px;
  }
}
/* CORRECTION FINALE DÉMONSTRATION MOBILE */

@media (max-width: 700px) {
  .interactive-demo__stage {
    min-height: 520px;
  }

  .interactive-demo__stage::after {
    width: 330px;
    height: 330px;
  }

  .interactive-demo__device {
    top: 38px;
    right: 47px;
    width: 195px;
    height: 400px;
    transform: rotate(4deg);
  }

  .interactive-demo__card {
    top: 245px;
    left: 28px;
    width: 225px;
    transform: rotate(-8deg);
  }

  .interactive-demo__waves {
    top: 255px;
    left: 165px;
    transform: scale(0.82);
  }

  .interactive-demo__success {
    right: 18px;
    bottom: 22px;
  }

  .interactive-demo.is-active .interactive-demo__card {
    left: 65px;
    transform:
      rotate(-2deg)
      translateY(-4px);
  }

  .interactive-demo.is-active .interactive-demo__device {
    transform:
      rotate(1deg)
      scale(1.02);
  }
}

@media (max-width: 430px) {
  .interactive-demo__stage {
    min-height: 490px;
  }

  .interactive-demo__device {
    top: 35px;
    right: 28px;
    width: 180px;
    height: 370px;
  }

  .interactive-demo__card {
    top: 225px;
    left: 17px;
    width: 205px;
  }

  .interactive-demo__waves {
    top: 238px;
    left: 140px;
    transform: scale(0.72);
  }
}
/* ==========================================================
   AVANTAGES — SIGNATURE V2
========================================================== */

.benefits {
  padding-bottom: 55px;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(187, 148, 255, 0.14);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(125, 70, 238, 0.11),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      rgba(24, 17, 40, 0.92),
      rgba(9, 9, 16, 0.98)
    );
  box-shadow:
    0 25px 65px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.benefit-card::before {
  position: absolute;
  top: 0;
  left: 15%;
  width: 70%;
  height: 1px;
  content: "";
  opacity: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(182, 137, 255, 0.7),
    transparent
  );
  transition: opacity 300ms ease;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card__icon {
  box-shadow:
    0 12px 30px rgba(94, 48, 207, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.benefit-card h3 {
  color: #f5f1fc;
}

.benefit-card p {
  color: #918a9d;
  font-size: 0.77rem;
}

.statement {
  padding-top: 35px;
}

/* Mobile */

@media (max-width: 700px) {
  .benefits {
    padding-bottom: 35px;
  }

  .benefits__grid {
    gap: 13px;
  }

  .benefit-card {
    min-height: 220px;
    padding: 24px;
  }

  .benefit-card:nth-child(2),
  .benefit-card:nth-child(4),
  .benefit-card:nth-child(2):hover,
  .benefit-card:nth-child(4):hover {
    transform: none;
  }

  .benefit-card p {
    font-size: 0.75rem;
  }

  .statement {
    padding-top: 25px;
  }
}
/* IDENTIFICATION ENTREPRISE — FOOTER */

.site-footer__legal {
  display: grid;
  gap: 6px;
}

.site-footer__legal p {
  margin: 0;
}

.site-footer__legal p:last-child {
  color: #777180;
  font-size: 0.67rem;
}

@media (max-width: 700px) {
  .site-footer__legal {
    text-align: center;
  }

  .site-footer__legal p:last-child {
    line-height: 1.6;
  }
}