    @import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Science+Gothic:wght@100..900&display=swap');
    :root {
      --bg-dark: #050510;
      --bg-deep: #090921;
      --bg-panel: rgba(20, 20, 45, 0.65);
      --accent-pink: #ff2e63;
      --accent-purple: #6955ff;
      --accent-blue: #14d8ff;
      --accent-emerald: #3bd8a1;
      --accent-whiteled: #f0f1f2;
      --text-heading: #f6f7ff;
      --text-body: #b8bcd9;
      --shadow-strong: 0 32px 120px rgba(8, 9, 32, 0.65);
    }

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

    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      /*background: var(--bg-dark);*/
      /*background-image: url("../backgrounds/sect.jpg");*/
      background:linear-gradient(0deg, rgba(27, 27, 69, 0.3), rgba(9, 10, 33, 0.3)), url("../backgrounds/sect.jpg");
      background-repeat: no-repeat;
      background-size: cover;
      background-attachment: fixed;
      color: var(--text-body);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

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

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

    h1,
    h2,
    h3 {
      margin: 0;
      line-height: 1.1;
      color: var(--text-heading);
      font-weight: 700;
    }

    p {
      margin: 0;
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 26px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.02em;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, opacity 0.2s ease;
      cursor: pointer;
      border: 1px solid transparent;
    }

    .btn-primary {
      background: linear-gradient(135deg, #7f67ff 0%, #4c31ff 100%);
      color: #fdfdff;
      box-shadow: 0 18px 45px rgba(79, 70, 255, 0.45);
    }

    .btn-primary:hover {
      transform: translateY(-1px) scale(1.01);
      box-shadow: 0 24px 65px rgba(79, 70, 255, 0.55);
    }

    .btn-ghost {
      background: rgba(255, 255, 255, 0.08);
      color: var(--text-heading);
      border-color: rgba(255, 255, 255, 0.14);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.26);
    }
    
    .to-top {
      background: #fff;
      position: fixed;
      bottom: 16px;
      right: 32px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      color: #1f1f1f;
      text-decoration: none;
      opacity: 0;
      pointer-events: none;
      transition: .3s ease;
      -webkit-box-shadow: 0px 0px 10px 0px #7D7D7D; 
      box-shadow: 0px 0px 10px 0px #7D7D7D;
    }

    .to-top.active {
      bottom: 32px;
      pointer-events: auto;
      opacity: 1;
    }

    .ticker-bar {
      background: rgba(9, 9, 33, 0.96);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      overflow: hidden;
      position: relative;
    }

    .ticker {
      height: 56px;
      display: flex;
      align-items: center;
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    }

    .ticker-track {
      display: inline-flex;
      gap: 64px;
      white-space: nowrap;
      padding-left: 100%;
      animation: ticker-move 60s linear infinite;
      will-change: transform;
    }

    .ticker-item {
      font-family: "Science Gothic", sans-serif;
      font-size: 1.2rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(238, 240, 255, 0.92);
      display: inline-flex;
      align-items: center;
      gap: 16px;
      opacity: 0.82;
      text-shadow:
        0 0 6px rgba(124, 129, 255, 0.35),
        0 0 12px rgba(124, 129, 255, 0.25);
    }

    .ticker-item::before {
      content: "●";
      font-size: 0.7rem;
      color: rgba(123, 113, 255, 0.65);
    }

    .ticker-item--a {
      color: var(--accent-blue);
      text-shadow:
        0 0 10px rgba(127, 211, 255, 0.85),
        0 0 22px rgba(127, 211, 255, 0.65),
        0 0 36px rgba(127, 211, 255, 0.45);
    }

    .ticker-item--b {
      color: var(--accent-purple);
      text-shadow:
        0 0 10px rgba(182, 140, 255, 0.85),
        0 0 22px rgba(182, 140, 255, 0.65),
        0 0 36px rgba(182, 140, 255, 0.45);
    }

    .ticker-item--c {
      color: var(--accent-emerald);
      text-shadow:
        0 0 10px rgba(59, 216, 161, 0.85),
        0 0 22px rgba(59, 216, 161, 0.65),
        0 0 36px rgba(59, 216, 161, 0.45);
    }
    
    .ticker-item--whity {
        color: var(--accent-whiteled);
        text-shadow:
        0 0 10px rgba(190, 190, 190, 0.85),
        0 0 22px rgba(190, 190, 190, 0.65),
        0 0 36px rgba(190, 190, 190, 0.45);
    }

    .ticker-item--b::before {
      color: rgba(255, 46, 99, 0.6);
    }

    .ticker-item--c::before {
      color: rgba(59, 216, 161, 0.6);
    }
    
    /********************/

    .ticker-bar-1 {
      background: rgba(9, 9, 33, 0.96);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      overflow: hidden;
      position: relative;
    }

    .ticker-1 {
      height: 56px;
      display: flex;
      align-items: center;
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    }

    .ticker-track-1 {
      display: inline-flex;
      gap: 64px;
      white-space: nowrap;
      padding-left: 100%;
      animation: ticker-move 40s linear infinite;
      will-change: transform;
    }

    .ticker-item-1 {
      font-family: "Science Gothic", sans-serif;
      font-size: 1.2rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(238, 240, 255, 0.92);
      display: inline-flex;
      align-items: center;
      gap: 16px;
      opacity: 0.82;
      text-shadow:
        0 0 6px rgba(124, 129, 255, 0.35),
        0 0 12px rgba(124, 129, 255, 0.25);
    }

    .ticker-item-1::before {
      content: "●";
      font-size: 0.7rem;
      color: rgba(123, 113, 255, 0.65);
    }

    .ticker-item-1--a {
      color: var(--accent-blue);
      text-shadow:
        0 0 10px rgba(127, 211, 255, 0.85),
        0 0 22px rgba(127, 211, 255, 0.65),
        0 0 36px rgba(127, 211, 255, 0.45);
    }

    .ticker-item-1--b {
      color: var(--accent-purple);
      text-shadow:
        0 0 10px rgba(182, 140, 255, 0.85),
        0 0 22px rgba(182, 140, 255, 0.65),
        0 0 36px rgba(182, 140, 255, 0.45);
    }

    .ticker-item-1--c {
      color: var(--accent-emerald);
      text-shadow:
        0 0 10px rgba(59, 216, 161, 0.85),
        0 0 22px rgba(59, 216, 161, 0.65),
        0 0 36px rgba(59, 216, 161, 0.45);
    }
    
    .ticker-item-1--whity {
        color: var(--accent-whiteled);
        text-shadow:
        0 0 10px rgba(190, 190, 190, 0.85),
        0 0 22px rgba(190, 190, 190, 0.65),
        0 0 36px rgba(190, 190, 190, 0.45);
    }

    .ticker-item-1--b::before {
      color: rgba(255, 46, 99, 0.6);
    }

    .ticker-item-1--c::before {
      color: rgba(59, 216, 161, 0.6);
    }

    /********************/

    .animate-on-scroll {
      opacity: 0;
      transform: translate3d(0, 32px, 0);
      transition: opacity 0.8s ease, transform 0.8s ease;
      transition-delay: var(--animate-delay, 0s);
      will-change: opacity, transform;
    }

    /*.animate-on-scroll.motion-from-left {
      transform: translate3d(-40px, 0, 0);
    }*/

    /*.animate-on-scroll.motion-from-right {
      transform: translate3d(40px, 0, 0);
    }*/

    .animate-on-scroll.motion-scale {
      transform: scale(0.96);
    }

    .animate-on-scroll.is-visible {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }

    .motion-delay-1 {
      --animate-delay: 0.12s;
    }

    .motion-delay-2 {
      --animate-delay: 0.22s;
    }

    .motion-delay-3 {
      --animate-delay: 0.32s;
    }

    .motion-delay-4 {
      --animate-delay: 0.42s;
    }

    .motion-delay-5 {
      --animate-delay: 0.55s;
    }

    .motion-delay-6 {
      --animate-delay: 0.7s;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      color: #fdfdff;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-weight: 600;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(5, 5, 16, 0.88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 32px;
      padding: 22px 0;
      flex-wrap: wrap;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      color: var(--text-heading);
      font-size: 1.1rem;
      font-weight: 600;
    }

    .brand img {
      height: 36px;
    }

    .primary-nav {
      display: flex;
      gap: 24px;
      font-size: 0.92rem;
      flex-wrap: wrap;
      color: rgba(231, 233, 254, 0.9);
    }

    .primary-nav a {
      opacity: 0.74;
      transition: opacity 0.2s ease;
    }

    .primary-nav a:hover {
      opacity: 1;
    }

    .nav-actions {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .login-link {
      font-weight: 600;
      color: rgba(244, 245, 255, 0.92);
      opacity: 0.85;
      transition: opacity 0.2s ease;
    }

    .login-link:hover {
      opacity: 1;
    }

    .hero {
      position: relative;
      overflow: hidden;
      min-height: 100vh;
      padding: clamp(96px, 12vw, 140px) 0 clamp(110px, 12vw, 160px);
      /*background:
        radial-gradient(120% 120% at 90% 5%, rgba(79, 70, 255, 0.45) 0%, rgba(79, 70, 255, 0) 55%),
        radial-gradient(90% 90% at -10% 85%, rgba(255, 46, 99, 0.45) 0%, rgba(255, 46, 99, 0) 62%),
        var(--bg-dark);*/
      display: flex;
      align-items: center;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: -20% 35% 20% -30%;
      /*background: radial-gradient(45% 75% at 35% 40%, rgba(20, 205, 255, 0.4) 0%, rgba(20, 205, 255, 0) 75%);*/
      opacity: 0.7;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 10% -30% -40% 50%;
      /*background: radial-gradient(65% 55% at 45% 55%, rgba(122, 107, 255, 0.55) 0%, rgba(122, 107, 255, 0) 70%);*/
      transform: rotate(-8deg);
    }

    .hero .container {
      position: relative;
      z-index: 2;
      width: min(1240px, calc(100% - 80px));
      margin: 0 auto;
      padding: 0 20px;
    }

    .hero-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: min(8vw, 80px);
      width: 100%;
      margin: 0 auto;
    }

    .hero-copy {
      flex: 1 1 480px;
      display: flex;
      flex-direction: column;
      gap: 28px;
      align-items: flex-start;
      justify-content: center;
    }

    .hero-copy h1 {
      font-size: clamp(3rem, 7vw, 4rem);
      font-weight: 800;
    }

    .hero-copy p.lead {
      font-size: 1.06rem;
      max-width: 480px;
      color: rgba(232, 235, 255, 0.82);
    }

    .cta-row {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .social-proof {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
      font-size: 0.85rem;
      color: rgba(217, 219, 255, 0.85);
    }

    .rating-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
    }

    .rating-badge img {
      width: 20px;
      height: 20px;
    }

    .hero-visual {
      flex: 1 1 360px;
      /*flex: 1 1 500px;*/
      position: relative;
      display: flex;
      justify-content: center;
      min-height: 460px;
      overflow: visible;
      /*align-items: flex-end;
      min-height: clamp(420px, 52vw, 640px);*/
    }

    .hero-phones {
      position: relative;
      width: 100%;
      max-width: 460px;
      min-height: 660px;
    }

    .phone {
      position: absolute;
      width: clamp(220px, 32vw, 320px);
      max-width: 68%;
      border-radius: 36px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(8, 9, 32, 0.65);
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
    }

    .phone--left {
      top: 14%;
      left: 0;
      transform: rotate(-8deg);
      animation: floatLeft 7.5s ease-in-out infinite;
      /*margin-bottom: clamp(12px, 2vw, 28px);
      animation: floatTall 8s ease-in-out infinite;*/
    }

    .phone--right {
      top: 0;
      right: 0;
      transform: rotate(8deg);
      animation: floatRight 8s ease-in-out infinite;
      animation-delay: 0.4s;
      /*margin-top: clamp(24px, 4vw, 48px);
      animation: floatTallAlt 9s ease-in-out infinite;
      animation-delay: 0.6s;*/
    }

    .phone img {
      width: 100%;
      height: auto;
      /*height: 100%;
      object-fit: cover;*/
    }

    .floating-card {
      position: absolute;
      bottom: 6%;
      left: 14%;
      padding: 18px 20px;
      border-radius: 24px;
      background: rgba(20, 20, 45, 0.78);
      border: 1px solid rgba(255, 255, 255, 0.12);
      /*bottom: clamp(24px, 6vw, 64px);
      left: 50%;
      transform: translateX(-50%);
      padding: 22px 26px;
      border-radius: 28px;
      background: rgba(20, 20, 45, 0.82);
      border: 1px solid rgba(255, 255, 255, 0.16);*/
      backdrop-filter: blur(16px);
      box-shadow: 0 24px 90px rgba(8, 9, 32, 0.55);
      display: flex;
      flex-direction: column;
      /*gap: 6px;
      width: 210px;*/
      gap: 8px;
      width: clamp(220px, 28vw, 320px);
      text-align: center;
      animation: floatBadge 10s ease-in-out infinite;
      animation-delay: 0.8s;
    }

    .floating-card strong {
      color: var(--text-heading);
      font-size: 0.95rem;
    }

    .floating-card span {
      font-size: 0.82rem;
      color: rgba(220, 223, 255, 0.78);
    }

    .logo-strip {
      padding: 28px 0 80px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
    }

    .logo-strip .container {
      display: flex;
      flex-direction: column;
      gap: 22px;
      align-items: center;
      text-align: center;
    }

    .logo-strip p {
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(197, 200, 230, 0.72);
    }

    .logo-list {
      display: flex;
      gap: 38px;
      flex-wrap: wrap;
      justify-content: center;
      color: rgba(235, 238, 255, 0.82);
      font-weight: 600;
      font-size: 0.95rem;
    }

    .logo-list span {
      opacity: 0.72;
      padding: 8px 0;
    }

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

    .section-header {
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 620px;
    }

    .section-header .eyebrow {
      align-self: flex-start;
    }

    .section-header p {
      color: rgba(219, 222, 255, 0.78);
      font-size: 1rem;
    }

    .features-grid {
      margin-top: 48px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
    }

    .feature-card {
      padding: 30px;
      border-radius: 24px;
      background: rgba(13, 13, 35, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.05);
      box-shadow: var(--shadow-strong);
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: relative;
      overflow: hidden;
    }

    .feature-card::after {
      content: "";
      position: absolute;
      inset: -40% 40% 60% -20%;
      background: radial-gradient(120% 120% at 0% 0%, rgba(122, 107, 255, 0.28), rgba(122, 107, 255, 0));
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .feature-card:hover::after {
      opacity: 1;
    }

    .feature-icon {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      background: linear-gradient(135deg, rgba(122, 107, 255, 0.4), rgba(79, 115, 255, 0.1));
    }

    .feature-card h3 {
      font-size: 1.02rem;
    }

    .stats {
      padding: 96px 0;
      background:
        radial-gradient(120% 120% at 50% 0%, rgba(122, 107, 255, 0.18), rgba(122, 107, 255, 0) 65%),
        var(--bg-deep);
    }

    .stats-content {
      display: flex;
      gap: 48px;
      align-items: center;
      flex-wrap: wrap;
    }

    .stat-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      flex: 1 1 360px;
    }

    .stat-card {
      padding: 28px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .stat-card strong {
      font-size: 2rem;
      color: var(--text-heading);
    }

    .stat-card span {
      font-size: 0.92rem;
      color: rgba(212, 215, 247, 0.78);
    }

    .stats-copy {
      flex: 1 1 380px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .stats-copy p {
      color: rgba(223, 225, 255, 0.8);
    }

    .creators {
      padding: 108px 0;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    }

    .creators-inner {
      display: flex;
      gap: 48px;
      align-items: flex-start;
      justify-content: flex-start;
      flex-wrap: wrap;
    }

    .slider-shell {
      position: relative;
      flex: 1 1 100%;
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-top: 50px;
      padding: 10px 0 32px;
    }

    .profile-slider {
      overflow: hidden;
      position: relative;
      touch-action: pan-y;
      cursor: grab;
      width: 100%;
      background: transparent;
    }

    .profile-slider::before,
    .profile-slider::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 120px;
      pointer-events: none;
      z-index: 2;
      background: linear-gradient(90deg, rgba(5, 5, 16, 0.3) 0%, rgba(5, 5, 16, 0) 100%);
    }

    .profile-slider::after {
      right: 0;
      transform: scaleX(-1);
    }

    .profile-slider::before {
      left: 0;
    }

    .slider-track {
      display: flex;
      gap: clamp(12px, 1.6vw, 22px);
      transition: transform 0.65s cubic-bezier(0.25, 0.1, 0.25, 1);
      will-change: transform;
    }

    .profile-slider.is-dragging {
      cursor: grabbing;
    }

    .profile-card {
      --slide-width: clamp(240px, 22vw, 360px);
      flex: 0 0 var(--slide-width);
      width: var(--slide-width);
      border-radius: 32px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      position: relative;
      overflow: hidden;
      min-height: 520px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      text-align: left;
      box-shadow: 0 32px 80px rgba(3, 3, 12, 0.1);
      background: #050515;
      padding: 0;
      isolation: isolate;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .profile-card__image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.35s ease;
      pointer-events: none;
      user-select: none;
      -webkit-user-drag: none;
      background: #050515;
    }

    .profile-card__overlay {
      position: relative;
      width: 100%;
      padding: 20px 22px 24px;
      background: linear-gradient(180deg, rgba(4, 4, 14, 0) 0%, rgba(4, 4, 14, 0.85) 58%, rgba(4, 4, 14, 0.95) 100%);
      display: flex;
      flex-direction: column;
      gap: 10px;
      color: rgba(244, 245, 255, 0.92);
      z-index: 2;
      text-align: center;
      vertical-align: bottom;
      user-select: none;
    }

    .profile-card__identity h3 {
      font-size: 1.2rem;
      margin: 0;
    }

    .profile-card__identity span {
      font-size: 0.85rem;
      color: rgba(230, 232, 255, 0.8);
    }

    .profile-card__socials {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .profile-card__socials span {
      font-size: 0.78rem;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(7, 7, 16, 0.72);
      color: rgba(247, 248, 255, 0.9);
      letter-spacing: 0.04em;
    }

    .profile-card__stats {
      font-size: 0.92rem;
      font-weight: 600;
      color: #fefeff;
    }

    .profile-card p {
      margin: 0;
      font-size: 0.85rem;
      color: rgba(230, 232, 255, 0.76);
    }

    .profile-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(5, 5, 15, 0.15) 0%, rgba(5, 5, 15, 0.65) 100%);
      pointer-events: none;
      z-index: 1;
    }

    .profile-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 42px 90px rgba(4, 5, 16, 0.8);
    }

    .profile-card:hover .profile-card__image {
      transform: scale(1.05);
    }

    .creators-copy {
      flex: 1 1 380px;
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .creators-copy ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .creators-copy li {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .creators-copy li span {
      width: 32px;
      height: 32px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.05rem;
      flex-shrink: 0;
    }

    .contact {
      padding: 112px 0 140px;
    }

    .contact-panel {
      border-radius: 40px;
      /*background:
        radial-gradient(120% 120% at 50% 0%, rgba(122, 107, 255, 0.35), rgba(122, 107, 255, 0.05) 60%),
        linear-gradient(135deg, rgba(14, 14, 28, 0.92), rgba(14, 14, 35, 0.88));*/
      padding: 72px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: center;
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 34px 120px rgba(15, 16, 45, 0.75);
      overflow: hidden;
    }
    
    #myVideo {
        position: fixed;
        right: 0;
        top: 0;
        min-width: 100%;
        min-height: 100%;
        z-index: -1;
        object-fit: cover;
    }

    .contact-copy {
      display: flex;
      flex-direction: column;
      gap: 16px;
      max-width: 640px;
      width: 100%;
      margin: 0 auto;
      align-items: center;
      text-align: center;
    }

    .contact-copy p {
      color: rgba(223, 225, 255, 0.85);
    }

    .contact-copy .eyebrow {
      align-self: center;
    }
    
    .contact-text {
        color: #f35626;
	    background-image: -webkit-linear-gradient(92deg, #f35626, #feab3a);
	    -webkit-background-clip: text;
	    -webkit-text-fill-color: transparent;
	    -webkit-animation: hue 10s infinite linear;
    }
    
    @-webkit-keyframes hue {
        from {
            -webkit-filter: hue-rotate(0deg);
            }
        to {
            -webkit-filter: hue-rotate(-360deg);
        }
    }

    .contact-form {
      width: 100%;
      max-width: 720px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      background: rgba(4, 5, 20, 0.5);
      padding: 24px;
      border-radius: 28px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(18px);
      margin: 0 auto;
    }

    .form-field {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-field label {
      font-size: 0.92rem;
      font-weight: 600;
      color: rgba(235, 237, 255, 0.86);
      letter-spacing: 0.02em;
    }

    .form-field input,
    .form-field select {
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(8, 9, 28, 0.85);
      color: var(--text-heading);
      padding: 14px 16px;
      font-size: 0.95rem;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      outline: none;
      appearance: none;
    }

    .form-field select:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .form-field input:focus,
    .form-field select:focus {
      border-color: rgba(111, 101, 255, 0.9);
      box-shadow: 0 0 0 3px rgba(111, 101, 255, 0.25);
    }

    .form-field input::placeholder {
      color: rgba(214, 216, 245, 0.6);
    }

    .contact-submit {
      align-self: flex-start;
      padding-inline: 36px;
    }

    .input-helper {
      margin: 0;
      font-size: 0.82rem;
      color: rgba(213, 216, 250, 0.7);
      min-height: 1.2em;
    }

    .input-helper.error {
      color: #ff8a8a;
    }

    .form-status {
      min-height: 1.4em;
      font-size: 0.9rem;
      color: rgba(223, 225, 255, 0.85);
    }

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

    .form-status.success {
      color: #7df5c9;
    }

    body.modal-open {
      overflow: hidden;
    }

    .modal {
      position: fixed;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(5, 5, 16, 0.78);
      backdrop-filter: blur(12px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 1000;
    }

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

    .modal__dialog {
      position: relative;
      width: min(440px, 100%);
      background: rgba(8, 9, 28, 0.95);
      border-radius: 28px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 34px 120px rgba(15, 16, 45, 0.75);
      padding: 40px 32px;
    }

    .modal__close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: rgba(255, 255, 255, 0.08);
      color: var(--text-heading);
      font-size: 1.4rem;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .modal__close:hover {
      background: rgba(255, 255, 255, 0.18);
      transform: scale(1.05);
    }

    .modal__title {
      margin: 0;
      font-size: 1.35rem;
      color: var(--text-heading);
    }

    .modal__description {
      margin: 12px 0 18px;
      color: rgba(223, 225, 255, 0.8);
      font-size: 0.95rem;
    }

    .modal__phone {
      font-weight: 600;
      color: var(--text-heading);
      margin-bottom: 18px;
      font-size: 1rem;
      letter-spacing: 0.08em;
    }

    .modal__label {
      font-size: 0.92rem;
      font-weight: 600;
      color: rgba(235, 237, 255, 0.86);
      display: block;
      margin-bottom: 8px;
    }

    .modal__input {
      width: 100%;
      padding: 14px 16px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(8, 9, 28, 0.85);
      color: var(--text-heading);
      font-size: 1.4rem;
      letter-spacing: 0.32em;
      text-align: center;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .modal__input:focus {
      border-color: rgba(111, 101, 255, 0.9);
      box-shadow: 0 0 0 3px rgba(111, 101, 255, 0.25);
    }

    .modal__status {
      min-height: 1.4em;
      margin-top: 14px;
      font-size: 0.9rem;
      color: rgba(223, 225, 255, 0.85);
    }

    .modal__status.error {
      color: #ff8a8a;
    }

    .modal__status.success {
      color: #7df5c9;
    }

    .modal__actions {
      display: flex;
      gap: 12px;
      margin-top: 24px;
      flex-wrap: wrap;
    }

    .modal__actions .btn {
      flex: 1 1 auto;
      min-width: 140px;
      justify-content: center;
    }

    .site-footer {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(5, 5, 16, 0.95);
      padding: 0px 0 32px;
    }

    .footer-top {
      display: flex;
      gap: 48px;
      flex-wrap: wrap;
    }

    .slider-control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(242, 244, 255, 0.92);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
      z-index: 3;
    }

    .slider-control span {
      font-size: 1.4rem;
      line-height: 1;
    }

    .slider-control:hover {
      background: rgba(255, 255, 255, 0.16);
      border-color: rgba(255, 255, 255, 0.24);
      transform: translateY(-50%) scale(1.05);
    }

    .slider-control--prev {
      left: 24px;
    }

    .slider-control--next {
      right: 24px;
    }

    .slider-dots {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin-top: 28px;
    }

    .slider-caption {
      margin: 18px auto 0;
      text-align: center;
      font-size: 1.05rem;
      color: rgba(236, 237, 255, 0.9);
    }

    .profile-card__label {
      margin: 12px 0 0;
      text-align: center;
      font-size: 0.95rem;
      font-weight: 600;
      color: rgba(236, 238, 255, 0.98);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 10px 12px 16px;
      width: 100%;
    }

    .slider-dot {
      width: 12px;
      height: 12px;
      border-radius: 999px;
      border: none;
      background: rgba(220, 223, 255, 0.28);
      cursor: pointer;
      transition: width 0.25s ease, background 0.25s ease, opacity 0.25s ease;
      opacity: 0.6;
    }

    .slider-dot.is-active {
      width: 32px;
      background: linear-gradient(135deg, #7f67ff 0%, #4c31ff 100%);
      opacity: 1;
    }

    .footer-brand {
      flex: 1 1 220px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      color: rgba(208, 211, 240, 0.78);
      font-size: 0.9rem;
    }

    .footer-logo {
      width: 140px;
    }

    .footer-columns {
      flex: 2 1 520px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 32px;
    }

    .footer-columns h4 {
      margin-bottom: 12px;
      font-size: 0.86rem;
      color: rgba(242, 244, 255, 0.88);
      text-transform: uppercase;
      letter-spacing: 0.16em;
    }

    .footer-columns a {
      display: block;
      margin-bottom: 10px;
      font-size: 0.9rem;
      color: rgba(206, 209, 238, 0.7);
    }

    .footer-columns a:hover {
      color: rgba(233, 236, 255, 0.95);
    }

    .footer-bottom {
      margin-top: 48px;
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      justify-content: space-between;
      align-items: center;
      font-size: 0.82rem;
      color: rgba(170, 175, 210, 0.7);
    }

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

    .store-badges img {
      height: 40px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.04);
    }

    @keyframes floatLeft {
      0% {
        transform: translate3d(0, 0, 0) rotate(-8deg);
      }
      50% {
        transform: translate3d(-6px, -18px, 0) rotate(-12deg);
      }
      100% {
        transform: translate3d(0, 0, 0) rotate(-8deg);
      }
    }

    @keyframes floatRight {
      0% {
        transform: translate3d(0, 0, 0) rotate(8deg);
      }
      50% {
        transform: translate3d(6px, -16px, 0) rotate(12deg);
      }
      100% {
        transform: translate3d(0, 0, 0) rotate(8deg);
      }
    }

    @keyframes floatTall {
      0%,
      100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-14px);
      }
    }

    @keyframes floatTallAlt {
      0%,
      100% {
        transform: translateY(-6px);
      }
      50% {
        transform: translateY(10px);
      }
    }

    @keyframes floatBadge {
      0%,
      100% {
        transform: translate3d(0, 0, 0);
      }
      50% {
        transform: translate3d(0, -14px, 0);
      }
    }

    @keyframes ticker-move {
      0% {
        transform: translate3d(0, 0, 0);
      }
      100% {
        transform: translate3d(-100%, 0, 0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }

      .phone--left,
      .phone--right,
      .floating-card {
        animation: none !important;
      }

      .slider-track {
        transition: none !important;
      }

      .ticker-track {
        animation: none !important;
        transform: none !important;
      }
    }

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

      .hero-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .hero-copy {
        align-items: center;
      }

      .hero-copy p.lead {
        max-width: 560px;
      }

      .social-proof {
        justify-content: center;
      }

      .hero-visual {
        min-height: 460px;
        width: 100%;
        max-width: 640px;
      }

      .hero-phones {
        max-width: min(640px, 90vw);
        gap: clamp(16px, 5vw, 32px);
      }

      .phone {
        flex: 0 0 clamp(200px, 30vw, 280px);
        width: clamp(200px, 30vw, 280px);
      }

      .floating-card {
        left: 50%;
        transform: translateX(-50%);
      }

      .creators-inner {
        flex-direction: column;
        align-items: stretch;
      }

      .slider-shell {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        padding: 12px 0 24px;
      }

      .slider-track {
        gap: 20px;
      }

      .slider-control--prev {
        left: 12px;
      }

      .slider-control--next {
        right: 12px;
      }

      .creators-copy {
        flex: 1 1 100%;
      }

      .contact-panel {
        padding: 56px 40px;
      }

      .contact-form {
        flex: 1 1 100%;
      }

      .contact-submit {
        align-self: stretch;
      }
    }

    @media (max-width: 720px) {
      .container {
        width: calc(100% - 36px);
      }

      .nav {
        justify-content: center;
      }

      .nav-actions {
        margin-left: 0;
      }

      .hero {
        padding: 32px 0 40px;
      }

      .hero-inner {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 42px;
      }

      .hero-visual {
        order: -1;
        width: 100%;
        max-width: 420px;
      }

      .hero-phones {
        flex-direction: column;
        align-items:center;
        justify-content: flex-start;
        max-width: 100%;
        gap: 24px;
      }

      .hero-copy {
        width: 100%;
        align-items: center;
      }

      .cta-row {
        flex-direction: column;
        gap: 14px;
        width: 100%;
      }

      .cta-row .btn {
        width: 100%;
        justify-content: center;
      }

      .hero-copy h1 {
        font-size: clamp(2.4rem, 8vw, 3.2rem);
      }

      .phone {
        width: min(68vw, 340px);
        flex: 0 0 auto;
        margin: 0;
      }

      .phone--left,
      .phone--right {
        margin: 0;
      }

      .floating-card {
        position: relative;
        left: 0;
        transform: none;
        margin-top: 12px;
        width: min(80vw, 360px);
      }

      .section {
        padding: 78px 0;
      }

      .contact {
        padding: 72px 0 96px;
      }

      .contact-panel {
        padding: 40px 24px;
        border-radius: 28px;
      }

      .contact-form {
        padding: 20px;
        gap: 16px;
      }

      .contact-submit {
        width: 100%;
        align-self: stretch;
        justify-content: center;
        text-align: center;
      }

      .modal__dialog {
        padding: 32px 24px;
      }

      .modal__actions .btn {
        flex: 1 1 100%;
      }

      .modal__input {
        font-size: 1.2rem;
        letter-spacing: 0.24em;
      }

      .ticker {
        height: 48px;
      }

      .ticker-track {
        gap: 42px;
      }

      .ticker-item {
        font-size: 1rem;
        letter-spacing: 0.18em;
      }

      .slider-shell {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        padding: 12px 0 20px;
      }

      .slider-track {
        gap: 16px;
      }

      .profile-card {
        --slide-width: calc(100vw - 48px);
        min-height: 400px;
        border-radius: 30px;
      }

      .profile-card__image {
        object-fit: contain;
        padding: 8px;
        border-radius: 30px;
      }

      .floating-card {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin: 280px auto 0;
        max-width: 260px;
      }

      .hero-phones {
        max-width: 360px;
        min-height: 420px;
      }

      .phone {
        width: 72%;
      }
    }

    @media (max-width: 540px) {
      .hero {
        padding-bottom: 72px;
      }

      .feature-card {
        padding: 24px;
      }

      .ticker {
        height: 44px;
      }

      .ticker-item {
        font-size: 0.92rem;
        letter-spacing: 0.14em;
      }

      .hero-phones {
        gap: 18px;
      }

      .phone {
        width: min(78vw, 320px);
        border-radius: 32px;
      }

      .floating-card {
        width: min(86vw, 340px);
        margin-top: 18px;
      }

      .profile-card {
        --slide-width: calc(100vw - 32px);
        min-height: 760px;
        border-radius: 28px;
      }

      .profile-card__image {
        object-fit: cover;
        padding: 10px;
      }

      .slider-track {
        gap: 12px;
      }

      .slider-dots {
        margin-top: 20px;
      }

      .contact-panel {
        border-radius: 26px;
      }

      .contact-form {
        padding: 18px;
      }

      .contact-submit {
        font-size: 0.95rem;
      }

      .modal__dialog {
        padding: 28px 20px;
        border-radius: 24px;
      }

      .modal__close {
        top: 12px;
        right: 12px;
      }

      .modal__input {
        font-size: 1.1rem;
        letter-spacing: 0.2em;
      }

      .modal__actions .btn {
        min-width: 0;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }
    @font-face {
      font-family: 'DotMatrix';
      src: url('../fonts/LED Dot-Matrix.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }
