Browse Source

feat: implement landing page sections and assets

master
sina_sajjadi 2 weeks ago
parent
commit
d9d758c7ac
  1. 4
      .gitignore
  2. 74
      app/globals.css
  3. 33
      app/layout.tsx
  4. 77
      app/page.tsx
  5. 108
      components/sections/AiCopilotSection.tsx
  6. 172
      components/sections/DashboardSection.tsx
  7. 78
      components/sections/Header.tsx
  8. 155
      components/sections/HeroSection.tsx
  9. 157
      components/sections/StepsSection.tsx
  10. 5
      components/sections/index.ts
  11. BIN
      public/assets/images/Frame 2095586179.png
  12. 86
      public/assets/images/Frame 2095586179.svg
  13. 87
      public/assets/images/Frame 2147225101.svg
  14. BIN
      public/assets/images/Group 2147223366.png
  15. 47
      public/assets/images/badge_copilot.svg
  16. 10
      public/assets/images/badge_copilot_icon.svg
  17. BIN
      public/assets/images/badge_glow.png
  18. 24
      public/assets/images/badge_glow.svg
  19. 12
      public/assets/images/badge_header.svg
  20. BIN
      public/assets/images/badge_star.png
  21. 63
      public/assets/images/badge_star.svg
  22. 47
      public/assets/images/badge_star_steps.svg
  23. 10
      public/assets/images/badge_star_steps_vector.svg
  24. 47
      public/assets/images/badge_steps.svg
  25. 10
      public/assets/images/badge_steps_vector.svg
  26. BIN
      public/assets/images/copilot_badge.png
  27. 47
      public/assets/images/copilot_badge.svg
  28. 10
      public/assets/images/copilot_badge_icon.svg
  29. BIN
      public/assets/images/copilot_content_frame.png
  30. 21
      public/assets/images/copilot_header_glow.svg
  31. 6
      public/assets/images/copilot_icon_bubble_chat.svg
  32. 3
      public/assets/images/copilot_icon_call.svg
  33. 4
      public/assets/images/copilot_icon_clock.svg
  34. 3
      public/assets/images/copilot_icon_cloud.svg
  35. 6
      public/assets/images/copilot_icon_dashboard.svg
  36. 4
      public/assets/images/copilot_icon_dollar.svg
  37. 6
      public/assets/images/copilot_icon_mic.svg
  38. BIN
      public/assets/images/copilot_icons_left.png
  39. BIN
      public/assets/images/copilot_icons_right.png
  40. BIN
      public/assets/images/copilot_luminous_ball.png
  41. 340
      public/assets/images/copilot_luminous_ball.svg
  42. BIN
      public/assets/images/copilot_orb.png
  43. 340
      public/assets/images/copilot_orb.svg
  44. BIN
      public/assets/images/copilot_side_decor_left.png
  45. 94
      public/assets/images/copilot_side_decor_left.svg
  46. BIN
      public/assets/images/copilot_side_decor_right.png
  47. 94
      public/assets/images/copilot_side_decor_right.svg
  48. 16
      public/assets/images/dashboard_bottom_glow.svg
  49. BIN
      public/assets/images/dashboard_image.png
  50. 15
      public/assets/images/dashboard_image.svg
  51. BIN
      public/assets/images/hero_back.png
  52. 1214
      public/assets/images/hero_back.svg
  53. 9
      public/assets/images/hero_btn_icon.svg
  54. BIN
      public/assets/images/hero_heading.png
  55. 467
      public/assets/images/hero_heading.svg
  56. 47
      public/assets/images/hero_light_left.svg
  57. 47
      public/assets/images/hero_light_right.svg
  58. 4
      public/assets/images/icon_clock.svg
  59. 3
      public/assets/images/icon_cloud.svg
  60. 6
      public/assets/images/icon_dashboard.svg
  61. 4
      public/assets/images/icon_dollar.svg
  62. 6
      public/assets/images/icon_mic.svg
  63. 10
      public/assets/images/line_divider.svg
  64. BIN
      public/assets/images/logo_icon.png
  65. 268
      public/assets/images/logo_icon.svg
  66. BIN
      public/assets/images/luminous_ball.png
  67. 340
      public/assets/images/luminous_ball.svg
  68. BIN
      public/assets/images/object_left.png
  69. 20
      public/assets/images/object_left.svg
  70. BIN
      public/assets/images/object_right.png
  71. BIN
      public/assets/images/side_decor_left.png
  72. 94
      public/assets/images/side_decor_left.svg
  73. BIN
      public/assets/images/side_decor_right.png
  74. 94
      public/assets/images/side_decor_right.svg
  75. BIN
      public/assets/images/step_arrow_btn.png
  76. 43
      public/assets/images/step_arrow_btn.svg
  77. 4
      public/assets/images/step_arrow_icon.svg
  78. BIN
      public/assets/images/step_card_mesh.png
  79. 17
      public/assets/images/step_card_mesh.svg
  80. BIN
      public/assets/images/step_card_stars.png
  81. 44
      public/assets/images/step_card_stars.svg
  82. 17
      public/assets/images/step_grid_mesh.svg
  83. 44
      public/assets/images/step_stars.svg
  84. BIN
      public/assets/images/steps_badge.png
  85. 47
      public/assets/images/steps_badge.svg
  86. BIN
      public/assets/images/steps_btn_glow.png
  87. 21
      public/assets/images/steps_btn_glow.svg
  88. 21
      public/assets/images/steps_header_glow.svg
  89. 26
      public/assets/images/tab_icon_star.svg

4
.gitignore

@ -39,3 +39,7 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts
/development
/scratch

74
app/globals.css

@ -1,26 +1,78 @@
@import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #171717;
--background: #03070D;
--foreground: #ffffff;
--font-inter: var(--font-inter), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background-color: #03070D;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
--font-sans: var(--font-inter);
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
* {
box-sizing: border-box;
}
html {
background-color: #03070D !important;
color-scheme: dark;
}
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
background-color: #03070D !important;
color: #ffffff;
font-family: var(--font-inter);
margin: 0;
padding: 0;
overflow-x: hidden;
min-height: 100vh;
}
/* Custom Gradients & Glass Styles from Figma Spec */
.btn-primary-gradient {
position: relative;
background: linear-gradient(180deg, #0029b2 0%, #0038bf 10%, #0e4acc 20%, #255cd9 30%, #3d6fe5 40%, #487eff 50%, #4b80ff 65%, #5d8bff 100%, #adbfff 100%);
isolation: isolate;
border-radius: 8px;
}
.btn-primary-gradient::before {
content: "";
position: absolute;
inset: 0;
border-radius: inherit;
padding: 1px;
background: linear-gradient(74deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 50.46%, rgba(255, 255, 255, 0.6) 100%);
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
mask-composite: exclude;
pointer-events: none;
z-index: 1;
}
.tab-active-gradient {
background: linear-gradient(180deg, #0029b2 0%, #0038bf 10%, #0e4acc 20%, #255cd9 30%, #3d6fe5 40%, #487eff 62%, #4b80ff 75%, #5d8bff 100%);
border: 1px solid rgba(255, 255, 255, 0.35);
box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.4);
}
.tab-active-text {
background: linear-gradient(180deg, #ffffff 0%, #d0deff 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
/* Hide scrollbar utility */
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}

33
app/layout.tsx

@ -1,29 +1,30 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
const inter = Inter({
subsets: ["latin"],
variable: "--font-inter",
display: "swap",
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "TeamBy.ai - AI-Powered Management for Team Leads",
description:
"TeamBy unifies your work and uses AI to optimize workflows, meetings, and costs—so you can manage smarter without chasing updates.",
};
export default function RootLayout({ children }: LayoutProps<"/">) {
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html
lang="en"
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col">{children}</body>
<html lang="en" className={`${inter.variable} dark bg-[#03070D]`}>
<body className="min-h-full flex flex-col bg-[#03070D] text-[#ffffff] font-sans antialiased selection:bg-blue-500/30 selection:text-blue-200">
{children}
</body>
</html>
);
}

77
app/page.tsx

@ -1,69 +1,22 @@
import Image from "next/image";
import {
Header,
HeroSection,
DashboardSection,
AiCopilotSection,
StepsSection,
} from "@/components/sections";
export default function Home() {
return (
<div className="flex flex-col flex-1 items-center justify-center bg-zinc-50 font-sans dark:bg-black">
<main className="flex flex-1 w-full max-w-3xl flex-col items-center justify-between py-32 px-16 bg-white dark:bg-black sm:items-start">
<Image
className="dark:invert h-5 w-[100px]"
src="/next.svg"
alt="Next.js logo"
width={100}
height={20}
priority
/>
<div className="flex flex-col items-center gap-6 text-center sm:items-start sm:text-left">
<h1 className="max-w-xs text-3xl font-semibold leading-10 tracking-tight text-black dark:text-zinc-50">
To get started, edit the{" "}
<code className="rounded bg-black/[.06] px-1.5 py-0.5 font-mono text-[0.9em] dark:bg-white/[.08]">
page.tsx
</code>{" "}
file.
</h1>
<p className="max-w-md text-lg leading-8 text-zinc-600 dark:text-zinc-400">
Looking for a starting point or more instructions? Head over to{" "}
<a
href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
className="font-medium text-zinc-950 dark:text-zinc-50"
>
Templates
</a>{" "}
or the{" "}
<a
href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
className="font-medium text-zinc-950 dark:text-zinc-50"
>
Learning
</a>{" "}
center.
</p>
</div>
<div className="flex flex-col gap-4 text-base font-medium sm:flex-row">
<a
className="flex h-12 w-full items-center justify-center gap-2 rounded-full bg-foreground px-5 text-background transition-colors hover:bg-[#383838] dark:hover:bg-[#ccc] md:w-[158px]"
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
target="_blank"
rel="noopener noreferrer"
>
<Image
className="dark:invert h-[14px] w-4"
src="/vercel.svg"
alt="Vercel logomark"
width={16}
height={14}
/>
Deploy Now
</a>
<a
className="flex h-12 w-full items-center justify-center rounded-full border border-solid border-black/[.08] px-5 transition-colors hover:border-transparent hover:bg-black/[.04] dark:border-white/[.145] dark:hover:bg-[#1a1a1a] md:w-[158px]"
href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
target="_blank"
rel="noopener noreferrer"
>
Documentation
</a>
<main className="relative w-full min-h-screen bg-[#03070D] text-white flex flex-col items-center overflow-x-hidden">
{/* 1920px Canvas Wrapper */}
<div className="relative w-full max-w-[1920px] min-h-[1649px] mx-auto overflow-hidden bg-[#03070D]">
<Header />
<HeroSection />
<DashboardSection />
<AiCopilotSection />
<StepsSection />
</div>
</main>
</div>
);
}

108
components/sections/AiCopilotSection.tsx

@ -0,0 +1,108 @@
import Image from "next/image";
export function AiCopilotSection() {
return (
<section
id="ai-copilot-section"
className="relative w-full flex flex-col items-center z-20 px-4 mt-[80px] mb-[100px]"
>
{/* Floating Side Decorative Icons (Group 2147223357 & Group 2147223359: w: 32, h: 160) */}
<div className="absolute left-[calc(50%-680px)] top-[260px] w-[32px] h-[160px] pointer-events-none hidden xl:block z-10 opacity-90">
<Image
src="/assets/images/copilot_side_decor_left.svg"
alt=""
width={32}
height={160}
unoptimized
className="w-full h-full object-contain"
/>
</div>
<div className="absolute right-[calc(50%-680px)] top-[260px] w-[32px] h-[160px] pointer-events-none hidden xl:block z-10 opacity-90">
<Image
src="/assets/images/copilot_side_decor_right.svg"
alt=""
width={32}
height={160}
unoptimized
className="w-full h-full object-contain"
/>
</div>
{/* Top Header Block (Text_1429_12117: w: 864, h: 132, y: 0) */}
<div className="relative w-full max-w-[864px] flex flex-col items-center text-center z-20">
{/* Glow Aura behind badge (Back_1429_12118: Ellipse 1578 & 1579) */}
<div className="absolute -top-[50px] left-1/2 -translate-x-1/2 w-[180px] h-[180px] pointer-events-none -z-10">
<div className="absolute inset-0 bg-[#001ac7] rounded-full blur-[100px] opacity-70" />
<div className="absolute inset-[20px] bg-[#4e66ff] rounded-full blur-[50px] opacity-80" />
</div>
{/* Badge (3_1429_12123: w: 40, h: 40) */}
<div className="relative w-[40px] h-[40px] mb-[24px] flex items-center justify-center flex-shrink-0">
<Image
src="/assets/images/copilot_badge.svg"
alt=""
width={100}
height={100}
unoptimized
className="w-[100px] h-[100px] max-w-none flex-shrink-0 pointer-events-none select-none"
/>
</div>
{/* Text Container (Text_Container_1429_12126: w: 864, h: 68, itemSpacing: 12) */}
<div className="w-full flex flex-col items-center gap-[12px]">
{/* Title (Title_1429_12127: 32px, Medium, #ffffff) */}
<h2 className="text-white text-[32px] leading-[39px] font-medium tracking-tight text-center max-w-[538px]">
Meet your AI management copilot.
</h2>
{/* Subtitle (Subtitle_1429_12128: 14px, Regular, #6f829e) */}
<p className="text-[#6f829e] text-[14px] leading-[17px] font-normal text-center max-w-[864px]">
TeamBy connects tasks, time, costs, and docsthen uses AI to optimize workflows and meeting time, so you can manage smarter.
</p>
</div>
</div>
{/* Content Frame: AI Orb & Feature Matrix (Content_Frame_1429_12129: w: 1216, h: 437, y: 212) */}
<div className="relative w-full max-w-[1216px] h-[340px] md:h-[437px] mt-[48px] flex items-center justify-center overflow-visible">
{/* Left Icons Matrix with smooth unclipped shadow blur (icons_1429_12130: w: 495, h: 288) */}
<div className="absolute left-[calc(50%-608px)] top-1/2 -translate-y-1/2 w-[495px] h-[288px] flex items-center justify-center pointer-events-none z-0">
<Image
src="/assets/images/copilot_icons_left.png"
alt=""
width={693}
height={815}
priority
unoptimized
className="max-w-none flex-shrink-0 select-none pointer-events-none"
/>
</div>
{/* Right Icons Matrix with smooth unclipped shadow blur (icons_1429_12149: w: 495, h: 288) */}
<div className="absolute right-[calc(50%-608px)] top-1/2 -translate-y-1/2 w-[495px] h-[288px] flex items-center justify-center pointer-events-none z-0">
<Image
src="/assets/images/copilot_icons_right.png"
alt=""
width={693}
height={815}
priority
unoptimized
className="max-w-none flex-shrink-0 select-none pointer-events-none"
/>
</div>
{/* Center Luminous Ball AI Orb (Luminous_ball_1429_12168: w: 437, h: 437) */}
<div className="absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 w-[437px] h-[437px] flex items-center justify-center pointer-events-none z-10">
<Image
src="/assets/images/copilot_luminous_ball.png"
alt="AI Co-Pilot Luminous Sphere"
width={1349}
height={865}
priority
unoptimized
className="max-w-none flex-shrink-0 select-none pointer-events-none"
/>
</div>
</div>
</section>
);
}

172
components/sections/DashboardSection.tsx

@ -0,0 +1,172 @@
import Image from "next/image";
export function DashboardSection() {
return (
<section
id="dashboard-section"
className="relative -mt-[175px] w-full flex flex-col items-center z-20 px-4"
>
{/* Dashboard Glass Card (Dashboard_4178_61403: w: 1216, h: 785, radius: 32) */}
<div
id="dashboard-preview-card"
className="relative w-full max-w-[1216px] rounded-[32px] p-[8px] bg-white/[0.04] backdrop-blur-[24px] border border-white/[0.12] shadow-[0_20px_80px_rgba(0,0,0,0.8)] overflow-hidden"
>
{/* Dashboard Screenshot Image (Dashboard_image_4178_61404: w: 1200, h: 769, radius: 24) */}
<div className="relative w-full aspect-[1200/769] rounded-[24px] overflow-hidden bg-[#0a0f19]">
<Image
src="/assets/images/dashboard_image.svg"
alt="TeamBy Time Tracking Dashboard UI"
fill
priority
unoptimized
className="object-cover object-top select-none"
sizes="(max-width: 1280px) 100vw, 1200px"
/>
</div>
</div>
{/* Bottom Glow Aura (Background_4178_61405: w: 1216, h: 302, y: 1137) */}
<div className="absolute bottom-[-50px] w-full max-w-[1216px] h-[302px] pointer-events-none -z-10 opacity-70">
<Image
src="/assets/images/dashboard_bottom_glow.svg"
alt=""
fill
unoptimized
className="object-contain object-bottom"
/>
</div>
{/* Feature Switcher Tab Bar (Navigation_4178_61406: w: 1010, h: 66, radius: 48) */}
<div
id="dashboard-navigation-bar"
className="mt-[33px] mb-[60px] w-full max-w-[1010px] h-[66px] rounded-[48px] p-[10px] pr-[32px] pl-[10px] bg-[#080f1a]/40 backdrop-blur-[20px] border border-white/[0.12] shadow-[0_10px_40px_rgba(0,0,0,0.5)] flex items-center justify-between overflow-x-auto overflow-y-hidden no-scrollbar"
>
{/* Active Tab: Time Tracking (Header_4178_61407: w: 190, h: 46, radius: 24) */}
<button
type="button"
id="tab-time-tracking"
className="tab-active-gradient h-[46px] rounded-[24px] px-[20px] py-[12px] flex items-center gap-[6px] cursor-pointer hover:brightness-110 transition-all flex-shrink-0"
>
<div className="relative w-[22px] h-[22px] flex items-center justify-center">
<Image
src="/assets/images/tab_icon_star.svg"
alt=""
width={22}
height={22}
unoptimized
className="w-[22px] h-[22px] object-contain"
/>
</div>
<span className="tab-active-text text-[18px] font-medium tracking-tight whitespace-nowrap">
Time Tracking
</span>
</button>
{/* Line 6 Divider */}
<div className="w-[1px] h-[40px] flex-shrink-0 flex items-center justify-center">
<Image
src="/assets/images/line_divider.svg"
alt=""
width={1}
height={40}
unoptimized
className="h-[40px] w-[1px]"
/>
</div>
{/* Tab: Meeting (Value_4178_61415) */}
<button
type="button"
id="tab-meeting"
className="h-[46px] flex items-center text-[#cbdaef] text-[18px] font-medium hover:text-white transition-colors cursor-pointer px-2 flex-shrink-0 whitespace-nowrap"
>
Meeting
</button>
{/* Line 5 Divider */}
<div className="w-[1px] h-[40px] flex-shrink-0 flex items-center justify-center">
<Image
src="/assets/images/line_divider.svg"
alt=""
width={1}
height={40}
unoptimized
className="h-[40px] w-[1px]"
/>
</div>
{/* Tab: Chat App (Button_title_4178_61417) */}
<button
type="button"
id="tab-chat-app"
className="h-[46px] flex items-center text-[#cbdaef] text-[18px] font-medium hover:text-white transition-colors cursor-pointer px-2 flex-shrink-0 whitespace-nowrap"
>
Chat App
</button>
{/* Line 3 Divider */}
<div className="w-[1px] h-[40px] flex-shrink-0 flex items-center justify-center">
<Image
src="/assets/images/line_divider.svg"
alt=""
width={1}
height={40}
unoptimized
className="h-[40px] w-[1px]"
/>
</div>
{/* Tab: Project Management (Button_title_4178_61419) */}
<button
type="button"
id="tab-project-management"
className="h-[46px] flex items-center text-[#cbdaef] text-[18px] font-medium hover:text-white transition-colors cursor-pointer px-2 flex-shrink-0 whitespace-nowrap"
>
Project Management
</button>
{/* Line 4 Divider */}
<div className="w-[1px] h-[40px] flex-shrink-0 flex items-center justify-center">
<Image
src="/assets/images/line_divider.svg"
alt=""
width={1}
height={40}
unoptimized
className="h-[40px] w-[1px]"
/>
</div>
{/* Tab: File Manager (Button_title_4178_61421) */}
<button
type="button"
id="tab-file-manager"
className="h-[46px] flex items-center text-[#cbdaef] text-[18px] font-medium hover:text-white transition-colors cursor-pointer px-2 flex-shrink-0 whitespace-nowrap"
>
File Manager
</button>
{/* Line 2 Divider */}
<div className="w-[1px] h-[40px] flex-shrink-0 flex items-center justify-center">
<Image
src="/assets/images/line_divider.svg"
alt=""
width={1}
height={40}
unoptimized
className="h-[40px] w-[1px]"
/>
</div>
{/* Tab: Finance (Button_title_4178_61423: exact string "Finance ") */}
<button
type="button"
id="tab-finance"
className="h-[46px] flex items-center text-[#cbdaef] text-[18px] font-medium hover:text-white transition-colors cursor-pointer px-2 flex-shrink-0 whitespace-nowrap"
>
Finance{" "}
</button>
</div>
</section>
);
}

78
components/sections/Header.tsx

@ -0,0 +1,78 @@
import Image from "next/image";
import Link from "next/link";
export function Header() {
return (
<header
id="header"
className="w-full h-[80px] px-6 lg:px-[352px] py-[24px] flex items-center justify-between z-30 relative"
>
{/* Logo (Icon_4178_61387: w: 118, h: 32) */}
<Link
href="/"
className="flex items-center gap-[6px] hover:opacity-90 transition-opacity"
id="nav-logo"
>
<div className="relative w-[32px] h-[32px] flex items-center justify-center">
<Image
src="/assets/images/logo_icon.svg"
alt="TeamBy.ai Logo"
width={32}
height={32}
priority
unoptimized
className="w-[32px] h-[32px] object-contain"
/>
</div>
<span className="text-[#ffffff] text-[16px] font-medium tracking-tight">
TeamBy.ai
</span>
</Link>
{/* Navigation Links (Navigation_4178_61394: gap: 40px) */}
<nav
className="hidden md:flex items-center gap-[40px]"
id="nav-menu"
aria-label="Main Navigation"
>
<Link
href="#home"
id="nav-link-home"
className="text-[#f1eefd] text-[14px] font-normal hover:text-white transition-colors"
>
Home
</Link>
<Link
href="#products"
id="nav-link-products"
className="text-[#f1eefd] text-[14px] font-normal hover:text-white transition-colors"
>
Products
</Link>
<Link
href="#learn"
id="nav-link-learn"
className="text-[#f1eefd] text-[14px] font-normal hover:text-white transition-colors"
>
Learn
</Link>
<Link
href="#how-it-works"
id="nav-link-how-it-works"
className="text-[#f1eefd] text-[14px] font-normal hover:text-white transition-colors"
>
How It Work
</Link>
</nav>
{/* CTA Header Button (Button_4178_61400: w: 118, h: 28, radius: 8) */}
<Link
href="#start"
id="header-cta-button"
className="btn-primary-gradient w-[118px] h-[28px] rounded-[8px] px-[10px] py-[4px] flex items-center justify-center text-[16px] leading-[20px] font-normal text-white hover:brightness-110 active:scale-95 transition-all"
>
<span className="relative z-10">Start for free</span>
</Link>
</header>
);
}

155
components/sections/HeroSection.tsx

@ -0,0 +1,155 @@
import Image from "next/image";
import Link from "next/link";
export function HeroSection() {
return (
<section
id="hero-section"
className="relative w-full h-[796px] flex flex-col items-center pointer-events-none"
>
{/* Background Graphic & Curve (back_4178_60221: x: 32, y: 230, w: 1856, h: 566) */}
<div className="absolute top-[230px] left-1/2 -translate-x-1/2 w-[1856px] max-w-[calc(100vw-64px)] h-[566px] rounded-b-[32px] overflow-hidden z-0">
<Image
src="/assets/images/hero_back.svg"
alt=""
fill
priority
unoptimized
className="object-cover object-top select-none pointer-events-none"
/>
</div>
{/* Particle Starfield Lights (Light_4178_61305 & Light_4178_61255) */}
<div className="absolute top-[85px] left-1/2 -translate-x-[calc(50%+470px)] w-[1137px] h-[269px] opacity-80 pointer-events-none z-10">
<Image
src="/assets/images/hero_light_left.svg"
alt=""
width={1137}
height={269}
unoptimized
className="w-full h-full object-contain"
/>
</div>
<div className="absolute top-[105px] left-1/2 -translate-x-[calc(50%-470px)] w-[1137px] h-[269px] opacity-80 pointer-events-none z-10">
<Image
src="/assets/images/hero_light_right.svg"
alt=""
width={1137}
height={269}
unoptimized
className="w-full h-full object-contain"
/>
</div>
{/* Left Floating 3D Shape (Object_4178_61355: x: 479, y: 436, w: 56, h: 56) */}
<div className="absolute top-[436px] left-1/2 -translate-x-[calc(50%+481px)] w-[56px] h-[56px] pointer-events-none z-20">
<Image
src="/assets/images/object_left.svg"
alt=""
width={56}
height={56}
unoptimized
className="w-full h-full object-contain drop-shadow-[0_0_15px_rgba(72,126,255,0.4)]"
/>
</div>
{/* Right Floating 3D Shape (Object_4178_61358: x: 1397, y: 458, w: 48, h: 48) */}
<div className="absolute top-[458px] left-1/2 -translate-x-[calc(50%-437px)] w-[48px] h-[48px] pointer-events-none z-20">
<Image
src="/assets/images/object_right.png"
alt=""
width={48}
height={48}
unoptimized
className="w-full h-full object-contain drop-shadow-[0_0_15px_rgba(72,126,255,0.4)]"
/>
</div>
{/* Central Hero Content Container (Container_4178_61361: x: 609, y: 176, w: 703, h: 349) */}
<div className="relative top-[96px] w-full max-w-[703px] px-4 flex flex-col items-center z-20 pointer-events-auto">
{/* Top Pill Badge (Frame_2095586179_4178_61362: w: 95, h: 43, layoutMode: NONE) */}
<div id="hero-badge" className="relative w-[95px] h-[43px] mb-[32px]">
{/* Ellipse 1071 Glow Aura (Ellipse_1071_4178_61367: x: 29, y: -5, w: 31.25, h: 30.24) */}
<div className="absolute left-[5px] top-[-29px] w-[80px] h-[79px] pointer-events-none z-0">
<Image
src="/assets/images/badge_glow.svg"
alt=""
width={80}
height={79}
unoptimized
className="w-full h-full object-contain"
/>
</div>
{/* Star Sphere Icon (3_4178_61363: x: 33.5, y: 0, w: 28, h: 28) */}
<div className="absolute left-[-16.5px] top-[-50px] w-[128px] h-[128px] pointer-events-none z-10">
<Image
src="/assets/images/badge_star.svg"
alt=""
width={128}
height={128}
unoptimized
className="w-full h-full object-contain"
/>
</div>
{/* Badge Glass Pill (Header_4178_61368: x: 0, y: 20, w: 95, h: 24, radius: 24) */}
<div className="absolute left-0 top-[20px] w-[95px] h-[24px] rounded-[24px] bg-[#080f1a]/10 border border-white/20 backdrop-blur-[14px] flex items-center justify-center px-[12px] py-[4px] z-20">
<span className="text-[#f7faff] text-[12px] leading-[16px] font-medium text-center whitespace-nowrap">
Team By . Ai
</span>
</div>
</div>
{/* Typography Heading & Subtitle (text_4178_61370: w: 703, h: 194) */}
<div className="w-full flex flex-col items-center text-center gap-[16px] mb-[32px]">
{/* Vector Typography Heading */}
<h1 className="sr-only">AI-Powered Management for Team Leads.</h1>
<div
className="relative w-full max-w-[703px] h-[130px] flex items-center justify-center"
aria-hidden="true"
>
<Image
src="/assets/images/hero_heading.svg"
alt="AI-Powered Management for Team Leads."
width={703}
height={130}
priority
unoptimized
className="w-full h-full object-contain select-none pointer-events-none"
/>
</div>
{/* Subtitle (Subtitle_4178_61381: 16px / 24px line height, #b8cae5) */}
<p
id="hero-subtitle"
className="text-[#b8cae5] text-[16px] leading-[24px] font-normal text-center max-w-[703px]"
>
TeamBy unifies your work and uses AI to optimize workflows,
meetings, and costsso you can manage smarter without chasing
updates.
</p>
</div>
{/* Hero CTA Button (Button_4178_61382: w: 173, h: 48, radius: 12) */}
<Link
href="#action"
id="hero-cta-button"
className="btn-primary-gradient w-[173px] h-[48px] rounded-[12px] px-[20px] py-[12px] flex items-center justify-center gap-[8px] text-[16px] leading-[20px] font-medium text-white hover:brightness-110 active:scale-95 transition-all shadow-[0_0_25px_rgba(72,126,255,0.35)]"
>
<div className="relative w-[21px] h-[20px] flex items-center justify-center">
<Image
src="/assets/images/hero_btn_icon.svg"
alt=""
width={21}
height={20}
unoptimized
className="w-[21px] h-[20px] object-contain"
/>
</div>
<span>See In Action</span>
</Link>
</div>
</section>
);
}

157
components/sections/StepsSection.tsx

@ -0,0 +1,157 @@
import Image from "next/image";
export function StepsSection() {
const steps = [
{
id: "01",
category: "Organize",
description: "Put projects, tasks, and files in one place",
},
{
id: "02",
category: "Align",
description: "Meet and message with context",
},
{
id: "03",
category: "Optimize",
description: "Track time, let AI follow up.",
},
];
return (
<section
id="steps-section"
className="relative w-full flex flex-col items-center z-20 px-4 mt-[40px] mb-[120px]"
>
{/* Top Header Block (Text_1429_10886: w: 1010, h: 132, y: 0) */}
<div className="relative w-full max-w-[1010px] flex flex-col items-center text-center z-20">
{/* Glow Aura behind badge (Back_1429_10887: Ellipse 1578 & 1579) */}
<div className="absolute -top-[50px] left-1/2 -translate-x-1/2 w-[180px] h-[180px] pointer-events-none -z-10">
<div className="absolute inset-0 bg-[#001ac7] rounded-full blur-[100px] opacity-70" />
<div className="absolute inset-[20px] bg-[#4e66ff] rounded-full blur-[50px] opacity-80" />
</div>
{/* Badge (3_1429_10892: w: 40, h: 40) */}
<div className="relative w-[40px] h-[40px] mb-[24px] flex items-center justify-center flex-shrink-0">
<Image
src="/assets/images/steps_badge.svg"
alt=""
width={100}
height={100}
unoptimized
className="w-[100px] h-[100px] max-w-none flex-shrink-0 pointer-events-none select-none"
/>
</div>
{/* Text Container (Text_Container_1429_10894: w: 964, h: 68, itemSpacing: 12) */}
<div className="w-full flex flex-col items-center gap-[12px]">
{/* Title (Title_1429_10895: 32px, Medium, #ffffff) */}
<h2 className="text-white text-[32px] leading-[39px] font-medium tracking-tight text-center max-w-[740px]">
Set up your smart management stack in 3 steps.
</h2>
{/* Subtitle (Subtitle_1429_10896: 14px, Regular, #6f829e) */}
<p className="text-[#6f829e] text-[14px] leading-[17px] font-normal text-center max-w-[964px]">
Projects, tasks, meetings, chat, files, and time in one connected desktop workspace, where AI reduces overhead and keeps everything in context.
</p>
</div>
</div>
{/* Steps Container (Steps_Container_1429_10897: w: 1216, h: 145, y: 212) */}
<div className="w-full max-w-[1216px] mt-[60px] md:mt-[80px] flex flex-col md:flex-row items-center justify-between gap-4 md:gap-0 relative z-20">
{steps.map((step, idx) => (
<div key={step.id} className="contents">
{/* Step Card (w: 389, h: 145, radius: 24, fill: rgba(8,15,26,0.5), stroke: rgba(255,255,255,0.12)) */}
<div
id={`step-card-${step.id}`}
className="relative w-full md:w-[389px] h-[145px] rounded-[24px] bg-[#080f1a]/50 border border-white/[0.12] px-[32px] lg:px-[40px] py-[32px] flex items-center justify-between overflow-hidden backdrop-blur-[20px] shadow-[0_10px_30px_rgba(0,0,0,0.4)]"
>
{/* Internal Glow Effects (Ellipse 1071 & 1072) */}
<div className="absolute -left-[20px] top-[20px] w-[82px] h-[77px] bg-[#004cff] rounded-full blur-[40px] opacity-40 pointer-events-none" />
<div className="absolute -right-[20px] -bottom-[20px] w-[95px] h-[89px] bg-[#0149f3] rounded-full blur-[50px] opacity-40 pointer-events-none" />
{/* Star Particle Constellation Overlay (stars) */}
<div className="absolute inset-0 pointer-events-none opacity-70">
<Image
src="/assets/images/step_card_stars.svg"
alt=""
fill
unoptimized
className="object-cover"
/>
</div>
{/* Left Column: Number + 3D Grid Perspective Mesh */}
<div className="relative w-[36px] flex flex-col items-start justify-center flex-shrink-0 z-10">
<span className="text-[#3d6fe5] text-[20px] leading-[24px] font-medium drop-shadow-[0_0_15px_#4b80ff]">
{step.id}
</span>
<div className="relative w-[87px] h-[45px] -ml-[30px] mt-[4px] pointer-events-none select-none opacity-80">
<Image
src="/assets/images/step_card_mesh.svg"
alt=""
width={87}
height={45}
unoptimized
className="w-full h-full object-contain"
/>
</div>
</div>
{/* Vertical Gradient Line Divider (Line 7: 1px x 81px) */}
<div className="w-[1px] h-[81px] bg-gradient-to-b from-[#12141a] via-[#363b4d] to-[#12141a] flex-shrink-0 mx-[16px] z-10" />
{/* Right Column: Title + Subtitle */}
<div className="flex flex-col justify-center gap-[6px] flex-1 z-10">
<span className="text-[#6f829e] text-[14px] leading-[17px] font-medium">
{step.category}
</span>
<span className="text-[#dae5ff] text-[18px] lg:text-[20px] leading-[24px] font-medium">
{step.description}
</span>
</div>
</div>
{/* Step Connector Chevron Pill (Step_Container: w: 40, h: 40) */}
{idx < steps.length - 1 && (
<div className="hidden md:flex w-[40px] h-[40px] rounded-full btn-primary-gradient items-center justify-center border border-white/50 shadow-[0_0_20px_rgba(75,128,255,0.4)] flex-shrink-0 z-30 -mx-[20px]">
<Image
src="/assets/images/step_arrow_icon.svg"
alt=""
width={14}
height={14}
unoptimized
className="w-[14px] h-[14px] object-contain"
/>
</div>
)}
</div>
))}
</div>
{/* Bottom CTA Button Frame (Frame 2095586189: w: 129, h: 43, y: 437) */}
<div className="relative mt-[60px] md:mt-[80px] flex items-center justify-center z-20">
{/* Glow Aura behind button (Back: Ellipse 1578 & 1579) */}
<div className="absolute -top-[30px] left-1/2 -translate-x-1/2 w-[220px] h-[120px] pointer-events-none -z-10 opacity-70">
<Image
src="/assets/images/steps_btn_glow.png"
alt=""
fill
unoptimized
className="object-contain"
/>
</div>
{/* Button (Button_1429_10910: w: 129, h: 44, radius: 12) */}
<button
type="button"
id="steps-get-started-button"
className="btn-primary-gradient w-[129px] h-[44px] rounded-[12px] px-[20px] py-[12px] flex items-center justify-center text-[16px] leading-[20px] font-normal text-white hover:brightness-110 active:scale-95 transition-all shadow-[0_0_25px_rgba(72,126,255,0.35)] cursor-pointer"
>
<span>Get Started</span>
</button>
</div>
</section>
);
}

5
components/sections/index.ts

@ -0,0 +1,5 @@
export { Header } from "./Header";
export { HeroSection } from "./HeroSection";
export { DashboardSection } from "./DashboardSection";
export { AiCopilotSection } from "./AiCopilotSection";
export { StepsSection } from "./StepsSection";

BIN
public/assets/images/Frame 2095586179.png

After

Width: 128  |  Height: 128  |  Size: 19 KiB

86
public/assets/images/Frame 2095586179.svg
File diff suppressed because it is too large
View File

87
public/assets/images/Frame 2147225101.svg
File diff suppressed because it is too large
View File

BIN
public/assets/images/Group 2147223366.png

After

Width: 1856  |  Height: 566  |  Size: 1.0 MiB

47
public/assets/images/badge_copilot.svg

@ -0,0 +1,47 @@
<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_di_1429_12123)">
<rect x="30" y="30" width="40" height="40" rx="20" fill="url(#paint0_linear_1429_12123)" fill-opacity="0.7" shape-rendering="crispEdges"/>
<rect x="30.5" y="30.5" width="39" height="39" rx="19.5" stroke="url(#paint1_linear_1429_12123)" shape-rendering="crispEdges"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M49.4276 38.0765C48.7836 38.2794 48.2836 38.8551 48.1536 39.5431C48.0089 40.3096 48.4719 41.1762 49.2028 41.5066L49.4753 41.6298V42.0945V42.5592L48.8086 42.5592C47.5956 42.5593 45.3023 42.6939 43.9664 42.8432C42.8275 42.9706 42.1126 43.3246 41.4679 44.0806C41.0526 44.5676 40.7904 45.1958 40.6178 46.1173C40.6035 46.1941 40.5592 46.214 40.3488 46.2387C39.9237 46.2887 39.7674 46.3544 39.5049 46.5937C39.1279 46.9375 39.0804 47.0816 39.0246 48.0495C38.9919 48.6166 38.9918 49.1053 39.0243 49.6982C39.0647 50.4371 39.0832 50.5685 39.1747 50.7654C39.3836 51.2147 39.7803 51.4862 40.3051 51.539C40.5593 51.5645 40.6033 51.5815 40.6196 51.6605C40.748 52.282 40.8027 52.4899 40.9118 52.7704C41.2125 53.5438 41.8292 54.2086 42.5992 54.5894C42.9981 54.7866 43.5437 54.9089 44.338 54.9793C48.2525 55.3257 51.7475 55.3257 55.662 54.9793C56.4564 54.9089 57.0019 54.7866 57.4007 54.5894C58.1708 54.2086 58.7875 53.5438 59.0883 52.7704C59.1974 52.4899 59.2519 52.282 59.3804 51.6605C59.3966 51.5815 59.4407 51.5645 59.6949 51.539C60.2198 51.4862 60.6163 51.2147 60.8253 50.7654C60.9168 50.5685 60.9354 50.4371 60.9758 49.6982C61.0083 49.1039 61.008 48.6166 60.9751 48.0449C60.9216 47.1169 60.8664 46.9376 60.5363 46.6192C60.2939 46.3852 60.1162 46.305 59.7203 46.2502C59.4465 46.2124 59.3961 46.1923 59.3817 46.1156C59.2116 45.201 58.9469 44.5671 58.5321 44.0806C57.8874 43.3246 57.1725 42.9706 56.0336 42.8432C54.7162 42.6959 52.386 42.5592 51.1934 42.5592H50.5247V42.0945V41.6298L50.7972 41.5066C51.528 41.1762 51.9911 40.3096 51.8464 39.5431C51.7136 38.8403 51.1916 38.2545 50.5276 38.0632C50.2179 37.974 49.7344 37.9799 49.4276 38.0765ZM44.6438 43.978C44.2108 44.019 43.7484 44.0777 43.6163 44.1084C42.9098 44.2725 42.2801 44.8221 42.0244 45.4975C41.9121 45.7941 41.7252 46.7625 41.6441 47.4679C41.5751 48.0673 41.5755 49.6897 41.6448 50.3098C41.7122 50.9134 41.8888 51.8901 41.9835 52.1829C42.2238 52.9259 42.9123 53.5326 43.693 53.6892C44.0176 53.7544 45.6714 53.8951 47.0706 53.9768C47.5636 54.0055 48.8818 54.029 50 54.029C51.1182 54.029 52.4364 54.0055 52.9293 53.9768C54.3286 53.8951 55.9824 53.7544 56.307 53.6892C57.0878 53.5326 57.7762 52.9259 58.0164 52.1829C58.1107 51.8918 58.2874 50.9162 58.3558 50.3098C58.4252 49.6947 58.4252 48.0726 58.3558 47.4679C58.2749 46.7635 58.088 45.7943 57.9756 45.4975C57.7276 44.8425 57.1322 44.3068 56.449 44.1239C56.2082 44.0595 54.5492 43.894 54.144 43.894C53.5955 43.894 53.3822 44.0879 53.0834 44.8581C52.8638 45.4239 52.724 45.6224 52.4354 45.7778C52.3071 45.8469 52.1045 45.8532 50 45.8532C47.8956 45.8532 47.6929 45.8469 47.5645 45.7778C47.276 45.6224 47.1361 45.4239 46.9166 44.8581C46.5262 43.8517 46.4182 43.8099 44.6438 43.978ZM45.6071 47.2986C44.5829 47.4672 43.9079 48.31 43.9788 49.332C44.0561 50.4467 45.1526 51.2679 46.2621 51.042C47.7336 50.7424 48.3208 48.966 47.3027 47.8942C46.8551 47.4228 46.216 47.1984 45.6071 47.2986ZM53.9131 47.2827C53.6424 47.318 53.2943 47.4361 53.0977 47.5593C51.8057 48.3689 51.9127 50.2505 53.287 50.8909C54.7378 51.5671 56.3207 50.3114 55.9845 48.7511C55.8499 48.1263 55.3197 47.5557 54.7001 47.369C54.4542 47.2948 54.1096 47.2571 53.9131 47.2827ZM49.5409 55.8055C48.0621 55.8745 46.8915 56.0784 46.6779 56.3042C46.57 56.4182 46.5641 56.6333 46.6539 57.1778C46.9203 58.7923 47.6727 60.3737 48.6221 61.3146C48.9175 61.6075 49.0928 61.7424 49.322 61.853C49.6024 61.9883 49.6605 62.0004 50.0257 62C50.4052 61.9996 50.4413 61.991 50.7957 61.8181C52.1599 61.1524 53.1489 59.2399 53.3882 56.8047C53.4354 56.3251 53.3101 56.2059 52.5577 56.015C52.0056 55.8748 50.4177 55.7646 49.5409 55.8055ZM44.5129 57.0204C43.3648 57.4281 42.8733 57.7322 42.8733 58.0348C42.8733 58.2823 43.1149 58.4706 43.5728 58.5801C44.0162 58.6859 45.464 58.6227 45.7247 58.4859C45.9209 58.3831 45.9352 57.7212 45.7499 57.3226C45.6338 57.0728 45.3703 56.7677 45.2729 56.7704C45.2396 56.7713 44.8976 56.8838 44.5129 57.0204ZM54.5176 56.9244C54.2892 57.1632 54.1512 57.4679 54.1238 57.7956C54.0966 58.1215 54.1636 58.4274 54.2753 58.4859C54.536 58.6227 55.9838 58.6859 56.4272 58.5801C56.8852 58.4706 57.1267 58.2823 57.1267 58.0348C57.1267 57.7307 56.6085 57.4131 55.454 57.0095C55.0753 56.8771 54.7432 56.7687 54.716 56.7687C54.6889 56.7687 54.5996 56.8388 54.5176 56.9244Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M49.4276 38.0765C48.7836 38.2794 48.2836 38.8551 48.1536 39.5431C48.0089 40.3096 48.4719 41.1762 49.2028 41.5066L49.4753 41.6298V42.0945V42.5592L48.8086 42.5592C47.5956 42.5593 45.3023 42.6939 43.9664 42.8432C42.8275 42.9706 42.1126 43.3246 41.4679 44.0806C41.0526 44.5676 40.7904 45.1958 40.6178 46.1173C40.6035 46.1941 40.5592 46.214 40.3488 46.2387C39.9237 46.2887 39.7674 46.3544 39.5049 46.5937C39.1279 46.9375 39.0804 47.0816 39.0246 48.0495C38.9919 48.6166 38.9918 49.1053 39.0243 49.6982C39.0647 50.4371 39.0832 50.5685 39.1747 50.7654C39.3836 51.2147 39.7803 51.4862 40.3051 51.539C40.5593 51.5645 40.6033 51.5815 40.6196 51.6605C40.748 52.282 40.8027 52.4899 40.9118 52.7704C41.2125 53.5438 41.8292 54.2086 42.5992 54.5894C42.9981 54.7866 43.5437 54.9089 44.338 54.9793C48.2525 55.3257 51.7475 55.3257 55.662 54.9793C56.4564 54.9089 57.0019 54.7866 57.4007 54.5894C58.1708 54.2086 58.7875 53.5438 59.0883 52.7704C59.1974 52.4899 59.2519 52.282 59.3804 51.6605C59.3966 51.5815 59.4407 51.5645 59.6949 51.539C60.2198 51.4862 60.6163 51.2147 60.8253 50.7654C60.9168 50.5685 60.9354 50.4371 60.9758 49.6982C61.0083 49.1039 61.008 48.6166 60.9751 48.0449C60.9216 47.1169 60.8664 46.9376 60.5363 46.6192C60.2939 46.3852 60.1162 46.305 59.7203 46.2502C59.4465 46.2124 59.3961 46.1923 59.3817 46.1156C59.2116 45.201 58.9469 44.5671 58.5321 44.0806C57.8874 43.3246 57.1725 42.9706 56.0336 42.8432C54.7162 42.6959 52.386 42.5592 51.1934 42.5592H50.5247V42.0945V41.6298L50.7972 41.5066C51.528 41.1762 51.9911 40.3096 51.8464 39.5431C51.7136 38.8403 51.1916 38.2545 50.5276 38.0632C50.2179 37.974 49.7344 37.9799 49.4276 38.0765ZM44.6438 43.978C44.2108 44.019 43.7484 44.0777 43.6163 44.1084C42.9098 44.2725 42.2801 44.8221 42.0244 45.4975C41.9121 45.7941 41.7252 46.7625 41.6441 47.4679C41.5751 48.0673 41.5755 49.6897 41.6448 50.3098C41.7122 50.9134 41.8888 51.8901 41.9835 52.1829C42.2238 52.9259 42.9123 53.5326 43.693 53.6892C44.0176 53.7544 45.6714 53.8951 47.0706 53.9768C47.5636 54.0055 48.8818 54.029 50 54.029C51.1182 54.029 52.4364 54.0055 52.9293 53.9768C54.3286 53.8951 55.9824 53.7544 56.307 53.6892C57.0878 53.5326 57.7762 52.9259 58.0164 52.1829C58.1107 51.8918 58.2874 50.9162 58.3558 50.3098C58.4252 49.6947 58.4252 48.0726 58.3558 47.4679C58.2749 46.7635 58.088 45.7943 57.9756 45.4975C57.7276 44.8425 57.1322 44.3068 56.449 44.1239C56.2082 44.0595 54.5492 43.894 54.144 43.894C53.5955 43.894 53.3822 44.0879 53.0834 44.8581C52.8638 45.4239 52.724 45.6224 52.4354 45.7778C52.3071 45.8469 52.1045 45.8532 50 45.8532C47.8956 45.8532 47.6929 45.8469 47.5645 45.7778C47.276 45.6224 47.1361 45.4239 46.9166 44.8581C46.5262 43.8517 46.4182 43.8099 44.6438 43.978ZM45.6071 47.2986C44.5829 47.4672 43.9079 48.31 43.9788 49.332C44.0561 50.4467 45.1526 51.2679 46.2621 51.042C47.7336 50.7424 48.3208 48.966 47.3027 47.8942C46.8551 47.4228 46.216 47.1984 45.6071 47.2986ZM53.9131 47.2827C53.6424 47.318 53.2943 47.4361 53.0977 47.5593C51.8057 48.3689 51.9127 50.2505 53.287 50.8909C54.7378 51.5671 56.3207 50.3114 55.9845 48.7511C55.8499 48.1263 55.3197 47.5557 54.7001 47.369C54.4542 47.2948 54.1096 47.2571 53.9131 47.2827ZM49.5409 55.8055C48.0621 55.8745 46.8915 56.0784 46.6779 56.3042C46.57 56.4182 46.5641 56.6333 46.6539 57.1778C46.9203 58.7923 47.6727 60.3737 48.6221 61.3146C48.9175 61.6075 49.0928 61.7424 49.322 61.853C49.6024 61.9883 49.6605 62.0004 50.0257 62C50.4052 61.9996 50.4413 61.991 50.7957 61.8181C52.1599 61.1524 53.1489 59.2399 53.3882 56.8047C53.4354 56.3251 53.3101 56.2059 52.5577 56.015C52.0056 55.8748 50.4177 55.7646 49.5409 55.8055ZM44.5129 57.0204C43.3648 57.4281 42.8733 57.7322 42.8733 58.0348C42.8733 58.2823 43.1149 58.4706 43.5728 58.5801C44.0162 58.6859 45.464 58.6227 45.7247 58.4859C45.9209 58.3831 45.9352 57.7212 45.7499 57.3226C45.6338 57.0728 45.3703 56.7677 45.2729 56.7704C45.2396 56.7713 44.8976 56.8838 44.5129 57.0204ZM54.5176 56.9244C54.2892 57.1632 54.1512 57.4679 54.1238 57.7956C54.0966 58.1215 54.1636 58.4274 54.2753 58.4859C54.536 58.6227 55.9838 58.6859 56.4272 58.5801C56.8852 58.4706 57.1267 58.2823 57.1267 58.0348C57.1267 57.7307 56.6085 57.4131 55.454 57.0095C55.0753 56.8771 54.7432 56.7687 54.716 56.7687C54.6889 56.7687 54.5996 56.8388 54.5176 56.9244Z" fill="url(#paint2_linear_1429_12123)"/>
</g>
<defs>
<filter id="filter0_di_1429_12123" x="0" y="0" width="100" height="100" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="15"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.293269 0 0 0 0 0.501131 0 0 0 0 1 0 0 0 0.5 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1429_12123"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="6"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0"/>
<feBlend mode="plus-lighter" in2="shape" result="effect2_innerShadow_1429_12123"/>
<feBlend mode="normal" in="effect2_innerShadow_1429_12123" in2="effect1_dropShadow_1429_12123" result="effect2_innerShadow_1429_12123"/>
</filter>
<linearGradient id="paint0_linear_1429_12123" x1="50" y1="30" x2="50" y2="82.1429" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint1_linear_1429_12123" x1="14.4444" y1="12.5532" x2="94.5244" y2="26.8548" gradientUnits="userSpaceOnUse">
<stop stop-color="white" stop-opacity="0.5"/>
<stop offset="0.52154" stop-color="white" stop-opacity="0"/>
<stop offset="1" stop-color="white" stop-opacity="0.5"/>
</linearGradient>
<linearGradient id="paint2_linear_1429_12123" x1="50" y1="38" x2="50" y2="62" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#CADAFF"/>
</linearGradient>
</defs>
</svg>

10
public/assets/images/badge_copilot_icon.svg

@ -0,0 +1,10 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.4276 0.076507C10.7836 0.279446 10.2836 0.855106 10.1536 1.54314C10.0089 2.30964 10.4719 3.17618 11.2028 3.50658L11.4753 3.62977V4.09447V4.55915L10.8086 4.55925C9.59559 4.55933 7.30228 4.69385 5.96635 4.84323C4.82747 4.97059 4.11262 5.32463 3.46789 6.08062C3.05262 6.56763 2.79041 7.19577 2.61784 8.11733C2.60346 8.19406 2.55922 8.21404 2.34878 8.23875C1.92372 8.28866 1.76741 8.35441 1.5049 8.59373C1.12788 8.93751 1.08036 9.08156 1.02457 10.0495C0.991906 10.6166 0.991819 11.1053 1.02426 11.6982C1.0647 12.4371 1.08324 12.5685 1.17475 12.7654C1.38362 13.2147 1.78026 13.4862 2.30506 13.539C2.55934 13.5645 2.60333 13.5815 2.61963 13.6605C2.748 14.282 2.80266 14.4899 2.91179 14.7704C3.21247 15.5438 3.82917 16.2086 4.59924 16.5894C4.99807 16.7866 5.54368 16.9089 6.33798 16.9793C10.2525 17.3257 13.7475 17.3257 17.662 16.9793C18.4564 16.9089 19.0019 16.7866 19.4007 16.5894C20.1708 16.2086 20.7875 15.5438 21.0883 14.7704C21.1974 14.4899 21.2519 14.282 21.3804 13.6605C21.3966 13.5815 21.4407 13.5645 21.6949 13.539C22.2198 13.4862 22.6163 13.2147 22.8253 12.7654C22.9168 12.5685 22.9354 12.4371 22.9758 11.6982C23.0083 11.1039 23.008 10.6166 22.9751 10.0449C22.9216 9.11694 22.8664 8.93761 22.5363 8.61917C22.2939 8.38524 22.1162 8.30498 21.7203 8.25024C21.4465 8.21244 21.3961 8.19233 21.3817 8.1156C21.2116 7.20098 20.9469 6.56705 20.5321 6.08062C19.8874 5.32463 19.1725 4.97059 18.0336 4.84323C16.7162 4.69591 14.386 4.55915 13.1934 4.55915H12.5247V4.09447V3.62977L12.7972 3.50658C13.528 3.17618 13.9911 2.30964 13.8464 1.54314C13.7136 0.84025 13.1916 0.254471 12.5276 0.0632448C12.2179 -0.0259742 11.7344 -0.0201182 11.4276 0.076507ZM6.64378 5.978C6.21075 6.01903 5.7484 6.07772 5.6163 6.10843C4.90984 6.27253 4.28007 6.82205 4.02439 7.49753C3.91215 7.79408 3.7252 8.76252 3.64409 9.46793C3.57513 10.0673 3.57553 11.6897 3.64479 12.3098C3.71217 12.9134 3.8888 13.8901 3.9835 14.1829C4.2238 14.9259 4.91229 15.5326 5.693 15.6892C6.01764 15.7544 7.67142 15.8951 9.07061 15.9768C9.56358 16.0055 10.8818 16.029 12 16.029C13.1182 16.029 14.4364 16.0055 14.9293 15.9768C16.3286 15.8951 17.9824 15.7544 18.307 15.6892C19.0878 15.5326 19.7762 14.9259 20.0164 14.1829C20.1107 13.8918 20.2874 12.9162 20.3558 12.3098C20.4252 11.6947 20.4252 10.0726 20.3558 9.46793C20.2749 8.76347 20.088 7.79434 19.9756 7.49753C19.7276 6.84251 19.1322 6.30676 18.449 6.12394C18.2082 6.05952 16.5492 5.894 16.144 5.894C15.5955 5.894 15.3822 6.08786 15.0834 6.85805C14.8638 7.42385 14.724 7.6224 14.4354 7.77776C14.3071 7.84691 14.1045 7.85319 12 7.85319C9.89557 7.85319 9.69292 7.84691 9.56455 7.77776C9.27598 7.6224 9.13612 7.42385 8.91658 6.85805C8.52619 5.85172 8.41819 5.80991 6.64378 5.978ZM7.60715 9.29856C6.58291 9.46715 5.90789 10.31 5.97876 11.332C6.05606 12.4467 7.15261 13.2679 8.2621 13.042C9.73357 12.7424 10.3208 10.966 9.30274 9.89416C8.85507 9.42283 8.21602 9.19836 7.60715 9.29856ZM15.9131 9.28268C15.6424 9.318 15.2943 9.43606 15.0977 9.55929C13.8057 10.3689 13.9127 12.2505 15.287 12.8909C16.7378 13.5671 18.3207 12.3114 17.9845 10.7511C17.8499 10.1263 17.3197 9.55572 16.7001 9.36897C16.4542 9.29483 16.1096 9.25706 15.9131 9.28268ZM11.5409 17.8055C10.0621 17.8745 8.89148 18.0784 8.67786 18.3042C8.57 18.4182 8.56414 18.6333 8.65394 19.1778C8.92034 20.7923 9.67267 22.3737 10.6221 23.3146C10.9175 23.6075 11.0928 23.7424 11.322 23.853C11.6024 23.9883 11.6605 24.0004 12.0257 24C12.4052 23.9996 12.4413 23.991 12.7957 23.8181C14.1599 23.1524 15.1489 21.2399 15.3882 18.8047C15.4354 18.3251 15.3101 18.2059 14.5577 18.015C14.0056 17.8748 12.4177 17.7646 11.5409 17.8055ZM6.51288 19.0204C5.36482 19.4281 4.87329 19.7322 4.87329 20.0348C4.87329 20.2823 5.11486 20.4706 5.57284 20.5801C6.01623 20.6859 7.464 20.6227 7.72467 20.4859C7.9209 20.3831 7.93525 19.7212 7.7499 19.3226C7.63377 19.0728 7.37026 18.7677 7.27286 18.7704C7.23962 18.7713 6.89762 18.8838 6.51288 19.0204ZM16.5176 18.9244C16.2892 19.1632 16.1512 19.4679 16.1238 19.7956C16.0966 20.1215 16.1636 20.4274 16.2753 20.4859C16.536 20.6227 17.9838 20.6859 18.4272 20.5801C18.8852 20.4706 19.1267 20.2823 19.1267 20.0348C19.1267 19.7307 18.6085 19.4131 17.454 19.0095C17.0753 18.8771 16.7432 18.7687 16.716 18.7687C16.6889 18.7687 16.5996 18.8388 16.5176 18.9244Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.4276 0.076507C10.7836 0.279446 10.2836 0.855106 10.1536 1.54314C10.0089 2.30964 10.4719 3.17618 11.2028 3.50658L11.4753 3.62977V4.09447V4.55915L10.8086 4.55925C9.59559 4.55933 7.30228 4.69385 5.96635 4.84323C4.82747 4.97059 4.11262 5.32463 3.46789 6.08062C3.05262 6.56763 2.79041 7.19577 2.61784 8.11733C2.60346 8.19406 2.55922 8.21404 2.34878 8.23875C1.92372 8.28866 1.76741 8.35441 1.5049 8.59373C1.12788 8.93751 1.08036 9.08156 1.02457 10.0495C0.991906 10.6166 0.991819 11.1053 1.02426 11.6982C1.0647 12.4371 1.08324 12.5685 1.17475 12.7654C1.38362 13.2147 1.78026 13.4862 2.30506 13.539C2.55934 13.5645 2.60333 13.5815 2.61963 13.6605C2.748 14.282 2.80266 14.4899 2.91179 14.7704C3.21247 15.5438 3.82917 16.2086 4.59924 16.5894C4.99807 16.7866 5.54368 16.9089 6.33798 16.9793C10.2525 17.3257 13.7475 17.3257 17.662 16.9793C18.4564 16.9089 19.0019 16.7866 19.4007 16.5894C20.1708 16.2086 20.7875 15.5438 21.0883 14.7704C21.1974 14.4899 21.2519 14.282 21.3804 13.6605C21.3966 13.5815 21.4407 13.5645 21.6949 13.539C22.2198 13.4862 22.6163 13.2147 22.8253 12.7654C22.9168 12.5685 22.9354 12.4371 22.9758 11.6982C23.0083 11.1039 23.008 10.6166 22.9751 10.0449C22.9216 9.11694 22.8664 8.93761 22.5363 8.61917C22.2939 8.38524 22.1162 8.30498 21.7203 8.25024C21.4465 8.21244 21.3961 8.19233 21.3817 8.1156C21.2116 7.20098 20.9469 6.56705 20.5321 6.08062C19.8874 5.32463 19.1725 4.97059 18.0336 4.84323C16.7162 4.69591 14.386 4.55915 13.1934 4.55915H12.5247V4.09447V3.62977L12.7972 3.50658C13.528 3.17618 13.9911 2.30964 13.8464 1.54314C13.7136 0.84025 13.1916 0.254471 12.5276 0.0632448C12.2179 -0.0259742 11.7344 -0.0201182 11.4276 0.076507ZM6.64378 5.978C6.21075 6.01903 5.7484 6.07772 5.6163 6.10843C4.90984 6.27253 4.28007 6.82205 4.02439 7.49753C3.91215 7.79408 3.7252 8.76252 3.64409 9.46793C3.57513 10.0673 3.57553 11.6897 3.64479 12.3098C3.71217 12.9134 3.8888 13.8901 3.9835 14.1829C4.2238 14.9259 4.91229 15.5326 5.693 15.6892C6.01764 15.7544 7.67142 15.8951 9.07061 15.9768C9.56358 16.0055 10.8818 16.029 12 16.029C13.1182 16.029 14.4364 16.0055 14.9293 15.9768C16.3286 15.8951 17.9824 15.7544 18.307 15.6892C19.0878 15.5326 19.7762 14.9259 20.0164 14.1829C20.1107 13.8918 20.2874 12.9162 20.3558 12.3098C20.4252 11.6947 20.4252 10.0726 20.3558 9.46793C20.2749 8.76347 20.088 7.79434 19.9756 7.49753C19.7276 6.84251 19.1322 6.30676 18.449 6.12394C18.2082 6.05952 16.5492 5.894 16.144 5.894C15.5955 5.894 15.3822 6.08786 15.0834 6.85805C14.8638 7.42385 14.724 7.6224 14.4354 7.77776C14.3071 7.84691 14.1045 7.85319 12 7.85319C9.89557 7.85319 9.69292 7.84691 9.56455 7.77776C9.27598 7.6224 9.13612 7.42385 8.91658 6.85805C8.52619 5.85172 8.41819 5.80991 6.64378 5.978ZM7.60715 9.29856C6.58291 9.46715 5.90789 10.31 5.97876 11.332C6.05606 12.4467 7.15261 13.2679 8.2621 13.042C9.73357 12.7424 10.3208 10.966 9.30274 9.89416C8.85507 9.42283 8.21602 9.19836 7.60715 9.29856ZM15.9131 9.28268C15.6424 9.318 15.2943 9.43606 15.0977 9.55929C13.8057 10.3689 13.9127 12.2505 15.287 12.8909C16.7378 13.5671 18.3207 12.3114 17.9845 10.7511C17.8499 10.1263 17.3197 9.55572 16.7001 9.36897C16.4542 9.29483 16.1096 9.25706 15.9131 9.28268ZM11.5409 17.8055C10.0621 17.8745 8.89148 18.0784 8.67786 18.3042C8.57 18.4182 8.56414 18.6333 8.65394 19.1778C8.92034 20.7923 9.67267 22.3737 10.6221 23.3146C10.9175 23.6075 11.0928 23.7424 11.322 23.853C11.6024 23.9883 11.6605 24.0004 12.0257 24C12.4052 23.9996 12.4413 23.991 12.7957 23.8181C14.1599 23.1524 15.1489 21.2399 15.3882 18.8047C15.4354 18.3251 15.3101 18.2059 14.5577 18.015C14.0056 17.8748 12.4177 17.7646 11.5409 17.8055ZM6.51288 19.0204C5.36482 19.4281 4.87329 19.7322 4.87329 20.0348C4.87329 20.2823 5.11486 20.4706 5.57284 20.5801C6.01623 20.6859 7.464 20.6227 7.72467 20.4859C7.9209 20.3831 7.93525 19.7212 7.7499 19.3226C7.63377 19.0728 7.37026 18.7677 7.27286 18.7704C7.23962 18.7713 6.89762 18.8838 6.51288 19.0204ZM16.5176 18.9244C16.2892 19.1632 16.1512 19.4679 16.1238 19.7956C16.0966 20.1215 16.1636 20.4274 16.2753 20.4859C16.536 20.6227 17.9838 20.6859 18.4272 20.5801C18.8852 20.4706 19.1267 20.2823 19.1267 20.0348C19.1267 19.7307 18.6085 19.4131 17.454 19.0095C17.0753 18.8771 16.7432 18.7687 16.716 18.7687C16.6889 18.7687 16.5996 18.8388 16.5176 18.9244Z" fill="url(#paint0_linear_1429_12124)"/>
<defs>
<linearGradient id="paint0_linear_1429_12124" x1="12" y1="0" x2="12" y2="24" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#CADAFF"/>
</linearGradient>
</defs>
</svg>

BIN
public/assets/images/badge_glow.png

After

Width: 80  |  Height: 79  |  Size: 10 KiB

24
public/assets/images/badge_glow.svg

@ -0,0 +1,24 @@
<svg width="80" height="79" viewBox="0 0 80 79" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_fn_4178_61367)" style="mix-blend-mode:screen">
<ellipse cx="39.6018" cy="39.1505" rx="15.6259" ry="15.119" transform="rotate(-13.4557 39.6018 39.1505)" fill="#0035B3"/>
</g>
<defs>
<filter id="filter0_fn_4178_61367" x="0" y="0" width="79.2031" height="78.3009" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="12" result="effect1_foregroundBlur_4178_61367"/>
<feTurbulence type="fractalNoise" baseFrequency="0.20000000298023224 0.20000000298023224" stitchTiles="stitch" numOctaves="3" result="noise" seed="5948" />
<feColorMatrix in="noise" type="luminanceToAlpha" result="alphaNoise" />
<feComponentTransfer in="alphaNoise" result="coloredNoise1">
<feFuncA type="discrete" tableValues="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "/>
</feComponentTransfer>
<feComposite operator="in" in2="effect1_foregroundBlur_4178_61367" in="coloredNoise1" result="noise1Clipped" />
<feFlood flood-color="rgba(173, 209, 255, 0.3)" result="color1Flood" />
<feComposite operator="in" in2="noise1Clipped" in="color1Flood" result="color1" />
<feMerge result="effect2_noise_4178_61367">
<feMergeNode in="effect1_foregroundBlur_4178_61367" />
<feMergeNode in="color1" />
</feMerge>
</filter>
</defs>
</svg>

12
public/assets/images/badge_header.svg

@ -0,0 +1,12 @@
<svg width="95" height="24" viewBox="0 0 95 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="pill-border-grad-4178-61368" x1="47.5" y1="0" x2="47.5" y2="24" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#ffffff" stop-opacity="0.60"/>
<stop offset="35%" stop-color="#ffffff" stop-opacity="0.22"/>
<stop offset="65%" stop-color="#ffffff" stop-opacity="0.08"/>
<stop offset="100%" stop-color="#ffffff" stop-opacity="0.03"/>
</linearGradient>
</defs>
<rect x="0.5" y="0.5" width="94" height="23" rx="11.5" fill="none" stroke="url(#pill-border-grad-4178-61368)" stroke-width="1"/>
<text x="47.5" y="12" font-family="Inter, -apple-system, BlinkMacSystemFont, sans-serif" font-size="12" font-weight="500" fill="#f7faff" fill-opacity="1" text-anchor="middle" dominant-baseline="central" letter-spacing="0">Team By . Ai</text>
</svg>

BIN
public/assets/images/badge_star.png

After

Width: 128  |  Height: 128  |  Size: 16 KiB

63
public/assets/images/badge_star.svg

@ -0,0 +1,63 @@
<svg width="128" height="128" viewBox="0 0 128 128" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_di_4178_61363)">
<rect x="50" y="50" width="28" height="28" rx="14" fill="url(#paint0_linear_4178_61363)" fill-opacity="0.7" shape-rendering="crispEdges"/>
<rect x="50.5" y="50.5" width="27" height="27" rx="13.5" stroke="url(#paint1_linear_4178_61363)" shape-rendering="crispEdges"/>
<path d="M64 57C64.8697 61.3667 66.6079 63.1219 71 64C66.6069 64.8781 64.8686 66.6333 64 71C63.1303 66.6333 61.3921 64.877 57 64C61.3931 63.1219 63.1314 61.3667 64 57Z" fill="url(#paint2_linear_4178_61363)"/>
<g opacity="0.4" filter="url(#filter1_f_4178_61363)" style="mix-blend-mode:plus-lighter">
<path d="M66 55C66.8697 59.3667 68.6079 61.1219 73 62C68.6069 62.8781 66.8686 64.6333 66 69C65.1303 64.6333 63.3921 62.877 59 62C63.3931 61.1219 65.1314 59.3667 66 55Z" fill="url(#paint3_linear_4178_61363)"/>
</g>
<path d="M69.5 56C69.8106 57.5596 70.4314 58.1864 72 58.5C70.431 58.8136 69.8102 59.4405 69.5 61C69.1894 59.4405 68.5686 58.8132 67 58.5C68.569 58.1864 69.1898 57.5596 69.5 56Z" fill="url(#paint4_linear_4178_61363)"/>
</g>
<defs>
<filter id="filter0_di_4178_61363" x="0" y="0" width="128" height="128" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="25"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.293269 0 0 0 0 0.501131 0 0 0 0 1 0 0 0 0.7 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4178_61363"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="6"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0"/>
<feBlend mode="plus-lighter" in2="shape" result="effect2_innerShadow_4178_61363"/>
<feBlend mode="normal" in="effect2_innerShadow_4178_61363" in2="effect1_dropShadow_4178_61363" result="effect2_innerShadow_4178_61363"/>
</filter>
<filter id="filter1_f_4178_61363" x="54" y="50" width="24" height="24" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="2.5" result="effect1_foregroundBlur_4178_61363"/>
</filter>
<linearGradient id="paint0_linear_4178_61363" x1="64" y1="50" x2="64" y2="86.5" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint1_linear_4178_61363" x1="39.1111" y1="37.7872" x2="95.1671" y2="47.7984" gradientUnits="userSpaceOnUse">
<stop stop-color="white" stop-opacity="0.5"/>
<stop offset="0.52154" stop-color="white" stop-opacity="0"/>
<stop offset="1" stop-color="white" stop-opacity="0.5"/>
</linearGradient>
<linearGradient id="paint2_linear_4178_61363" x1="64" y1="60.5" x2="64" y2="71" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#769FFF"/>
</linearGradient>
<linearGradient id="paint3_linear_4178_61363" x1="66" y1="58.5" x2="66" y2="69" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#769FFF"/>
</linearGradient>
<linearGradient id="paint4_linear_4178_61363" x1="69.5" y1="57.25" x2="69.5" y2="61" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#769FFF"/>
</linearGradient>
</defs>
</svg>

47
public/assets/images/badge_star_steps.svg

@ -0,0 +1,47 @@
<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_di_1429_10892)">
<rect x="30" y="30" width="40" height="40" rx="20" fill="url(#paint0_linear_1429_10892)" fill-opacity="0.7" shape-rendering="crispEdges"/>
<rect x="30.5" y="30.5" width="39" height="39" rx="19.5" stroke="url(#paint1_linear_1429_10892)" shape-rendering="crispEdges"/>
<path d="M48.5294 38.0992C65.2689 36.2302 66.9622 61.3881 50.4783 61.9898C35.0507 62.5518 33.3866 39.7918 48.5294 38.0992ZM51.797 40.4155C50.9515 40.5455 49.6104 41.1847 48.9286 41.707C47.2802 42.9699 43.0796 47.1419 41.7474 48.7684C36.6116 55.0298 44.8536 63.3121 51.483 57.9742C52.9968 56.7554 58.5162 51.347 59.2114 49.8417C61.5371 44.8057 57.3365 39.567 51.797 40.4155Z" fill="#FF6333"/>
<path d="M48.5294 38.0992C65.2689 36.2302 66.9622 61.3881 50.4783 61.9898C35.0507 62.5518 33.3866 39.7918 48.5294 38.0992ZM51.797 40.4155C50.9515 40.5455 49.6104 41.1847 48.9286 41.707C47.2802 42.9699 43.0796 47.1419 41.7474 48.7684C36.6116 55.0298 44.8536 63.3121 51.483 57.9742C52.9968 56.7554 58.5162 51.347 59.2114 49.8417C61.5371 44.8057 57.3365 39.567 51.797 40.4155Z" fill="url(#paint2_linear_1429_10892)"/>
</g>
<defs>
<filter id="filter0_di_1429_10892" x="0" y="0" width="100" height="100" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="15"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.293269 0 0 0 0 0.501131 0 0 0 0 1 0 0 0 0.5 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1429_10892"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="6"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0"/>
<feBlend mode="plus-lighter" in2="shape" result="effect2_innerShadow_1429_10892"/>
<feBlend mode="normal" in="effect2_innerShadow_1429_10892" in2="effect1_dropShadow_1429_10892" result="effect2_innerShadow_1429_10892"/>
</filter>
<linearGradient id="paint0_linear_1429_10892" x1="50" y1="30" x2="50" y2="82.1429" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint1_linear_1429_10892" x1="14.4444" y1="12.5532" x2="94.5244" y2="26.8548" gradientUnits="userSpaceOnUse">
<stop stop-color="white" stop-opacity="0.5"/>
<stop offset="0.52154" stop-color="white" stop-opacity="0"/>
<stop offset="1" stop-color="white" stop-opacity="0.5"/>
</linearGradient>
<linearGradient id="paint2_linear_1429_10892" x1="50" y1="38" x2="50" y2="62" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#CADAFF"/>
</linearGradient>
</defs>
</svg>

10
public/assets/images/badge_star_steps_vector.svg

@ -0,0 +1,10 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.5294 0.0991742C27.2689 -1.76976 28.9622 23.3881 12.4783 23.9898C-2.9493 24.5518 -4.61338 1.79179 10.5294 0.0991742ZM13.797 2.4155C12.9515 2.54554 11.6104 3.18467 10.9286 3.70701C9.28019 4.96986 5.0796 9.1419 3.74743 10.7684C-1.38837 17.0298 6.85358 25.3121 13.483 19.9742C14.9968 18.7554 20.5162 13.347 21.2114 11.8417C23.5371 6.80573 19.3365 1.56699 13.797 2.4155Z" fill="#FF6333"/>
<path d="M10.5294 0.0991742C27.2689 -1.76976 28.9622 23.3881 12.4783 23.9898C-2.9493 24.5518 -4.61338 1.79179 10.5294 0.0991742ZM13.797 2.4155C12.9515 2.54554 11.6104 3.18467 10.9286 3.70701C9.28019 4.96986 5.0796 9.1419 3.74743 10.7684C-1.38837 17.0298 6.85358 25.3121 13.483 19.9742C14.9968 18.7554 20.5162 13.347 21.2114 11.8417C23.5371 6.80573 19.3365 1.56699 13.797 2.4155Z" fill="url(#paint0_linear_1429_10893)"/>
<defs>
<linearGradient id="paint0_linear_1429_10893" x1="12" y1="0" x2="12" y2="24" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#CADAFF"/>
</linearGradient>
</defs>
</svg>

47
public/assets/images/badge_steps.svg

@ -0,0 +1,47 @@
<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_di_1429_10892)">
<rect x="30" y="30" width="40" height="40" rx="20" fill="url(#paint0_linear_1429_10892)" fill-opacity="0.7" shape-rendering="crispEdges"/>
<rect x="30.5" y="30.5" width="39" height="39" rx="19.5" stroke="url(#paint1_linear_1429_10892)" shape-rendering="crispEdges"/>
<path d="M48.5294 38.0992C65.2689 36.2302 66.9622 61.3881 50.4783 61.9898C35.0507 62.5518 33.3866 39.7918 48.5294 38.0992ZM51.797 40.4155C50.9515 40.5455 49.6104 41.1847 48.9286 41.707C47.2802 42.9699 43.0796 47.1419 41.7474 48.7684C36.6116 55.0298 44.8536 63.3121 51.483 57.9742C52.9968 56.7554 58.5162 51.347 59.2114 49.8417C61.5371 44.8057 57.3365 39.567 51.797 40.4155Z" fill="#FF6333"/>
<path d="M48.5294 38.0992C65.2689 36.2302 66.9622 61.3881 50.4783 61.9898C35.0507 62.5518 33.3866 39.7918 48.5294 38.0992ZM51.797 40.4155C50.9515 40.5455 49.6104 41.1847 48.9286 41.707C47.2802 42.9699 43.0796 47.1419 41.7474 48.7684C36.6116 55.0298 44.8536 63.3121 51.483 57.9742C52.9968 56.7554 58.5162 51.347 59.2114 49.8417C61.5371 44.8057 57.3365 39.567 51.797 40.4155Z" fill="url(#paint2_linear_1429_10892)"/>
</g>
<defs>
<filter id="filter0_di_1429_10892" x="0" y="0" width="100" height="100" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="15"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.293269 0 0 0 0 0.501131 0 0 0 0 1 0 0 0 0.5 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1429_10892"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="6"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0"/>
<feBlend mode="plus-lighter" in2="shape" result="effect2_innerShadow_1429_10892"/>
<feBlend mode="normal" in="effect2_innerShadow_1429_10892" in2="effect1_dropShadow_1429_10892" result="effect2_innerShadow_1429_10892"/>
</filter>
<linearGradient id="paint0_linear_1429_10892" x1="50" y1="30" x2="50" y2="82.1429" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint1_linear_1429_10892" x1="14.4444" y1="12.5532" x2="94.5244" y2="26.8548" gradientUnits="userSpaceOnUse">
<stop stop-color="white" stop-opacity="0.5"/>
<stop offset="0.52154" stop-color="white" stop-opacity="0"/>
<stop offset="1" stop-color="white" stop-opacity="0.5"/>
</linearGradient>
<linearGradient id="paint2_linear_1429_10892" x1="50" y1="38" x2="50" y2="62" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#CADAFF"/>
</linearGradient>
</defs>
</svg>

10
public/assets/images/badge_steps_vector.svg

@ -0,0 +1,10 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.5294 0.0991742C27.2689 -1.76976 28.9622 23.3881 12.4783 23.9898C-2.9493 24.5518 -4.61338 1.79179 10.5294 0.0991742ZM13.797 2.4155C12.9515 2.54554 11.6104 3.18467 10.9286 3.70701C9.28019 4.96986 5.0796 9.1419 3.74743 10.7684C-1.38837 17.0298 6.85358 25.3121 13.483 19.9742C14.9968 18.7554 20.5162 13.347 21.2114 11.8417C23.5371 6.80573 19.3365 1.56699 13.797 2.4155Z" fill="#FF6333"/>
<path d="M10.5294 0.0991742C27.2689 -1.76976 28.9622 23.3881 12.4783 23.9898C-2.9493 24.5518 -4.61338 1.79179 10.5294 0.0991742ZM13.797 2.4155C12.9515 2.54554 11.6104 3.18467 10.9286 3.70701C9.28019 4.96986 5.0796 9.1419 3.74743 10.7684C-1.38837 17.0298 6.85358 25.3121 13.483 19.9742C14.9968 18.7554 20.5162 13.347 21.2114 11.8417C23.5371 6.80573 19.3365 1.56699 13.797 2.4155Z" fill="url(#paint0_linear_1429_10893)"/>
<defs>
<linearGradient id="paint0_linear_1429_10893" x1="12" y1="0" x2="12" y2="24" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#CADAFF"/>
</linearGradient>
</defs>
</svg>

BIN
public/assets/images/copilot_badge.png

After

Width: 100  |  Height: 100  |  Size: 13 KiB

47
public/assets/images/copilot_badge.svg

@ -0,0 +1,47 @@
<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_di_1429_12123)">
<rect x="30" y="30" width="40" height="40" rx="20" fill="url(#paint0_linear_1429_12123)" fill-opacity="0.7" shape-rendering="crispEdges"/>
<rect x="30.5" y="30.5" width="39" height="39" rx="19.5" stroke="url(#paint1_linear_1429_12123)" shape-rendering="crispEdges"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M49.4276 38.0765C48.7836 38.2794 48.2836 38.8551 48.1536 39.5431C48.0089 40.3096 48.4719 41.1762 49.2028 41.5066L49.4753 41.6298V42.0945V42.5592L48.8086 42.5592C47.5956 42.5593 45.3023 42.6939 43.9664 42.8432C42.8275 42.9706 42.1126 43.3246 41.4679 44.0806C41.0526 44.5676 40.7904 45.1958 40.6178 46.1173C40.6035 46.1941 40.5592 46.214 40.3488 46.2387C39.9237 46.2887 39.7674 46.3544 39.5049 46.5937C39.1279 46.9375 39.0804 47.0816 39.0246 48.0495C38.9919 48.6166 38.9918 49.1053 39.0243 49.6982C39.0647 50.4371 39.0832 50.5685 39.1747 50.7654C39.3836 51.2147 39.7803 51.4862 40.3051 51.539C40.5593 51.5645 40.6033 51.5815 40.6196 51.6605C40.748 52.282 40.8027 52.4899 40.9118 52.7704C41.2125 53.5438 41.8292 54.2086 42.5992 54.5894C42.9981 54.7866 43.5437 54.9089 44.338 54.9793C48.2525 55.3257 51.7475 55.3257 55.662 54.9793C56.4564 54.9089 57.0019 54.7866 57.4007 54.5894C58.1708 54.2086 58.7875 53.5438 59.0883 52.7704C59.1974 52.4899 59.2519 52.282 59.3804 51.6605C59.3966 51.5815 59.4407 51.5645 59.6949 51.539C60.2198 51.4862 60.6163 51.2147 60.8253 50.7654C60.9168 50.5685 60.9354 50.4371 60.9758 49.6982C61.0083 49.1039 61.008 48.6166 60.9751 48.0449C60.9216 47.1169 60.8664 46.9376 60.5363 46.6192C60.2939 46.3852 60.1162 46.305 59.7203 46.2502C59.4465 46.2124 59.3961 46.1923 59.3817 46.1156C59.2116 45.201 58.9469 44.5671 58.5321 44.0806C57.8874 43.3246 57.1725 42.9706 56.0336 42.8432C54.7162 42.6959 52.386 42.5592 51.1934 42.5592H50.5247V42.0945V41.6298L50.7972 41.5066C51.528 41.1762 51.9911 40.3096 51.8464 39.5431C51.7136 38.8403 51.1916 38.2545 50.5276 38.0632C50.2179 37.974 49.7344 37.9799 49.4276 38.0765ZM44.6438 43.978C44.2108 44.019 43.7484 44.0777 43.6163 44.1084C42.9098 44.2725 42.2801 44.8221 42.0244 45.4975C41.9121 45.7941 41.7252 46.7625 41.6441 47.4679C41.5751 48.0673 41.5755 49.6897 41.6448 50.3098C41.7122 50.9134 41.8888 51.8901 41.9835 52.1829C42.2238 52.9259 42.9123 53.5326 43.693 53.6892C44.0176 53.7544 45.6714 53.8951 47.0706 53.9768C47.5636 54.0055 48.8818 54.029 50 54.029C51.1182 54.029 52.4364 54.0055 52.9293 53.9768C54.3286 53.8951 55.9824 53.7544 56.307 53.6892C57.0878 53.5326 57.7762 52.9259 58.0164 52.1829C58.1107 51.8918 58.2874 50.9162 58.3558 50.3098C58.4252 49.6947 58.4252 48.0726 58.3558 47.4679C58.2749 46.7635 58.088 45.7943 57.9756 45.4975C57.7276 44.8425 57.1322 44.3068 56.449 44.1239C56.2082 44.0595 54.5492 43.894 54.144 43.894C53.5955 43.894 53.3822 44.0879 53.0834 44.8581C52.8638 45.4239 52.724 45.6224 52.4354 45.7778C52.3071 45.8469 52.1045 45.8532 50 45.8532C47.8956 45.8532 47.6929 45.8469 47.5645 45.7778C47.276 45.6224 47.1361 45.4239 46.9166 44.8581C46.5262 43.8517 46.4182 43.8099 44.6438 43.978ZM45.6071 47.2986C44.5829 47.4672 43.9079 48.31 43.9788 49.332C44.0561 50.4467 45.1526 51.2679 46.2621 51.042C47.7336 50.7424 48.3208 48.966 47.3027 47.8942C46.8551 47.4228 46.216 47.1984 45.6071 47.2986ZM53.9131 47.2827C53.6424 47.318 53.2943 47.4361 53.0977 47.5593C51.8057 48.3689 51.9127 50.2505 53.287 50.8909C54.7378 51.5671 56.3207 50.3114 55.9845 48.7511C55.8499 48.1263 55.3197 47.5557 54.7001 47.369C54.4542 47.2948 54.1096 47.2571 53.9131 47.2827ZM49.5409 55.8055C48.0621 55.8745 46.8915 56.0784 46.6779 56.3042C46.57 56.4182 46.5641 56.6333 46.6539 57.1778C46.9203 58.7923 47.6727 60.3737 48.6221 61.3146C48.9175 61.6075 49.0928 61.7424 49.322 61.853C49.6024 61.9883 49.6605 62.0004 50.0257 62C50.4052 61.9996 50.4413 61.991 50.7957 61.8181C52.1599 61.1524 53.1489 59.2399 53.3882 56.8047C53.4354 56.3251 53.3101 56.2059 52.5577 56.015C52.0056 55.8748 50.4177 55.7646 49.5409 55.8055ZM44.5129 57.0204C43.3648 57.4281 42.8733 57.7322 42.8733 58.0348C42.8733 58.2823 43.1149 58.4706 43.5728 58.5801C44.0162 58.6859 45.464 58.6227 45.7247 58.4859C45.9209 58.3831 45.9352 57.7212 45.7499 57.3226C45.6338 57.0728 45.3703 56.7677 45.2729 56.7704C45.2396 56.7713 44.8976 56.8838 44.5129 57.0204ZM54.5176 56.9244C54.2892 57.1632 54.1512 57.4679 54.1238 57.7956C54.0966 58.1215 54.1636 58.4274 54.2753 58.4859C54.536 58.6227 55.9838 58.6859 56.4272 58.5801C56.8852 58.4706 57.1267 58.2823 57.1267 58.0348C57.1267 57.7307 56.6085 57.4131 55.454 57.0095C55.0753 56.8771 54.7432 56.7687 54.716 56.7687C54.6889 56.7687 54.5996 56.8388 54.5176 56.9244Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M49.4276 38.0765C48.7836 38.2794 48.2836 38.8551 48.1536 39.5431C48.0089 40.3096 48.4719 41.1762 49.2028 41.5066L49.4753 41.6298V42.0945V42.5592L48.8086 42.5592C47.5956 42.5593 45.3023 42.6939 43.9664 42.8432C42.8275 42.9706 42.1126 43.3246 41.4679 44.0806C41.0526 44.5676 40.7904 45.1958 40.6178 46.1173C40.6035 46.1941 40.5592 46.214 40.3488 46.2387C39.9237 46.2887 39.7674 46.3544 39.5049 46.5937C39.1279 46.9375 39.0804 47.0816 39.0246 48.0495C38.9919 48.6166 38.9918 49.1053 39.0243 49.6982C39.0647 50.4371 39.0832 50.5685 39.1747 50.7654C39.3836 51.2147 39.7803 51.4862 40.3051 51.539C40.5593 51.5645 40.6033 51.5815 40.6196 51.6605C40.748 52.282 40.8027 52.4899 40.9118 52.7704C41.2125 53.5438 41.8292 54.2086 42.5992 54.5894C42.9981 54.7866 43.5437 54.9089 44.338 54.9793C48.2525 55.3257 51.7475 55.3257 55.662 54.9793C56.4564 54.9089 57.0019 54.7866 57.4007 54.5894C58.1708 54.2086 58.7875 53.5438 59.0883 52.7704C59.1974 52.4899 59.2519 52.282 59.3804 51.6605C59.3966 51.5815 59.4407 51.5645 59.6949 51.539C60.2198 51.4862 60.6163 51.2147 60.8253 50.7654C60.9168 50.5685 60.9354 50.4371 60.9758 49.6982C61.0083 49.1039 61.008 48.6166 60.9751 48.0449C60.9216 47.1169 60.8664 46.9376 60.5363 46.6192C60.2939 46.3852 60.1162 46.305 59.7203 46.2502C59.4465 46.2124 59.3961 46.1923 59.3817 46.1156C59.2116 45.201 58.9469 44.5671 58.5321 44.0806C57.8874 43.3246 57.1725 42.9706 56.0336 42.8432C54.7162 42.6959 52.386 42.5592 51.1934 42.5592H50.5247V42.0945V41.6298L50.7972 41.5066C51.528 41.1762 51.9911 40.3096 51.8464 39.5431C51.7136 38.8403 51.1916 38.2545 50.5276 38.0632C50.2179 37.974 49.7344 37.9799 49.4276 38.0765ZM44.6438 43.978C44.2108 44.019 43.7484 44.0777 43.6163 44.1084C42.9098 44.2725 42.2801 44.8221 42.0244 45.4975C41.9121 45.7941 41.7252 46.7625 41.6441 47.4679C41.5751 48.0673 41.5755 49.6897 41.6448 50.3098C41.7122 50.9134 41.8888 51.8901 41.9835 52.1829C42.2238 52.9259 42.9123 53.5326 43.693 53.6892C44.0176 53.7544 45.6714 53.8951 47.0706 53.9768C47.5636 54.0055 48.8818 54.029 50 54.029C51.1182 54.029 52.4364 54.0055 52.9293 53.9768C54.3286 53.8951 55.9824 53.7544 56.307 53.6892C57.0878 53.5326 57.7762 52.9259 58.0164 52.1829C58.1107 51.8918 58.2874 50.9162 58.3558 50.3098C58.4252 49.6947 58.4252 48.0726 58.3558 47.4679C58.2749 46.7635 58.088 45.7943 57.9756 45.4975C57.7276 44.8425 57.1322 44.3068 56.449 44.1239C56.2082 44.0595 54.5492 43.894 54.144 43.894C53.5955 43.894 53.3822 44.0879 53.0834 44.8581C52.8638 45.4239 52.724 45.6224 52.4354 45.7778C52.3071 45.8469 52.1045 45.8532 50 45.8532C47.8956 45.8532 47.6929 45.8469 47.5645 45.7778C47.276 45.6224 47.1361 45.4239 46.9166 44.8581C46.5262 43.8517 46.4182 43.8099 44.6438 43.978ZM45.6071 47.2986C44.5829 47.4672 43.9079 48.31 43.9788 49.332C44.0561 50.4467 45.1526 51.2679 46.2621 51.042C47.7336 50.7424 48.3208 48.966 47.3027 47.8942C46.8551 47.4228 46.216 47.1984 45.6071 47.2986ZM53.9131 47.2827C53.6424 47.318 53.2943 47.4361 53.0977 47.5593C51.8057 48.3689 51.9127 50.2505 53.287 50.8909C54.7378 51.5671 56.3207 50.3114 55.9845 48.7511C55.8499 48.1263 55.3197 47.5557 54.7001 47.369C54.4542 47.2948 54.1096 47.2571 53.9131 47.2827ZM49.5409 55.8055C48.0621 55.8745 46.8915 56.0784 46.6779 56.3042C46.57 56.4182 46.5641 56.6333 46.6539 57.1778C46.9203 58.7923 47.6727 60.3737 48.6221 61.3146C48.9175 61.6075 49.0928 61.7424 49.322 61.853C49.6024 61.9883 49.6605 62.0004 50.0257 62C50.4052 61.9996 50.4413 61.991 50.7957 61.8181C52.1599 61.1524 53.1489 59.2399 53.3882 56.8047C53.4354 56.3251 53.3101 56.2059 52.5577 56.015C52.0056 55.8748 50.4177 55.7646 49.5409 55.8055ZM44.5129 57.0204C43.3648 57.4281 42.8733 57.7322 42.8733 58.0348C42.8733 58.2823 43.1149 58.4706 43.5728 58.5801C44.0162 58.6859 45.464 58.6227 45.7247 58.4859C45.9209 58.3831 45.9352 57.7212 45.7499 57.3226C45.6338 57.0728 45.3703 56.7677 45.2729 56.7704C45.2396 56.7713 44.8976 56.8838 44.5129 57.0204ZM54.5176 56.9244C54.2892 57.1632 54.1512 57.4679 54.1238 57.7956C54.0966 58.1215 54.1636 58.4274 54.2753 58.4859C54.536 58.6227 55.9838 58.6859 56.4272 58.5801C56.8852 58.4706 57.1267 58.2823 57.1267 58.0348C57.1267 57.7307 56.6085 57.4131 55.454 57.0095C55.0753 56.8771 54.7432 56.7687 54.716 56.7687C54.6889 56.7687 54.5996 56.8388 54.5176 56.9244Z" fill="url(#paint2_linear_1429_12123)"/>
</g>
<defs>
<filter id="filter0_di_1429_12123" x="0" y="0" width="100" height="100" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="15"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.293269 0 0 0 0 0.501131 0 0 0 0 1 0 0 0 0.5 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1429_12123"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="6"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0"/>
<feBlend mode="plus-lighter" in2="shape" result="effect2_innerShadow_1429_12123"/>
<feBlend mode="normal" in="effect2_innerShadow_1429_12123" in2="effect1_dropShadow_1429_12123" result="effect2_innerShadow_1429_12123"/>
</filter>
<linearGradient id="paint0_linear_1429_12123" x1="50" y1="30" x2="50" y2="82.1429" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint1_linear_1429_12123" x1="14.4444" y1="12.5532" x2="94.5244" y2="26.8548" gradientUnits="userSpaceOnUse">
<stop stop-color="white" stop-opacity="0.5"/>
<stop offset="0.52154" stop-color="white" stop-opacity="0"/>
<stop offset="1" stop-color="white" stop-opacity="0.5"/>
</linearGradient>
<linearGradient id="paint2_linear_1429_12123" x1="50" y1="38" x2="50" y2="62" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#CADAFF"/>
</linearGradient>
</defs>
</svg>

10
public/assets/images/copilot_badge_icon.svg

@ -0,0 +1,10 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.4276 0.076507C10.7836 0.279446 10.2836 0.855106 10.1536 1.54314C10.0089 2.30964 10.4719 3.17618 11.2028 3.50658L11.4753 3.62977V4.09447V4.55915L10.8086 4.55925C9.59559 4.55933 7.30228 4.69385 5.96635 4.84323C4.82747 4.97059 4.11262 5.32463 3.46789 6.08062C3.05262 6.56763 2.79041 7.19577 2.61784 8.11733C2.60346 8.19406 2.55922 8.21404 2.34878 8.23875C1.92372 8.28866 1.76741 8.35441 1.5049 8.59373C1.12788 8.93751 1.08036 9.08156 1.02457 10.0495C0.991906 10.6166 0.991819 11.1053 1.02426 11.6982C1.0647 12.4371 1.08324 12.5685 1.17475 12.7654C1.38362 13.2147 1.78026 13.4862 2.30506 13.539C2.55934 13.5645 2.60333 13.5815 2.61963 13.6605C2.748 14.282 2.80266 14.4899 2.91179 14.7704C3.21247 15.5438 3.82917 16.2086 4.59924 16.5894C4.99807 16.7866 5.54368 16.9089 6.33798 16.9793C10.2525 17.3257 13.7475 17.3257 17.662 16.9793C18.4564 16.9089 19.0019 16.7866 19.4007 16.5894C20.1708 16.2086 20.7875 15.5438 21.0883 14.7704C21.1974 14.4899 21.2519 14.282 21.3804 13.6605C21.3966 13.5815 21.4407 13.5645 21.6949 13.539C22.2198 13.4862 22.6163 13.2147 22.8253 12.7654C22.9168 12.5685 22.9354 12.4371 22.9758 11.6982C23.0083 11.1039 23.008 10.6166 22.9751 10.0449C22.9216 9.11694 22.8664 8.93761 22.5363 8.61917C22.2939 8.38524 22.1162 8.30498 21.7203 8.25024C21.4465 8.21244 21.3961 8.19233 21.3817 8.1156C21.2116 7.20098 20.9469 6.56705 20.5321 6.08062C19.8874 5.32463 19.1725 4.97059 18.0336 4.84323C16.7162 4.69591 14.386 4.55915 13.1934 4.55915H12.5247V4.09447V3.62977L12.7972 3.50658C13.528 3.17618 13.9911 2.30964 13.8464 1.54314C13.7136 0.84025 13.1916 0.254471 12.5276 0.0632448C12.2179 -0.0259742 11.7344 -0.0201182 11.4276 0.076507ZM6.64378 5.978C6.21075 6.01903 5.7484 6.07772 5.6163 6.10843C4.90984 6.27253 4.28007 6.82205 4.02439 7.49753C3.91215 7.79408 3.7252 8.76252 3.64409 9.46793C3.57513 10.0673 3.57553 11.6897 3.64479 12.3098C3.71217 12.9134 3.8888 13.8901 3.9835 14.1829C4.2238 14.9259 4.91229 15.5326 5.693 15.6892C6.01764 15.7544 7.67142 15.8951 9.07061 15.9768C9.56358 16.0055 10.8818 16.029 12 16.029C13.1182 16.029 14.4364 16.0055 14.9293 15.9768C16.3286 15.8951 17.9824 15.7544 18.307 15.6892C19.0878 15.5326 19.7762 14.9259 20.0164 14.1829C20.1107 13.8918 20.2874 12.9162 20.3558 12.3098C20.4252 11.6947 20.4252 10.0726 20.3558 9.46793C20.2749 8.76347 20.088 7.79434 19.9756 7.49753C19.7276 6.84251 19.1322 6.30676 18.449 6.12394C18.2082 6.05952 16.5492 5.894 16.144 5.894C15.5955 5.894 15.3822 6.08786 15.0834 6.85805C14.8638 7.42385 14.724 7.6224 14.4354 7.77776C14.3071 7.84691 14.1045 7.85319 12 7.85319C9.89557 7.85319 9.69292 7.84691 9.56455 7.77776C9.27598 7.6224 9.13612 7.42385 8.91658 6.85805C8.52619 5.85172 8.41819 5.80991 6.64378 5.978ZM7.60715 9.29856C6.58291 9.46715 5.90789 10.31 5.97876 11.332C6.05606 12.4467 7.15261 13.2679 8.2621 13.042C9.73357 12.7424 10.3208 10.966 9.30274 9.89416C8.85507 9.42283 8.21602 9.19836 7.60715 9.29856ZM15.9131 9.28268C15.6424 9.318 15.2943 9.43606 15.0977 9.55929C13.8057 10.3689 13.9127 12.2505 15.287 12.8909C16.7378 13.5671 18.3207 12.3114 17.9845 10.7511C17.8499 10.1263 17.3197 9.55572 16.7001 9.36897C16.4542 9.29483 16.1096 9.25706 15.9131 9.28268ZM11.5409 17.8055C10.0621 17.8745 8.89148 18.0784 8.67786 18.3042C8.57 18.4182 8.56414 18.6333 8.65394 19.1778C8.92034 20.7923 9.67267 22.3737 10.6221 23.3146C10.9175 23.6075 11.0928 23.7424 11.322 23.853C11.6024 23.9883 11.6605 24.0004 12.0257 24C12.4052 23.9996 12.4413 23.991 12.7957 23.8181C14.1599 23.1524 15.1489 21.2399 15.3882 18.8047C15.4354 18.3251 15.3101 18.2059 14.5577 18.015C14.0056 17.8748 12.4177 17.7646 11.5409 17.8055ZM6.51288 19.0204C5.36482 19.4281 4.87329 19.7322 4.87329 20.0348C4.87329 20.2823 5.11486 20.4706 5.57284 20.5801C6.01623 20.6859 7.464 20.6227 7.72467 20.4859C7.9209 20.3831 7.93525 19.7212 7.7499 19.3226C7.63377 19.0728 7.37026 18.7677 7.27286 18.7704C7.23962 18.7713 6.89762 18.8838 6.51288 19.0204ZM16.5176 18.9244C16.2892 19.1632 16.1512 19.4679 16.1238 19.7956C16.0966 20.1215 16.1636 20.4274 16.2753 20.4859C16.536 20.6227 17.9838 20.6859 18.4272 20.5801C18.8852 20.4706 19.1267 20.2823 19.1267 20.0348C19.1267 19.7307 18.6085 19.4131 17.454 19.0095C17.0753 18.8771 16.7432 18.7687 16.716 18.7687C16.6889 18.7687 16.5996 18.8388 16.5176 18.9244Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.4276 0.076507C10.7836 0.279446 10.2836 0.855106 10.1536 1.54314C10.0089 2.30964 10.4719 3.17618 11.2028 3.50658L11.4753 3.62977V4.09447V4.55915L10.8086 4.55925C9.59559 4.55933 7.30228 4.69385 5.96635 4.84323C4.82747 4.97059 4.11262 5.32463 3.46789 6.08062C3.05262 6.56763 2.79041 7.19577 2.61784 8.11733C2.60346 8.19406 2.55922 8.21404 2.34878 8.23875C1.92372 8.28866 1.76741 8.35441 1.5049 8.59373C1.12788 8.93751 1.08036 9.08156 1.02457 10.0495C0.991906 10.6166 0.991819 11.1053 1.02426 11.6982C1.0647 12.4371 1.08324 12.5685 1.17475 12.7654C1.38362 13.2147 1.78026 13.4862 2.30506 13.539C2.55934 13.5645 2.60333 13.5815 2.61963 13.6605C2.748 14.282 2.80266 14.4899 2.91179 14.7704C3.21247 15.5438 3.82917 16.2086 4.59924 16.5894C4.99807 16.7866 5.54368 16.9089 6.33798 16.9793C10.2525 17.3257 13.7475 17.3257 17.662 16.9793C18.4564 16.9089 19.0019 16.7866 19.4007 16.5894C20.1708 16.2086 20.7875 15.5438 21.0883 14.7704C21.1974 14.4899 21.2519 14.282 21.3804 13.6605C21.3966 13.5815 21.4407 13.5645 21.6949 13.539C22.2198 13.4862 22.6163 13.2147 22.8253 12.7654C22.9168 12.5685 22.9354 12.4371 22.9758 11.6982C23.0083 11.1039 23.008 10.6166 22.9751 10.0449C22.9216 9.11694 22.8664 8.93761 22.5363 8.61917C22.2939 8.38524 22.1162 8.30498 21.7203 8.25024C21.4465 8.21244 21.3961 8.19233 21.3817 8.1156C21.2116 7.20098 20.9469 6.56705 20.5321 6.08062C19.8874 5.32463 19.1725 4.97059 18.0336 4.84323C16.7162 4.69591 14.386 4.55915 13.1934 4.55915H12.5247V4.09447V3.62977L12.7972 3.50658C13.528 3.17618 13.9911 2.30964 13.8464 1.54314C13.7136 0.84025 13.1916 0.254471 12.5276 0.0632448C12.2179 -0.0259742 11.7344 -0.0201182 11.4276 0.076507ZM6.64378 5.978C6.21075 6.01903 5.7484 6.07772 5.6163 6.10843C4.90984 6.27253 4.28007 6.82205 4.02439 7.49753C3.91215 7.79408 3.7252 8.76252 3.64409 9.46793C3.57513 10.0673 3.57553 11.6897 3.64479 12.3098C3.71217 12.9134 3.8888 13.8901 3.9835 14.1829C4.2238 14.9259 4.91229 15.5326 5.693 15.6892C6.01764 15.7544 7.67142 15.8951 9.07061 15.9768C9.56358 16.0055 10.8818 16.029 12 16.029C13.1182 16.029 14.4364 16.0055 14.9293 15.9768C16.3286 15.8951 17.9824 15.7544 18.307 15.6892C19.0878 15.5326 19.7762 14.9259 20.0164 14.1829C20.1107 13.8918 20.2874 12.9162 20.3558 12.3098C20.4252 11.6947 20.4252 10.0726 20.3558 9.46793C20.2749 8.76347 20.088 7.79434 19.9756 7.49753C19.7276 6.84251 19.1322 6.30676 18.449 6.12394C18.2082 6.05952 16.5492 5.894 16.144 5.894C15.5955 5.894 15.3822 6.08786 15.0834 6.85805C14.8638 7.42385 14.724 7.6224 14.4354 7.77776C14.3071 7.84691 14.1045 7.85319 12 7.85319C9.89557 7.85319 9.69292 7.84691 9.56455 7.77776C9.27598 7.6224 9.13612 7.42385 8.91658 6.85805C8.52619 5.85172 8.41819 5.80991 6.64378 5.978ZM7.60715 9.29856C6.58291 9.46715 5.90789 10.31 5.97876 11.332C6.05606 12.4467 7.15261 13.2679 8.2621 13.042C9.73357 12.7424 10.3208 10.966 9.30274 9.89416C8.85507 9.42283 8.21602 9.19836 7.60715 9.29856ZM15.9131 9.28268C15.6424 9.318 15.2943 9.43606 15.0977 9.55929C13.8057 10.3689 13.9127 12.2505 15.287 12.8909C16.7378 13.5671 18.3207 12.3114 17.9845 10.7511C17.8499 10.1263 17.3197 9.55572 16.7001 9.36897C16.4542 9.29483 16.1096 9.25706 15.9131 9.28268ZM11.5409 17.8055C10.0621 17.8745 8.89148 18.0784 8.67786 18.3042C8.57 18.4182 8.56414 18.6333 8.65394 19.1778C8.92034 20.7923 9.67267 22.3737 10.6221 23.3146C10.9175 23.6075 11.0928 23.7424 11.322 23.853C11.6024 23.9883 11.6605 24.0004 12.0257 24C12.4052 23.9996 12.4413 23.991 12.7957 23.8181C14.1599 23.1524 15.1489 21.2399 15.3882 18.8047C15.4354 18.3251 15.3101 18.2059 14.5577 18.015C14.0056 17.8748 12.4177 17.7646 11.5409 17.8055ZM6.51288 19.0204C5.36482 19.4281 4.87329 19.7322 4.87329 20.0348C4.87329 20.2823 5.11486 20.4706 5.57284 20.5801C6.01623 20.6859 7.464 20.6227 7.72467 20.4859C7.9209 20.3831 7.93525 19.7212 7.7499 19.3226C7.63377 19.0728 7.37026 18.7677 7.27286 18.7704C7.23962 18.7713 6.89762 18.8838 6.51288 19.0204ZM16.5176 18.9244C16.2892 19.1632 16.1512 19.4679 16.1238 19.7956C16.0966 20.1215 16.1636 20.4274 16.2753 20.4859C16.536 20.6227 17.9838 20.6859 18.4272 20.5801C18.8852 20.4706 19.1267 20.2823 19.1267 20.0348C19.1267 19.7307 18.6085 19.4131 17.454 19.0095C17.0753 18.8771 16.7432 18.7687 16.716 18.7687C16.6889 18.7687 16.5996 18.8388 16.5176 18.9244Z" fill="url(#paint0_linear_1429_12124)"/>
<defs>
<linearGradient id="paint0_linear_1429_12124" x1="12" y1="0" x2="12" y2="24" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#CADAFF"/>
</linearGradient>
</defs>
</svg>

BIN
public/assets/images/copilot_content_frame.png

After

Width: 1612  |  Height: 865  |  Size: 1.7 MiB

21
public/assets/images/copilot_header_glow.svg

@ -0,0 +1,21 @@
<svg width="595" height="504" viewBox="0 0 595 504" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_f_1429_12118)">
<circle cx="297" cy="252" r="52" fill="#001AC7"/>
</g>
<g filter="url(#filter1_f_1429_12118)">
<circle cx="297" cy="252" r="32" fill="#4E66FF"/>
</g>
<rect y="85" width="595" height="167" fill="#03070D"/>
<defs>
<filter id="filter0_f_1429_12118" x="45" y="0" width="504" height="504" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="100" result="effect1_foregroundBlur_1429_12118"/>
</filter>
<filter id="filter1_f_1429_12118" x="165" y="120" width="264" height="264" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="50" result="effect1_foregroundBlur_1429_12118"/>
</filter>
</defs>
</svg>

6
public/assets/images/copilot_icon_bubble_chat.svg

@ -0,0 +1,6 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.4" d="M16.0013 1.66675C8.12828 1.66675 1.66797 7.78459 1.66797 15.4224C1.66797 19.0859 3.16092 22.4088 5.58065 24.8659C5.93766 25.2285 6.05379 25.6001 6.00248 25.8737C5.81281 26.8685 5.38393 27.7927 4.7602 28.5599C4.53762 28.8336 4.47579 29.2044 4.59748 29.5356C4.71917 29.8668 5.00638 30.1093 5.35325 30.1739C7.50136 30.5734 9.72852 30.2134 11.6375 29.1982C11.9489 29.0326 12.1523 28.9247 12.305 28.8522C12.347 28.8293 12.4591 28.7877 12.5706 28.8048C12.7201 28.8253 12.921 28.8628 13.2373 28.9222C14.1484 29.0933 15.0735 29.1791 16.0013 29.178C23.8743 29.178 30.3346 23.0601 30.3346 15.4224C30.3346 7.78459 23.8743 1.66675 16.0013 1.66675Z" fill="#3D6FE5"/>
<path d="M10.6654 14.6667C9.92898 14.6667 9.33203 15.2637 9.33203 16.0001C9.33203 16.7365 9.92898 17.3334 10.6654 17.3334H10.6773C11.4137 17.3334 12.0107 16.7365 12.0107 16.0001C12.0107 15.2637 11.4137 14.6667 10.6773 14.6667H10.6654Z" fill="#3D6FE5"/>
<path d="M15.9927 14.6667C15.2563 14.6667 14.6594 15.2637 14.6594 16.0001C14.6594 16.7365 15.2563 17.3334 15.9927 17.3334H16.0047C16.7411 17.3334 17.338 16.7365 17.338 16.0001C17.338 15.2637 16.7411 14.6667 16.0047 14.6667H15.9927Z" fill="#3D6FE5"/>
<path d="M21.3201 14.6667C20.5837 14.6667 19.9867 15.2637 19.9867 16.0001C19.9867 16.7365 20.5837 17.3334 21.3201 17.3334H21.332C22.0684 17.3334 22.6654 16.7365 22.6654 16.0001C22.6654 15.2637 22.0684 14.6667 21.332 14.6667H21.3201Z" fill="#3D6FE5"/>
</svg>

3
public/assets/images/copilot_icon_call.svg

@ -0,0 +1,3 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.4" d="M6.92302 1.88201C7.6786 2.03817 8.28033 2.54583 8.65418 3.21654L9.84513 5.35313C10.2838 6.14007 10.653 6.80231 10.8941 7.37801C11.1498 7.9887 11.3017 8.59091 11.2323 9.25672C11.1628 9.92254 10.8899 10.4805 10.5137 11.0252C10.159 11.5388 9.66118 12.1106 9.06958 12.7901L7.15752 14.9864C6.92269 15.2562 6.80527 15.391 6.79387 15.5587C6.78247 15.7263 6.8782 15.8723 7.06964 16.1641C9.31897 19.593 12.4048 22.68 15.8367 24.9314C16.1285 25.1228 16.2745 25.2185 16.4421 25.2071C16.6098 25.1957 16.7446 25.0783 17.0144 24.8435L19.2108 22.9313C19.8903 22.3397 20.4621 21.8419 20.9757 21.4872C21.5205 21.111 22.0784 20.8381 22.7442 20.7687C23.41 20.6992 24.0122 20.8511 24.6229 21.1069C25.1985 21.3479 25.8608 21.7171 26.6476 22.1557L26.6478 22.1558L28.7844 23.3467C29.4551 23.7206 29.9627 24.3223 30.1189 25.0779C30.2767 25.8414 30.0439 26.6088 29.5299 27.2395C27.6647 29.528 24.6763 30.9851 21.5414 30.3527C19.6143 29.964 17.713 29.3163 15.4134 27.9975C10.7929 25.3477 6.65017 21.2026 4.0034 16.5875C2.68458 14.2879 2.03696 12.3866 1.64824 10.4596C1.01584 7.32461 2.47295 4.33624 4.76144 2.47103C5.39215 1.95697 6.15955 1.72421 6.92302 1.88201Z" fill="#3D6FE5"/>
</svg>

4
public/assets/images/copilot_icon_clock.svg

@ -0,0 +1,4 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.4" d="M1.66797 16.0001C1.66797 8.084 8.08522 1.66675 16.0013 1.66675C23.9174 1.66675 30.3346 8.084 30.3346 16.0001C30.3346 23.9162 23.9174 30.3334 16.0013 30.3334C8.08522 30.3334 1.66797 23.9162 1.66797 16.0001Z" fill="#3D6FE5"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.0013 9.33325C16.7377 9.33325 17.3346 9.93021 17.3346 10.6666V15.4476L19.6108 17.7238C20.1315 18.2445 20.1315 19.0887 19.6108 19.6094C19.0901 20.1301 18.2459 20.1301 17.7252 19.6094L15.0585 16.9427C14.8084 16.6927 14.668 16.3535 14.668 15.9999V10.6666C14.668 9.93021 15.2649 9.33325 16.0013 9.33325Z" fill="#3D6FE5"/>
</svg>

3
public/assets/images/copilot_icon_cloud.svg

@ -0,0 +1,3 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.4" d="M1.66797 19.3333C1.66797 15.6227 4.30348 12.5286 7.8053 11.8194C8.51772 7.93942 11.9158 5 16.0013 5C20.5157 5 24.1916 8.58965 24.3306 13.0703C27.7248 13.5538 30.3346 16.4721 30.3346 20C30.3346 23.866 27.2006 27 23.3346 27H9.33463C5.10045 27 1.66797 23.5675 1.66797 19.3333Z" fill="#3D6FE5"/>
</svg>

6
public/assets/images/copilot_icon_dashboard.svg

@ -0,0 +1,6 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M8.05005 1.66675C9.03557 1.66673 9.84559 1.66672 10.5009 1.72903C11.1819 1.79377 11.7984 1.93279 12.3591 2.27641C12.9158 2.61755 13.3838 3.0856 13.725 3.64229C14.0686 4.20303 14.2076 4.81949 14.2724 5.50047C14.3347 6.15579 14.3347 6.96581 14.3346 7.95133V8.04883C14.3347 9.03435 14.3347 9.84437 14.2724 10.4997C14.2076 11.1807 14.0686 11.7971 13.725 12.3579C13.3838 12.9146 12.9158 13.3826 12.3591 13.7238C11.7984 14.0674 11.1819 14.2064 10.5009 14.2711C9.84559 14.3334 9.03557 14.3334 8.05005 14.3334H7.95256C6.96703 14.3334 6.15702 14.3334 5.50169 14.2711C4.82071 14.2064 4.20425 14.0674 3.64351 13.7238C3.08682 13.3826 2.61878 12.9146 2.27764 12.3579C1.93401 11.7971 1.795 11.1807 1.73025 10.4997C1.66794 9.84437 1.66795 9.03435 1.66797 8.04883V8.04881V7.95135V7.95134C1.66795 6.96581 1.66794 6.1558 1.73025 5.50047C1.795 4.81949 1.93401 4.20303 2.27764 3.64229C2.61878 3.0856 3.08682 2.61755 3.64351 2.27641C4.20425 1.93279 4.82071 1.79377 5.50169 1.72903C6.15702 1.66672 6.96703 1.66673 7.95256 1.66675H7.95257H8.05003H8.05005Z" fill="#3D6FE5"/>
<path d="M8.05005 17.6667C9.03557 17.6667 9.84559 17.6667 10.5009 17.729C11.1819 17.7938 11.7984 17.9328 12.3591 18.2764C12.9158 18.6176 13.3838 19.0856 13.725 19.6423C14.0686 20.203 14.2076 20.8195 14.2724 21.5005C14.3347 22.1558 14.3347 22.9658 14.3346 23.9513V24.0488C14.3347 25.0344 14.3347 25.8444 14.2724 26.4997C14.2076 27.1807 14.0686 27.7971 13.725 28.3579C13.3838 28.9146 12.9158 29.3826 12.3591 29.7238C11.7984 30.0674 11.1819 30.2064 10.5009 30.2711C9.84559 30.3334 9.03557 30.3334 8.05005 30.3334H7.95256C6.96703 30.3334 6.15702 30.3334 5.50169 30.2711C4.82071 30.2064 4.20425 30.0674 3.64351 29.7238C3.08682 29.3826 2.61878 28.9146 2.27764 28.3579C1.93401 27.7971 1.795 27.1807 1.73025 26.4997C1.66794 25.8444 1.66795 25.0344 1.66797 24.0488V24.0488V23.9514V23.9513C1.66795 22.9658 1.66794 22.1558 1.73025 21.5005C1.795 20.8195 1.93401 20.203 2.27764 19.6423C2.61878 19.0856 3.08682 18.6176 3.64351 18.2764C4.20425 17.9328 4.82071 17.7938 5.50169 17.729C6.15702 17.6667 6.96703 17.6667 7.95256 17.6667H7.95257H8.05003H8.05005Z" fill="#3D6FE5"/>
<path d="M24.05 1.66675C25.0356 1.66673 25.8456 1.66672 26.5009 1.72903C27.1819 1.79377 27.7984 1.93279 28.3591 2.27641C28.9158 2.61755 29.3838 3.0856 29.725 3.64229C30.0686 4.20303 30.2076 4.81949 30.2724 5.50047C30.3347 6.15579 30.3347 6.96581 30.3346 7.95133V8.04883C30.3347 9.03435 30.3347 9.84437 30.2724 10.4997C30.2076 11.1807 30.0686 11.7971 29.725 12.3579C29.3838 12.9146 28.9158 13.3826 28.3591 13.7238C27.7984 14.0674 27.1819 14.2064 26.5009 14.2711C25.8456 14.3334 25.0356 14.3334 24.0501 14.3334H23.9526C22.967 14.3334 22.157 14.3334 21.5017 14.2711C20.8207 14.2064 20.2043 14.0674 19.6435 13.7238C19.0868 13.3826 18.6188 12.9146 18.2776 12.3579C17.934 11.7971 17.795 11.1807 17.7302 10.4997C17.6679 9.84437 17.668 9.03435 17.668 8.04883V8.04881V7.95135V7.95134C17.668 6.96581 17.6679 6.1558 17.7302 5.50047C17.795 4.81949 17.934 4.20303 18.2776 3.64229C18.6188 3.0856 19.0868 2.61755 19.6435 2.27641C20.2043 1.93279 20.8207 1.79377 21.5017 1.72903C22.157 1.66672 22.967 1.66673 23.9526 1.66675H23.9526H24.05H24.05Z" fill="#3D6FE5"/>
<path opacity="0.5" d="M24.05 17.6667C25.0356 17.6667 25.8456 17.6667 26.5009 17.729C27.1819 17.7938 27.7984 17.9328 28.3591 18.2764C28.9158 18.6176 29.3838 19.0856 29.725 19.6423C30.0686 20.203 30.2076 20.8195 30.2724 21.5005C30.3347 22.1558 30.3347 22.9658 30.3346 23.9513V24.0488C30.3347 25.0344 30.3347 25.8444 30.2724 26.4997C30.2076 27.1807 30.0686 27.7971 29.725 28.3579C29.3838 28.9146 28.9158 29.3826 28.3591 29.7238C27.7984 30.0674 27.1819 30.2064 26.5009 30.2711C25.8456 30.3334 25.0356 30.3334 24.0501 30.3334H23.9526C22.967 30.3334 22.157 30.3334 21.5017 30.2711C20.8207 30.2064 20.2043 30.0674 19.6435 29.7238C19.0868 29.3826 18.6188 28.9146 18.2776 28.3579C17.934 27.7971 17.795 27.1807 17.7302 26.4997C17.6679 25.8444 17.668 25.0344 17.668 24.0488V24.0488V23.9514V23.9513C17.668 22.9658 17.6679 22.1558 17.7302 21.5005C17.795 20.8195 17.934 20.203 18.2776 19.6423C18.6188 19.0856 19.0868 18.6176 19.6435 18.2764C20.2043 17.9328 20.8207 17.7938 21.5017 17.729C22.157 17.6667 22.967 17.6667 23.9526 17.6667H23.9526H24.05H24.05Z" fill="#3D6FE5"/>
</svg>

4
public/assets/images/copilot_icon_dollar.svg

@ -0,0 +1,4 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.4" d="M1.66797 16.0001C1.66797 8.084 8.08522 1.66675 16.0013 1.66675C23.9174 1.66675 30.3346 8.084 30.3346 16.0001C30.3346 23.9162 23.9174 30.3334 16.0013 30.3334C8.08522 30.3334 1.66797 23.9162 1.66797 16.0001Z" fill="#3D6FE5"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 8.33325C16.5523 8.33325 17 8.78097 17 9.33325V9.8988C17.8203 10.0384 18.5732 10.3482 19.184 10.7961C20.0357 11.4206 20.6667 12.366 20.6667 13.5036C20.6667 14.0559 20.219 14.5036 19.6667 14.5036C19.1144 14.5036 18.6667 14.0559 18.6667 13.5036C18.6667 13.1563 18.4768 12.7575 18.0014 12.4089C17.5266 12.0608 16.8223 11.815 16 11.815C15.1777 11.815 14.4734 12.0608 13.9986 12.4089C13.5232 12.7575 13.3333 13.1563 13.3333 13.5036C13.3333 13.9878 13.4742 14.2152 13.723 14.3818C14.0574 14.6056 14.7304 14.8082 16 14.8082C17.3891 14.8082 18.6294 15.0004 19.5439 15.5932C20.5493 16.2448 21 17.2679 21 18.4968C21 19.8362 20.3431 20.8217 19.341 21.4199C18.6632 21.8245 17.8488 22.0433 17 22.1341V22.6666C17 23.2189 16.5523 23.6666 16 23.6666C15.4477 23.6666 15 23.2189 15 22.6666V22.1132C14.1048 21.9822 13.2812 21.6765 12.6137 21.2279C11.71 20.6204 11 19.6738 11 18.4968C11 17.9445 11.4477 17.4968 12 17.4968C12.5523 17.4968 13 17.9445 13 18.4968C13 18.8047 13.1854 19.2023 13.7294 19.568C14.2672 19.9294 15.067 20.1854 16 20.1854C17.0144 20.1854 17.8095 20.0048 18.3159 19.7026C18.7615 19.4366 19 19.0778 19 18.4968C19 17.8052 18.784 17.484 18.4561 17.2715C18.0373 17 17.2776 16.8082 16 16.8082C14.6029 16.8082 13.4426 16.6009 12.6104 16.0437C11.6925 15.4292 11.3333 14.5044 11.3333 13.5036C11.3333 12.366 11.9643 11.4206 12.816 10.7961C13.4268 10.3482 14.1797 10.0384 15 9.8988L15 9.33325C15 8.78097 15.4477 8.33325 16 8.33325Z" fill="#3D6FE5"/>
</svg>

6
public/assets/images/copilot_icon_mic.svg

@ -0,0 +1,6 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.4" d="M8.33203 9.33341C8.33203 5.09923 11.7645 1.66675 15.9987 1.66675C20.2329 1.66675 23.6654 5.09923 23.6654 9.33341V14.6667C23.6654 18.9009 20.2329 22.3334 15.9987 22.3334C11.7645 22.3334 8.33203 18.9009 8.33203 14.6667V9.33341Z" fill="#3D6FE5"/>
<path d="M17.75 10.25V11C17.75 11.2542 17.7335 11.5045 17.7015 11.75H14C13.5858 11.75 13.25 11.4142 13.25 11C13.25 10.5858 13.5858 10.25 14 10.25H17.75Z" fill="#3D6FE5"/>
<path d="M17.7015 6.25C17.7335 6.49547 17.75 6.74581 17.75 7V7.75H14C13.5858 7.75 13.25 7.41421 13.25 7C13.25 6.58579 13.5858 6.25 14 6.25H17.7015Z" fill="#3D6FE5"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.62833 13.6667C6.34425 13.6667 6.92462 14.2407 6.92462 14.9488C6.92462 19.9052 10.9872 23.9232 15.9987 23.9232C21.0102 23.9232 25.0728 19.9052 25.0728 14.9488C25.0728 14.2407 25.6531 13.6667 26.3691 13.6667C27.085 13.6667 27.6654 14.2407 27.6654 14.9488C27.6654 20.888 23.1283 25.7791 17.295 26.4168V27.7693H19.8876C20.6035 27.7693 21.1839 28.3433 21.1839 29.0514C21.1839 29.7594 20.6035 30.3334 19.8876 30.3334H12.1098C11.3939 30.3334 10.8135 29.7594 10.8135 29.0514C10.8135 28.3433 11.3939 27.7693 12.1098 27.7693H14.7024V26.4168C8.86913 25.7791 4.33203 20.888 4.33203 14.9488C4.33203 14.2407 4.9124 13.6667 5.62833 13.6667Z" fill="#3D6FE5"/>
</svg>

BIN
public/assets/images/copilot_icons_left.png

After

Width: 693  |  Height: 815  |  Size: 524 KiB

BIN
public/assets/images/copilot_icons_right.png

After

Width: 693  |  Height: 815  |  Size: 525 KiB

BIN
public/assets/images/copilot_luminous_ball.png

After

Width: 1349  |  Height: 865  |  Size: 904 KiB

340
public/assets/images/copilot_luminous_ball.svg

@ -0,0 +1,340 @@
<svg width="1349" height="865" viewBox="0 0 1349 865" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_f_1429_12168)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M514.081 250.023C537.054 249.41 557.255 261.359 575.225 275.656C596.248 292.382 622.942 309.842 622.992 336.673C623.042 363.518 599.132 385.181 575.452 397.917C556.713 407.995 535.335 394.075 514.081 395.246C490.12 396.567 466.052 417.498 445.534 405.078C423.572 391.784 415.174 362.218 417.315 336.673C419.331 312.637 438.128 294.94 456.118 278.831C472.819 263.876 491.65 250.62 514.081 250.023Z" fill="url(#paint0_linear_1429_12168)"/>
</g>
<g filter="url(#filter1_f_1429_12168)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M824.081 405.023C847.054 404.41 867.255 416.359 885.225 430.656C906.248 447.382 932.942 464.842 932.992 491.673C933.042 518.518 909.132 540.181 885.452 552.917C866.713 562.995 845.335 549.075 824.081 550.246C800.12 551.567 776.052 572.498 755.534 560.078C733.572 546.784 725.174 517.218 727.315 491.673C729.331 467.637 748.128 449.94 766.118 433.831C782.819 418.876 801.65 405.62 824.081 405.023Z" fill="url(#paint1_linear_1429_12168)"/>
</g>
<g filter="url(#filter2_f_1429_12168)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M568.61 456.023C591.471 455.41 611.575 467.359 629.457 481.656C650.378 498.382 676.943 515.842 676.992 542.673C677.042 569.518 653.248 591.181 629.682 603.917C611.035 613.995 589.761 600.075 568.61 601.246C544.765 602.567 520.814 623.498 500.396 611.078C478.54 597.784 470.183 568.218 472.314 542.673C474.319 518.637 493.026 500.94 510.928 484.831C527.548 469.876 546.288 456.62 568.61 456.023Z" fill="url(#paint2_linear_1429_12168)"/>
</g>
<g filter="url(#filter3_f_1429_12168)" style="mix-blend-mode:screen">
<circle cx="637.492" cy="421.5" r="218.5" fill="url(#paint3_linear_1429_12168)"/>
</g>
<g filter="url(#filter4_iii_1429_12168)">
<circle cx="637.492" cy="421.5" r="218.5" fill="#03070D"/>
</g>
<g filter="url(#filter5_d_1429_12168)" style="mix-blend-mode:plus-lighter">
<path d="M409.521 398.102C418.386 343.271 447.011 289.756 488.325 252.374C529.628 215.002 583.571 193.786 643.129 203.414C702.738 213.051 761.779 252.583 803.709 303.489C845.648 354.406 870.311 416.506 861.474 471.168C852.633 525.851 815.522 570.727 765.614 599.536C715.707 628.345 653.088 641.032 593.414 631.384C474.061 612.089 391.822 507.581 409.521 398.102Z" stroke="url(#paint4_linear_1429_12168)" stroke-width="2" shape-rendering="crispEdges"/>
</g>
<mask id="mask0_1429_12168" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="418" y="203" width="438" height="437">
<circle cx="637.492" cy="421.5" r="218.5" fill="#D9D9D9"/>
</mask>
<g mask="url(#mask0_1429_12168)">
<g filter="url(#filter6_fn_1429_12168)" style="mix-blend-mode:plus-lighter">
<circle cx="753.203" cy="514.742" r="218.5" fill="url(#paint5_linear_1429_12168)"/>
</g>
<g filter="url(#filter7_f_1429_12168)">
<mask id="mask1_1429_12168" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="530" y="314" width="214" height="214">
<path d="M636.929 314.216C650.189 380.791 676.69 407.551 743.652 420.938C676.674 434.325 650.173 461.085 636.929 527.661C623.67 461.085 597.169 434.309 530.207 420.938C597.184 407.551 623.686 380.791 636.929 314.216Z" fill="white"/>
</mask>
<g mask="url(#mask1_1429_12168)">
<path d="M743.652 314.216H530.207V527.661H743.652V314.216Z" fill="white"/>
<g filter="url(#filter8_f_1429_12168)">
<path d="M757.524 387.854H629.457V538.333H757.524V387.854Z" fill="#0066FF"/>
</g>
</g>
</g>
<g style="mix-blend-mode:screen">
<g filter="url(#filter9_f_1429_12168)">
<path d="M275.199 1129.8L1068.31 1129.8V455.766C1068.31 455.766 923.117 545.635 671.757 545.636C420.397 545.638 275.199 455.763 275.199 455.763V1129.8Z" fill="#0029B2"/>
</g>
<g filter="url(#filter10_f_1429_12168)">
<path d="M275.199 1073.63L1068.31 1073.63V511.936C1068.31 511.936 921.465 601.806 671.757 601.806C422.05 601.806 275.199 511.933 275.199 511.933V1073.63Z" fill="#3D6FE5"/>
</g>
<g filter="url(#filter11_f_1429_12168)">
<path d="M275.199 1017.46L1068.31 1017.46V568.105C1068.31 568.105 921.465 657.975 671.757 657.975C422.05 657.975 275.199 568.103 275.199 568.103V1017.46Z" fill="#4B80FF"/>
</g>
<g filter="url(#filter12_f_1429_12168)" style="mix-blend-mode:plus-lighter">
<path d="M275.199 961.289L1068.31 961.29V624.274C1068.31 624.274 920.845 714.145 671.757 714.145C422.669 714.145 275.199 624.272 275.199 624.272V961.289Z" fill="#2D4D99"/>
</g>
<g filter="url(#filter13_f_1429_12168)">
<path d="M275.199 905.12L1068.31 905.121V680.443C1068.31 680.443 921.465 770.314 671.757 770.314C422.05 770.314 275.199 680.442 275.199 680.442V905.12Z" fill="white"/>
</g>
</g>
<g opacity="0.5" style="mix-blend-mode:screen">
<path d="M634.122 207.12C692.119 207.12 745.705 221.614 784.78 255.26C823.836 288.889 848.502 341.743 848.502 418.691C848.502 495.632 822.976 548.487 783.484 582.12C743.972 615.771 690.384 630.263 634.122 630.263C521.756 630.263 419.742 535.398 419.742 418.691C419.742 301.978 518.302 207.12 634.122 207.12Z" stroke="url(#paint6_linear_1429_12168)" stroke-width="1.5"/>
</g>
<g opacity="0.5" style="mix-blend-mode:screen">
<path d="M640.864 211.614C698.861 211.614 752.447 226.107 791.522 259.753C830.578 293.383 855.244 346.236 855.244 423.185C855.244 500.126 829.718 552.981 790.227 586.614C750.715 620.265 697.126 634.756 640.864 634.756C528.498 634.756 426.484 539.891 426.484 423.185C426.484 306.471 525.044 211.614 640.864 211.614Z" stroke="url(#paint7_linear_1429_12168)" stroke-width="1.5"/>
</g>
</g>
<path d="M775.676 409.65C775.145 409.698 774.753 410.168 774.801 410.699C774.849 411.23 775.319 411.622 775.85 411.574C776.382 411.526 776.773 411.056 776.725 410.525C776.677 409.993 776.207 409.602 775.676 409.65Z" fill="#9DB2D1"/>
<path d="M745.121 490.012C744.59 490.06 744.198 490.529 744.247 491.061C744.295 491.592 744.764 491.984 745.296 491.936C745.827 491.887 746.219 491.418 746.171 490.886C746.122 490.355 745.653 489.963 745.121 490.012Z" fill="#9DB2D1"/>
<path d="M727.926 396.519C727.395 396.568 727.003 397.037 727.051 397.569C727.099 398.1 727.569 398.492 728.1 398.443C728.632 398.395 729.023 397.925 728.975 397.394C728.927 396.863 728.457 396.471 727.926 396.519Z" fill="#9DB2D1"/>
<path d="M720.653 455.369C720.121 455.418 719.73 455.887 719.778 456.419C719.826 456.95 720.296 457.342 720.827 457.294C721.358 457.245 721.75 456.776 721.702 456.244C721.654 455.713 721.184 455.321 720.653 455.369Z" fill="#9DB2D1"/>
<path d="M710.075 434.993C709.543 435.041 709.152 435.51 709.2 436.042C709.248 436.573 709.718 436.965 710.249 436.917C710.78 436.868 711.172 436.399 711.124 435.867C711.076 435.336 710.606 434.944 710.075 434.993Z" fill="#9DB2D1"/>
<path d="M676.035 476.876C675.504 476.924 675.112 477.394 675.161 477.925C675.209 478.456 675.679 478.848 676.21 478.8C676.741 478.752 677.133 478.282 677.085 477.751C677.037 477.219 676.567 476.828 676.035 476.876Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M649.028 446.344C648.496 446.392 648.105 446.862 648.153 447.393C648.201 447.924 648.671 448.316 649.202 448.268C649.733 448.219 650.125 447.75 650.077 447.218C650.029 446.687 649.559 446.295 649.028 446.344Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M636.348 434.889C635.817 434.937 635.425 435.406 635.473 435.938C635.521 436.469 635.991 436.861 636.522 436.813C637.054 436.764 637.445 436.295 637.397 435.763C637.349 435.232 636.879 434.84 636.348 434.889Z" fill="#9DB2D1"/>
<path d="M624.364 452.463C623.832 452.511 623.441 452.981 623.489 453.512C623.537 454.043 624.007 454.435 624.538 454.387C625.069 454.339 625.461 453.869 625.413 453.338C625.365 452.806 624.895 452.415 624.364 452.463Z" fill="#9DB2D1"/>
<path d="M611.239 457.532C610.707 457.58 610.316 458.05 610.364 458.581C610.412 459.112 610.882 459.504 611.413 459.456C611.944 459.407 612.336 458.938 612.288 458.406C612.24 457.875 611.77 457.483 611.239 457.532Z" fill="#9DB2D1"/>
<path d="M588.051 533.346C587.52 533.394 587.128 533.864 587.176 534.395C587.224 534.927 587.694 535.318 588.225 535.27C588.757 535.222 589.148 534.752 589.1 534.221C589.052 533.69 588.582 533.298 588.051 533.346Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M578.543 439.16C578.012 439.209 577.62 439.678 577.668 440.21C577.717 440.741 578.186 441.133 578.718 441.085C579.249 441.036 579.641 440.567 579.592 440.035C579.544 439.504 579.075 439.112 578.543 439.16Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M582.028 477.636C581.496 477.684 581.105 478.154 581.153 478.685C581.201 479.217 581.671 479.608 582.202 479.56C582.733 479.512 583.125 479.042 583.077 478.511C583.029 477.98 582.559 477.588 582.028 477.636Z" fill="#9DB2D1"/>
<path d="M536.371 508.936C535.84 508.985 535.448 509.454 535.497 509.986C535.545 510.517 536.014 510.909 536.546 510.86C537.077 510.812 537.469 510.342 537.421 509.811C537.372 509.28 536.903 508.888 536.371 508.936Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M846.348 494.432C845.817 494.481 845.425 494.95 845.473 495.482C845.521 496.013 845.991 496.405 846.522 496.356C847.054 496.308 847.445 495.839 847.397 495.307C847.349 494.776 846.879 494.384 846.348 494.432Z" fill="#9DB2D1"/>
<path d="M507.965 441.677C507.434 441.725 507.042 442.195 507.09 442.726C507.138 443.257 507.608 443.649 508.14 443.601C508.671 443.552 509.063 443.083 509.014 442.551C508.966 442.02 508.496 441.628 507.965 441.677Z" fill="#9DB2D1"/>
<path d="M511.457 480.158C510.926 480.206 510.534 480.676 510.583 481.207C510.631 481.739 511.1 482.13 511.632 482.082C512.163 482.034 512.555 481.564 512.507 481.033C512.458 480.502 511.989 480.11 511.457 480.158Z" fill="#9DB2D1"/>
<path d="M493.895 404.154C493.364 404.202 492.972 404.672 493.02 405.203C493.068 405.735 493.538 406.126 494.069 406.078C494.601 406.03 494.992 405.56 494.944 405.029C494.896 404.498 494.426 404.106 493.895 404.154Z" fill="#9DB2D1"/>
<path d="M895.082 519.379C894.551 519.427 894.159 519.897 894.208 520.428C894.256 520.959 894.725 521.351 895.257 521.303C895.788 521.255 896.18 520.785 896.132 520.254C896.083 519.722 895.614 519.331 895.082 519.379Z" fill="#9DB2D1"/>
<path d="M894.309 475.806C893.778 475.855 893.386 476.324 893.434 476.856C893.482 477.387 893.952 477.779 894.483 477.731C895.015 477.682 895.406 477.213 895.358 476.681C895.31 476.15 894.84 475.758 894.309 475.806Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M491.77 530.439C491.239 530.487 490.847 530.957 490.895 531.488C490.943 532.02 491.413 532.411 491.944 532.363C492.476 532.315 492.867 531.845 492.819 531.314C492.771 530.783 492.301 530.391 491.77 530.439Z" fill="#9DB2D1"/>
<path d="M479.106 465.631C478.574 465.679 478.183 466.149 478.231 466.68C478.279 467.212 478.749 467.603 479.28 467.555C479.811 467.507 480.203 467.037 480.155 466.506C480.107 465.975 479.637 465.583 479.106 465.631Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M454.825 347.558C454.293 347.607 453.902 348.076 453.95 348.608C453.998 349.139 454.468 349.531 454.999 349.482C455.53 349.434 455.922 348.965 455.874 348.433C455.826 347.902 455.356 347.51 454.825 347.558Z" fill="#9DB2D1"/>
<path d="M467.293 495.8C466.762 495.849 466.37 496.318 466.418 496.85C466.467 497.381 466.936 497.773 467.468 497.724C467.999 497.676 468.391 497.206 468.342 496.675C468.294 496.144 467.825 495.752 467.293 495.8Z" fill="#9DB2D1"/>
<path d="M450.332 447.874C449.801 447.922 449.409 448.392 449.458 448.923C449.506 449.454 449.975 449.846 450.507 449.798C451.038 449.75 451.43 449.28 451.382 448.749C451.333 448.217 450.864 447.826 450.332 447.874Z" fill="#9DB2D1"/>
<path d="M408.379 380.872C407.848 380.921 407.456 381.39 407.504 381.922C407.553 382.453 408.022 382.845 408.554 382.796C409.085 382.748 409.477 382.279 409.428 381.747C409.38 381.216 408.91 380.824 408.379 380.872Z" fill="#9DB2D1"/>
<path d="M405.192 495.613C404.66 495.661 404.269 496.131 404.317 496.662C404.365 497.193 404.835 497.585 405.366 497.537C405.897 497.489 406.289 497.019 406.241 496.487C406.193 495.956 405.723 495.564 405.192 495.613Z" fill="#9DB2D1"/>
<path d="M840.239 404.535C839.707 404.583 839.316 405.052 839.364 405.584C839.412 406.115 839.882 406.507 840.413 406.459C840.944 406.41 841.336 405.941 841.288 405.409C841.24 404.878 840.77 404.486 840.239 404.535Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M377.809 461.256C377.278 461.304 376.886 461.774 376.934 462.305C376.982 462.836 377.452 463.228 377.983 463.18C378.515 463.132 378.906 462.662 378.858 462.131C378.81 461.599 378.34 461.208 377.809 461.256Z" fill="#9DB2D1"/>
<path d="M353.317 426.618C352.785 426.666 352.394 427.135 352.442 427.667C352.49 428.198 352.96 428.59 353.491 428.542C354.022 428.493 354.414 428.024 354.366 427.492C354.318 426.961 353.848 426.569 353.317 426.618Z" fill="#9DB2D1"/>
<path d="M333.637 476.901C333.106 476.949 332.714 477.419 332.762 477.95C332.81 478.482 333.28 478.873 333.811 478.825C334.343 478.777 334.734 478.307 334.686 477.776C334.638 477.245 334.168 476.853 333.637 476.901Z" fill="#9DB2D1"/>
<path d="M308.715 448.123C308.184 448.172 307.792 448.641 307.84 449.173C307.888 449.704 308.358 450.096 308.89 450.047C309.421 449.999 309.813 449.529 309.764 448.998C309.716 448.467 309.246 448.075 308.715 448.123Z" fill="#9DB2D1"/>
<path d="M281.707 417.592C281.176 417.64 280.784 418.11 280.833 418.641C280.881 419.172 281.35 419.564 281.882 419.516C282.413 419.468 282.805 418.998 282.757 418.466C282.708 417.935 282.239 417.543 281.707 417.592Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M257.035 423.707C256.504 423.756 256.112 424.225 256.161 424.757C256.209 425.288 256.679 425.68 257.21 425.631C257.741 425.583 258.133 425.113 258.085 424.582C258.037 424.051 257.567 423.659 257.035 423.707Z" fill="#9DB2D1"/>
<path d="M817.59 476.675C817.059 476.723 816.667 477.193 816.715 477.724C816.763 478.256 817.233 478.647 817.765 478.599C818.296 478.551 818.688 478.081 818.639 477.55C818.591 477.019 818.121 476.627 817.59 476.675Z" fill="#9DB2D1"/>
<path d="M243.918 428.779C243.387 428.827 242.995 429.297 243.043 429.828C243.092 430.36 243.561 430.751 244.093 430.703C244.624 430.655 245.016 430.185 244.967 429.654C244.919 429.123 244.45 428.731 243.918 428.779Z" fill="#9DB2D1"/>
<path d="M220.746 504.59C220.215 504.638 219.823 505.108 219.872 505.639C219.92 506.17 220.389 506.562 220.921 506.514C221.452 506.466 221.844 505.996 221.796 505.464C221.747 504.933 221.278 504.542 220.746 504.59Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M214.723 448.88C214.192 448.928 213.8 449.398 213.848 449.929C213.896 450.461 214.366 450.852 214.897 450.804C215.429 450.756 215.82 450.286 215.772 449.755C215.724 449.224 215.254 448.832 214.723 448.88Z" fill="#9DB2D1"/>
<path d="M169.067 480.18C168.535 480.228 168.144 480.697 168.192 481.229C168.24 481.76 168.71 482.152 169.241 482.104C169.772 482.055 170.164 481.586 170.116 481.054C170.068 480.523 169.598 480.131 169.067 480.18Z" fill="#9DB2D1"/>
<path d="M807.176 490.225C806.645 490.273 806.253 490.743 806.301 491.274C806.349 491.805 806.819 492.197 807.35 492.149C807.882 492.101 808.273 491.631 808.225 491.1C808.177 490.568 807.707 490.177 807.176 490.225Z" fill="#9DB2D1"/>
<path d="M124.457 501.683C123.926 501.731 123.534 502.201 123.583 502.732C123.631 503.263 124.1 503.655 124.632 503.607C125.163 503.559 125.555 503.089 125.507 502.558C125.458 502.026 124.989 501.635 124.457 501.683Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M113.981 428.916C113.449 428.964 113.058 429.434 113.106 429.965C113.154 430.496 113.624 430.888 114.155 430.84C114.686 430.792 115.078 430.322 115.03 429.791C114.982 429.259 114.512 428.868 113.981 428.916Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M3.21513 580.391C2.68382 580.439 2.29216 580.909 2.34032 581.44C2.38849 581.971 2.85824 582.363 3.38955 582.315C3.92085 582.267 4.31252 581.797 4.26435 581.266C4.21619 580.734 3.74643 580.343 3.21513 580.391Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M99.9729 467.048C99.4416 467.096 99.05 467.566 99.0981 468.097C99.1463 468.628 99.6161 469.02 100.147 468.972C100.679 468.924 101.07 468.454 101.022 467.923C100.974 467.391 100.504 467 99.9729 467.048Z" fill="#9DB2D1"/>
<path d="M76.9026 426.459C76.3713 426.507 75.9797 426.977 76.0278 427.509C76.076 428.04 76.5457 428.432 77.077 428.383C77.6084 428.335 78 427.865 77.9519 427.334C77.9037 426.803 77.4339 426.411 76.9026 426.459Z" fill="#9DB2D1"/>
<path d="M69.8167 444.558C69.2854 444.606 68.8937 445.076 68.9419 445.607C68.9901 446.138 69.4598 446.53 69.9911 446.482C70.5224 446.434 70.9141 445.964 70.8659 445.433C70.8178 444.901 70.348 444.51 69.8167 444.558Z" fill="#9DB2D1"/>
<path d="M55.5511 501.139C55.0198 501.187 54.6281 501.657 54.6763 502.188C54.7244 502.72 55.1942 503.111 55.7255 503.063C56.2568 503.015 56.6485 502.545 56.6003 502.014C56.5521 501.483 56.0824 501.091 55.5511 501.139Z" fill="#9DB2D1"/>
<path d="M14.0276 542.119C13.4963 542.167 13.1047 542.637 13.1528 543.168C13.201 543.7 13.6707 544.091 14.202 544.043C14.7334 543.995 15.125 543.525 15.0769 542.994C15.0287 542.462 14.5589 542.071 14.0276 542.119Z" fill="#9DB2D1"/>
<path d="M0.879191 493.321C0.347885 493.369 -0.0437781 493.839 0.00438636 494.37C0.0525508 494.901 0.522304 495.293 1.05361 495.245C1.58492 495.197 1.97658 494.727 1.92842 494.195C1.88025 493.664 1.4105 493.272 0.879191 493.321Z" fill="#9DB2D1"/>
<path d="M1235.68 333.806C1235.15 333.806 1234.72 334.239 1234.72 334.772C1234.72 335.306 1235.15 335.738 1235.68 335.738C1236.22 335.738 1236.65 335.306 1236.65 334.772C1236.65 334.239 1236.22 333.806 1235.68 333.806Z" fill="#9DB2D1"/>
<path d="M1198 411.081C1197.47 411.081 1197.04 411.514 1197.04 412.047C1197.04 412.581 1197.47 413.013 1198 413.013C1198.54 413.013 1198.97 412.581 1198.97 412.047C1198.97 411.514 1198.54 411.081 1198 411.081Z" fill="#9DB2D1"/>
<path d="M1189.32 316.418C1188.78 316.418 1188.35 316.85 1188.35 317.384C1188.35 317.917 1188.78 318.35 1189.32 318.35C1189.85 318.35 1190.28 317.917 1190.28 317.384C1190.28 316.85 1189.85 316.418 1189.32 316.418Z" fill="#9DB2D1"/>
<path d="M1176.76 374.371C1176.23 374.371 1175.79 374.804 1175.79 375.337C1175.79 375.871 1176.23 376.303 1176.76 376.303C1177.29 376.303 1177.73 375.871 1177.73 375.337C1177.73 374.804 1177.29 374.371 1176.76 374.371Z" fill="#9DB2D1"/>
<path d="M1168.07 353.123C1167.53 353.123 1167.1 353.555 1167.1 354.089C1167.1 354.622 1167.53 355.055 1168.07 355.055C1168.6 355.055 1169.03 354.622 1169.03 354.089C1169.03 353.555 1168.6 353.123 1168.07 353.123Z" fill="#9DB2D1"/>
<path d="M1130.39 391.762C1129.85 391.762 1129.42 392.194 1129.42 392.728C1129.42 393.261 1129.85 393.694 1130.39 393.694C1130.92 393.694 1131.35 393.261 1131.35 392.728C1131.35 392.194 1130.92 391.762 1130.39 391.762Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M1106.24 358.917C1105.71 358.917 1105.28 359.349 1105.28 359.883C1105.28 360.416 1105.71 360.849 1106.24 360.849C1106.78 360.849 1107.21 360.416 1107.21 359.883C1107.21 359.349 1106.78 358.917 1106.24 358.917Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M1094.64 346.363C1094.11 346.363 1093.68 346.795 1093.68 347.328C1093.68 347.862 1094.11 348.294 1094.64 348.294C1095.18 348.294 1095.61 347.862 1095.61 347.328C1095.61 346.795 1095.18 346.363 1094.64 346.363Z" fill="#9DB2D1"/>
<path d="M1081.13 362.783C1080.59 362.783 1080.16 363.215 1080.16 363.749C1080.16 364.282 1080.59 364.715 1081.13 364.715C1081.66 364.715 1082.09 364.282 1082.09 363.749C1082.09 363.215 1081.66 362.783 1081.13 362.783Z" fill="#9DB2D1"/>
<path d="M1067.6 366.646C1067.06 366.646 1066.63 367.079 1066.63 367.612C1066.63 368.146 1067.06 368.578 1067.6 368.578C1068.13 368.578 1068.56 368.146 1068.56 367.612C1068.56 367.079 1068.13 366.646 1067.6 366.646Z" fill="#9DB2D1"/>
<path d="M1037.66 440.058C1037.13 440.058 1036.69 440.49 1036.69 441.024C1036.69 441.557 1037.13 441.99 1037.66 441.99C1038.19 441.99 1038.62 441.557 1038.62 441.024C1038.62 440.49 1038.19 440.058 1037.66 440.058Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M1036.7 345.399C1036.16 345.399 1035.73 345.832 1035.73 346.365C1035.73 346.899 1036.16 347.331 1036.7 347.331C1037.23 347.331 1037.66 346.899 1037.66 346.365C1037.66 345.832 1037.23 345.399 1036.7 345.399Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M1036.69 384.032C1036.16 384.032 1035.72 384.464 1035.72 384.998C1035.72 385.531 1036.16 385.964 1036.69 385.964C1037.22 385.964 1037.66 385.531 1037.66 384.998C1037.66 384.464 1037.22 384.032 1036.69 384.032Z" fill="#9DB2D1"/>
<path d="M988.393 411.082C987.86 411.082 987.427 411.514 987.427 412.048C987.427 412.581 987.86 413.014 988.393 413.014C988.927 413.014 989.359 412.581 989.359 412.048C989.359 411.514 988.927 411.082 988.393 411.082Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M1298.42 424.623C1297.88 424.623 1297.45 425.056 1297.45 425.589C1297.45 426.123 1297.88 426.555 1298.42 426.555C1298.95 426.555 1299.38 426.123 1299.38 425.589C1299.38 425.056 1298.95 424.623 1298.42 424.623Z" fill="#9DB2D1"/>
<path d="M966.175 341.533C965.641 341.533 965.209 341.965 965.209 342.499C965.209 343.032 965.641 343.465 966.175 343.465C966.708 343.465 967.141 343.032 967.141 342.499C967.141 341.965 966.708 341.533 966.175 341.533Z" fill="#9DB2D1"/>
<path d="M966.182 380.172C965.649 380.172 965.217 380.605 965.217 381.138C965.217 381.672 965.649 382.104 966.182 382.104C966.716 382.104 967.148 381.672 967.148 381.138C967.148 380.605 966.716 380.172 966.182 380.172Z" fill="#9DB2D1"/>
<path d="M955.55 302.892C955.016 302.892 954.584 303.325 954.584 303.858C954.584 304.392 955.016 304.824 955.55 304.824C956.083 304.824 956.516 304.392 956.516 303.858C956.516 303.325 956.083 302.892 955.55 302.892Z" fill="#9DB2D1"/>
<path d="M1344.7 453.867C1344.16 453.867 1343.73 454.3 1343.73 454.833C1343.73 455.367 1344.16 455.799 1344.7 455.799C1345.23 455.799 1345.66 455.367 1345.66 454.833C1345.66 454.3 1345.23 453.867 1344.7 453.867Z" fill="#9DB2D1"/>
<path d="M1347.86 410.404C1347.33 410.404 1346.9 410.836 1346.9 411.369C1346.9 411.903 1347.33 412.335 1347.86 412.335C1348.4 412.335 1348.83 411.903 1348.83 411.369C1348.83 410.836 1348.4 410.404 1347.86 410.404Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M942.034 428.47C941.501 428.47 941.068 428.903 941.068 429.436C941.068 429.97 941.501 430.402 942.034 430.402C942.568 430.402 943 429.97 943 429.436C943 428.903 942.568 428.47 942.034 428.47Z" fill="#9DB2D1"/>
<path d="M935.268 362.784C934.735 362.784 934.302 363.216 934.302 363.75C934.302 364.283 934.735 364.716 935.268 364.716C935.802 364.716 936.234 364.283 936.234 363.75C936.234 363.216 935.802 362.784 935.268 362.784Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M921.745 243C921.211 243 920.779 243.432 920.779 243.966C920.779 244.499 921.211 244.932 921.745 244.932C922.278 244.932 922.711 244.499 922.711 243.966C922.711 243.432 922.278 243 921.745 243Z" fill="#9DB2D1"/>
<path d="M920.776 391.762C920.243 391.762 919.81 392.195 919.81 392.728C919.81 393.262 920.243 393.694 920.776 393.694C921.31 393.694 921.742 393.262 921.742 392.728C921.742 392.195 921.31 391.762 920.776 391.762Z" fill="#9DB2D1"/>
<path d="M908.222 342.502C907.688 342.502 907.256 342.934 907.256 343.468C907.256 344.001 907.688 344.434 908.222 344.434C908.755 344.434 909.188 344.001 909.188 343.468C909.188 342.934 908.755 342.502 908.222 342.502Z" fill="#9DB2D1"/>
<path d="M872.479 271.984C871.946 271.984 871.513 272.417 871.513 272.95C871.513 273.484 871.946 273.916 872.479 273.916C873.013 273.916 873.445 273.484 873.445 272.95C873.445 272.417 873.013 271.984 872.479 271.984Z" fill="#9DB2D1"/>
<path d="M858.956 385.97C858.422 385.97 857.99 386.402 857.99 386.936C857.99 387.469 858.422 387.902 858.956 387.902C859.489 387.902 859.922 387.469 859.922 386.936C859.922 386.402 859.489 385.97 858.956 385.97Z" fill="#9DB2D1"/>
<path d="M1300.45 334.541C1299.91 334.541 1299.48 334.973 1299.48 335.507C1299.48 336.04 1299.91 336.473 1300.45 336.473C1300.98 336.473 1301.41 336.04 1301.41 335.507C1301.41 334.973 1300.98 334.541 1300.45 334.541Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M834.776 349.28C834.243 349.28 833.81 349.712 833.81 350.246C833.81 350.779 834.243 351.212 834.776 351.212C835.31 351.212 835.742 350.779 835.742 350.246C835.742 349.712 835.31 349.28 834.776 349.28Z" fill="#9DB2D1"/>
<path d="M813.518 312.572C812.985 312.572 812.552 313.004 812.552 313.538C812.552 314.071 812.985 314.504 813.518 314.504C814.052 314.504 814.484 314.071 814.484 313.538C814.484 313.004 814.052 312.572 813.518 312.572Z" fill="#9DB2D1"/>
<path d="M789.37 360.874C788.836 360.874 788.404 361.306 788.404 361.84C788.404 362.373 788.836 362.806 789.37 362.806C789.903 362.806 790.336 362.373 790.336 361.84C790.336 361.306 789.903 360.874 789.37 360.874Z" fill="#9DB2D1"/>
<path d="M767.159 329.964C766.626 329.964 766.193 330.397 766.193 330.93C766.193 331.464 766.626 331.896 767.159 331.896C767.693 331.896 768.125 331.464 768.125 330.93C768.125 330.397 767.693 329.964 767.159 329.964Z" fill="#9DB2D1"/>
<path d="M743.003 297.117C742.469 297.117 742.037 297.549 742.037 298.083C742.037 298.616 742.469 299.049 743.003 299.049C743.536 299.049 743.969 298.616 743.969 298.083C743.969 297.549 743.536 297.117 743.003 297.117Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M717.893 300.982C717.36 300.982 716.927 301.414 716.927 301.948C716.927 302.481 717.36 302.914 717.893 302.914C718.427 302.914 718.859 302.481 718.859 301.948C718.859 301.414 718.427 300.982 717.893 300.982Z" fill="#9DB2D1"/>
<path d="M1271.38 404.342C1270.84 404.342 1270.41 404.774 1270.41 405.307C1270.41 405.841 1270.84 406.273 1271.38 406.273C1271.91 406.273 1272.34 405.841 1272.34 405.307C1272.34 404.774 1271.91 404.342 1271.38 404.342Z" fill="#9DB2D1"/>
<path d="M704.37 304.848C703.836 304.848 703.404 305.28 703.404 305.814C703.404 306.347 703.836 306.78 704.37 306.78C704.903 306.78 705.336 306.347 705.336 305.814C705.336 305.28 704.903 304.848 704.37 304.848Z" fill="#9DB2D1"/>
<path d="M674.448 378.258C673.915 378.258 673.482 378.69 673.482 379.223C673.482 379.757 673.915 380.189 674.448 380.189C674.982 380.189 675.414 379.757 675.414 379.223C675.414 378.69 674.982 378.258 674.448 378.258Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M673.479 322.231C672.946 322.231 672.513 322.664 672.513 323.197C672.513 323.731 672.946 324.163 673.479 324.163C674.013 324.163 674.445 323.731 674.445 323.197C674.445 322.664 674.013 322.231 673.479 322.231Z" fill="#9DB2D1"/>
<path d="M625.182 349.282C624.649 349.282 624.217 349.714 624.217 350.248C624.217 350.781 624.649 351.214 625.182 351.214C625.716 351.214 626.148 350.781 626.148 350.248C626.148 349.714 625.716 349.282 625.182 349.282Z" fill="#9DB2D1"/>
<path d="M1259.78 416.896C1259.25 416.896 1258.82 417.329 1258.82 417.862C1258.82 418.396 1259.25 418.828 1259.78 418.828C1260.32 418.828 1260.75 418.396 1260.75 417.862C1260.75 417.329 1260.32 416.896 1259.78 416.896Z" fill="#9DB2D1"/>
<path d="M578.815 366.67C578.282 366.67 577.849 367.102 577.849 367.636C577.849 368.169 578.282 368.602 578.815 368.602C579.349 368.602 579.781 368.169 579.781 367.636C579.781 367.102 579.349 366.67 578.815 366.67Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M574.948 293.253C574.415 293.253 573.982 293.686 573.982 294.219C573.982 294.753 574.415 295.185 574.948 295.185C575.482 295.185 575.914 294.753 575.914 294.219C575.914 293.686 575.482 293.253 574.948 293.253Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M450.956 434.109C450.422 434.109 449.99 434.542 449.99 435.075C449.99 435.609 450.422 436.041 450.956 436.041C451.489 436.041 451.922 435.609 451.922 435.075C451.922 434.542 451.489 434.109 450.956 434.109Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M557.557 329.966C557.024 329.966 556.592 330.398 556.592 330.932C556.592 331.465 557.024 331.897 557.557 331.897C558.091 331.897 558.523 331.465 558.523 330.932C558.523 330.398 558.091 329.966 557.557 329.966Z" fill="#9DB2D1"/>
<path d="M538.245 287.459C537.711 287.459 537.279 287.892 537.279 288.425C537.279 288.959 537.711 289.391 538.245 289.391C538.778 289.391 539.211 288.959 539.211 288.425C539.211 287.892 538.778 287.459 538.245 287.459Z" fill="#9DB2D1"/>
<path d="M529.55 304.844C529.016 304.844 528.584 305.276 528.584 305.81C528.584 306.343 529.016 306.776 529.55 306.776C530.083 306.776 530.516 306.343 530.516 305.81C530.516 305.276 530.083 304.844 529.55 304.844Z" fill="#9DB2D1"/>
<path d="M510.237 359.906C509.704 359.906 509.271 360.339 509.271 360.872C509.271 361.406 509.704 361.838 510.237 361.838C510.771 361.838 511.203 361.406 511.203 360.872C511.203 360.339 510.771 359.906 510.237 359.906Z" fill="#9DB2D1"/>
<path d="M465.182 396.97C464.649 396.97 464.217 397.403 464.217 397.936C464.217 398.47 464.649 398.902 465.182 398.902C465.716 398.902 466.148 398.47 466.148 397.936C466.148 397.403 465.716 396.97 465.182 396.97Z" fill="#9DB2D1"/>
<path d="M456.495 347.184C455.961 347.184 455.529 347.617 455.529 348.15C455.529 348.684 455.961 349.116 456.495 349.116C457.028 349.116 457.461 348.684 457.461 348.15C457.461 347.617 457.028 347.184 456.495 347.184Z" fill="#9DB2D1"/>
<defs>
<filter id="filter0_f_1429_12168" x="166.992" y="0" width="706" height="659" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="125" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter1_f_1429_12168" x="476.992" y="155" width="706" height="659" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="125" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter2_f_1429_12168" x="221.992" y="206" width="705" height="659" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="125" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter3_f_1429_12168" x="318.992" y="103" width="637" height="637" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="50" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter4_iii_1429_12168" x="418.992" y="203" width="437" height="441" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="4"/>
<feGaussianBlur stdDeviation="50"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.195532 0 0 0 0 0.697115 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1429_12168"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="4"/>
<feGaussianBlur stdDeviation="16"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.1875 0 0 0 0 0.572368 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="effect1_innerShadow_1429_12168" result="effect2_innerShadow_1429_12168"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="5"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.9 0"/>
<feBlend mode="plus-lighter" in2="effect2_innerShadow_1429_12168" result="effect3_innerShadow_1429_12168"/>
</filter>
<filter id="filter5_d_1429_12168" x="396.225" y="188.201" width="477.937" height="455.275" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="-2"/>
<feGaussianBlur stdDeviation="4.95"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.439216 0 0 0 0 0.301961 0 0 0 0 0.890196 0 0 0 1 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1429_12168"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1429_12168" result="shape"/>
</filter>
<filter id="filter6_fn_1429_12168" x="386.703" y="148.242" width="733" height="733" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="74" result="effect1_foregroundBlur_1429_12168"/>
<feTurbulence type="fractalNoise" baseFrequency="0.20000000298023224 0.20000000298023224" stitchTiles="stitch" numOctaves="3" result="noise" seed="5948" />
<feColorMatrix in="noise" type="luminanceToAlpha" result="alphaNoise" />
<feComponentTransfer in="alphaNoise" result="coloredNoise1">
<feFuncA type="discrete" tableValues="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "/>
</feComponentTransfer>
<feComposite operator="in" in2="effect1_foregroundBlur_1429_12168" in="coloredNoise1" result="noise1Clipped" />
<feComponentTransfer in="alphaNoise" result="coloredNoise2">
<feFuncA type="discrete" tableValues="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "/>
</feComponentTransfer>
<feComposite operator="in" in2="effect1_foregroundBlur_1429_12168" in="coloredNoise2" result="noise2Clipped" />
<feFlood flood-color="#ADD1FF" result="color1Flood" />
<feComposite operator="in" in2="noise1Clipped" in="color1Flood" result="color1" />
<feFlood flood-color="rgba(255, 255, 255, 0)" result="color2Flood" />
<feComposite operator="in" in2="noise2Clipped" in="color2Flood" result="color2" />
<feMerge result="effect2_noise_1429_12168">
<feMergeNode in="effect1_foregroundBlur_1429_12168" />
<feMergeNode in="color1" />
<feMergeNode in="color2" />
</feMerge>
</filter>
<filter id="filter7_f_1429_12168" x="520.207" y="304.216" width="233.445" height="233.445" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="0" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter8_f_1429_12168" x="504.457" y="262.854" width="378.066" height="400.479" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="62.5" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter9_f_1429_12168" x="75.1992" y="255.763" width="1193.12" height="1074.04" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="100" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter10_f_1429_12168" x="115.199" y="351.933" width="1113.12" height="881.697" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="80" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter11_f_1429_12168" x="155.199" y="448.103" width="1033.12" height="689.357" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="60" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter12_f_1429_12168" x="155.199" y="504.272" width="1033.12" height="577.018" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="60" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter13_f_1429_12168" x="155.199" y="560.442" width="1033.12" height="464.679" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="60" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<linearGradient id="paint0_linear_1429_12168" x1="395.077" y1="250" x2="653.061" y2="262.422" gradientUnits="userSpaceOnUse">
<stop stop-color="#7641E0"/>
<stop offset="1" stop-color="#3E47FD"/>
</linearGradient>
<linearGradient id="paint1_linear_1429_12168" x1="705.077" y1="405" x2="963.061" y2="417.422" gradientUnits="userSpaceOnUse">
<stop stop-color="#4143E0"/>
<stop offset="1" stop-color="#3E47FD"/>
</linearGradient>
<linearGradient id="paint2_linear_1429_12168" x1="450.184" y1="456" x2="706.92" y2="468.302" gradientUnits="userSpaceOnUse">
<stop stop-color="#A229CA"/>
<stop offset="1" stop-color="#3E47FD"/>
</linearGradient>
<linearGradient id="paint3_linear_1429_12168" x1="637.492" y1="203" x2="637.492" y2="772.661" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint4_linear_1429_12168" x1="410.811" y1="383.86" x2="1002.54" y2="479.523" gradientUnits="userSpaceOnUse">
<stop stop-color="#D3DDFF"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#ADBFFF"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#D4DEFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint5_linear_1429_12168" x1="753.203" y1="296.242" x2="753.203" y2="865.902" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint6_linear_1429_12168" x1="634.122" y1="206.37" x2="634.122" y2="759.922" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint7_linear_1429_12168" x1="640.864" y1="210.864" x2="640.864" y2="764.416" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
</defs>
</svg>

BIN
public/assets/images/copilot_orb.png

After

Width: 1349  |  Height: 865  |  Size: 904 KiB

340
public/assets/images/copilot_orb.svg

@ -0,0 +1,340 @@
<svg width="1349" height="865" viewBox="0 0 1349 865" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_f_1429_12168)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M514.081 250.023C537.054 249.41 557.255 261.359 575.225 275.656C596.248 292.382 622.942 309.842 622.992 336.673C623.042 363.518 599.132 385.181 575.452 397.917C556.713 407.995 535.335 394.075 514.081 395.246C490.12 396.567 466.052 417.498 445.534 405.078C423.572 391.784 415.174 362.218 417.315 336.673C419.331 312.637 438.128 294.94 456.118 278.831C472.819 263.876 491.65 250.62 514.081 250.023Z" fill="url(#paint0_linear_1429_12168)"/>
</g>
<g filter="url(#filter1_f_1429_12168)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M824.081 405.023C847.054 404.41 867.255 416.359 885.225 430.656C906.248 447.382 932.942 464.842 932.992 491.673C933.042 518.518 909.132 540.181 885.452 552.917C866.713 562.995 845.335 549.075 824.081 550.246C800.12 551.567 776.052 572.498 755.534 560.078C733.572 546.784 725.174 517.218 727.315 491.673C729.331 467.637 748.128 449.94 766.118 433.831C782.819 418.876 801.65 405.62 824.081 405.023Z" fill="url(#paint1_linear_1429_12168)"/>
</g>
<g filter="url(#filter2_f_1429_12168)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M568.61 456.023C591.471 455.41 611.575 467.359 629.457 481.656C650.378 498.382 676.943 515.842 676.992 542.673C677.042 569.518 653.248 591.181 629.682 603.917C611.035 613.995 589.761 600.075 568.61 601.246C544.765 602.567 520.814 623.498 500.396 611.078C478.54 597.784 470.183 568.218 472.314 542.673C474.319 518.637 493.026 500.94 510.928 484.831C527.548 469.876 546.288 456.62 568.61 456.023Z" fill="url(#paint2_linear_1429_12168)"/>
</g>
<g filter="url(#filter3_f_1429_12168)" style="mix-blend-mode:screen">
<circle cx="637.492" cy="421.5" r="218.5" fill="url(#paint3_linear_1429_12168)"/>
</g>
<g filter="url(#filter4_iii_1429_12168)">
<circle cx="637.492" cy="421.5" r="218.5" fill="#03070D"/>
</g>
<g filter="url(#filter5_d_1429_12168)" style="mix-blend-mode:plus-lighter">
<path d="M409.521 398.102C418.386 343.271 447.011 289.756 488.325 252.374C529.628 215.002 583.571 193.786 643.129 203.414C702.738 213.051 761.779 252.583 803.709 303.489C845.648 354.406 870.311 416.506 861.474 471.168C852.633 525.851 815.522 570.727 765.614 599.536C715.707 628.345 653.088 641.032 593.414 631.384C474.061 612.089 391.822 507.581 409.521 398.102Z" stroke="url(#paint4_linear_1429_12168)" stroke-width="2" shape-rendering="crispEdges"/>
</g>
<mask id="mask0_1429_12168" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="418" y="203" width="438" height="437">
<circle cx="637.492" cy="421.5" r="218.5" fill="#D9D9D9"/>
</mask>
<g mask="url(#mask0_1429_12168)">
<g filter="url(#filter6_fn_1429_12168)" style="mix-blend-mode:plus-lighter">
<circle cx="753.203" cy="514.742" r="218.5" fill="url(#paint5_linear_1429_12168)"/>
</g>
<g filter="url(#filter7_f_1429_12168)">
<mask id="mask1_1429_12168" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="530" y="314" width="214" height="214">
<path d="M636.929 314.216C650.189 380.791 676.69 407.551 743.652 420.938C676.674 434.325 650.173 461.085 636.929 527.661C623.67 461.085 597.169 434.309 530.207 420.938C597.184 407.551 623.686 380.791 636.929 314.216Z" fill="white"/>
</mask>
<g mask="url(#mask1_1429_12168)">
<path d="M743.652 314.216H530.207V527.661H743.652V314.216Z" fill="white"/>
<g filter="url(#filter8_f_1429_12168)">
<path d="M757.524 387.854H629.457V538.333H757.524V387.854Z" fill="#0066FF"/>
</g>
</g>
</g>
<g style="mix-blend-mode:screen">
<g filter="url(#filter9_f_1429_12168)">
<path d="M275.199 1129.8L1068.31 1129.8V455.766C1068.31 455.766 923.117 545.635 671.757 545.636C420.397 545.638 275.199 455.763 275.199 455.763V1129.8Z" fill="#0029B2"/>
</g>
<g filter="url(#filter10_f_1429_12168)">
<path d="M275.199 1073.63L1068.31 1073.63V511.936C1068.31 511.936 921.465 601.806 671.757 601.806C422.05 601.806 275.199 511.933 275.199 511.933V1073.63Z" fill="#3D6FE5"/>
</g>
<g filter="url(#filter11_f_1429_12168)">
<path d="M275.199 1017.46L1068.31 1017.46V568.105C1068.31 568.105 921.465 657.975 671.757 657.975C422.05 657.975 275.199 568.103 275.199 568.103V1017.46Z" fill="#4B80FF"/>
</g>
<g filter="url(#filter12_f_1429_12168)" style="mix-blend-mode:plus-lighter">
<path d="M275.199 961.289L1068.31 961.29V624.274C1068.31 624.274 920.845 714.145 671.757 714.145C422.669 714.145 275.199 624.272 275.199 624.272V961.289Z" fill="#2D4D99"/>
</g>
<g filter="url(#filter13_f_1429_12168)">
<path d="M275.199 905.12L1068.31 905.121V680.443C1068.31 680.443 921.465 770.314 671.757 770.314C422.05 770.314 275.199 680.442 275.199 680.442V905.12Z" fill="white"/>
</g>
</g>
<g opacity="0.5" style="mix-blend-mode:screen">
<path d="M634.122 207.12C692.119 207.12 745.705 221.614 784.78 255.26C823.836 288.889 848.502 341.743 848.502 418.691C848.502 495.632 822.976 548.487 783.484 582.12C743.972 615.771 690.384 630.263 634.122 630.263C521.756 630.263 419.742 535.398 419.742 418.691C419.742 301.978 518.302 207.12 634.122 207.12Z" stroke="url(#paint6_linear_1429_12168)" stroke-width="1.5"/>
</g>
<g opacity="0.5" style="mix-blend-mode:screen">
<path d="M640.864 211.614C698.861 211.614 752.447 226.107 791.522 259.753C830.578 293.383 855.244 346.236 855.244 423.185C855.244 500.126 829.718 552.981 790.227 586.614C750.715 620.265 697.126 634.756 640.864 634.756C528.498 634.756 426.484 539.891 426.484 423.185C426.484 306.471 525.044 211.614 640.864 211.614Z" stroke="url(#paint7_linear_1429_12168)" stroke-width="1.5"/>
</g>
</g>
<path d="M775.676 409.65C775.145 409.698 774.753 410.168 774.801 410.699C774.849 411.23 775.319 411.622 775.85 411.574C776.382 411.526 776.773 411.056 776.725 410.525C776.677 409.993 776.207 409.602 775.676 409.65Z" fill="#9DB2D1"/>
<path d="M745.121 490.012C744.59 490.06 744.198 490.529 744.247 491.061C744.295 491.592 744.764 491.984 745.296 491.936C745.827 491.887 746.219 491.418 746.171 490.886C746.122 490.355 745.653 489.963 745.121 490.012Z" fill="#9DB2D1"/>
<path d="M727.926 396.519C727.395 396.568 727.003 397.037 727.051 397.569C727.099 398.1 727.569 398.492 728.1 398.443C728.632 398.395 729.023 397.925 728.975 397.394C728.927 396.863 728.457 396.471 727.926 396.519Z" fill="#9DB2D1"/>
<path d="M720.653 455.369C720.121 455.418 719.73 455.887 719.778 456.419C719.826 456.95 720.296 457.342 720.827 457.294C721.358 457.245 721.75 456.776 721.702 456.244C721.654 455.713 721.184 455.321 720.653 455.369Z" fill="#9DB2D1"/>
<path d="M710.075 434.993C709.543 435.041 709.152 435.51 709.2 436.042C709.248 436.573 709.718 436.965 710.249 436.917C710.78 436.868 711.172 436.399 711.124 435.867C711.076 435.336 710.606 434.944 710.075 434.993Z" fill="#9DB2D1"/>
<path d="M676.035 476.876C675.504 476.924 675.112 477.394 675.161 477.925C675.209 478.456 675.679 478.848 676.21 478.8C676.741 478.752 677.133 478.282 677.085 477.751C677.037 477.219 676.567 476.828 676.035 476.876Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M649.028 446.344C648.496 446.392 648.105 446.862 648.153 447.393C648.201 447.924 648.671 448.316 649.202 448.268C649.733 448.219 650.125 447.75 650.077 447.218C650.029 446.687 649.559 446.295 649.028 446.344Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M636.348 434.889C635.817 434.937 635.425 435.406 635.473 435.938C635.521 436.469 635.991 436.861 636.522 436.813C637.054 436.764 637.445 436.295 637.397 435.763C637.349 435.232 636.879 434.84 636.348 434.889Z" fill="#9DB2D1"/>
<path d="M624.364 452.463C623.832 452.511 623.441 452.981 623.489 453.512C623.537 454.043 624.007 454.435 624.538 454.387C625.069 454.339 625.461 453.869 625.413 453.338C625.365 452.806 624.895 452.415 624.364 452.463Z" fill="#9DB2D1"/>
<path d="M611.239 457.532C610.707 457.58 610.316 458.05 610.364 458.581C610.412 459.112 610.882 459.504 611.413 459.456C611.944 459.407 612.336 458.938 612.288 458.406C612.24 457.875 611.77 457.483 611.239 457.532Z" fill="#9DB2D1"/>
<path d="M588.051 533.346C587.52 533.394 587.128 533.864 587.176 534.395C587.224 534.927 587.694 535.318 588.225 535.27C588.757 535.222 589.148 534.752 589.1 534.221C589.052 533.69 588.582 533.298 588.051 533.346Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M578.543 439.16C578.012 439.209 577.62 439.678 577.668 440.21C577.717 440.741 578.186 441.133 578.718 441.085C579.249 441.036 579.641 440.567 579.592 440.035C579.544 439.504 579.075 439.112 578.543 439.16Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M582.028 477.636C581.496 477.684 581.105 478.154 581.153 478.685C581.201 479.217 581.671 479.608 582.202 479.56C582.733 479.512 583.125 479.042 583.077 478.511C583.029 477.98 582.559 477.588 582.028 477.636Z" fill="#9DB2D1"/>
<path d="M536.371 508.936C535.84 508.985 535.448 509.454 535.497 509.986C535.545 510.517 536.014 510.909 536.546 510.86C537.077 510.812 537.469 510.342 537.421 509.811C537.372 509.28 536.903 508.888 536.371 508.936Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M846.348 494.432C845.817 494.481 845.425 494.95 845.473 495.482C845.521 496.013 845.991 496.405 846.522 496.356C847.054 496.308 847.445 495.839 847.397 495.307C847.349 494.776 846.879 494.384 846.348 494.432Z" fill="#9DB2D1"/>
<path d="M507.965 441.677C507.434 441.725 507.042 442.195 507.09 442.726C507.138 443.257 507.608 443.649 508.14 443.601C508.671 443.552 509.063 443.083 509.014 442.551C508.966 442.02 508.496 441.628 507.965 441.677Z" fill="#9DB2D1"/>
<path d="M511.457 480.158C510.926 480.206 510.534 480.676 510.583 481.207C510.631 481.739 511.1 482.13 511.632 482.082C512.163 482.034 512.555 481.564 512.507 481.033C512.458 480.502 511.989 480.11 511.457 480.158Z" fill="#9DB2D1"/>
<path d="M493.895 404.154C493.364 404.202 492.972 404.672 493.02 405.203C493.068 405.735 493.538 406.126 494.069 406.078C494.601 406.03 494.992 405.56 494.944 405.029C494.896 404.498 494.426 404.106 493.895 404.154Z" fill="#9DB2D1"/>
<path d="M895.082 519.379C894.551 519.427 894.159 519.897 894.208 520.428C894.256 520.959 894.725 521.351 895.257 521.303C895.788 521.255 896.18 520.785 896.132 520.254C896.083 519.722 895.614 519.331 895.082 519.379Z" fill="#9DB2D1"/>
<path d="M894.309 475.806C893.778 475.855 893.386 476.324 893.434 476.856C893.482 477.387 893.952 477.779 894.483 477.731C895.015 477.682 895.406 477.213 895.358 476.681C895.31 476.15 894.84 475.758 894.309 475.806Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M491.77 530.439C491.239 530.487 490.847 530.957 490.895 531.488C490.943 532.02 491.413 532.411 491.944 532.363C492.476 532.315 492.867 531.845 492.819 531.314C492.771 530.783 492.301 530.391 491.77 530.439Z" fill="#9DB2D1"/>
<path d="M479.106 465.631C478.574 465.679 478.183 466.149 478.231 466.68C478.279 467.212 478.749 467.603 479.28 467.555C479.811 467.507 480.203 467.037 480.155 466.506C480.107 465.975 479.637 465.583 479.106 465.631Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M454.825 347.558C454.293 347.607 453.902 348.076 453.95 348.608C453.998 349.139 454.468 349.531 454.999 349.482C455.53 349.434 455.922 348.965 455.874 348.433C455.826 347.902 455.356 347.51 454.825 347.558Z" fill="#9DB2D1"/>
<path d="M467.293 495.8C466.762 495.849 466.37 496.318 466.418 496.85C466.467 497.381 466.936 497.773 467.468 497.724C467.999 497.676 468.391 497.206 468.342 496.675C468.294 496.144 467.825 495.752 467.293 495.8Z" fill="#9DB2D1"/>
<path d="M450.332 447.874C449.801 447.922 449.409 448.392 449.458 448.923C449.506 449.454 449.975 449.846 450.507 449.798C451.038 449.75 451.43 449.28 451.382 448.749C451.333 448.217 450.864 447.826 450.332 447.874Z" fill="#9DB2D1"/>
<path d="M408.379 380.872C407.848 380.921 407.456 381.39 407.504 381.922C407.553 382.453 408.022 382.845 408.554 382.796C409.085 382.748 409.477 382.279 409.428 381.747C409.38 381.216 408.91 380.824 408.379 380.872Z" fill="#9DB2D1"/>
<path d="M405.192 495.613C404.66 495.661 404.269 496.131 404.317 496.662C404.365 497.193 404.835 497.585 405.366 497.537C405.897 497.489 406.289 497.019 406.241 496.487C406.193 495.956 405.723 495.564 405.192 495.613Z" fill="#9DB2D1"/>
<path d="M840.239 404.535C839.707 404.583 839.316 405.052 839.364 405.584C839.412 406.115 839.882 406.507 840.413 406.459C840.944 406.41 841.336 405.941 841.288 405.409C841.24 404.878 840.77 404.486 840.239 404.535Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M377.809 461.256C377.278 461.304 376.886 461.774 376.934 462.305C376.982 462.836 377.452 463.228 377.983 463.18C378.515 463.132 378.906 462.662 378.858 462.131C378.81 461.599 378.34 461.208 377.809 461.256Z" fill="#9DB2D1"/>
<path d="M353.317 426.618C352.785 426.666 352.394 427.135 352.442 427.667C352.49 428.198 352.96 428.59 353.491 428.542C354.022 428.493 354.414 428.024 354.366 427.492C354.318 426.961 353.848 426.569 353.317 426.618Z" fill="#9DB2D1"/>
<path d="M333.637 476.901C333.106 476.949 332.714 477.419 332.762 477.95C332.81 478.482 333.28 478.873 333.811 478.825C334.343 478.777 334.734 478.307 334.686 477.776C334.638 477.245 334.168 476.853 333.637 476.901Z" fill="#9DB2D1"/>
<path d="M308.715 448.123C308.184 448.172 307.792 448.641 307.84 449.173C307.888 449.704 308.358 450.096 308.89 450.047C309.421 449.999 309.813 449.529 309.764 448.998C309.716 448.467 309.246 448.075 308.715 448.123Z" fill="#9DB2D1"/>
<path d="M281.707 417.592C281.176 417.64 280.784 418.11 280.833 418.641C280.881 419.172 281.35 419.564 281.882 419.516C282.413 419.468 282.805 418.998 282.757 418.466C282.708 417.935 282.239 417.543 281.707 417.592Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M257.035 423.707C256.504 423.756 256.112 424.225 256.161 424.757C256.209 425.288 256.679 425.68 257.21 425.631C257.741 425.583 258.133 425.113 258.085 424.582C258.037 424.051 257.567 423.659 257.035 423.707Z" fill="#9DB2D1"/>
<path d="M817.59 476.675C817.059 476.723 816.667 477.193 816.715 477.724C816.763 478.256 817.233 478.647 817.765 478.599C818.296 478.551 818.688 478.081 818.639 477.55C818.591 477.019 818.121 476.627 817.59 476.675Z" fill="#9DB2D1"/>
<path d="M243.918 428.779C243.387 428.827 242.995 429.297 243.043 429.828C243.092 430.36 243.561 430.751 244.093 430.703C244.624 430.655 245.016 430.185 244.967 429.654C244.919 429.123 244.45 428.731 243.918 428.779Z" fill="#9DB2D1"/>
<path d="M220.746 504.59C220.215 504.638 219.823 505.108 219.872 505.639C219.92 506.17 220.389 506.562 220.921 506.514C221.452 506.466 221.844 505.996 221.796 505.464C221.747 504.933 221.278 504.542 220.746 504.59Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M214.723 448.88C214.192 448.928 213.8 449.398 213.848 449.929C213.896 450.461 214.366 450.852 214.897 450.804C215.429 450.756 215.82 450.286 215.772 449.755C215.724 449.224 215.254 448.832 214.723 448.88Z" fill="#9DB2D1"/>
<path d="M169.067 480.18C168.535 480.228 168.144 480.697 168.192 481.229C168.24 481.76 168.71 482.152 169.241 482.104C169.772 482.055 170.164 481.586 170.116 481.054C170.068 480.523 169.598 480.131 169.067 480.18Z" fill="#9DB2D1"/>
<path d="M807.176 490.225C806.645 490.273 806.253 490.743 806.301 491.274C806.349 491.805 806.819 492.197 807.35 492.149C807.882 492.101 808.273 491.631 808.225 491.1C808.177 490.568 807.707 490.177 807.176 490.225Z" fill="#9DB2D1"/>
<path d="M124.457 501.683C123.926 501.731 123.534 502.201 123.583 502.732C123.631 503.263 124.1 503.655 124.632 503.607C125.163 503.559 125.555 503.089 125.507 502.558C125.458 502.026 124.989 501.635 124.457 501.683Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M113.981 428.916C113.449 428.964 113.058 429.434 113.106 429.965C113.154 430.496 113.624 430.888 114.155 430.84C114.686 430.792 115.078 430.322 115.03 429.791C114.982 429.259 114.512 428.868 113.981 428.916Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M3.21513 580.391C2.68382 580.439 2.29216 580.909 2.34032 581.44C2.38849 581.971 2.85824 582.363 3.38955 582.315C3.92085 582.267 4.31252 581.797 4.26435 581.266C4.21619 580.734 3.74643 580.343 3.21513 580.391Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M99.9729 467.048C99.4416 467.096 99.05 467.566 99.0981 468.097C99.1463 468.628 99.6161 469.02 100.147 468.972C100.679 468.924 101.07 468.454 101.022 467.923C100.974 467.391 100.504 467 99.9729 467.048Z" fill="#9DB2D1"/>
<path d="M76.9026 426.459C76.3713 426.507 75.9797 426.977 76.0278 427.509C76.076 428.04 76.5457 428.432 77.077 428.383C77.6084 428.335 78 427.865 77.9519 427.334C77.9037 426.803 77.4339 426.411 76.9026 426.459Z" fill="#9DB2D1"/>
<path d="M69.8167 444.558C69.2854 444.606 68.8937 445.076 68.9419 445.607C68.9901 446.138 69.4598 446.53 69.9911 446.482C70.5224 446.434 70.9141 445.964 70.8659 445.433C70.8178 444.901 70.348 444.51 69.8167 444.558Z" fill="#9DB2D1"/>
<path d="M55.5511 501.139C55.0198 501.187 54.6281 501.657 54.6763 502.188C54.7244 502.72 55.1942 503.111 55.7255 503.063C56.2568 503.015 56.6485 502.545 56.6003 502.014C56.5521 501.483 56.0824 501.091 55.5511 501.139Z" fill="#9DB2D1"/>
<path d="M14.0276 542.119C13.4963 542.167 13.1047 542.637 13.1528 543.168C13.201 543.7 13.6707 544.091 14.202 544.043C14.7334 543.995 15.125 543.525 15.0769 542.994C15.0287 542.462 14.5589 542.071 14.0276 542.119Z" fill="#9DB2D1"/>
<path d="M0.879191 493.321C0.347885 493.369 -0.0437781 493.839 0.00438636 494.37C0.0525508 494.901 0.522304 495.293 1.05361 495.245C1.58492 495.197 1.97658 494.727 1.92842 494.195C1.88025 493.664 1.4105 493.272 0.879191 493.321Z" fill="#9DB2D1"/>
<path d="M1235.68 333.806C1235.15 333.806 1234.72 334.239 1234.72 334.772C1234.72 335.306 1235.15 335.738 1235.68 335.738C1236.22 335.738 1236.65 335.306 1236.65 334.772C1236.65 334.239 1236.22 333.806 1235.68 333.806Z" fill="#9DB2D1"/>
<path d="M1198 411.081C1197.47 411.081 1197.04 411.514 1197.04 412.047C1197.04 412.581 1197.47 413.013 1198 413.013C1198.54 413.013 1198.97 412.581 1198.97 412.047C1198.97 411.514 1198.54 411.081 1198 411.081Z" fill="#9DB2D1"/>
<path d="M1189.32 316.418C1188.78 316.418 1188.35 316.85 1188.35 317.384C1188.35 317.917 1188.78 318.35 1189.32 318.35C1189.85 318.35 1190.28 317.917 1190.28 317.384C1190.28 316.85 1189.85 316.418 1189.32 316.418Z" fill="#9DB2D1"/>
<path d="M1176.76 374.371C1176.23 374.371 1175.79 374.804 1175.79 375.337C1175.79 375.871 1176.23 376.303 1176.76 376.303C1177.29 376.303 1177.73 375.871 1177.73 375.337C1177.73 374.804 1177.29 374.371 1176.76 374.371Z" fill="#9DB2D1"/>
<path d="M1168.07 353.123C1167.53 353.123 1167.1 353.555 1167.1 354.089C1167.1 354.622 1167.53 355.055 1168.07 355.055C1168.6 355.055 1169.03 354.622 1169.03 354.089C1169.03 353.555 1168.6 353.123 1168.07 353.123Z" fill="#9DB2D1"/>
<path d="M1130.39 391.762C1129.85 391.762 1129.42 392.194 1129.42 392.728C1129.42 393.261 1129.85 393.694 1130.39 393.694C1130.92 393.694 1131.35 393.261 1131.35 392.728C1131.35 392.194 1130.92 391.762 1130.39 391.762Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M1106.24 358.917C1105.71 358.917 1105.28 359.349 1105.28 359.883C1105.28 360.416 1105.71 360.849 1106.24 360.849C1106.78 360.849 1107.21 360.416 1107.21 359.883C1107.21 359.349 1106.78 358.917 1106.24 358.917Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M1094.64 346.363C1094.11 346.363 1093.68 346.795 1093.68 347.328C1093.68 347.862 1094.11 348.294 1094.64 348.294C1095.18 348.294 1095.61 347.862 1095.61 347.328C1095.61 346.795 1095.18 346.363 1094.64 346.363Z" fill="#9DB2D1"/>
<path d="M1081.13 362.783C1080.59 362.783 1080.16 363.215 1080.16 363.749C1080.16 364.282 1080.59 364.715 1081.13 364.715C1081.66 364.715 1082.09 364.282 1082.09 363.749C1082.09 363.215 1081.66 362.783 1081.13 362.783Z" fill="#9DB2D1"/>
<path d="M1067.6 366.646C1067.06 366.646 1066.63 367.079 1066.63 367.612C1066.63 368.146 1067.06 368.578 1067.6 368.578C1068.13 368.578 1068.56 368.146 1068.56 367.612C1068.56 367.079 1068.13 366.646 1067.6 366.646Z" fill="#9DB2D1"/>
<path d="M1037.66 440.058C1037.13 440.058 1036.69 440.49 1036.69 441.024C1036.69 441.557 1037.13 441.99 1037.66 441.99C1038.19 441.99 1038.62 441.557 1038.62 441.024C1038.62 440.49 1038.19 440.058 1037.66 440.058Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M1036.7 345.399C1036.16 345.399 1035.73 345.832 1035.73 346.365C1035.73 346.899 1036.16 347.331 1036.7 347.331C1037.23 347.331 1037.66 346.899 1037.66 346.365C1037.66 345.832 1037.23 345.399 1036.7 345.399Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M1036.69 384.032C1036.16 384.032 1035.72 384.464 1035.72 384.998C1035.72 385.531 1036.16 385.964 1036.69 385.964C1037.22 385.964 1037.66 385.531 1037.66 384.998C1037.66 384.464 1037.22 384.032 1036.69 384.032Z" fill="#9DB2D1"/>
<path d="M988.393 411.082C987.86 411.082 987.427 411.514 987.427 412.048C987.427 412.581 987.86 413.014 988.393 413.014C988.927 413.014 989.359 412.581 989.359 412.048C989.359 411.514 988.927 411.082 988.393 411.082Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M1298.42 424.623C1297.88 424.623 1297.45 425.056 1297.45 425.589C1297.45 426.123 1297.88 426.555 1298.42 426.555C1298.95 426.555 1299.38 426.123 1299.38 425.589C1299.38 425.056 1298.95 424.623 1298.42 424.623Z" fill="#9DB2D1"/>
<path d="M966.175 341.533C965.641 341.533 965.209 341.965 965.209 342.499C965.209 343.032 965.641 343.465 966.175 343.465C966.708 343.465 967.141 343.032 967.141 342.499C967.141 341.965 966.708 341.533 966.175 341.533Z" fill="#9DB2D1"/>
<path d="M966.182 380.172C965.649 380.172 965.217 380.605 965.217 381.138C965.217 381.672 965.649 382.104 966.182 382.104C966.716 382.104 967.148 381.672 967.148 381.138C967.148 380.605 966.716 380.172 966.182 380.172Z" fill="#9DB2D1"/>
<path d="M955.55 302.892C955.016 302.892 954.584 303.325 954.584 303.858C954.584 304.392 955.016 304.824 955.55 304.824C956.083 304.824 956.516 304.392 956.516 303.858C956.516 303.325 956.083 302.892 955.55 302.892Z" fill="#9DB2D1"/>
<path d="M1344.7 453.867C1344.16 453.867 1343.73 454.3 1343.73 454.833C1343.73 455.367 1344.16 455.799 1344.7 455.799C1345.23 455.799 1345.66 455.367 1345.66 454.833C1345.66 454.3 1345.23 453.867 1344.7 453.867Z" fill="#9DB2D1"/>
<path d="M1347.86 410.404C1347.33 410.404 1346.9 410.836 1346.9 411.369C1346.9 411.903 1347.33 412.335 1347.86 412.335C1348.4 412.335 1348.83 411.903 1348.83 411.369C1348.83 410.836 1348.4 410.404 1347.86 410.404Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M942.034 428.47C941.501 428.47 941.068 428.903 941.068 429.436C941.068 429.97 941.501 430.402 942.034 430.402C942.568 430.402 943 429.97 943 429.436C943 428.903 942.568 428.47 942.034 428.47Z" fill="#9DB2D1"/>
<path d="M935.268 362.784C934.735 362.784 934.302 363.216 934.302 363.75C934.302 364.283 934.735 364.716 935.268 364.716C935.802 364.716 936.234 364.283 936.234 363.75C936.234 363.216 935.802 362.784 935.268 362.784Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M921.745 243C921.211 243 920.779 243.432 920.779 243.966C920.779 244.499 921.211 244.932 921.745 244.932C922.278 244.932 922.711 244.499 922.711 243.966C922.711 243.432 922.278 243 921.745 243Z" fill="#9DB2D1"/>
<path d="M920.776 391.762C920.243 391.762 919.81 392.195 919.81 392.728C919.81 393.262 920.243 393.694 920.776 393.694C921.31 393.694 921.742 393.262 921.742 392.728C921.742 392.195 921.31 391.762 920.776 391.762Z" fill="#9DB2D1"/>
<path d="M908.222 342.502C907.688 342.502 907.256 342.934 907.256 343.468C907.256 344.001 907.688 344.434 908.222 344.434C908.755 344.434 909.188 344.001 909.188 343.468C909.188 342.934 908.755 342.502 908.222 342.502Z" fill="#9DB2D1"/>
<path d="M872.479 271.984C871.946 271.984 871.513 272.417 871.513 272.95C871.513 273.484 871.946 273.916 872.479 273.916C873.013 273.916 873.445 273.484 873.445 272.95C873.445 272.417 873.013 271.984 872.479 271.984Z" fill="#9DB2D1"/>
<path d="M858.956 385.97C858.422 385.97 857.99 386.402 857.99 386.936C857.99 387.469 858.422 387.902 858.956 387.902C859.489 387.902 859.922 387.469 859.922 386.936C859.922 386.402 859.489 385.97 858.956 385.97Z" fill="#9DB2D1"/>
<path d="M1300.45 334.541C1299.91 334.541 1299.48 334.973 1299.48 335.507C1299.48 336.04 1299.91 336.473 1300.45 336.473C1300.98 336.473 1301.41 336.04 1301.41 335.507C1301.41 334.973 1300.98 334.541 1300.45 334.541Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M834.776 349.28C834.243 349.28 833.81 349.712 833.81 350.246C833.81 350.779 834.243 351.212 834.776 351.212C835.31 351.212 835.742 350.779 835.742 350.246C835.742 349.712 835.31 349.28 834.776 349.28Z" fill="#9DB2D1"/>
<path d="M813.518 312.572C812.985 312.572 812.552 313.004 812.552 313.538C812.552 314.071 812.985 314.504 813.518 314.504C814.052 314.504 814.484 314.071 814.484 313.538C814.484 313.004 814.052 312.572 813.518 312.572Z" fill="#9DB2D1"/>
<path d="M789.37 360.874C788.836 360.874 788.404 361.306 788.404 361.84C788.404 362.373 788.836 362.806 789.37 362.806C789.903 362.806 790.336 362.373 790.336 361.84C790.336 361.306 789.903 360.874 789.37 360.874Z" fill="#9DB2D1"/>
<path d="M767.159 329.964C766.626 329.964 766.193 330.397 766.193 330.93C766.193 331.464 766.626 331.896 767.159 331.896C767.693 331.896 768.125 331.464 768.125 330.93C768.125 330.397 767.693 329.964 767.159 329.964Z" fill="#9DB2D1"/>
<path d="M743.003 297.117C742.469 297.117 742.037 297.549 742.037 298.083C742.037 298.616 742.469 299.049 743.003 299.049C743.536 299.049 743.969 298.616 743.969 298.083C743.969 297.549 743.536 297.117 743.003 297.117Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M717.893 300.982C717.36 300.982 716.927 301.414 716.927 301.948C716.927 302.481 717.36 302.914 717.893 302.914C718.427 302.914 718.859 302.481 718.859 301.948C718.859 301.414 718.427 300.982 717.893 300.982Z" fill="#9DB2D1"/>
<path d="M1271.38 404.342C1270.84 404.342 1270.41 404.774 1270.41 405.307C1270.41 405.841 1270.84 406.273 1271.38 406.273C1271.91 406.273 1272.34 405.841 1272.34 405.307C1272.34 404.774 1271.91 404.342 1271.38 404.342Z" fill="#9DB2D1"/>
<path d="M704.37 304.848C703.836 304.848 703.404 305.28 703.404 305.814C703.404 306.347 703.836 306.78 704.37 306.78C704.903 306.78 705.336 306.347 705.336 305.814C705.336 305.28 704.903 304.848 704.37 304.848Z" fill="#9DB2D1"/>
<path d="M674.448 378.258C673.915 378.258 673.482 378.69 673.482 379.223C673.482 379.757 673.915 380.189 674.448 380.189C674.982 380.189 675.414 379.757 675.414 379.223C675.414 378.69 674.982 378.258 674.448 378.258Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M673.479 322.231C672.946 322.231 672.513 322.664 672.513 323.197C672.513 323.731 672.946 324.163 673.479 324.163C674.013 324.163 674.445 323.731 674.445 323.197C674.445 322.664 674.013 322.231 673.479 322.231Z" fill="#9DB2D1"/>
<path d="M625.182 349.282C624.649 349.282 624.217 349.714 624.217 350.248C624.217 350.781 624.649 351.214 625.182 351.214C625.716 351.214 626.148 350.781 626.148 350.248C626.148 349.714 625.716 349.282 625.182 349.282Z" fill="#9DB2D1"/>
<path d="M1259.78 416.896C1259.25 416.896 1258.82 417.329 1258.82 417.862C1258.82 418.396 1259.25 418.828 1259.78 418.828C1260.32 418.828 1260.75 418.396 1260.75 417.862C1260.75 417.329 1260.32 416.896 1259.78 416.896Z" fill="#9DB2D1"/>
<path d="M578.815 366.67C578.282 366.67 577.849 367.102 577.849 367.636C577.849 368.169 578.282 368.602 578.815 368.602C579.349 368.602 579.781 368.169 579.781 367.636C579.781 367.102 579.349 366.67 578.815 366.67Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M574.948 293.253C574.415 293.253 573.982 293.686 573.982 294.219C573.982 294.753 574.415 295.185 574.948 295.185C575.482 295.185 575.914 294.753 575.914 294.219C575.914 293.686 575.482 293.253 574.948 293.253Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M450.956 434.109C450.422 434.109 449.99 434.542 449.99 435.075C449.99 435.609 450.422 436.041 450.956 436.041C451.489 436.041 451.922 435.609 451.922 435.075C451.922 434.542 451.489 434.109 450.956 434.109Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M557.557 329.966C557.024 329.966 556.592 330.398 556.592 330.932C556.592 331.465 557.024 331.897 557.557 331.897C558.091 331.897 558.523 331.465 558.523 330.932C558.523 330.398 558.091 329.966 557.557 329.966Z" fill="#9DB2D1"/>
<path d="M538.245 287.459C537.711 287.459 537.279 287.892 537.279 288.425C537.279 288.959 537.711 289.391 538.245 289.391C538.778 289.391 539.211 288.959 539.211 288.425C539.211 287.892 538.778 287.459 538.245 287.459Z" fill="#9DB2D1"/>
<path d="M529.55 304.844C529.016 304.844 528.584 305.276 528.584 305.81C528.584 306.343 529.016 306.776 529.55 306.776C530.083 306.776 530.516 306.343 530.516 305.81C530.516 305.276 530.083 304.844 529.55 304.844Z" fill="#9DB2D1"/>
<path d="M510.237 359.906C509.704 359.906 509.271 360.339 509.271 360.872C509.271 361.406 509.704 361.838 510.237 361.838C510.771 361.838 511.203 361.406 511.203 360.872C511.203 360.339 510.771 359.906 510.237 359.906Z" fill="#9DB2D1"/>
<path d="M465.182 396.97C464.649 396.97 464.217 397.403 464.217 397.936C464.217 398.47 464.649 398.902 465.182 398.902C465.716 398.902 466.148 398.47 466.148 397.936C466.148 397.403 465.716 396.97 465.182 396.97Z" fill="#9DB2D1"/>
<path d="M456.495 347.184C455.961 347.184 455.529 347.617 455.529 348.15C455.529 348.684 455.961 349.116 456.495 349.116C457.028 349.116 457.461 348.684 457.461 348.15C457.461 347.617 457.028 347.184 456.495 347.184Z" fill="#9DB2D1"/>
<defs>
<filter id="filter0_f_1429_12168" x="166.992" y="0" width="706" height="659" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="125" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter1_f_1429_12168" x="476.992" y="155" width="706" height="659" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="125" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter2_f_1429_12168" x="221.992" y="206" width="705" height="659" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="125" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter3_f_1429_12168" x="318.992" y="103" width="637" height="637" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="50" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter4_iii_1429_12168" x="418.992" y="203" width="437" height="441" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="4"/>
<feGaussianBlur stdDeviation="50"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.195532 0 0 0 0 0.697115 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1429_12168"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="4"/>
<feGaussianBlur stdDeviation="16"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.1875 0 0 0 0 0.572368 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="effect1_innerShadow_1429_12168" result="effect2_innerShadow_1429_12168"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="5"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.9 0"/>
<feBlend mode="plus-lighter" in2="effect2_innerShadow_1429_12168" result="effect3_innerShadow_1429_12168"/>
</filter>
<filter id="filter5_d_1429_12168" x="396.225" y="188.201" width="477.937" height="455.275" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="-2"/>
<feGaussianBlur stdDeviation="4.95"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.439216 0 0 0 0 0.301961 0 0 0 0 0.890196 0 0 0 1 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1429_12168"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1429_12168" result="shape"/>
</filter>
<filter id="filter6_fn_1429_12168" x="386.703" y="148.242" width="733" height="733" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="74" result="effect1_foregroundBlur_1429_12168"/>
<feTurbulence type="fractalNoise" baseFrequency="0.20000000298023224 0.20000000298023224" stitchTiles="stitch" numOctaves="3" result="noise" seed="5948" />
<feColorMatrix in="noise" type="luminanceToAlpha" result="alphaNoise" />
<feComponentTransfer in="alphaNoise" result="coloredNoise1">
<feFuncA type="discrete" tableValues="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "/>
</feComponentTransfer>
<feComposite operator="in" in2="effect1_foregroundBlur_1429_12168" in="coloredNoise1" result="noise1Clipped" />
<feComponentTransfer in="alphaNoise" result="coloredNoise2">
<feFuncA type="discrete" tableValues="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "/>
</feComponentTransfer>
<feComposite operator="in" in2="effect1_foregroundBlur_1429_12168" in="coloredNoise2" result="noise2Clipped" />
<feFlood flood-color="#ADD1FF" result="color1Flood" />
<feComposite operator="in" in2="noise1Clipped" in="color1Flood" result="color1" />
<feFlood flood-color="rgba(255, 255, 255, 0)" result="color2Flood" />
<feComposite operator="in" in2="noise2Clipped" in="color2Flood" result="color2" />
<feMerge result="effect2_noise_1429_12168">
<feMergeNode in="effect1_foregroundBlur_1429_12168" />
<feMergeNode in="color1" />
<feMergeNode in="color2" />
</feMerge>
</filter>
<filter id="filter7_f_1429_12168" x="520.207" y="304.216" width="233.445" height="233.445" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="0" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter8_f_1429_12168" x="504.457" y="262.854" width="378.066" height="400.479" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="62.5" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter9_f_1429_12168" x="75.1992" y="255.763" width="1193.12" height="1074.04" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="100" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter10_f_1429_12168" x="115.199" y="351.933" width="1113.12" height="881.697" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="80" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter11_f_1429_12168" x="155.199" y="448.103" width="1033.12" height="689.357" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="60" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter12_f_1429_12168" x="155.199" y="504.272" width="1033.12" height="577.018" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="60" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter13_f_1429_12168" x="155.199" y="560.442" width="1033.12" height="464.679" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="60" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<linearGradient id="paint0_linear_1429_12168" x1="395.077" y1="250" x2="653.061" y2="262.422" gradientUnits="userSpaceOnUse">
<stop stop-color="#7641E0"/>
<stop offset="1" stop-color="#3E47FD"/>
</linearGradient>
<linearGradient id="paint1_linear_1429_12168" x1="705.077" y1="405" x2="963.061" y2="417.422" gradientUnits="userSpaceOnUse">
<stop stop-color="#4143E0"/>
<stop offset="1" stop-color="#3E47FD"/>
</linearGradient>
<linearGradient id="paint2_linear_1429_12168" x1="450.184" y1="456" x2="706.92" y2="468.302" gradientUnits="userSpaceOnUse">
<stop stop-color="#A229CA"/>
<stop offset="1" stop-color="#3E47FD"/>
</linearGradient>
<linearGradient id="paint3_linear_1429_12168" x1="637.492" y1="203" x2="637.492" y2="772.661" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint4_linear_1429_12168" x1="410.811" y1="383.86" x2="1002.54" y2="479.523" gradientUnits="userSpaceOnUse">
<stop stop-color="#D3DDFF"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#ADBFFF"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#D4DEFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint5_linear_1429_12168" x1="753.203" y1="296.242" x2="753.203" y2="865.902" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint6_linear_1429_12168" x1="634.122" y1="206.37" x2="634.122" y2="759.922" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint7_linear_1429_12168" x1="640.864" y1="210.864" x2="640.864" y2="764.416" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
</defs>
</svg>

BIN
public/assets/images/copilot_side_decor_left.png

After

Width: 50  |  Height: 178  |  Size: 14 KiB

94
public/assets/images/copilot_side_decor_left.svg

@ -0,0 +1,94 @@
<svg width="50" height="178" viewBox="0 0 50 178" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.043 25C18.9072 26.4772 23.5228 31.0928 25 36.957C26.4771 31.0931 31.0923 26.4774 36.9561 25C31.0923 23.5226 26.4771 18.9069 25 13.043C23.5228 18.9072 18.9072 23.5228 13.043 25ZM33.5 8.5L33.5 9C33.5 13.1421 36.8579 16.5 41 16.5L41.5 16.5L41.5 33.5L41 33.5C36.8579 33.5 33.5 36.8579 33.5 41L33.5 41.5L16.5 41.5L16.5 41C16.5 36.8579 13.1421 33.5 9 33.5L8.5 33.5L8.5 16.5L9 16.5C13.1421 16.5 16.5 13.1421 16.5 9L16.5 8.5L33.5 8.5Z" fill="url(#paint0_radial_1429_12423)" fill-opacity="0.1" stroke="url(#paint1_linear_1429_12423)"/>
<g filter="url(#filter0_f_1429_12423)" style="mix-blend-mode:plus-lighter">
<path d="M25 41C25 32.1635 32.1635 25 41 25L41 33C36.5817 33 33 36.5817 33 41L25 41ZM33 8.99992C33 13.4182 36.5817 16.9999 41 16.9999L41 25C32.1635 25 25 17.8364 25 8.99992L33 8.99992ZM9 25C17.8365 25 25 32.1635 25 41L17 41C17 36.5817 13.4182 33 9 33L9 25ZM9 16.9999C13.4182 16.9999 17 13.4182 17 8.99992L25 8.99992C25 17.8364 17.8365 25 9 25L9 16.9999Z" fill="url(#paint2_radial_1429_12423)" fill-opacity="0.1"/>
<path d="M13.043 25C18.9072 26.4772 23.5228 31.0928 25 36.957C26.4771 31.0931 31.0923 26.4774 36.9561 25C31.0923 23.5226 26.4771 18.9069 25 13.043C23.5228 18.9072 18.9072 23.5228 13.043 25ZM33.5 8.5L33.5 9C33.5 13.1421 36.8579 16.5 41 16.5L41.5 16.5L41.5 33.5L41 33.5C36.8579 33.5 33.5 36.8579 33.5 41L33.5 41.5L16.5 41.5L16.5 41C16.5 36.8579 13.1421 33.5 9 33.5L8.5 33.5L8.5 16.5L9 16.5C13.1421 16.5 16.5 13.1421 16.5 9L16.5 8.5L33.5 8.5Z" stroke="url(#paint3_linear_1429_12423)"/>
</g>
<path d="M41.5 80.9998C41.5 76.3054 37.6944 72.4998 33 72.4998L16.5 72.4998L16.5 80.4998L8.5 80.4998L8.5 96.9998C8.50001 101.694 12.3056 105.5 17 105.5L33.5 105.5L33.5 97.4998L41.5 97.4998L41.5 80.9998ZM32.5 88.5154C28.2038 88.7646 24.7649 92.2036 24.5156 96.4998L17.5 96.4998L17.5 89.4851C21.7963 89.2358 25.2351 85.7959 25.4844 81.4998L32.5 81.4998L32.5 88.5154Z" fill="url(#paint4_radial_1429_12423)" fill-opacity="0.1" stroke="url(#paint5_linear_1429_12423)"/>
<g filter="url(#filter1_f_1429_12423)" style="mix-blend-mode:plus-lighter">
<path d="M17.1034 88.9991C21.474 88.9437 25 85.3835 25 80.9997L33 80.9997L33 88.9997C28.5818 88.9997 25 92.5815 25 96.9997L17 96.9997L17 88.9997L17.1034 88.9991ZM9.00001 80.9997L9.00001 96.9997C9.00001 101.418 12.5818 105 17 105L33 105L33 96.9997L41 96.9997L41 80.9997C41 76.5814 37.4183 72.9997 33 72.9997L17 72.9997L17 80.9997L9.00001 80.9997Z" fill="url(#paint6_radial_1429_12423)" fill-opacity="0.1"/>
<path d="M41.5 80.9998C41.5 76.3054 37.6944 72.4998 33 72.4998L16.5 72.4998L16.5 80.4998L8.5 80.4998L8.5 96.9998C8.50001 101.694 12.3056 105.5 17 105.5L33.5 105.5L33.5 97.4998L41.5 97.4998L41.5 80.9998ZM32.5 88.5154C28.2038 88.7646 24.7649 92.2036 24.5156 96.4998L17.5 96.4998L17.5 89.4851C21.7963 89.2358 25.2351 85.7959 25.4844 81.4998L32.5 81.4998L32.5 88.5154Z" stroke="url(#paint7_linear_1429_12423)"/>
</g>
<path d="M8.5 144.5L16.5 144.5L16.5 136.5L33.5 136.5L33.5 144.5L41.5 144.5L41.5 161.5L33.5 161.5L33.5 169.5L16.5 169.5L16.5 161.5L8.5 161.5L8.5 144.5ZM32.5 160.5L32.5 145.5L17.5 145.5L17.5 160.5L32.5 160.5ZM21.5 153C21.5 151.067 23.067 149.5 25 149.5C26.933 149.5 28.5 151.067 28.5 153C28.5 154.933 26.933 156.5 25 156.5C23.067 156.5 21.5 154.933 21.5 153Z" fill="url(#paint8_radial_1429_12423)" fill-opacity="0.1" stroke="url(#paint9_linear_1429_12423)"/>
<g filter="url(#filter2_f_1429_12423)" style="mix-blend-mode:plus-lighter">
<path d="M41.0001 145L41.0001 161L33.0001 161L33.0001 145L41.0001 145ZM33.0001 161L33.0001 169L17 169L17 161L33.0001 161ZM33.0001 137L33.0001 145L17 145L17 137L33.0001 137ZM22 153C22 151.343 23.3432 150 25 150C26.6569 150 28 151.343 28 153C28 154.657 26.6569 156 25 156C23.3432 156 22 154.657 22 153ZM17 145L17 161L9 161L9 145L17 145Z" fill="url(#paint10_radial_1429_12423)" fill-opacity="0.1"/>
<path d="M8.5 144.5L16.5 144.5L16.5 136.5L33.5 136.5L33.5 144.5L41.5 144.5L41.5 161.5L33.5 161.5L33.5 169.5L16.5 169.5L16.5 161.5L8.5 161.5L8.5 144.5ZM32.5 160.5L32.5 145.5L17.5 145.5L17.5 160.5L32.5 160.5ZM21.5 153C21.5 151.067 23.067 149.5 25 149.5C26.933 149.5 28.5 151.067 28.5 153C28.5 154.933 26.933 156.5 25 156.5C23.067 156.5 21.5 154.933 21.5 153Z" stroke="url(#paint11_linear_1429_12423)"/>
</g>
<defs>
<filter id="filter0_f_1429_12423" x="0" y="0" width="50" height="50" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="4" result="effect1_foregroundBlur_1429_12423"/>
</filter>
<filter id="filter1_f_1429_12423" x="0" y="63.9998" width="50" height="50" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="4" result="effect1_foregroundBlur_1429_12423"/>
</filter>
<filter id="filter2_f_1429_12423" x="0" y="128" width="50" height="50" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="4" result="effect1_foregroundBlur_1429_12423"/>
</filter>
<radialGradient id="paint0_radial_1429_12423" cx="0" cy="0" r="1" gradientTransform="matrix(8.18608 30.551 -36.4362 9.41392 23.1184 11.7824)" gradientUnits="userSpaceOnUse">
<stop stop-color="#3860FF"/>
<stop offset="0.55" stop-color="#0051FF" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint1_linear_1429_12423" x1="19.1958" y1="8.95556" x2="29.4022" y2="33.5257" gradientUnits="userSpaceOnUse">
<stop stop-color="#CDC8FF"/>
<stop offset="0.314723" stop-color="#515AF5" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<radialGradient id="paint2_radial_1429_12423" cx="0" cy="0" r="1" gradientTransform="matrix(8.18608 30.551 -36.4362 9.41392 23.1184 11.7824)" gradientUnits="userSpaceOnUse">
<stop stop-color="#3860FF"/>
<stop offset="0.55" stop-color="#0051FF" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint3_linear_1429_12423" x1="19.1958" y1="8.95556" x2="29.4022" y2="33.5257" gradientUnits="userSpaceOnUse">
<stop stop-color="#CDC8FF"/>
<stop offset="0.314723" stop-color="#515AF5" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<radialGradient id="paint4_radial_1429_12423" cx="0" cy="0" r="1" gradientTransform="matrix(-26 11.6667 14.1581 30.8101 35.3333 81.6664)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000DFF"/>
<stop offset="0.287094" stop-color="#0051FF" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint5_linear_1429_12423" x1="30.8042" y1="72.9553" x2="20.5978" y2="97.5255" gradientUnits="userSpaceOnUse">
<stop stop-color="#CDC8FF"/>
<stop offset="0.314723" stop-color="#515AF5" stop-opacity="0.5"/>
<stop offset="1"/>
</linearGradient>
<radialGradient id="paint6_radial_1429_12423" cx="0" cy="0" r="1" gradientTransform="matrix(-26 11.6667 14.1581 30.8101 35.3333 81.6664)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000DFF"/>
<stop offset="0.287094" stop-color="#0051FF" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint7_linear_1429_12423" x1="30.8042" y1="72.9553" x2="20.5978" y2="97.5255" gradientUnits="userSpaceOnUse">
<stop stop-color="#CDC8FF"/>
<stop offset="0.314723" stop-color="#515AF5" stop-opacity="0.5"/>
<stop offset="1"/>
</linearGradient>
<radialGradient id="paint8_radial_1429_12423" cx="0" cy="0" r="1" gradientTransform="matrix(1.53377 25.4941 -30.3489 1.553 23.1184 139.782)" gradientUnits="userSpaceOnUse">
<stop stop-color="#008CFF"/>
<stop offset="0.287094" stop-color="#0051FF" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint9_linear_1429_12423" x1="19.1958" y1="136.955" x2="29.4021" y2="161.526" gradientUnits="userSpaceOnUse">
<stop stop-color="#CDC8FF"/>
<stop offset="0.314723" stop-color="#515AF5" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<radialGradient id="paint10_radial_1429_12423" cx="0" cy="0" r="1" gradientTransform="matrix(1.53377 25.4941 -30.3489 1.553 23.1184 139.782)" gradientUnits="userSpaceOnUse">
<stop stop-color="#008CFF"/>
<stop offset="0.287094" stop-color="#0051FF" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint11_linear_1429_12423" x1="19.1958" y1="136.955" x2="29.4021" y2="161.526" gradientUnits="userSpaceOnUse">
<stop stop-color="#CDC8FF"/>
<stop offset="0.314723" stop-color="#515AF5" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>

BIN
public/assets/images/copilot_side_decor_right.png

After

Width: 50  |  Height: 178  |  Size: 14 KiB

94
public/assets/images/copilot_side_decor_right.svg

@ -0,0 +1,94 @@
<svg width="50" height="178" viewBox="0 0 50 178" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.043 25C18.9072 26.4772 23.5228 31.0928 25 36.957C26.4771 31.0931 31.0923 26.4774 36.9561 25C31.0923 23.5226 26.4771 18.9069 25 13.043C23.5228 18.9072 18.9072 23.5228 13.043 25ZM33.5 8.5L33.5 9C33.5 13.1421 36.8579 16.5 41 16.5L41.5 16.5L41.5 33.5L41 33.5C36.8579 33.5 33.5 36.8579 33.5 41L33.5 41.5L16.5 41.5L16.5 41C16.5 36.8579 13.1421 33.5 9 33.5L8.5 33.5L8.5 16.5L9 16.5C13.1421 16.5 16.5 13.1421 16.5 9L16.5 8.5L33.5 8.5Z" fill="url(#paint0_radial_1429_12433)" fill-opacity="0.1" stroke="url(#paint1_linear_1429_12433)"/>
<g filter="url(#filter0_f_1429_12433)" style="mix-blend-mode:plus-lighter">
<path d="M25 41C25 32.1635 32.1635 25 41 25L41 33C36.5817 33 33 36.5817 33 41L25 41ZM33 8.99992C33 13.4182 36.5817 16.9999 41 16.9999L41 25C32.1635 25 25 17.8364 25 8.99992L33 8.99992ZM9 25C17.8365 25 25 32.1635 25 41L17 41C17 36.5817 13.4182 33 9 33L9 25ZM9 16.9999C13.4182 16.9999 17 13.4182 17 8.99992L25 8.99992C25 17.8364 17.8365 25 9 25L9 16.9999Z" fill="url(#paint2_radial_1429_12433)" fill-opacity="0.1"/>
<path d="M13.043 25C18.9072 26.4772 23.5228 31.0928 25 36.957C26.4771 31.0931 31.0923 26.4774 36.9561 25C31.0923 23.5226 26.4771 18.9069 25 13.043C23.5228 18.9072 18.9072 23.5228 13.043 25ZM33.5 8.5L33.5 9C33.5 13.1421 36.8579 16.5 41 16.5L41.5 16.5L41.5 33.5L41 33.5C36.8579 33.5 33.5 36.8579 33.5 41L33.5 41.5L16.5 41.5L16.5 41C16.5 36.8579 13.1421 33.5 9 33.5L8.5 33.5L8.5 16.5L9 16.5C13.1421 16.5 16.5 13.1421 16.5 9L16.5 8.5L33.5 8.5Z" stroke="url(#paint3_linear_1429_12433)"/>
</g>
<path d="M41.5 80.9998C41.5 76.3054 37.6944 72.4998 33 72.4998L16.5 72.4998L16.5 80.4998L8.5 80.4998L8.5 96.9998C8.50001 101.694 12.3056 105.5 17 105.5L33.5 105.5L33.5 97.4998L41.5 97.4998L41.5 80.9998ZM32.5 88.5154C28.2038 88.7646 24.7649 92.2036 24.5156 96.4998L17.5 96.4998L17.5 89.4851C21.7963 89.2358 25.2351 85.7959 25.4844 81.4998L32.5 81.4998L32.5 88.5154Z" fill="url(#paint4_radial_1429_12433)" fill-opacity="0.1" stroke="url(#paint5_linear_1429_12433)"/>
<g filter="url(#filter1_f_1429_12433)" style="mix-blend-mode:plus-lighter">
<path d="M17.1034 88.9991C21.474 88.9437 25 85.3835 25 80.9997L33 80.9997L33 88.9997C28.5818 88.9997 25 92.5815 25 96.9997L17 96.9997L17 88.9997L17.1034 88.9991ZM9.00001 80.9997L9.00001 96.9997C9.00001 101.418 12.5818 105 17 105L33 105L33 96.9997L41 96.9997L41 80.9997C41 76.5814 37.4183 72.9997 33 72.9997L17 72.9997L17 80.9997L9.00001 80.9997Z" fill="url(#paint6_radial_1429_12433)" fill-opacity="0.1"/>
<path d="M41.5 80.9998C41.5 76.3054 37.6944 72.4998 33 72.4998L16.5 72.4998L16.5 80.4998L8.5 80.4998L8.5 96.9998C8.50001 101.694 12.3056 105.5 17 105.5L33.5 105.5L33.5 97.4998L41.5 97.4998L41.5 80.9998ZM32.5 88.5154C28.2038 88.7646 24.7649 92.2036 24.5156 96.4998L17.5 96.4998L17.5 89.4851C21.7963 89.2358 25.2351 85.7959 25.4844 81.4998L32.5 81.4998L32.5 88.5154Z" stroke="url(#paint7_linear_1429_12433)"/>
</g>
<path d="M8.5 144.5L16.5 144.5L16.5 136.5L33.5 136.5L33.5 144.5L41.5 144.5L41.5 161.5L33.5 161.5L33.5 169.5L16.5 169.5L16.5 161.5L8.5 161.5L8.5 144.5ZM32.5 160.5L32.5 145.5L17.5 145.5L17.5 160.5L32.5 160.5ZM21.5 153C21.5 151.067 23.067 149.5 25 149.5C26.933 149.5 28.5 151.067 28.5 153C28.5 154.933 26.933 156.5 25 156.5C23.067 156.5 21.5 154.933 21.5 153Z" fill="url(#paint8_radial_1429_12433)" fill-opacity="0.1" stroke="url(#paint9_linear_1429_12433)"/>
<g filter="url(#filter2_f_1429_12433)" style="mix-blend-mode:plus-lighter">
<path d="M41.0001 145L41.0001 161L33.0001 161L33.0001 145L41.0001 145ZM33.0001 161L33.0001 169L17 169L17 161L33.0001 161ZM33.0001 137L33.0001 145L17 145L17 137L33.0001 137ZM22 153C22 151.343 23.3432 150 25 150C26.6569 150 28 151.343 28 153C28 154.657 26.6569 156 25 156C23.3432 156 22 154.657 22 153ZM17 145L17 161L9 161L9 145L17 145Z" fill="url(#paint10_radial_1429_12433)" fill-opacity="0.1"/>
<path d="M8.5 144.5L16.5 144.5L16.5 136.5L33.5 136.5L33.5 144.5L41.5 144.5L41.5 161.5L33.5 161.5L33.5 169.5L16.5 169.5L16.5 161.5L8.5 161.5L8.5 144.5ZM32.5 160.5L32.5 145.5L17.5 145.5L17.5 160.5L32.5 160.5ZM21.5 153C21.5 151.067 23.067 149.5 25 149.5C26.933 149.5 28.5 151.067 28.5 153C28.5 154.933 26.933 156.5 25 156.5C23.067 156.5 21.5 154.933 21.5 153Z" stroke="url(#paint11_linear_1429_12433)"/>
</g>
<defs>
<filter id="filter0_f_1429_12433" x="0" y="0" width="50" height="50" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="4" result="effect1_foregroundBlur_1429_12433"/>
</filter>
<filter id="filter1_f_1429_12433" x="0" y="63.9998" width="50" height="50" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="4" result="effect1_foregroundBlur_1429_12433"/>
</filter>
<filter id="filter2_f_1429_12433" x="0" y="128" width="50" height="50" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="4" result="effect1_foregroundBlur_1429_12433"/>
</filter>
<radialGradient id="paint0_radial_1429_12433" cx="0" cy="0" r="1" gradientTransform="matrix(8.18608 30.551 -36.4362 9.41392 23.1184 11.7824)" gradientUnits="userSpaceOnUse">
<stop stop-color="#3860FF"/>
<stop offset="0.55" stop-color="#0051FF" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint1_linear_1429_12433" x1="19.1958" y1="8.95556" x2="29.4022" y2="33.5257" gradientUnits="userSpaceOnUse">
<stop stop-color="#CDC8FF"/>
<stop offset="0.314723" stop-color="#515AF5" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<radialGradient id="paint2_radial_1429_12433" cx="0" cy="0" r="1" gradientTransform="matrix(8.18608 30.551 -36.4362 9.41392 23.1184 11.7824)" gradientUnits="userSpaceOnUse">
<stop stop-color="#3860FF"/>
<stop offset="0.55" stop-color="#0051FF" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint3_linear_1429_12433" x1="19.1958" y1="8.95556" x2="29.4022" y2="33.5257" gradientUnits="userSpaceOnUse">
<stop stop-color="#CDC8FF"/>
<stop offset="0.314723" stop-color="#515AF5" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<radialGradient id="paint4_radial_1429_12433" cx="0" cy="0" r="1" gradientTransform="matrix(-26 11.6667 14.1581 30.8101 35.3333 81.6664)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000DFF"/>
<stop offset="0.287094" stop-color="#0051FF" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint5_linear_1429_12433" x1="30.8042" y1="72.9553" x2="20.5978" y2="97.5255" gradientUnits="userSpaceOnUse">
<stop stop-color="#CDC8FF"/>
<stop offset="0.314723" stop-color="#515AF5" stop-opacity="0.5"/>
<stop offset="1"/>
</linearGradient>
<radialGradient id="paint6_radial_1429_12433" cx="0" cy="0" r="1" gradientTransform="matrix(-26 11.6667 14.1581 30.8101 35.3333 81.6664)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000DFF"/>
<stop offset="0.287094" stop-color="#0051FF" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint7_linear_1429_12433" x1="30.8042" y1="72.9553" x2="20.5978" y2="97.5255" gradientUnits="userSpaceOnUse">
<stop stop-color="#CDC8FF"/>
<stop offset="0.314723" stop-color="#515AF5" stop-opacity="0.5"/>
<stop offset="1"/>
</linearGradient>
<radialGradient id="paint8_radial_1429_12433" cx="0" cy="0" r="1" gradientTransform="matrix(1.53377 25.4941 -30.3489 1.553 23.1184 139.782)" gradientUnits="userSpaceOnUse">
<stop stop-color="#008CFF"/>
<stop offset="0.287094" stop-color="#0051FF" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint9_linear_1429_12433" x1="19.1958" y1="136.955" x2="29.4021" y2="161.526" gradientUnits="userSpaceOnUse">
<stop stop-color="#CDC8FF"/>
<stop offset="0.314723" stop-color="#515AF5" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<radialGradient id="paint10_radial_1429_12433" cx="0" cy="0" r="1" gradientTransform="matrix(1.53377 25.4941 -30.3489 1.553 23.1184 139.782)" gradientUnits="userSpaceOnUse">
<stop stop-color="#008CFF"/>
<stop offset="0.287094" stop-color="#0051FF" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint11_linear_1429_12433" x1="19.1958" y1="136.955" x2="29.4021" y2="161.526" gradientUnits="userSpaceOnUse">
<stop stop-color="#CDC8FF"/>
<stop offset="0.314723" stop-color="#515AF5" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>

16
public/assets/images/dashboard_bottom_glow.svg

@ -0,0 +1,16 @@
<svg width="1316" height="402" viewBox="0 0 1316 402" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_f_4178_61405)">
<rect x="50" y="50" width="1216" height="302" fill="url(#paint0_linear_4178_61405)"/>
</g>
<defs>
<filter id="filter0_f_4178_61405" x="0" y="0" width="1316" height="402" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="0" result="effect1_foregroundBlur_4178_61405"/>
</filter>
<linearGradient id="paint0_linear_4178_61405" x1="658" y1="61.1852" x2="658" y2="352" gradientUnits="userSpaceOnUse">
<stop stop-color="#03070D" stop-opacity="0"/>
<stop offset="0.6" stop-color="#03070D"/>
</linearGradient>
</defs>
</svg>

BIN
public/assets/images/dashboard_image.png

After

Width: 1200  |  Height: 769  |  Size: 271 KiB

15
public/assets/images/dashboard_image.svg
File diff suppressed because it is too large
View File

BIN
public/assets/images/hero_back.png

After

Width: 1856  |  Height: 566  |  Size: 1.0 MiB

1214
public/assets/images/hero_back.svg
File diff suppressed because it is too large
View File

9
public/assets/images/hero_btn_icon.svg

@ -0,0 +1,9 @@
<svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.9186 2.5321C4.53086 2.98608 3.52663 3.5807 2.47006 4.57404C0.953739 5.99953 0.167586 8.03605 0.451301 9.80348C0.588804 10.6601 0.908105 11.2443 1.46187 11.6525C1.76873 11.8788 1.92419 11.9436 2.39703 12.0425C2.66002 12.0976 3.80331 11.9101 4.18072 11.7502C4.84157 11.47 5.83942 10.9193 6.5872 10.4222C7.36543 9.90476 9.64177 8.26946 10.0849 7.90955C10.6078 7.48471 13.7106 5.24147 14.1925 4.93983C14.4913 4.75276 14.7656 4.56252 14.802 4.51709C14.8571 4.44837 14.7449 4.34528 14.1339 3.90294C13.7301 3.61057 13.1196 3.2313 12.7771 3.0601C12.2134 2.77831 11.0744 2.35585 10.7822 2.32016C10.7183 2.31239 10.4683 2.26872 10.2267 2.22322C9.62447 2.10977 9.30876 2.08501 8.59455 2.09522C7.85136 2.10585 6.59424 2.31107 5.9186 2.5321ZM20.0974 0.21646C19.7472 0.372648 19.7057 0.398021 19.2146 0.753694L18.8311 1.03148L18.099 0.997432C17.6965 0.978769 17.3456 0.975312 17.3195 0.989865C17.2935 1.00441 17.4955 1.1996 17.7684 1.42365C18.4638 1.99432 19.1402 2.77793 19.4746 3.40042C19.5931 3.62072 19.7369 3.64766 19.7041 3.44331C19.6925 3.37091 19.6931 3.23505 19.7054 3.14137C19.7271 2.97736 19.7507 2.59341 19.7628 2.20714C19.7665 2.087 19.8222 1.97455 19.9225 1.88495C20.1868 1.64859 20.6274 1.00116 20.8096 0.581685C21.0786 -0.0381996 21.0786 -0.0379192 20.7062 0.029116C20.532 0.060456 20.2581 0.144778 20.0974 0.21646ZM17.0343 3.48684C16.6395 3.85757 15.5853 4.8365 14.6916 5.66219C13.7979 6.48786 12.2919 7.88146 11.3449 8.75901C9.23599 10.7134 9.07108 10.866 7.86264 11.9818C6.27014 13.4524 3.82622 15.714 2.43327 17.0062C1.88803 17.5119 1.10984 18.2309 0.703963 18.6037C0.298084 18.9765 -0.0183257 19.2929 0.000825562 19.3069C0.0317859 19.3295 0.691358 19.0013 0.960528 18.8294C1.01734 18.7931 1.13463 18.7255 1.22118 18.6793C1.48202 18.5396 2.15588 18.1649 2.2668 18.0977C2.3239 18.0631 2.87415 17.7394 3.4896 17.3782C4.10506 17.0172 4.67839 16.6774 4.76368 16.6234C4.84896 16.5693 5.4203 16.2172 6.0333 15.8408C6.64631 15.4645 7.25218 15.0881 7.37969 15.0043C8.34986 14.3671 8.94338 14.0339 9.62919 13.7418C10.4102 13.409 11.1254 13.2278 11.693 13.2187C12.8355 13.2006 13.617 13.6621 14.1352 14.661C14.3606 15.0956 14.484 15.952 14.3941 16.4578C14.1771 17.6758 13.4478 18.7796 12.28 19.6568C11.8892 19.9503 11.813 20.0947 12.1345 19.9322C12.2185 19.8897 12.4888 19.7546 12.7353 19.6318C14.568 18.7189 16.0677 17.1319 16.9452 15.1767C17.1773 14.6595 17.5291 13.6637 17.5138 13.5674C17.5108 13.5488 17.5385 13.4191 17.5752 13.279C17.7048 12.7862 17.7784 12.0171 17.791 11.0235C17.7968 10.5509 17.5229 8.85312 17.3759 8.45209C17.3137 8.28266 17.2141 8.00981 17.1544 7.84572C17.0089 7.44557 16.6245 6.6641 16.3768 6.26483C16.266 6.08633 16.1734 5.92746 16.1709 5.91172C16.1684 5.89598 16.2901 5.6907 16.4414 5.45546C17.0701 4.47767 17.8665 2.99384 17.8426 2.84465C17.8276 2.75113 17.7624 2.80286 17.0343 3.48684Z" fill="url(#paint0_linear_4178_61384)"/>
<defs>
<linearGradient id="paint0_linear_4178_61384" x1="10.5" y1="0" x2="10.5" y2="20" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#BED0F9"/>
</linearGradient>
</defs>
</svg>

BIN
public/assets/images/hero_heading.png

After

Width: 733  |  Height: 152  |  Size: 99 KiB

467
public/assets/images/hero_heading.svg

@ -0,0 +1,467 @@
<svg width="733" height="152" viewBox="0 0 733 152" fill="none" xmlns="http://www.w3.org/2000/svg">
<mask id="path-1-inside-1_4178_61371" fill="white">
<path d="M42.9251 74.0648V33.7908H49.5392V74.0648H42.9251Z"/>
<path d="M57.3958 62.3853V56.4018H76.8932V62.3853H57.3958Z"/>
<path d="M129.866 74.6401C127.182 74.6401 124.747 74.0073 122.562 72.7415C120.376 71.4374 118.632 69.6922 117.328 67.5059C116.063 65.3196 115.43 62.884 115.43 60.199C115.43 57.5141 116.063 55.0977 117.328 52.9497C118.632 50.8018 120.376 49.0949 122.562 47.8292C124.747 46.5251 127.182 45.873 129.866 45.873C132.589 45.873 135.042 46.5059 137.228 47.7716C139.414 49.0374 141.139 50.7634 142.404 52.9497C143.708 55.0977 144.36 57.5141 144.36 60.199C144.36 62.884 143.708 65.3196 142.404 67.5059C141.139 69.6922 139.414 71.4374 137.228 72.7415C135.042 74.0073 132.589 74.6401 129.866 74.6401ZM129.866 68.5415C131.438 68.5415 132.819 68.1963 134.007 67.5059C135.234 66.7771 136.174 65.7799 136.825 64.5141C137.516 63.2484 137.861 61.81 137.861 60.199C137.861 58.5881 137.516 57.1689 136.825 55.9415C136.135 54.7141 135.196 53.7552 134.007 53.0648C132.819 52.336 131.438 51.9716 129.866 51.9716C128.332 51.9716 126.952 52.336 125.725 53.0648C124.536 53.7552 123.597 54.7141 122.907 55.9415C122.255 57.1689 121.929 58.5881 121.929 60.199C121.929 61.81 122.255 63.2484 122.907 64.5141C123.597 65.7799 124.536 66.7771 125.725 67.5059C126.952 68.1963 128.332 68.5415 129.866 68.5415Z"/>
<path d="M228.683 58.7031C228.683 56.3251 229.258 54.5799 230.409 53.4675C231.559 52.3552 233.016 51.799 234.78 51.799C235.585 51.799 236.294 51.9141 236.908 52.1442C237.521 52.3744 238.077 52.7579 238.576 53.2949L242.717 49.0374C241.758 47.9251 240.723 47.1196 239.611 46.621C238.499 46.1223 237.253 45.873 235.872 45.873C232.728 45.873 230.37 46.9662 228.798 49.1525C228.775 49.1846 228.752 49.2168 228.73 49.2493C228.714 49.2717 228.699 49.2943 228.683 49.3169V46.4484H222.356V74.0648H228.683V58.7031Z"/>
<path d="M250.284 72.799C252.508 74.0264 255 74.6401 257.761 74.6401C259.908 74.6401 261.94 74.2374 263.858 73.4319C265.775 72.6264 267.404 71.4374 268.746 69.8648L264.72 65.7799C263.877 66.7388 262.842 67.4675 261.615 67.9662C260.426 68.4648 259.122 68.7141 257.704 68.7141C256.055 68.7141 254.598 68.3689 253.333 67.6785C252.067 66.9497 251.089 65.9333 250.399 64.6292C250.07 64.0061 249.819 63.3349 249.646 62.6155H270.242C270.357 62.0401 270.433 61.5223 270.472 61.0621C270.548 60.5634 270.587 60.084 270.587 59.6237C270.587 56.9771 270.012 54.6182 268.861 52.547C267.749 50.4758 266.197 48.8456 264.203 47.6566C262.247 46.4675 259.985 45.873 257.416 45.873C254.77 45.873 252.355 46.5059 250.169 47.7716C248.022 49.0374 246.316 50.7634 245.05 52.9497C243.785 55.0977 243.152 57.5333 243.152 60.2566C243.152 62.9799 243.785 65.4347 245.05 67.621C246.354 69.8073 248.099 71.5333 250.284 72.799ZM264.359 57.4374H249.666C249.827 56.7937 250.052 56.1991 250.342 55.6538C250.994 54.3881 251.914 53.41 253.102 52.7196C254.291 52.0292 255.691 51.684 257.301 51.684C258.835 51.684 260.119 51.9908 261.154 52.6045C262.228 53.2182 263.052 54.1004 263.628 55.2511C263.95 55.8956 264.194 56.6244 264.359 57.4374Z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M295.673 74.0648V71.0336C294.897 71.9404 293.957 72.7015 292.855 73.3168C291.206 74.199 289.328 74.6401 287.219 74.6401C284.727 74.6401 282.464 74.0073 280.432 72.7415C278.438 71.4758 276.847 69.7689 275.658 67.621C274.508 65.4347 273.933 62.999 273.933 60.3141C273.933 57.5908 274.508 55.1552 275.658 53.0073C276.847 50.821 278.438 49.0949 280.432 47.8292C282.464 46.5251 284.727 45.873 287.219 45.873C289.328 45.873 291.187 46.3333 292.798 47.2538C293.915 47.8515 294.873 48.6076 295.673 49.5221V32.6401H302V74.0648H295.673ZM292.338 67.621C291.187 68.3114 289.826 68.6566 288.254 68.6566C286.72 68.6566 285.359 68.3114 284.171 67.621C283.02 66.8922 282.1 65.8949 281.41 64.6292C280.758 63.3634 280.432 61.9059 280.432 60.2566C280.432 58.6073 280.758 57.1497 281.41 55.884C282.1 54.6182 283.02 53.6401 284.171 52.9497C285.359 52.221 286.72 51.8566 288.254 51.8566C289.826 51.8566 291.187 52.221 292.338 52.9497C293.526 53.6401 294.446 54.6182 295.098 55.884C295.75 57.1497 296.076 58.6073 296.076 60.2566C296.076 61.9059 295.75 63.3634 295.098 64.6292C294.446 65.8949 293.526 66.8922 292.338 67.621Z"/>
<path d="M196.982 72.799C199.206 74.0264 201.698 74.6401 204.459 74.6401C206.606 74.6401 208.639 74.2374 210.556 73.4319C212.473 72.6264 214.102 71.4374 215.444 69.8648L211.418 65.7799C210.575 66.7388 209.54 67.4675 208.313 67.9662C207.124 68.4648 205.82 68.7141 204.402 68.7141C202.753 68.7141 201.296 68.3689 200.031 67.6785C198.765 66.9497 197.788 65.9333 197.097 64.6292C196.768 64.0061 196.517 63.3349 196.344 62.6155H216.94C217.055 62.0401 217.132 61.5223 217.17 61.0621C217.247 60.5634 217.285 60.084 217.285 59.6237C217.285 56.9771 216.71 54.6182 215.559 52.547C214.448 50.4758 212.895 48.8456 210.901 47.6566C208.945 46.4675 206.683 45.873 204.114 45.873C201.468 45.873 199.053 46.5059 196.867 47.7716C194.72 49.0374 193.014 50.7634 191.749 52.9497C190.483 55.0977 189.851 57.5333 189.851 60.2566C189.851 62.9799 190.483 65.4347 191.749 67.621C193.052 69.8073 194.797 71.5333 196.982 72.799ZM211.058 57.4374H196.364C196.525 56.7937 196.75 56.1991 197.04 55.6538C197.692 54.3881 198.612 53.41 199.801 52.7196C200.989 52.0292 202.389 51.684 203.999 51.684C205.533 51.684 206.817 51.9908 207.853 52.6045C208.926 53.2182 209.751 54.1004 210.326 55.2511C210.648 55.8956 210.892 56.6244 211.058 57.4374Z"/>
<path d="M175.291 63.896L168.962 46.4484H165.281L158.952 63.896L152.455 46.4484H145.899L156.999 74.0648H160.68L167.122 57.6082L173.563 74.0648H177.244L188.344 46.4484H181.788L175.291 63.896Z"/>
<path d="M91.3832 53.1223V39.5442H99.3777C100.758 39.5442 101.966 39.8319 103.001 40.4073C104.075 40.9442 104.918 41.7305 105.532 42.7662C106.145 43.7634 106.452 44.9525 106.452 46.3333C106.452 47.7141 106.145 48.9223 105.532 49.9579C104.918 50.9552 104.075 51.7415 103.001 52.3168C101.966 52.8538 100.758 53.1223 99.3777 53.1223H91.3832ZM91.3832 58.8758H99.7228C102.253 58.8758 104.516 58.3579 106.509 57.3223C108.542 56.2867 110.133 54.8292 111.283 52.9497C112.472 51.0703 113.066 48.8648 113.066 46.3333C113.066 43.8018 112.472 41.5963 111.283 39.7169C110.133 37.8374 108.542 36.3799 106.509 35.3442C104.516 34.3086 102.253 33.7908 99.7228 33.7908H91.3832H89.3127H84.769V74.0648H91.3832V58.8758Z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.404 60.5442L18.8018 44.4876L25.143 60.5442H12.404ZM27.4152 66.2977H10.1116L7.01676 74.0648H0L16.5641 33.7908H21.1653L37.6144 74.0648H30.4826L27.4152 66.2977Z"/>
</mask>
<path d="M42.9251 74.0648V33.7908H49.5392V74.0648H42.9251Z" fill="url(#paint0_linear_4178_61371)"/>
<path d="M57.3958 62.3853V56.4018H76.8932V62.3853H57.3958Z" fill="url(#paint1_linear_4178_61371)"/>
<path d="M129.866 74.6401C127.182 74.6401 124.747 74.0073 122.562 72.7415C120.376 71.4374 118.632 69.6922 117.328 67.5059C116.063 65.3196 115.43 62.884 115.43 60.199C115.43 57.5141 116.063 55.0977 117.328 52.9497C118.632 50.8018 120.376 49.0949 122.562 47.8292C124.747 46.5251 127.182 45.873 129.866 45.873C132.589 45.873 135.042 46.5059 137.228 47.7716C139.414 49.0374 141.139 50.7634 142.404 52.9497C143.708 55.0977 144.36 57.5141 144.36 60.199C144.36 62.884 143.708 65.3196 142.404 67.5059C141.139 69.6922 139.414 71.4374 137.228 72.7415C135.042 74.0073 132.589 74.6401 129.866 74.6401ZM129.866 68.5415C131.438 68.5415 132.819 68.1963 134.007 67.5059C135.234 66.7771 136.174 65.7799 136.825 64.5141C137.516 63.2484 137.861 61.81 137.861 60.199C137.861 58.5881 137.516 57.1689 136.825 55.9415C136.135 54.7141 135.196 53.7552 134.007 53.0648C132.819 52.336 131.438 51.9716 129.866 51.9716C128.332 51.9716 126.952 52.336 125.725 53.0648C124.536 53.7552 123.597 54.7141 122.907 55.9415C122.255 57.1689 121.929 58.5881 121.929 60.199C121.929 61.81 122.255 63.2484 122.907 64.5141C123.597 65.7799 124.536 66.7771 125.725 67.5059C126.952 68.1963 128.332 68.5415 129.866 68.5415Z" fill="url(#paint2_linear_4178_61371)"/>
<path d="M228.683 58.7031C228.683 56.3251 229.258 54.5799 230.409 53.4675C231.559 52.3552 233.016 51.799 234.78 51.799C235.585 51.799 236.294 51.9141 236.908 52.1442C237.521 52.3744 238.077 52.7579 238.576 53.2949L242.717 49.0374C241.758 47.9251 240.723 47.1196 239.611 46.621C238.499 46.1223 237.253 45.873 235.872 45.873C232.728 45.873 230.37 46.9662 228.798 49.1525C228.775 49.1846 228.752 49.2168 228.73 49.2493C228.714 49.2717 228.699 49.2943 228.683 49.3169V46.4484H222.356V74.0648H228.683V58.7031Z" fill="url(#paint3_linear_4178_61371)"/>
<path d="M250.284 72.799C252.508 74.0264 255 74.6401 257.761 74.6401C259.908 74.6401 261.94 74.2374 263.858 73.4319C265.775 72.6264 267.404 71.4374 268.746 69.8648L264.72 65.7799C263.877 66.7388 262.842 67.4675 261.615 67.9662C260.426 68.4648 259.122 68.7141 257.704 68.7141C256.055 68.7141 254.598 68.3689 253.333 67.6785C252.067 66.9497 251.089 65.9333 250.399 64.6292C250.07 64.0061 249.819 63.3349 249.646 62.6155H270.242C270.357 62.0401 270.433 61.5223 270.472 61.0621C270.548 60.5634 270.587 60.084 270.587 59.6237C270.587 56.9771 270.012 54.6182 268.861 52.547C267.749 50.4758 266.197 48.8456 264.203 47.6566C262.247 46.4675 259.985 45.873 257.416 45.873C254.77 45.873 252.355 46.5059 250.169 47.7716C248.022 49.0374 246.316 50.7634 245.05 52.9497C243.785 55.0977 243.152 57.5333 243.152 60.2566C243.152 62.9799 243.785 65.4347 245.05 67.621C246.354 69.8073 248.099 71.5333 250.284 72.799ZM264.359 57.4374H249.666C249.827 56.7937 250.052 56.1991 250.342 55.6538C250.994 54.3881 251.914 53.41 253.102 52.7196C254.291 52.0292 255.691 51.684 257.301 51.684C258.835 51.684 260.119 51.9908 261.154 52.6045C262.228 53.2182 263.052 54.1004 263.628 55.2511C263.95 55.8956 264.194 56.6244 264.359 57.4374Z" fill="url(#paint4_linear_4178_61371)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M295.673 74.0648V71.0336C294.897 71.9404 293.957 72.7015 292.855 73.3168C291.206 74.199 289.328 74.6401 287.219 74.6401C284.727 74.6401 282.464 74.0073 280.432 72.7415C278.438 71.4758 276.847 69.7689 275.658 67.621C274.508 65.4347 273.933 62.999 273.933 60.3141C273.933 57.5908 274.508 55.1552 275.658 53.0073C276.847 50.821 278.438 49.0949 280.432 47.8292C282.464 46.5251 284.727 45.873 287.219 45.873C289.328 45.873 291.187 46.3333 292.798 47.2538C293.915 47.8515 294.873 48.6076 295.673 49.5221V32.6401H302V74.0648H295.673ZM292.338 67.621C291.187 68.3114 289.826 68.6566 288.254 68.6566C286.72 68.6566 285.359 68.3114 284.171 67.621C283.02 66.8922 282.1 65.8949 281.41 64.6292C280.758 63.3634 280.432 61.9059 280.432 60.2566C280.432 58.6073 280.758 57.1497 281.41 55.884C282.1 54.6182 283.02 53.6401 284.171 52.9497C285.359 52.221 286.72 51.8566 288.254 51.8566C289.826 51.8566 291.187 52.221 292.338 52.9497C293.526 53.6401 294.446 54.6182 295.098 55.884C295.75 57.1497 296.076 58.6073 296.076 60.2566C296.076 61.9059 295.75 63.3634 295.098 64.6292C294.446 65.8949 293.526 66.8922 292.338 67.621Z" fill="url(#paint5_linear_4178_61371)"/>
<path d="M196.982 72.799C199.206 74.0264 201.698 74.6401 204.459 74.6401C206.606 74.6401 208.639 74.2374 210.556 73.4319C212.473 72.6264 214.102 71.4374 215.444 69.8648L211.418 65.7799C210.575 66.7388 209.54 67.4675 208.313 67.9662C207.124 68.4648 205.82 68.7141 204.402 68.7141C202.753 68.7141 201.296 68.3689 200.031 67.6785C198.765 66.9497 197.788 65.9333 197.097 64.6292C196.768 64.0061 196.517 63.3349 196.344 62.6155H216.94C217.055 62.0401 217.132 61.5223 217.17 61.0621C217.247 60.5634 217.285 60.084 217.285 59.6237C217.285 56.9771 216.71 54.6182 215.559 52.547C214.448 50.4758 212.895 48.8456 210.901 47.6566C208.945 46.4675 206.683 45.873 204.114 45.873C201.468 45.873 199.053 46.5059 196.867 47.7716C194.72 49.0374 193.014 50.7634 191.749 52.9497C190.483 55.0977 189.851 57.5333 189.851 60.2566C189.851 62.9799 190.483 65.4347 191.749 67.621C193.052 69.8073 194.797 71.5333 196.982 72.799ZM211.058 57.4374H196.364C196.525 56.7937 196.75 56.1991 197.04 55.6538C197.692 54.3881 198.612 53.41 199.801 52.7196C200.989 52.0292 202.389 51.684 203.999 51.684C205.533 51.684 206.817 51.9908 207.853 52.6045C208.926 53.2182 209.751 54.1004 210.326 55.2511C210.648 55.8956 210.892 56.6244 211.058 57.4374Z" fill="url(#paint6_linear_4178_61371)"/>
<path d="M175.291 63.896L168.962 46.4484H165.281L158.952 63.896L152.455 46.4484H145.899L156.999 74.0648H160.68L167.122 57.6082L173.563 74.0648H177.244L188.344 46.4484H181.788L175.291 63.896Z" fill="url(#paint7_linear_4178_61371)"/>
<path d="M91.3832 53.1223V39.5442H99.3777C100.758 39.5442 101.966 39.8319 103.001 40.4073C104.075 40.9442 104.918 41.7305 105.532 42.7662C106.145 43.7634 106.452 44.9525 106.452 46.3333C106.452 47.7141 106.145 48.9223 105.532 49.9579C104.918 50.9552 104.075 51.7415 103.001 52.3168C101.966 52.8538 100.758 53.1223 99.3777 53.1223H91.3832ZM91.3832 58.8758H99.7228C102.253 58.8758 104.516 58.3579 106.509 57.3223C108.542 56.2867 110.133 54.8292 111.283 52.9497C112.472 51.0703 113.066 48.8648 113.066 46.3333C113.066 43.8018 112.472 41.5963 111.283 39.7169C110.133 37.8374 108.542 36.3799 106.509 35.3442C104.516 34.3086 102.253 33.7908 99.7228 33.7908H91.3832H89.3127H84.769V74.0648H91.3832V58.8758Z" fill="url(#paint8_linear_4178_61371)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.404 60.5442L18.8018 44.4876L25.143 60.5442H12.404ZM27.4152 66.2977H10.1116L7.01676 74.0648H0L16.5641 33.7908H21.1653L37.6144 74.0648H30.4826L27.4152 66.2977Z" fill="url(#paint9_linear_4178_61371)"/>
<path d="M42.9251 74.0648V33.7908H49.5392V74.0648H42.9251Z" stroke="url(#paint10_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-1-inside-1_4178_61371)"/>
<path d="M57.3958 62.3853V56.4018H76.8932V62.3853H57.3958Z" stroke="url(#paint11_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-1-inside-1_4178_61371)"/>
<path d="M129.866 74.6401C127.182 74.6401 124.747 74.0073 122.562 72.7415C120.376 71.4374 118.632 69.6922 117.328 67.5059C116.063 65.3196 115.43 62.884 115.43 60.199C115.43 57.5141 116.063 55.0977 117.328 52.9497C118.632 50.8018 120.376 49.0949 122.562 47.8292C124.747 46.5251 127.182 45.873 129.866 45.873C132.589 45.873 135.042 46.5059 137.228 47.7716C139.414 49.0374 141.139 50.7634 142.404 52.9497C143.708 55.0977 144.36 57.5141 144.36 60.199C144.36 62.884 143.708 65.3196 142.404 67.5059C141.139 69.6922 139.414 71.4374 137.228 72.7415C135.042 74.0073 132.589 74.6401 129.866 74.6401ZM129.866 68.5415C131.438 68.5415 132.819 68.1963 134.007 67.5059C135.234 66.7771 136.174 65.7799 136.825 64.5141C137.516 63.2484 137.861 61.81 137.861 60.199C137.861 58.5881 137.516 57.1689 136.825 55.9415C136.135 54.7141 135.196 53.7552 134.007 53.0648C132.819 52.336 131.438 51.9716 129.866 51.9716C128.332 51.9716 126.952 52.336 125.725 53.0648C124.536 53.7552 123.597 54.7141 122.907 55.9415C122.255 57.1689 121.929 58.5881 121.929 60.199C121.929 61.81 122.255 63.2484 122.907 64.5141C123.597 65.7799 124.536 66.7771 125.725 67.5059C126.952 68.1963 128.332 68.5415 129.866 68.5415Z" stroke="url(#paint12_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-1-inside-1_4178_61371)"/>
<path d="M228.683 58.7031C228.683 56.3251 229.258 54.5799 230.409 53.4675C231.559 52.3552 233.016 51.799 234.78 51.799C235.585 51.799 236.294 51.9141 236.908 52.1442C237.521 52.3744 238.077 52.7579 238.576 53.2949L242.717 49.0374C241.758 47.9251 240.723 47.1196 239.611 46.621C238.499 46.1223 237.253 45.873 235.872 45.873C232.728 45.873 230.37 46.9662 228.798 49.1525C228.775 49.1846 228.752 49.2168 228.73 49.2493C228.714 49.2717 228.699 49.2943 228.683 49.3169V46.4484H222.356V74.0648H228.683V58.7031Z" stroke="url(#paint13_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-1-inside-1_4178_61371)"/>
<path d="M250.284 72.799C252.508 74.0264 255 74.6401 257.761 74.6401C259.908 74.6401 261.94 74.2374 263.858 73.4319C265.775 72.6264 267.404 71.4374 268.746 69.8648L264.72 65.7799C263.877 66.7388 262.842 67.4675 261.615 67.9662C260.426 68.4648 259.122 68.7141 257.704 68.7141C256.055 68.7141 254.598 68.3689 253.333 67.6785C252.067 66.9497 251.089 65.9333 250.399 64.6292C250.07 64.0061 249.819 63.3349 249.646 62.6155H270.242C270.357 62.0401 270.433 61.5223 270.472 61.0621C270.548 60.5634 270.587 60.084 270.587 59.6237C270.587 56.9771 270.012 54.6182 268.861 52.547C267.749 50.4758 266.197 48.8456 264.203 47.6566C262.247 46.4675 259.985 45.873 257.416 45.873C254.77 45.873 252.355 46.5059 250.169 47.7716C248.022 49.0374 246.316 50.7634 245.05 52.9497C243.785 55.0977 243.152 57.5333 243.152 60.2566C243.152 62.9799 243.785 65.4347 245.05 67.621C246.354 69.8073 248.099 71.5333 250.284 72.799ZM264.359 57.4374H249.666C249.827 56.7937 250.052 56.1991 250.342 55.6538C250.994 54.3881 251.914 53.41 253.102 52.7196C254.291 52.0292 255.691 51.684 257.301 51.684C258.835 51.684 260.119 51.9908 261.154 52.6045C262.228 53.2182 263.052 54.1004 263.628 55.2511C263.95 55.8956 264.194 56.6244 264.359 57.4374Z" stroke="url(#paint14_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-1-inside-1_4178_61371)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M295.673 74.0648V71.0336C294.897 71.9404 293.957 72.7015 292.855 73.3168C291.206 74.199 289.328 74.6401 287.219 74.6401C284.727 74.6401 282.464 74.0073 280.432 72.7415C278.438 71.4758 276.847 69.7689 275.658 67.621C274.508 65.4347 273.933 62.999 273.933 60.3141C273.933 57.5908 274.508 55.1552 275.658 53.0073C276.847 50.821 278.438 49.0949 280.432 47.8292C282.464 46.5251 284.727 45.873 287.219 45.873C289.328 45.873 291.187 46.3333 292.798 47.2538C293.915 47.8515 294.873 48.6076 295.673 49.5221V32.6401H302V74.0648H295.673ZM292.338 67.621C291.187 68.3114 289.826 68.6566 288.254 68.6566C286.72 68.6566 285.359 68.3114 284.171 67.621C283.02 66.8922 282.1 65.8949 281.41 64.6292C280.758 63.3634 280.432 61.9059 280.432 60.2566C280.432 58.6073 280.758 57.1497 281.41 55.884C282.1 54.6182 283.02 53.6401 284.171 52.9497C285.359 52.221 286.72 51.8566 288.254 51.8566C289.826 51.8566 291.187 52.221 292.338 52.9497C293.526 53.6401 294.446 54.6182 295.098 55.884C295.75 57.1497 296.076 58.6073 296.076 60.2566C296.076 61.9059 295.75 63.3634 295.098 64.6292C294.446 65.8949 293.526 66.8922 292.338 67.621Z" stroke="url(#paint15_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-1-inside-1_4178_61371)"/>
<path d="M196.982 72.799C199.206 74.0264 201.698 74.6401 204.459 74.6401C206.606 74.6401 208.639 74.2374 210.556 73.4319C212.473 72.6264 214.102 71.4374 215.444 69.8648L211.418 65.7799C210.575 66.7388 209.54 67.4675 208.313 67.9662C207.124 68.4648 205.82 68.7141 204.402 68.7141C202.753 68.7141 201.296 68.3689 200.031 67.6785C198.765 66.9497 197.788 65.9333 197.097 64.6292C196.768 64.0061 196.517 63.3349 196.344 62.6155H216.94C217.055 62.0401 217.132 61.5223 217.17 61.0621C217.247 60.5634 217.285 60.084 217.285 59.6237C217.285 56.9771 216.71 54.6182 215.559 52.547C214.448 50.4758 212.895 48.8456 210.901 47.6566C208.945 46.4675 206.683 45.873 204.114 45.873C201.468 45.873 199.053 46.5059 196.867 47.7716C194.72 49.0374 193.014 50.7634 191.749 52.9497C190.483 55.0977 189.851 57.5333 189.851 60.2566C189.851 62.9799 190.483 65.4347 191.749 67.621C193.052 69.8073 194.797 71.5333 196.982 72.799ZM211.058 57.4374H196.364C196.525 56.7937 196.75 56.1991 197.04 55.6538C197.692 54.3881 198.612 53.41 199.801 52.7196C200.989 52.0292 202.389 51.684 203.999 51.684C205.533 51.684 206.817 51.9908 207.853 52.6045C208.926 53.2182 209.751 54.1004 210.326 55.2511C210.648 55.8956 210.892 56.6244 211.058 57.4374Z" stroke="url(#paint16_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-1-inside-1_4178_61371)"/>
<path d="M175.291 63.896L168.962 46.4484H165.281L158.952 63.896L152.455 46.4484H145.899L156.999 74.0648H160.68L167.122 57.6082L173.563 74.0648H177.244L188.344 46.4484H181.788L175.291 63.896Z" stroke="url(#paint17_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-1-inside-1_4178_61371)"/>
<path d="M91.3832 53.1223V39.5442H99.3777C100.758 39.5442 101.966 39.8319 103.001 40.4073C104.075 40.9442 104.918 41.7305 105.532 42.7662C106.145 43.7634 106.452 44.9525 106.452 46.3333C106.452 47.7141 106.145 48.9223 105.532 49.9579C104.918 50.9552 104.075 51.7415 103.001 52.3168C101.966 52.8538 100.758 53.1223 99.3777 53.1223H91.3832ZM91.3832 58.8758H99.7228C102.253 58.8758 104.516 58.3579 106.509 57.3223C108.542 56.2867 110.133 54.8292 111.283 52.9497C112.472 51.0703 113.066 48.8648 113.066 46.3333C113.066 43.8018 112.472 41.5963 111.283 39.7169C110.133 37.8374 108.542 36.3799 106.509 35.3442C104.516 34.3086 102.253 33.7908 99.7228 33.7908H91.3832H89.3127H84.769V74.0648H91.3832V58.8758Z" stroke="url(#paint18_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-1-inside-1_4178_61371)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.404 60.5442L18.8018 44.4876L25.143 60.5442H12.404ZM27.4152 66.2977H10.1116L7.01676 74.0648H0L16.5641 33.7908H21.1653L37.6144 74.0648H30.4826L27.4152 66.2977Z" stroke="url(#paint19_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-1-inside-1_4178_61371)"/>
<g filter="url(#filter0_ddi_4178_61371)">
<mask id="path-2-inside-2_4178_61371" fill="white">
<path d="M333.383 46.1108L345.543 66.096H350.663L362.823 46.1108V74.8H370.183V30H365.063L348.103 57.917L331.143 30H326.023V74.8H333.383V46.1108Z"/>
<path d="M391.802 75.44C389.029 75.44 386.512 74.736 384.25 73.328C382.032 71.92 380.261 70.0213 378.938 67.632C377.658 65.2 377.018 62.4907 377.018 59.504C377.018 56.4747 377.658 53.7653 378.938 51.376C380.261 48.944 382.032 47.024 384.25 45.616C386.512 44.1653 389.029 43.44 391.802 43.44C394.149 43.44 396.218 43.952 398.01 44.976C399.253 45.6408 400.32 46.4818 401.21 47.4991V44.08H408.25V74.8H401.21V71.4282C400.346 72.4368 399.301 73.2835 398.074 73.968C396.24 74.9493 394.149 75.44 391.802 75.44ZM392.954 68.784C395.557 68.784 397.648 67.9093 399.226 66.16C400.848 64.4107 401.658 62.1707 401.658 59.44C401.658 57.6053 401.296 55.984 400.57 54.576C399.845 53.168 398.821 52.08 397.498 51.312C396.218 50.5013 394.704 50.096 392.954 50.096C391.248 50.096 389.733 50.5013 388.41 51.312C387.13 52.08 386.106 53.168 385.338 54.576C384.613 55.984 384.25 57.6053 384.25 59.44C384.25 61.2747 384.613 62.896 385.338 64.304C386.106 65.712 387.13 66.8213 388.41 67.632C389.733 68.4 391.248 68.784 392.954 68.784Z"/>
<path d="M437.119 57.072V74.8H444.159V55.536C444.159 53.5307 443.647 51.6107 442.623 49.776C441.599 47.8987 440.191 46.384 438.399 45.232C436.607 44.0373 434.559 43.44 432.255 43.44C429.994 43.44 427.946 43.9733 426.111 45.04C424.946 45.7057 423.944 46.5427 423.103 47.5509V44.08H416.063V74.8H423.103V57.072C423.103 55.7067 423.402 54.4907 423.999 53.424C424.597 52.3573 425.429 51.5253 426.495 50.928C427.562 50.3307 428.778 50.032 430.143 50.032C432.191 50.032 433.855 50.6933 435.135 52.016C436.458 53.3387 437.119 55.024 437.119 57.072Z"/>
<path d="M464.177 75.44C461.404 75.44 458.887 74.736 456.625 73.328C454.407 71.92 452.636 70.0213 451.313 67.632C450.033 65.2 449.393 62.4907 449.393 59.504C449.393 56.4747 450.033 53.7653 451.313 51.376C452.636 48.944 454.407 47.024 456.625 45.616C458.887 44.1653 461.404 43.44 464.177 43.44C466.524 43.44 468.593 43.952 470.385 44.976C471.628 45.6408 472.695 46.4818 473.585 47.4991V44.08H480.625V74.8H473.585V71.4282C472.721 72.4368 471.676 73.2835 470.449 73.968C468.615 74.9493 466.524 75.44 464.177 75.44ZM465.329 68.784C467.932 68.784 470.023 67.9093 471.601 66.16C473.223 64.4107 474.033 62.1707 474.033 59.44C474.033 57.6053 473.671 55.984 472.945 54.576C472.22 53.168 471.196 52.08 469.873 51.312C468.593 50.5013 467.079 50.096 465.329 50.096C463.623 50.096 462.108 50.5013 460.785 51.312C459.505 52.08 458.481 53.168 457.713 54.576C456.988 55.984 456.625 57.6053 456.625 59.44C456.625 61.2747 456.988 62.896 457.713 64.304C458.481 65.712 459.505 66.8213 460.785 67.632C462.108 68.4 463.623 68.784 465.329 68.784Z"/>
<path d="M510.39 70.2051C509.526 71.2044 508.481 72.032 507.254 72.688C505.42 73.6693 503.308 74.16 500.918 74.16C498.188 74.16 495.713 73.4987 493.494 72.176C491.318 70.8107 489.59 68.9547 488.31 66.608C487.073 64.2613 486.454 61.6373 486.454 58.736C486.454 55.8347 487.073 53.232 488.31 50.928C489.59 48.624 491.318 46.8107 493.494 45.488C495.713 44.1227 498.188 43.44 500.918 43.44C503.35 43.44 505.484 43.9307 507.318 44.912C508.515 45.5519 509.539 46.3551 510.39 47.3216V44.08H517.43V73.52C517.43 76.464 516.748 79.024 515.382 81.2C514.017 83.4187 512.118 85.1467 509.686 86.384C507.254 87.6213 504.438 88.24 501.238 88.24C497.996 88.24 495.158 87.6427 492.726 86.448C490.294 85.296 488.332 83.6533 486.838 81.52L491.446 76.912C492.684 78.448 494.092 79.6 495.67 80.368C497.249 81.136 499.148 81.52 501.366 81.52C504.14 81.52 506.337 80.7947 507.958 79.344C509.58 77.936 510.39 75.9947 510.39 73.52V70.2051ZM502.326 67.504C504.033 67.504 505.526 67.1413 506.806 66.416C508.086 65.6907 509.068 64.688 509.75 63.408C510.476 62.0853 510.838 60.5493 510.838 58.8C510.838 57.0507 510.476 55.536 509.75 54.256C509.068 52.9333 508.086 51.9093 506.806 51.184C505.526 50.4587 504.033 50.096 502.326 50.096C500.62 50.096 499.105 50.4587 497.782 51.184C496.502 51.9093 495.5 52.9333 494.774 54.256C494.049 55.536 493.686 57.0507 493.686 58.8C493.686 60.5067 494.049 62.0213 494.774 63.344C495.5 64.6667 496.502 65.6907 497.782 66.416C499.105 67.1413 500.62 67.504 502.326 67.504Z"/>
<path d="M530.493 62.064H553.411C553.539 61.424 553.624 60.848 553.667 60.336C553.752 59.7813 553.795 59.248 553.795 58.736C553.795 55.792 553.155 53.168 551.875 50.864C550.638 48.56 548.91 46.7467 546.691 45.424C544.515 44.1013 541.998 43.44 539.139 43.44C536.195 43.44 533.507 44.144 531.075 45.552C528.686 46.96 526.787 48.88 525.379 51.312C523.971 53.7013 523.267 56.4107 523.267 59.44C523.267 62.4693 523.971 65.2 525.379 67.632C526.83 70.064 528.771 71.984 531.203 73.392C533.678 74.7573 536.451 75.44 539.523 75.44C541.912 75.44 544.174 74.992 546.307 74.096C548.44 73.2 550.254 71.8773 551.747 70.128L547.267 65.584C546.328 66.6507 545.176 67.4613 543.811 68.016C542.488 68.5707 541.038 68.848 539.459 68.848C537.624 68.848 536.003 68.464 534.595 67.696C533.187 66.8853 532.099 65.7547 531.331 64.304C530.964 63.6109 530.685 62.8642 530.493 62.064ZM530.515 56.304C530.694 55.5879 530.945 54.9266 531.267 54.32C531.992 52.912 533.016 51.824 534.339 51.056C535.662 50.288 537.219 49.904 539.011 49.904C540.718 49.904 542.147 50.2453 543.299 50.928C544.494 51.6107 545.411 52.592 546.051 53.872C546.409 54.589 546.681 55.3996 546.865 56.304H530.515Z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M585.199 48.5579C584.192 46.9754 582.859 45.7388 581.198 44.848C579.449 43.9093 577.486 43.44 575.31 43.44C573.134 43.44 571.172 43.9307 569.422 44.912C568.289 45.5203 567.307 46.2899 566.478 47.2207V44.08H559.438V74.8H566.478V56.496C566.478 55.1307 566.777 53.9787 567.374 53.04C567.972 52.0587 568.761 51.312 569.742 50.8C570.766 50.288 571.918 50.032 573.198 50.032C575.076 50.032 576.654 50.608 577.934 51.76C579.214 52.8693 579.854 54.448 579.854 56.496V74.8H586.894V56.496C586.894 55.1307 587.193 53.9787 587.79 53.04C588.388 52.0587 589.198 51.312 590.222 50.8C591.246 50.288 592.377 50.032 593.614 50.032C595.492 50.032 597.07 50.608 598.35 51.76C599.63 52.8693 600.27 54.448 600.27 56.496V74.8H607.31V54.96C607.31 52.5707 606.777 50.5227 605.71 48.816C604.644 47.1093 603.214 45.7867 601.422 44.848C599.63 43.9093 597.625 43.44 595.406 43.44C593.23 43.44 591.225 43.9307 589.39 44.912C587.713 45.7908 586.316 47.0061 585.199 48.5579Z"/>
<path d="M619.806 62.064H642.723C642.851 61.424 642.937 60.848 642.979 60.336C643.065 59.7813 643.107 59.248 643.107 58.736C643.107 55.792 642.467 53.168 641.187 50.864C639.95 48.56 638.222 46.7467 636.003 45.424C633.827 44.1013 631.31 43.44 628.451 43.44C625.507 43.44 622.819 44.144 620.387 45.552C617.998 46.96 616.099 48.88 614.691 51.312C613.283 53.7013 612.579 56.4107 612.579 59.44C612.579 62.4693 613.283 65.2 614.691 67.632C616.142 70.064 618.083 71.984 620.515 73.392C622.99 74.7573 625.763 75.44 628.835 75.44C631.225 75.44 633.486 74.992 635.619 74.096C637.753 73.2 639.566 71.8773 641.059 70.128L636.579 65.584C635.641 66.6507 634.489 67.4613 633.123 68.016C631.801 68.5707 630.35 68.848 628.771 68.848C626.937 68.848 625.315 68.464 623.907 67.696C622.499 66.8853 621.411 65.7547 620.643 64.304C620.276 63.6109 619.997 62.8642 619.806 62.064ZM619.827 56.304C620.007 55.5879 620.257 54.9266 620.579 54.32C621.305 52.912 622.329 51.824 623.651 51.056C624.974 50.288 626.531 49.904 628.323 49.904C630.03 49.904 631.459 50.2453 632.611 50.928C633.806 51.6107 634.723 52.592 635.363 53.872C635.722 54.589 635.993 55.3996 636.178 56.304H619.827Z"/>
<path d="M669.807 57.072V74.8H676.847V55.536C676.847 53.5307 676.335 51.6107 675.311 49.776C674.287 47.8987 672.879 46.384 671.087 45.232C669.295 44.0373 667.247 43.44 664.943 43.44C662.682 43.44 660.634 43.9733 658.799 45.04C657.634 45.7057 656.631 46.5427 655.791 47.551V44.08H648.751V74.8H655.791V57.072C655.791 55.7067 656.09 54.4907 656.687 53.424C657.284 52.3573 658.116 51.5253 659.183 50.928C660.25 50.3307 661.466 50.032 662.831 50.032C664.879 50.032 666.543 50.6933 667.823 52.016C669.146 53.3387 669.807 55.024 669.807 57.072Z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M695.338 44.08V31.28H688.298V44.08H680.938V50.48H688.298V74.8H695.338V50.48H702.698V44.08H695.338Z"/>
</mask>
<path d="M333.383 46.1108L345.543 66.096H350.663L362.823 46.1108V74.8H370.183V30H365.063L348.103 57.917L331.143 30H326.023V74.8H333.383V46.1108Z" fill="url(#paint20_linear_4178_61371)"/>
<path d="M391.802 75.44C389.029 75.44 386.512 74.736 384.25 73.328C382.032 71.92 380.261 70.0213 378.938 67.632C377.658 65.2 377.018 62.4907 377.018 59.504C377.018 56.4747 377.658 53.7653 378.938 51.376C380.261 48.944 382.032 47.024 384.25 45.616C386.512 44.1653 389.029 43.44 391.802 43.44C394.149 43.44 396.218 43.952 398.01 44.976C399.253 45.6408 400.32 46.4818 401.21 47.4991V44.08H408.25V74.8H401.21V71.4282C400.346 72.4368 399.301 73.2835 398.074 73.968C396.24 74.9493 394.149 75.44 391.802 75.44ZM392.954 68.784C395.557 68.784 397.648 67.9093 399.226 66.16C400.848 64.4107 401.658 62.1707 401.658 59.44C401.658 57.6053 401.296 55.984 400.57 54.576C399.845 53.168 398.821 52.08 397.498 51.312C396.218 50.5013 394.704 50.096 392.954 50.096C391.248 50.096 389.733 50.5013 388.41 51.312C387.13 52.08 386.106 53.168 385.338 54.576C384.613 55.984 384.25 57.6053 384.25 59.44C384.25 61.2747 384.613 62.896 385.338 64.304C386.106 65.712 387.13 66.8213 388.41 67.632C389.733 68.4 391.248 68.784 392.954 68.784Z" fill="url(#paint21_linear_4178_61371)"/>
<path d="M437.119 57.072V74.8H444.159V55.536C444.159 53.5307 443.647 51.6107 442.623 49.776C441.599 47.8987 440.191 46.384 438.399 45.232C436.607 44.0373 434.559 43.44 432.255 43.44C429.994 43.44 427.946 43.9733 426.111 45.04C424.946 45.7057 423.944 46.5427 423.103 47.5509V44.08H416.063V74.8H423.103V57.072C423.103 55.7067 423.402 54.4907 423.999 53.424C424.597 52.3573 425.429 51.5253 426.495 50.928C427.562 50.3307 428.778 50.032 430.143 50.032C432.191 50.032 433.855 50.6933 435.135 52.016C436.458 53.3387 437.119 55.024 437.119 57.072Z" fill="url(#paint22_linear_4178_61371)"/>
<path d="M464.177 75.44C461.404 75.44 458.887 74.736 456.625 73.328C454.407 71.92 452.636 70.0213 451.313 67.632C450.033 65.2 449.393 62.4907 449.393 59.504C449.393 56.4747 450.033 53.7653 451.313 51.376C452.636 48.944 454.407 47.024 456.625 45.616C458.887 44.1653 461.404 43.44 464.177 43.44C466.524 43.44 468.593 43.952 470.385 44.976C471.628 45.6408 472.695 46.4818 473.585 47.4991V44.08H480.625V74.8H473.585V71.4282C472.721 72.4368 471.676 73.2835 470.449 73.968C468.615 74.9493 466.524 75.44 464.177 75.44ZM465.329 68.784C467.932 68.784 470.023 67.9093 471.601 66.16C473.223 64.4107 474.033 62.1707 474.033 59.44C474.033 57.6053 473.671 55.984 472.945 54.576C472.22 53.168 471.196 52.08 469.873 51.312C468.593 50.5013 467.079 50.096 465.329 50.096C463.623 50.096 462.108 50.5013 460.785 51.312C459.505 52.08 458.481 53.168 457.713 54.576C456.988 55.984 456.625 57.6053 456.625 59.44C456.625 61.2747 456.988 62.896 457.713 64.304C458.481 65.712 459.505 66.8213 460.785 67.632C462.108 68.4 463.623 68.784 465.329 68.784Z" fill="url(#paint23_linear_4178_61371)"/>
<path d="M510.39 70.2051C509.526 71.2044 508.481 72.032 507.254 72.688C505.42 73.6693 503.308 74.16 500.918 74.16C498.188 74.16 495.713 73.4987 493.494 72.176C491.318 70.8107 489.59 68.9547 488.31 66.608C487.073 64.2613 486.454 61.6373 486.454 58.736C486.454 55.8347 487.073 53.232 488.31 50.928C489.59 48.624 491.318 46.8107 493.494 45.488C495.713 44.1227 498.188 43.44 500.918 43.44C503.35 43.44 505.484 43.9307 507.318 44.912C508.515 45.5519 509.539 46.3551 510.39 47.3216V44.08H517.43V73.52C517.43 76.464 516.748 79.024 515.382 81.2C514.017 83.4187 512.118 85.1467 509.686 86.384C507.254 87.6213 504.438 88.24 501.238 88.24C497.996 88.24 495.158 87.6427 492.726 86.448C490.294 85.296 488.332 83.6533 486.838 81.52L491.446 76.912C492.684 78.448 494.092 79.6 495.67 80.368C497.249 81.136 499.148 81.52 501.366 81.52C504.14 81.52 506.337 80.7947 507.958 79.344C509.58 77.936 510.39 75.9947 510.39 73.52V70.2051ZM502.326 67.504C504.033 67.504 505.526 67.1413 506.806 66.416C508.086 65.6907 509.068 64.688 509.75 63.408C510.476 62.0853 510.838 60.5493 510.838 58.8C510.838 57.0507 510.476 55.536 509.75 54.256C509.068 52.9333 508.086 51.9093 506.806 51.184C505.526 50.4587 504.033 50.096 502.326 50.096C500.62 50.096 499.105 50.4587 497.782 51.184C496.502 51.9093 495.5 52.9333 494.774 54.256C494.049 55.536 493.686 57.0507 493.686 58.8C493.686 60.5067 494.049 62.0213 494.774 63.344C495.5 64.6667 496.502 65.6907 497.782 66.416C499.105 67.1413 500.62 67.504 502.326 67.504Z" fill="url(#paint24_linear_4178_61371)"/>
<path d="M530.493 62.064H553.411C553.539 61.424 553.624 60.848 553.667 60.336C553.752 59.7813 553.795 59.248 553.795 58.736C553.795 55.792 553.155 53.168 551.875 50.864C550.638 48.56 548.91 46.7467 546.691 45.424C544.515 44.1013 541.998 43.44 539.139 43.44C536.195 43.44 533.507 44.144 531.075 45.552C528.686 46.96 526.787 48.88 525.379 51.312C523.971 53.7013 523.267 56.4107 523.267 59.44C523.267 62.4693 523.971 65.2 525.379 67.632C526.83 70.064 528.771 71.984 531.203 73.392C533.678 74.7573 536.451 75.44 539.523 75.44C541.912 75.44 544.174 74.992 546.307 74.096C548.44 73.2 550.254 71.8773 551.747 70.128L547.267 65.584C546.328 66.6507 545.176 67.4613 543.811 68.016C542.488 68.5707 541.038 68.848 539.459 68.848C537.624 68.848 536.003 68.464 534.595 67.696C533.187 66.8853 532.099 65.7547 531.331 64.304C530.964 63.6109 530.685 62.8642 530.493 62.064ZM530.515 56.304C530.694 55.5879 530.945 54.9266 531.267 54.32C531.992 52.912 533.016 51.824 534.339 51.056C535.662 50.288 537.219 49.904 539.011 49.904C540.718 49.904 542.147 50.2453 543.299 50.928C544.494 51.6107 545.411 52.592 546.051 53.872C546.409 54.589 546.681 55.3996 546.865 56.304H530.515Z" fill="url(#paint25_linear_4178_61371)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M585.199 48.5579C584.192 46.9754 582.859 45.7388 581.198 44.848C579.449 43.9093 577.486 43.44 575.31 43.44C573.134 43.44 571.172 43.9307 569.422 44.912C568.289 45.5203 567.307 46.2899 566.478 47.2207V44.08H559.438V74.8H566.478V56.496C566.478 55.1307 566.777 53.9787 567.374 53.04C567.972 52.0587 568.761 51.312 569.742 50.8C570.766 50.288 571.918 50.032 573.198 50.032C575.076 50.032 576.654 50.608 577.934 51.76C579.214 52.8693 579.854 54.448 579.854 56.496V74.8H586.894V56.496C586.894 55.1307 587.193 53.9787 587.79 53.04C588.388 52.0587 589.198 51.312 590.222 50.8C591.246 50.288 592.377 50.032 593.614 50.032C595.492 50.032 597.07 50.608 598.35 51.76C599.63 52.8693 600.27 54.448 600.27 56.496V74.8H607.31V54.96C607.31 52.5707 606.777 50.5227 605.71 48.816C604.644 47.1093 603.214 45.7867 601.422 44.848C599.63 43.9093 597.625 43.44 595.406 43.44C593.23 43.44 591.225 43.9307 589.39 44.912C587.713 45.7908 586.316 47.0061 585.199 48.5579Z" fill="url(#paint26_linear_4178_61371)"/>
<path d="M619.806 62.064H642.723C642.851 61.424 642.937 60.848 642.979 60.336C643.065 59.7813 643.107 59.248 643.107 58.736C643.107 55.792 642.467 53.168 641.187 50.864C639.95 48.56 638.222 46.7467 636.003 45.424C633.827 44.1013 631.31 43.44 628.451 43.44C625.507 43.44 622.819 44.144 620.387 45.552C617.998 46.96 616.099 48.88 614.691 51.312C613.283 53.7013 612.579 56.4107 612.579 59.44C612.579 62.4693 613.283 65.2 614.691 67.632C616.142 70.064 618.083 71.984 620.515 73.392C622.99 74.7573 625.763 75.44 628.835 75.44C631.225 75.44 633.486 74.992 635.619 74.096C637.753 73.2 639.566 71.8773 641.059 70.128L636.579 65.584C635.641 66.6507 634.489 67.4613 633.123 68.016C631.801 68.5707 630.35 68.848 628.771 68.848C626.937 68.848 625.315 68.464 623.907 67.696C622.499 66.8853 621.411 65.7547 620.643 64.304C620.276 63.6109 619.997 62.8642 619.806 62.064ZM619.827 56.304C620.007 55.5879 620.257 54.9266 620.579 54.32C621.305 52.912 622.329 51.824 623.651 51.056C624.974 50.288 626.531 49.904 628.323 49.904C630.03 49.904 631.459 50.2453 632.611 50.928C633.806 51.6107 634.723 52.592 635.363 53.872C635.722 54.589 635.993 55.3996 636.178 56.304H619.827Z" fill="url(#paint27_linear_4178_61371)"/>
<path d="M669.807 57.072V74.8H676.847V55.536C676.847 53.5307 676.335 51.6107 675.311 49.776C674.287 47.8987 672.879 46.384 671.087 45.232C669.295 44.0373 667.247 43.44 664.943 43.44C662.682 43.44 660.634 43.9733 658.799 45.04C657.634 45.7057 656.631 46.5427 655.791 47.551V44.08H648.751V74.8H655.791V57.072C655.791 55.7067 656.09 54.4907 656.687 53.424C657.284 52.3573 658.116 51.5253 659.183 50.928C660.25 50.3307 661.466 50.032 662.831 50.032C664.879 50.032 666.543 50.6933 667.823 52.016C669.146 53.3387 669.807 55.024 669.807 57.072Z" fill="url(#paint28_linear_4178_61371)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M695.338 44.08V31.28H688.298V44.08H680.938V50.48H688.298V74.8H695.338V50.48H702.698V44.08H695.338Z" fill="url(#paint29_linear_4178_61371)"/>
<path d="M333.383 46.1108L345.543 66.096H350.663L362.823 46.1108V74.8H370.183V30H365.063L348.103 57.917L331.143 30H326.023V74.8H333.383V46.1108Z" stroke="url(#paint30_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-2-inside-2_4178_61371)"/>
<path d="M391.802 75.44C389.029 75.44 386.512 74.736 384.25 73.328C382.032 71.92 380.261 70.0213 378.938 67.632C377.658 65.2 377.018 62.4907 377.018 59.504C377.018 56.4747 377.658 53.7653 378.938 51.376C380.261 48.944 382.032 47.024 384.25 45.616C386.512 44.1653 389.029 43.44 391.802 43.44C394.149 43.44 396.218 43.952 398.01 44.976C399.253 45.6408 400.32 46.4818 401.21 47.4991V44.08H408.25V74.8H401.21V71.4282C400.346 72.4368 399.301 73.2835 398.074 73.968C396.24 74.9493 394.149 75.44 391.802 75.44ZM392.954 68.784C395.557 68.784 397.648 67.9093 399.226 66.16C400.848 64.4107 401.658 62.1707 401.658 59.44C401.658 57.6053 401.296 55.984 400.57 54.576C399.845 53.168 398.821 52.08 397.498 51.312C396.218 50.5013 394.704 50.096 392.954 50.096C391.248 50.096 389.733 50.5013 388.41 51.312C387.13 52.08 386.106 53.168 385.338 54.576C384.613 55.984 384.25 57.6053 384.25 59.44C384.25 61.2747 384.613 62.896 385.338 64.304C386.106 65.712 387.13 66.8213 388.41 67.632C389.733 68.4 391.248 68.784 392.954 68.784Z" stroke="url(#paint31_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-2-inside-2_4178_61371)"/>
<path d="M437.119 57.072V74.8H444.159V55.536C444.159 53.5307 443.647 51.6107 442.623 49.776C441.599 47.8987 440.191 46.384 438.399 45.232C436.607 44.0373 434.559 43.44 432.255 43.44C429.994 43.44 427.946 43.9733 426.111 45.04C424.946 45.7057 423.944 46.5427 423.103 47.5509V44.08H416.063V74.8H423.103V57.072C423.103 55.7067 423.402 54.4907 423.999 53.424C424.597 52.3573 425.429 51.5253 426.495 50.928C427.562 50.3307 428.778 50.032 430.143 50.032C432.191 50.032 433.855 50.6933 435.135 52.016C436.458 53.3387 437.119 55.024 437.119 57.072Z" stroke="url(#paint32_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-2-inside-2_4178_61371)"/>
<path d="M464.177 75.44C461.404 75.44 458.887 74.736 456.625 73.328C454.407 71.92 452.636 70.0213 451.313 67.632C450.033 65.2 449.393 62.4907 449.393 59.504C449.393 56.4747 450.033 53.7653 451.313 51.376C452.636 48.944 454.407 47.024 456.625 45.616C458.887 44.1653 461.404 43.44 464.177 43.44C466.524 43.44 468.593 43.952 470.385 44.976C471.628 45.6408 472.695 46.4818 473.585 47.4991V44.08H480.625V74.8H473.585V71.4282C472.721 72.4368 471.676 73.2835 470.449 73.968C468.615 74.9493 466.524 75.44 464.177 75.44ZM465.329 68.784C467.932 68.784 470.023 67.9093 471.601 66.16C473.223 64.4107 474.033 62.1707 474.033 59.44C474.033 57.6053 473.671 55.984 472.945 54.576C472.22 53.168 471.196 52.08 469.873 51.312C468.593 50.5013 467.079 50.096 465.329 50.096C463.623 50.096 462.108 50.5013 460.785 51.312C459.505 52.08 458.481 53.168 457.713 54.576C456.988 55.984 456.625 57.6053 456.625 59.44C456.625 61.2747 456.988 62.896 457.713 64.304C458.481 65.712 459.505 66.8213 460.785 67.632C462.108 68.4 463.623 68.784 465.329 68.784Z" stroke="url(#paint33_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-2-inside-2_4178_61371)"/>
<path d="M510.39 70.2051C509.526 71.2044 508.481 72.032 507.254 72.688C505.42 73.6693 503.308 74.16 500.918 74.16C498.188 74.16 495.713 73.4987 493.494 72.176C491.318 70.8107 489.59 68.9547 488.31 66.608C487.073 64.2613 486.454 61.6373 486.454 58.736C486.454 55.8347 487.073 53.232 488.31 50.928C489.59 48.624 491.318 46.8107 493.494 45.488C495.713 44.1227 498.188 43.44 500.918 43.44C503.35 43.44 505.484 43.9307 507.318 44.912C508.515 45.5519 509.539 46.3551 510.39 47.3216V44.08H517.43V73.52C517.43 76.464 516.748 79.024 515.382 81.2C514.017 83.4187 512.118 85.1467 509.686 86.384C507.254 87.6213 504.438 88.24 501.238 88.24C497.996 88.24 495.158 87.6427 492.726 86.448C490.294 85.296 488.332 83.6533 486.838 81.52L491.446 76.912C492.684 78.448 494.092 79.6 495.67 80.368C497.249 81.136 499.148 81.52 501.366 81.52C504.14 81.52 506.337 80.7947 507.958 79.344C509.58 77.936 510.39 75.9947 510.39 73.52V70.2051ZM502.326 67.504C504.033 67.504 505.526 67.1413 506.806 66.416C508.086 65.6907 509.068 64.688 509.75 63.408C510.476 62.0853 510.838 60.5493 510.838 58.8C510.838 57.0507 510.476 55.536 509.75 54.256C509.068 52.9333 508.086 51.9093 506.806 51.184C505.526 50.4587 504.033 50.096 502.326 50.096C500.62 50.096 499.105 50.4587 497.782 51.184C496.502 51.9093 495.5 52.9333 494.774 54.256C494.049 55.536 493.686 57.0507 493.686 58.8C493.686 60.5067 494.049 62.0213 494.774 63.344C495.5 64.6667 496.502 65.6907 497.782 66.416C499.105 67.1413 500.62 67.504 502.326 67.504Z" stroke="url(#paint34_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-2-inside-2_4178_61371)"/>
<path d="M530.493 62.064H553.411C553.539 61.424 553.624 60.848 553.667 60.336C553.752 59.7813 553.795 59.248 553.795 58.736C553.795 55.792 553.155 53.168 551.875 50.864C550.638 48.56 548.91 46.7467 546.691 45.424C544.515 44.1013 541.998 43.44 539.139 43.44C536.195 43.44 533.507 44.144 531.075 45.552C528.686 46.96 526.787 48.88 525.379 51.312C523.971 53.7013 523.267 56.4107 523.267 59.44C523.267 62.4693 523.971 65.2 525.379 67.632C526.83 70.064 528.771 71.984 531.203 73.392C533.678 74.7573 536.451 75.44 539.523 75.44C541.912 75.44 544.174 74.992 546.307 74.096C548.44 73.2 550.254 71.8773 551.747 70.128L547.267 65.584C546.328 66.6507 545.176 67.4613 543.811 68.016C542.488 68.5707 541.038 68.848 539.459 68.848C537.624 68.848 536.003 68.464 534.595 67.696C533.187 66.8853 532.099 65.7547 531.331 64.304C530.964 63.6109 530.685 62.8642 530.493 62.064ZM530.515 56.304C530.694 55.5879 530.945 54.9266 531.267 54.32C531.992 52.912 533.016 51.824 534.339 51.056C535.662 50.288 537.219 49.904 539.011 49.904C540.718 49.904 542.147 50.2453 543.299 50.928C544.494 51.6107 545.411 52.592 546.051 53.872C546.409 54.589 546.681 55.3996 546.865 56.304H530.515Z" stroke="url(#paint35_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-2-inside-2_4178_61371)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M585.199 48.5579C584.192 46.9754 582.859 45.7388 581.198 44.848C579.449 43.9093 577.486 43.44 575.31 43.44C573.134 43.44 571.172 43.9307 569.422 44.912C568.289 45.5203 567.307 46.2899 566.478 47.2207V44.08H559.438V74.8H566.478V56.496C566.478 55.1307 566.777 53.9787 567.374 53.04C567.972 52.0587 568.761 51.312 569.742 50.8C570.766 50.288 571.918 50.032 573.198 50.032C575.076 50.032 576.654 50.608 577.934 51.76C579.214 52.8693 579.854 54.448 579.854 56.496V74.8H586.894V56.496C586.894 55.1307 587.193 53.9787 587.79 53.04C588.388 52.0587 589.198 51.312 590.222 50.8C591.246 50.288 592.377 50.032 593.614 50.032C595.492 50.032 597.07 50.608 598.35 51.76C599.63 52.8693 600.27 54.448 600.27 56.496V74.8H607.31V54.96C607.31 52.5707 606.777 50.5227 605.71 48.816C604.644 47.1093 603.214 45.7867 601.422 44.848C599.63 43.9093 597.625 43.44 595.406 43.44C593.23 43.44 591.225 43.9307 589.39 44.912C587.713 45.7908 586.316 47.0061 585.199 48.5579Z" stroke="url(#paint36_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-2-inside-2_4178_61371)"/>
<path d="M619.806 62.064H642.723C642.851 61.424 642.937 60.848 642.979 60.336C643.065 59.7813 643.107 59.248 643.107 58.736C643.107 55.792 642.467 53.168 641.187 50.864C639.95 48.56 638.222 46.7467 636.003 45.424C633.827 44.1013 631.31 43.44 628.451 43.44C625.507 43.44 622.819 44.144 620.387 45.552C617.998 46.96 616.099 48.88 614.691 51.312C613.283 53.7013 612.579 56.4107 612.579 59.44C612.579 62.4693 613.283 65.2 614.691 67.632C616.142 70.064 618.083 71.984 620.515 73.392C622.99 74.7573 625.763 75.44 628.835 75.44C631.225 75.44 633.486 74.992 635.619 74.096C637.753 73.2 639.566 71.8773 641.059 70.128L636.579 65.584C635.641 66.6507 634.489 67.4613 633.123 68.016C631.801 68.5707 630.35 68.848 628.771 68.848C626.937 68.848 625.315 68.464 623.907 67.696C622.499 66.8853 621.411 65.7547 620.643 64.304C620.276 63.6109 619.997 62.8642 619.806 62.064ZM619.827 56.304C620.007 55.5879 620.257 54.9266 620.579 54.32C621.305 52.912 622.329 51.824 623.651 51.056C624.974 50.288 626.531 49.904 628.323 49.904C630.03 49.904 631.459 50.2453 632.611 50.928C633.806 51.6107 634.723 52.592 635.363 53.872C635.722 54.589 635.993 55.3996 636.178 56.304H619.827Z" stroke="url(#paint37_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-2-inside-2_4178_61371)"/>
<path d="M669.807 57.072V74.8H676.847V55.536C676.847 53.5307 676.335 51.6107 675.311 49.776C674.287 47.8987 672.879 46.384 671.087 45.232C669.295 44.0373 667.247 43.44 664.943 43.44C662.682 43.44 660.634 43.9733 658.799 45.04C657.634 45.7057 656.631 46.5427 655.791 47.551V44.08H648.751V74.8H655.791V57.072C655.791 55.7067 656.09 54.4907 656.687 53.424C657.284 52.3573 658.116 51.5253 659.183 50.928C660.25 50.3307 661.466 50.032 662.831 50.032C664.879 50.032 666.543 50.6933 667.823 52.016C669.146 53.3387 669.807 55.024 669.807 57.072Z" stroke="url(#paint38_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-2-inside-2_4178_61371)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M695.338 44.08V31.28H688.298V44.08H680.938V50.48H688.298V74.8H695.338V50.48H702.698V44.08H695.338Z" stroke="url(#paint39_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-2-inside-2_4178_61371)"/>
</g>
<mask id="path-3-inside-3_4178_61371" fill="white">
<path d="M183.58 143.64C180.873 143.64 178.418 143.001 176.214 141.723C174.01 140.405 172.25 138.643 170.936 136.435C169.66 134.227 169.022 131.767 169.022 129.055C169.022 126.343 169.66 123.903 170.936 121.733C172.25 119.564 174.01 117.84 176.214 116.562C178.418 115.245 180.873 114.586 183.58 114.586C186.326 114.586 188.801 115.225 191.005 116.504C193.209 117.782 194.949 119.525 196.225 121.733C197.54 123.903 198.197 126.343 198.197 129.055C198.197 131.767 197.54 134.227 196.225 136.435C194.949 138.643 193.209 140.405 191.005 141.723C188.801 143.001 186.326 143.64 183.58 143.64ZM183.58 137.481C185.166 137.481 186.558 137.132 187.756 136.435C188.994 135.699 189.941 134.691 190.599 133.413C191.295 132.135 191.643 130.682 191.643 129.055C191.643 127.428 191.295 125.995 190.599 124.755C189.903 123.515 188.955 122.547 187.756 121.85C186.558 121.114 185.166 120.746 183.58 120.746C182.034 120.746 180.641 121.114 179.404 121.85C178.205 122.547 177.258 123.515 176.562 124.755C175.905 125.995 175.576 127.428 175.576 129.055C175.576 130.682 175.905 132.135 176.562 133.413C177.258 134.691 178.205 135.699 179.404 136.435C180.641 137.132 182.034 137.481 183.58 137.481Z"/>
<path d="M394.637 143.059V102.383H401.308V143.059H394.637ZM399.22 143.059V136.958H420.449V143.059H399.22Z"/>
<path d="M532.077 143.64C530.53 143.64 529.042 143.446 527.611 143.059C526.18 142.633 524.865 142.052 523.667 141.316C522.468 140.541 521.424 139.611 520.534 138.527L524.595 134.459C525.561 135.582 526.663 136.435 527.901 137.016C529.177 137.558 530.608 137.829 532.193 137.829C533.624 137.829 534.706 137.616 535.441 137.19C536.176 136.764 536.543 136.144 536.543 135.331C536.543 134.478 536.195 133.82 535.499 133.355C534.803 132.89 533.894 132.503 532.773 132.193C531.69 131.844 530.53 131.496 529.293 131.147C528.094 130.798 526.934 130.333 525.813 129.752C524.73 129.132 523.841 128.3 523.145 127.254C522.449 126.208 522.101 124.852 522.101 123.186C522.101 121.404 522.507 119.874 523.319 118.596C524.169 117.317 525.349 116.329 526.857 115.632C528.404 114.935 530.24 114.586 532.367 114.586C534.61 114.586 536.582 114.993 538.283 115.806C540.023 116.581 541.473 117.763 542.633 119.351L538.573 123.419C537.761 122.411 536.833 121.656 535.789 121.152C534.745 120.649 533.546 120.397 532.193 120.397C530.917 120.397 529.931 120.591 529.235 120.978C528.539 121.365 528.191 121.927 528.191 122.663C528.191 123.438 528.539 124.038 529.235 124.464C529.931 124.891 530.82 125.259 531.903 125.569C533.024 125.878 534.184 126.227 535.383 126.614C536.621 126.963 537.781 127.467 538.863 128.125C539.985 128.745 540.893 129.597 541.589 130.682C542.285 131.728 542.633 133.103 542.633 134.808C542.633 137.519 541.686 139.669 539.791 141.258C537.897 142.846 535.325 143.64 532.077 143.64Z"/>
<path d="M552.766 143.64C551.528 143.64 550.504 143.233 549.692 142.42C548.918 141.568 548.532 140.541 548.532 139.34C548.532 138.1 548.918 137.074 549.692 136.26C550.504 135.447 551.528 135.04 552.766 135.04C554.003 135.04 555.009 135.447 555.782 136.26C556.594 137.074 557 138.1 557 139.34C557 140.541 556.594 141.568 555.782 142.42C555.009 143.233 554.003 143.64 552.766 143.64Z"/>
<path d="M429.446 131.496H450.216C450.332 130.914 450.409 130.391 450.448 129.927C450.525 129.423 450.564 128.939 450.564 128.474C450.564 125.801 449.984 123.419 448.824 121.327C447.702 119.235 446.136 117.588 444.125 116.387C442.153 115.187 439.872 114.586 437.281 114.586C434.613 114.586 432.177 115.225 429.973 116.504C427.807 117.782 426.087 119.525 424.811 121.733C423.535 123.903 422.897 126.363 422.897 129.113C422.897 131.864 423.535 134.343 424.811 136.551C426.125 138.759 427.885 140.502 430.089 141.781C432.332 143.02 434.845 143.64 437.629 143.64C439.795 143.64 441.844 143.233 443.777 142.42C445.711 141.606 447.354 140.405 448.708 138.817L444.648 134.691C443.797 135.66 442.753 136.396 441.515 136.9C440.317 137.403 439.002 137.655 437.571 137.655C435.908 137.655 434.439 137.306 433.163 136.609C431.887 135.873 430.901 134.846 430.205 133.529C429.872 132.9 429.619 132.222 429.446 131.496ZM429.465 126.266C429.628 125.616 429.855 125.015 430.147 124.464C430.804 123.186 431.732 122.198 432.931 121.501C434.13 120.804 435.541 120.455 437.165 120.455C438.712 120.455 440.007 120.765 441.051 121.385C442.134 122.005 442.965 122.896 443.546 124.058C443.87 124.709 444.116 125.445 444.284 126.266H429.465Z"/>
<path d="M467.337 143.64C464.824 143.64 462.542 143.001 460.493 141.723C458.482 140.444 456.877 138.72 455.678 136.551C454.518 134.343 453.938 131.883 453.938 129.171C453.938 126.421 454.518 123.961 455.678 121.791C456.877 119.583 458.482 117.84 460.493 116.562C462.542 115.245 464.824 114.586 467.337 114.586C469.464 114.586 471.339 115.051 472.963 115.981C474.09 116.584 475.056 117.348 475.863 118.272V115.167H482.244V143.059H475.863V139.998C475.08 140.913 474.133 141.682 473.021 142.304C471.359 143.195 469.464 143.64 467.337 143.64ZM468.381 137.597C470.74 137.597 472.635 136.803 474.065 135.214C475.535 133.626 476.269 131.592 476.269 129.113C476.269 127.447 475.941 125.975 475.283 124.697C474.626 123.419 473.698 122.431 472.499 121.733C471.339 120.997 469.966 120.629 468.381 120.629C466.834 120.629 465.462 120.997 464.263 121.733C463.103 122.431 462.175 123.419 461.479 124.697C460.821 125.975 460.493 127.447 460.493 129.113C460.493 130.779 460.821 132.251 461.479 133.529C462.175 134.808 463.103 135.815 464.263 136.551C465.462 137.248 466.834 137.597 468.381 137.597Z"/>
<path d="M338.577 126.44C338.577 125.2 338.847 124.155 339.389 123.302C339.93 122.411 340.645 121.733 341.535 121.269C342.463 120.804 343.507 120.571 344.667 120.571C346.368 120.571 347.799 121.094 348.959 122.14C350.119 123.147 350.699 124.581 350.699 126.44V143.059H357.079V126.44C357.079 125.2 357.35 124.155 357.891 123.302C358.433 122.411 359.167 121.733 360.096 121.269C361.024 120.804 362.048 120.571 363.17 120.571C364.871 120.571 366.302 121.094 367.462 122.14C368.622 123.147 369.202 124.581 369.202 126.44V143.059H375.582V125.046C375.582 122.876 375.099 121.017 374.132 119.467C373.165 117.918 371.87 116.717 370.246 115.864C368.622 115.012 366.804 114.586 364.794 114.586C362.822 114.586 361.004 115.032 359.341 115.923C357.821 116.72 356.555 117.824 355.543 119.233C354.63 117.796 353.422 116.673 351.917 115.864C350.332 115.012 348.553 114.586 346.581 114.586C344.609 114.586 342.83 115.032 341.245 115.923C340.217 116.475 339.328 117.174 338.577 118.019V115.167H332.196V143.059H338.577V126.44Z"/>
<path d="M310.209 143.64C307.695 143.64 305.414 143.001 303.364 141.723C301.354 140.444 299.749 138.72 298.55 136.551C297.39 134.343 296.81 131.883 296.81 129.171C296.81 126.421 297.39 123.961 298.55 121.791C299.749 119.583 301.354 117.84 303.364 116.562C305.414 115.245 307.695 114.586 310.209 114.586C312.335 114.586 314.211 115.051 315.835 115.981C316.961 116.584 317.928 117.348 318.735 118.272V115.167H325.115V143.059H318.735V139.998C317.952 140.913 317.005 141.682 315.893 142.304C314.23 143.195 312.335 143.64 310.209 143.64ZM311.253 137.597C313.612 137.597 315.506 136.803 316.937 135.214C318.406 133.626 319.141 131.592 319.141 129.113C319.141 127.447 318.812 125.975 318.155 124.697C317.498 123.419 316.57 122.431 315.371 121.733C314.211 120.997 312.838 120.629 311.253 120.629C309.706 120.629 308.333 120.997 307.135 121.733C305.975 122.431 305.046 123.419 304.35 124.697C303.693 125.975 303.364 127.447 303.364 129.113C303.364 130.779 303.693 132.251 304.35 133.529C305.046 134.808 305.975 135.815 307.135 136.551C308.333 137.248 309.706 137.597 311.253 137.597Z"/>
<path d="M272.317 131.496H293.087C293.204 130.914 293.281 130.391 293.32 129.927C293.397 129.423 293.436 128.939 293.436 128.474C293.436 125.801 292.855 123.419 291.695 121.327C290.574 119.235 289.008 117.588 286.997 116.387C285.025 115.187 282.744 114.586 280.153 114.586C277.485 114.586 275.049 115.225 272.845 116.504C270.679 117.782 268.958 119.525 267.682 121.733C266.406 123.903 265.768 126.363 265.768 129.113C265.768 131.864 266.406 134.343 267.682 136.551C268.997 138.759 270.756 140.502 272.961 141.781C275.203 143.02 277.717 143.64 280.501 143.64C282.666 143.64 284.716 143.233 286.649 142.42C288.583 141.606 290.226 140.405 291.579 138.817L287.519 134.691C286.669 135.66 285.624 136.396 284.387 136.9C283.188 137.403 281.874 137.655 280.443 137.655C278.78 137.655 277.311 137.306 276.035 136.609C274.759 135.873 273.773 134.846 273.077 133.529C272.744 132.9 272.491 132.222 272.317 131.496ZM272.337 126.266C272.499 125.616 272.727 125.015 273.019 124.464C273.676 123.186 274.604 122.198 275.803 121.501C277.001 120.804 278.413 120.455 280.037 120.455C281.584 120.455 282.879 120.765 283.923 121.385C285.006 122.005 285.837 122.896 286.417 124.058C286.742 124.709 286.988 125.445 287.155 126.266H272.337Z"/>
<path d="M256.597 108.485H269.822V102.383H236.702V108.485H249.927V143.059H256.597V108.485Z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M209.883 127.544C209.883 125.142 210.463 123.38 211.623 122.256C212.783 121.133 214.253 120.571 216.031 120.571C216.843 120.571 217.559 120.687 218.178 120.92C218.796 121.152 219.357 121.54 219.86 122.082L224.036 117.782C223.069 116.659 222.025 115.845 220.904 115.341C219.782 114.838 218.526 114.586 217.133 114.586C213.963 114.586 211.585 115.69 209.999 117.898C209.96 117.953 209.921 118.009 209.883 118.064V115.167H203.503V143.059H209.883V127.544Z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M159.051 115.167V111.448C159.051 109.899 159.457 108.717 160.269 107.904C161.119 107.051 162.318 106.625 163.865 106.625C164.716 106.625 165.412 106.761 165.953 107.032C166.494 107.303 166.997 107.671 167.461 108.136L171.579 104.01C170.535 102.926 169.414 102.093 168.215 101.512C167.016 100.931 165.566 100.64 163.865 100.64C161.661 100.64 159.708 101.105 158.007 102.035C156.344 102.964 155.029 104.243 154.062 105.87C153.134 107.497 152.67 109.376 152.67 111.506V115.167H146V120.978H152.67V143.059H159.051V120.978H167.461V115.167H159.051Z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M509.509 143.059V139.998C508.726 140.913 507.779 141.682 506.667 142.304C505.005 143.195 503.11 143.64 500.983 143.64C498.47 143.64 496.188 143.001 494.139 141.723C492.128 140.444 490.523 138.72 489.324 136.551C488.164 134.343 487.584 131.883 487.584 129.171C487.584 126.421 488.164 123.961 489.324 121.791C490.523 119.583 492.128 117.84 494.139 116.562C496.188 115.245 498.47 114.586 500.983 114.586C503.11 114.586 504.985 115.051 506.609 115.981C507.736 116.584 508.702 117.348 509.509 118.272V101.221H515.89V143.059H509.509ZM506.145 136.551C504.985 137.248 503.613 137.597 502.027 137.597C500.48 137.597 499.108 137.248 497.909 136.551C496.749 135.815 495.821 134.808 495.125 133.529C494.467 132.251 494.139 130.779 494.139 129.113C494.139 127.447 494.467 125.975 495.125 124.697C495.821 123.419 496.749 122.431 497.909 121.733C499.108 120.997 500.48 120.629 502.027 120.629C503.613 120.629 504.985 120.997 506.145 121.733C507.344 122.431 508.272 123.419 508.929 124.697C509.587 125.975 509.915 127.447 509.915 129.113C509.915 130.779 509.587 132.251 508.929 133.529C508.272 134.808 507.344 135.815 506.145 136.551Z"/>
</mask>
<path d="M183.58 143.64C180.873 143.64 178.418 143.001 176.214 141.723C174.01 140.405 172.25 138.643 170.936 136.435C169.66 134.227 169.022 131.767 169.022 129.055C169.022 126.343 169.66 123.903 170.936 121.733C172.25 119.564 174.01 117.84 176.214 116.562C178.418 115.245 180.873 114.586 183.58 114.586C186.326 114.586 188.801 115.225 191.005 116.504C193.209 117.782 194.949 119.525 196.225 121.733C197.54 123.903 198.197 126.343 198.197 129.055C198.197 131.767 197.54 134.227 196.225 136.435C194.949 138.643 193.209 140.405 191.005 141.723C188.801 143.001 186.326 143.64 183.58 143.64ZM183.58 137.481C185.166 137.481 186.558 137.132 187.756 136.435C188.994 135.699 189.941 134.691 190.599 133.413C191.295 132.135 191.643 130.682 191.643 129.055C191.643 127.428 191.295 125.995 190.599 124.755C189.903 123.515 188.955 122.547 187.756 121.85C186.558 121.114 185.166 120.746 183.58 120.746C182.034 120.746 180.641 121.114 179.404 121.85C178.205 122.547 177.258 123.515 176.562 124.755C175.905 125.995 175.576 127.428 175.576 129.055C175.576 130.682 175.905 132.135 176.562 133.413C177.258 134.691 178.205 135.699 179.404 136.435C180.641 137.132 182.034 137.481 183.58 137.481Z" fill="url(#paint40_linear_4178_61371)"/>
<path d="M394.637 143.059V102.383H401.308V143.059H394.637ZM399.22 143.059V136.958H420.449V143.059H399.22Z" fill="url(#paint41_linear_4178_61371)"/>
<path d="M532.077 143.64C530.53 143.64 529.042 143.446 527.611 143.059C526.18 142.633 524.865 142.052 523.667 141.316C522.468 140.541 521.424 139.611 520.534 138.527L524.595 134.459C525.561 135.582 526.663 136.435 527.901 137.016C529.177 137.558 530.608 137.829 532.193 137.829C533.624 137.829 534.706 137.616 535.441 137.19C536.176 136.764 536.543 136.144 536.543 135.331C536.543 134.478 536.195 133.82 535.499 133.355C534.803 132.89 533.894 132.503 532.773 132.193C531.69 131.844 530.53 131.496 529.293 131.147C528.094 130.798 526.934 130.333 525.813 129.752C524.73 129.132 523.841 128.3 523.145 127.254C522.449 126.208 522.101 124.852 522.101 123.186C522.101 121.404 522.507 119.874 523.319 118.596C524.169 117.317 525.349 116.329 526.857 115.632C528.404 114.935 530.24 114.586 532.367 114.586C534.61 114.586 536.582 114.993 538.283 115.806C540.023 116.581 541.473 117.763 542.633 119.351L538.573 123.419C537.761 122.411 536.833 121.656 535.789 121.152C534.745 120.649 533.546 120.397 532.193 120.397C530.917 120.397 529.931 120.591 529.235 120.978C528.539 121.365 528.191 121.927 528.191 122.663C528.191 123.438 528.539 124.038 529.235 124.464C529.931 124.891 530.82 125.259 531.903 125.569C533.024 125.878 534.184 126.227 535.383 126.614C536.621 126.963 537.781 127.467 538.863 128.125C539.985 128.745 540.893 129.597 541.589 130.682C542.285 131.728 542.633 133.103 542.633 134.808C542.633 137.519 541.686 139.669 539.791 141.258C537.897 142.846 535.325 143.64 532.077 143.64Z" fill="url(#paint42_linear_4178_61371)"/>
<path d="M552.766 143.64C551.528 143.64 550.504 143.233 549.692 142.42C548.918 141.568 548.532 140.541 548.532 139.34C548.532 138.1 548.918 137.074 549.692 136.26C550.504 135.447 551.528 135.04 552.766 135.04C554.003 135.04 555.009 135.447 555.782 136.26C556.594 137.074 557 138.1 557 139.34C557 140.541 556.594 141.568 555.782 142.42C555.009 143.233 554.003 143.64 552.766 143.64Z" fill="url(#paint43_linear_4178_61371)"/>
<path d="M429.446 131.496H450.216C450.332 130.914 450.409 130.391 450.448 129.927C450.525 129.423 450.564 128.939 450.564 128.474C450.564 125.801 449.984 123.419 448.824 121.327C447.702 119.235 446.136 117.588 444.125 116.387C442.153 115.187 439.872 114.586 437.281 114.586C434.613 114.586 432.177 115.225 429.973 116.504C427.807 117.782 426.087 119.525 424.811 121.733C423.535 123.903 422.897 126.363 422.897 129.113C422.897 131.864 423.535 134.343 424.811 136.551C426.125 138.759 427.885 140.502 430.089 141.781C432.332 143.02 434.845 143.64 437.629 143.64C439.795 143.64 441.844 143.233 443.777 142.42C445.711 141.606 447.354 140.405 448.708 138.817L444.648 134.691C443.797 135.66 442.753 136.396 441.515 136.9C440.317 137.403 439.002 137.655 437.571 137.655C435.908 137.655 434.439 137.306 433.163 136.609C431.887 135.873 430.901 134.846 430.205 133.529C429.872 132.9 429.619 132.222 429.446 131.496ZM429.465 126.266C429.628 125.616 429.855 125.015 430.147 124.464C430.804 123.186 431.732 122.198 432.931 121.501C434.13 120.804 435.541 120.455 437.165 120.455C438.712 120.455 440.007 120.765 441.051 121.385C442.134 122.005 442.965 122.896 443.546 124.058C443.87 124.709 444.116 125.445 444.284 126.266H429.465Z" fill="url(#paint44_linear_4178_61371)"/>
<path d="M467.337 143.64C464.824 143.64 462.542 143.001 460.493 141.723C458.482 140.444 456.877 138.72 455.678 136.551C454.518 134.343 453.938 131.883 453.938 129.171C453.938 126.421 454.518 123.961 455.678 121.791C456.877 119.583 458.482 117.84 460.493 116.562C462.542 115.245 464.824 114.586 467.337 114.586C469.464 114.586 471.339 115.051 472.963 115.981C474.09 116.584 475.056 117.348 475.863 118.272V115.167H482.244V143.059H475.863V139.998C475.08 140.913 474.133 141.682 473.021 142.304C471.359 143.195 469.464 143.64 467.337 143.64ZM468.381 137.597C470.74 137.597 472.635 136.803 474.065 135.214C475.535 133.626 476.269 131.592 476.269 129.113C476.269 127.447 475.941 125.975 475.283 124.697C474.626 123.419 473.698 122.431 472.499 121.733C471.339 120.997 469.966 120.629 468.381 120.629C466.834 120.629 465.462 120.997 464.263 121.733C463.103 122.431 462.175 123.419 461.479 124.697C460.821 125.975 460.493 127.447 460.493 129.113C460.493 130.779 460.821 132.251 461.479 133.529C462.175 134.808 463.103 135.815 464.263 136.551C465.462 137.248 466.834 137.597 468.381 137.597Z" fill="url(#paint45_linear_4178_61371)"/>
<path d="M338.577 126.44C338.577 125.2 338.847 124.155 339.389 123.302C339.93 122.411 340.645 121.733 341.535 121.269C342.463 120.804 343.507 120.571 344.667 120.571C346.368 120.571 347.799 121.094 348.959 122.14C350.119 123.147 350.699 124.581 350.699 126.44V143.059H357.079V126.44C357.079 125.2 357.35 124.155 357.891 123.302C358.433 122.411 359.167 121.733 360.096 121.269C361.024 120.804 362.048 120.571 363.17 120.571C364.871 120.571 366.302 121.094 367.462 122.14C368.622 123.147 369.202 124.581 369.202 126.44V143.059H375.582V125.046C375.582 122.876 375.099 121.017 374.132 119.467C373.165 117.918 371.87 116.717 370.246 115.864C368.622 115.012 366.804 114.586 364.794 114.586C362.822 114.586 361.004 115.032 359.341 115.923C357.821 116.72 356.555 117.824 355.543 119.233C354.63 117.796 353.422 116.673 351.917 115.864C350.332 115.012 348.553 114.586 346.581 114.586C344.609 114.586 342.83 115.032 341.245 115.923C340.217 116.475 339.328 117.174 338.577 118.019V115.167H332.196V143.059H338.577V126.44Z" fill="url(#paint46_linear_4178_61371)"/>
<path d="M310.209 143.64C307.695 143.64 305.414 143.001 303.364 141.723C301.354 140.444 299.749 138.72 298.55 136.551C297.39 134.343 296.81 131.883 296.81 129.171C296.81 126.421 297.39 123.961 298.55 121.791C299.749 119.583 301.354 117.84 303.364 116.562C305.414 115.245 307.695 114.586 310.209 114.586C312.335 114.586 314.211 115.051 315.835 115.981C316.961 116.584 317.928 117.348 318.735 118.272V115.167H325.115V143.059H318.735V139.998C317.952 140.913 317.005 141.682 315.893 142.304C314.23 143.195 312.335 143.64 310.209 143.64ZM311.253 137.597C313.612 137.597 315.506 136.803 316.937 135.214C318.406 133.626 319.141 131.592 319.141 129.113C319.141 127.447 318.812 125.975 318.155 124.697C317.498 123.419 316.57 122.431 315.371 121.733C314.211 120.997 312.838 120.629 311.253 120.629C309.706 120.629 308.333 120.997 307.135 121.733C305.975 122.431 305.046 123.419 304.35 124.697C303.693 125.975 303.364 127.447 303.364 129.113C303.364 130.779 303.693 132.251 304.35 133.529C305.046 134.808 305.975 135.815 307.135 136.551C308.333 137.248 309.706 137.597 311.253 137.597Z" fill="url(#paint47_linear_4178_61371)"/>
<path d="M272.317 131.496H293.087C293.204 130.914 293.281 130.391 293.32 129.927C293.397 129.423 293.436 128.939 293.436 128.474C293.436 125.801 292.855 123.419 291.695 121.327C290.574 119.235 289.008 117.588 286.997 116.387C285.025 115.187 282.744 114.586 280.153 114.586C277.485 114.586 275.049 115.225 272.845 116.504C270.679 117.782 268.958 119.525 267.682 121.733C266.406 123.903 265.768 126.363 265.768 129.113C265.768 131.864 266.406 134.343 267.682 136.551C268.997 138.759 270.756 140.502 272.961 141.781C275.203 143.02 277.717 143.64 280.501 143.64C282.666 143.64 284.716 143.233 286.649 142.42C288.583 141.606 290.226 140.405 291.579 138.817L287.519 134.691C286.669 135.66 285.624 136.396 284.387 136.9C283.188 137.403 281.874 137.655 280.443 137.655C278.78 137.655 277.311 137.306 276.035 136.609C274.759 135.873 273.773 134.846 273.077 133.529C272.744 132.9 272.491 132.222 272.317 131.496ZM272.337 126.266C272.499 125.616 272.727 125.015 273.019 124.464C273.676 123.186 274.604 122.198 275.803 121.501C277.001 120.804 278.413 120.455 280.037 120.455C281.584 120.455 282.879 120.765 283.923 121.385C285.006 122.005 285.837 122.896 286.417 124.058C286.742 124.709 286.988 125.445 287.155 126.266H272.337Z" fill="url(#paint48_linear_4178_61371)"/>
<path d="M256.597 108.485H269.822V102.383H236.702V108.485H249.927V143.059H256.597V108.485Z" fill="url(#paint49_linear_4178_61371)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M209.883 127.544C209.883 125.142 210.463 123.38 211.623 122.256C212.783 121.133 214.253 120.571 216.031 120.571C216.843 120.571 217.559 120.687 218.178 120.92C218.796 121.152 219.357 121.54 219.86 122.082L224.036 117.782C223.069 116.659 222.025 115.845 220.904 115.341C219.782 114.838 218.526 114.586 217.133 114.586C213.963 114.586 211.585 115.69 209.999 117.898C209.96 117.953 209.921 118.009 209.883 118.064V115.167H203.503V143.059H209.883V127.544Z" fill="url(#paint50_linear_4178_61371)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M159.051 115.167V111.448C159.051 109.899 159.457 108.717 160.269 107.904C161.119 107.051 162.318 106.625 163.865 106.625C164.716 106.625 165.412 106.761 165.953 107.032C166.494 107.303 166.997 107.671 167.461 108.136L171.579 104.01C170.535 102.926 169.414 102.093 168.215 101.512C167.016 100.931 165.566 100.64 163.865 100.64C161.661 100.64 159.708 101.105 158.007 102.035C156.344 102.964 155.029 104.243 154.062 105.87C153.134 107.497 152.67 109.376 152.67 111.506V115.167H146V120.978H152.67V143.059H159.051V120.978H167.461V115.167H159.051Z" fill="url(#paint51_linear_4178_61371)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M509.509 143.059V139.998C508.726 140.913 507.779 141.682 506.667 142.304C505.005 143.195 503.11 143.64 500.983 143.64C498.47 143.64 496.188 143.001 494.139 141.723C492.128 140.444 490.523 138.72 489.324 136.551C488.164 134.343 487.584 131.883 487.584 129.171C487.584 126.421 488.164 123.961 489.324 121.791C490.523 119.583 492.128 117.84 494.139 116.562C496.188 115.245 498.47 114.586 500.983 114.586C503.11 114.586 504.985 115.051 506.609 115.981C507.736 116.584 508.702 117.348 509.509 118.272V101.221H515.89V143.059H509.509ZM506.145 136.551C504.985 137.248 503.613 137.597 502.027 137.597C500.48 137.597 499.108 137.248 497.909 136.551C496.749 135.815 495.821 134.808 495.125 133.529C494.467 132.251 494.139 130.779 494.139 129.113C494.139 127.447 494.467 125.975 495.125 124.697C495.821 123.419 496.749 122.431 497.909 121.733C499.108 120.997 500.48 120.629 502.027 120.629C503.613 120.629 504.985 120.997 506.145 121.733C507.344 122.431 508.272 123.419 508.929 124.697C509.587 125.975 509.915 127.447 509.915 129.113C509.915 130.779 509.587 132.251 508.929 133.529C508.272 134.808 507.344 135.815 506.145 136.551Z" fill="url(#paint52_linear_4178_61371)"/>
<path d="M183.58 143.64C180.873 143.64 178.418 143.001 176.214 141.723C174.01 140.405 172.25 138.643 170.936 136.435C169.66 134.227 169.022 131.767 169.022 129.055C169.022 126.343 169.66 123.903 170.936 121.733C172.25 119.564 174.01 117.84 176.214 116.562C178.418 115.245 180.873 114.586 183.58 114.586C186.326 114.586 188.801 115.225 191.005 116.504C193.209 117.782 194.949 119.525 196.225 121.733C197.54 123.903 198.197 126.343 198.197 129.055C198.197 131.767 197.54 134.227 196.225 136.435C194.949 138.643 193.209 140.405 191.005 141.723C188.801 143.001 186.326 143.64 183.58 143.64ZM183.58 137.481C185.166 137.481 186.558 137.132 187.756 136.435C188.994 135.699 189.941 134.691 190.599 133.413C191.295 132.135 191.643 130.682 191.643 129.055C191.643 127.428 191.295 125.995 190.599 124.755C189.903 123.515 188.955 122.547 187.756 121.85C186.558 121.114 185.166 120.746 183.58 120.746C182.034 120.746 180.641 121.114 179.404 121.85C178.205 122.547 177.258 123.515 176.562 124.755C175.905 125.995 175.576 127.428 175.576 129.055C175.576 130.682 175.905 132.135 176.562 133.413C177.258 134.691 178.205 135.699 179.404 136.435C180.641 137.132 182.034 137.481 183.58 137.481Z" stroke="url(#paint53_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-3-inside-3_4178_61371)"/>
<path d="M394.637 143.059V102.383H401.308V143.059H394.637ZM399.22 143.059V136.958H420.449V143.059H399.22Z" stroke="url(#paint54_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-3-inside-3_4178_61371)"/>
<path d="M532.077 143.64C530.53 143.64 529.042 143.446 527.611 143.059C526.18 142.633 524.865 142.052 523.667 141.316C522.468 140.541 521.424 139.611 520.534 138.527L524.595 134.459C525.561 135.582 526.663 136.435 527.901 137.016C529.177 137.558 530.608 137.829 532.193 137.829C533.624 137.829 534.706 137.616 535.441 137.19C536.176 136.764 536.543 136.144 536.543 135.331C536.543 134.478 536.195 133.82 535.499 133.355C534.803 132.89 533.894 132.503 532.773 132.193C531.69 131.844 530.53 131.496 529.293 131.147C528.094 130.798 526.934 130.333 525.813 129.752C524.73 129.132 523.841 128.3 523.145 127.254C522.449 126.208 522.101 124.852 522.101 123.186C522.101 121.404 522.507 119.874 523.319 118.596C524.169 117.317 525.349 116.329 526.857 115.632C528.404 114.935 530.24 114.586 532.367 114.586C534.61 114.586 536.582 114.993 538.283 115.806C540.023 116.581 541.473 117.763 542.633 119.351L538.573 123.419C537.761 122.411 536.833 121.656 535.789 121.152C534.745 120.649 533.546 120.397 532.193 120.397C530.917 120.397 529.931 120.591 529.235 120.978C528.539 121.365 528.191 121.927 528.191 122.663C528.191 123.438 528.539 124.038 529.235 124.464C529.931 124.891 530.82 125.259 531.903 125.569C533.024 125.878 534.184 126.227 535.383 126.614C536.621 126.963 537.781 127.467 538.863 128.125C539.985 128.745 540.893 129.597 541.589 130.682C542.285 131.728 542.633 133.103 542.633 134.808C542.633 137.519 541.686 139.669 539.791 141.258C537.897 142.846 535.325 143.64 532.077 143.64Z" stroke="url(#paint55_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-3-inside-3_4178_61371)"/>
<path d="M552.766 143.64C551.528 143.64 550.504 143.233 549.692 142.42C548.918 141.568 548.532 140.541 548.532 139.34C548.532 138.1 548.918 137.074 549.692 136.26C550.504 135.447 551.528 135.04 552.766 135.04C554.003 135.04 555.009 135.447 555.782 136.26C556.594 137.074 557 138.1 557 139.34C557 140.541 556.594 141.568 555.782 142.42C555.009 143.233 554.003 143.64 552.766 143.64Z" stroke="url(#paint56_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-3-inside-3_4178_61371)"/>
<path d="M429.446 131.496H450.216C450.332 130.914 450.409 130.391 450.448 129.927C450.525 129.423 450.564 128.939 450.564 128.474C450.564 125.801 449.984 123.419 448.824 121.327C447.702 119.235 446.136 117.588 444.125 116.387C442.153 115.187 439.872 114.586 437.281 114.586C434.613 114.586 432.177 115.225 429.973 116.504C427.807 117.782 426.087 119.525 424.811 121.733C423.535 123.903 422.897 126.363 422.897 129.113C422.897 131.864 423.535 134.343 424.811 136.551C426.125 138.759 427.885 140.502 430.089 141.781C432.332 143.02 434.845 143.64 437.629 143.64C439.795 143.64 441.844 143.233 443.777 142.42C445.711 141.606 447.354 140.405 448.708 138.817L444.648 134.691C443.797 135.66 442.753 136.396 441.515 136.9C440.317 137.403 439.002 137.655 437.571 137.655C435.908 137.655 434.439 137.306 433.163 136.609C431.887 135.873 430.901 134.846 430.205 133.529C429.872 132.9 429.619 132.222 429.446 131.496ZM429.465 126.266C429.628 125.616 429.855 125.015 430.147 124.464C430.804 123.186 431.732 122.198 432.931 121.501C434.13 120.804 435.541 120.455 437.165 120.455C438.712 120.455 440.007 120.765 441.051 121.385C442.134 122.005 442.965 122.896 443.546 124.058C443.87 124.709 444.116 125.445 444.284 126.266H429.465Z" stroke="url(#paint57_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-3-inside-3_4178_61371)"/>
<path d="M467.337 143.64C464.824 143.64 462.542 143.001 460.493 141.723C458.482 140.444 456.877 138.72 455.678 136.551C454.518 134.343 453.938 131.883 453.938 129.171C453.938 126.421 454.518 123.961 455.678 121.791C456.877 119.583 458.482 117.84 460.493 116.562C462.542 115.245 464.824 114.586 467.337 114.586C469.464 114.586 471.339 115.051 472.963 115.981C474.09 116.584 475.056 117.348 475.863 118.272V115.167H482.244V143.059H475.863V139.998C475.08 140.913 474.133 141.682 473.021 142.304C471.359 143.195 469.464 143.64 467.337 143.64ZM468.381 137.597C470.74 137.597 472.635 136.803 474.065 135.214C475.535 133.626 476.269 131.592 476.269 129.113C476.269 127.447 475.941 125.975 475.283 124.697C474.626 123.419 473.698 122.431 472.499 121.733C471.339 120.997 469.966 120.629 468.381 120.629C466.834 120.629 465.462 120.997 464.263 121.733C463.103 122.431 462.175 123.419 461.479 124.697C460.821 125.975 460.493 127.447 460.493 129.113C460.493 130.779 460.821 132.251 461.479 133.529C462.175 134.808 463.103 135.815 464.263 136.551C465.462 137.248 466.834 137.597 468.381 137.597Z" stroke="url(#paint58_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-3-inside-3_4178_61371)"/>
<path d="M338.577 126.44C338.577 125.2 338.847 124.155 339.389 123.302C339.93 122.411 340.645 121.733 341.535 121.269C342.463 120.804 343.507 120.571 344.667 120.571C346.368 120.571 347.799 121.094 348.959 122.14C350.119 123.147 350.699 124.581 350.699 126.44V143.059H357.079V126.44C357.079 125.2 357.35 124.155 357.891 123.302C358.433 122.411 359.167 121.733 360.096 121.269C361.024 120.804 362.048 120.571 363.17 120.571C364.871 120.571 366.302 121.094 367.462 122.14C368.622 123.147 369.202 124.581 369.202 126.44V143.059H375.582V125.046C375.582 122.876 375.099 121.017 374.132 119.467C373.165 117.918 371.87 116.717 370.246 115.864C368.622 115.012 366.804 114.586 364.794 114.586C362.822 114.586 361.004 115.032 359.341 115.923C357.821 116.72 356.555 117.824 355.543 119.233C354.63 117.796 353.422 116.673 351.917 115.864C350.332 115.012 348.553 114.586 346.581 114.586C344.609 114.586 342.83 115.032 341.245 115.923C340.217 116.475 339.328 117.174 338.577 118.019V115.167H332.196V143.059H338.577V126.44Z" stroke="url(#paint59_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-3-inside-3_4178_61371)"/>
<path d="M310.209 143.64C307.695 143.64 305.414 143.001 303.364 141.723C301.354 140.444 299.749 138.72 298.55 136.551C297.39 134.343 296.81 131.883 296.81 129.171C296.81 126.421 297.39 123.961 298.55 121.791C299.749 119.583 301.354 117.84 303.364 116.562C305.414 115.245 307.695 114.586 310.209 114.586C312.335 114.586 314.211 115.051 315.835 115.981C316.961 116.584 317.928 117.348 318.735 118.272V115.167H325.115V143.059H318.735V139.998C317.952 140.913 317.005 141.682 315.893 142.304C314.23 143.195 312.335 143.64 310.209 143.64ZM311.253 137.597C313.612 137.597 315.506 136.803 316.937 135.214C318.406 133.626 319.141 131.592 319.141 129.113C319.141 127.447 318.812 125.975 318.155 124.697C317.498 123.419 316.57 122.431 315.371 121.733C314.211 120.997 312.838 120.629 311.253 120.629C309.706 120.629 308.333 120.997 307.135 121.733C305.975 122.431 305.046 123.419 304.35 124.697C303.693 125.975 303.364 127.447 303.364 129.113C303.364 130.779 303.693 132.251 304.35 133.529C305.046 134.808 305.975 135.815 307.135 136.551C308.333 137.248 309.706 137.597 311.253 137.597Z" stroke="url(#paint60_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-3-inside-3_4178_61371)"/>
<path d="M272.317 131.496H293.087C293.204 130.914 293.281 130.391 293.32 129.927C293.397 129.423 293.436 128.939 293.436 128.474C293.436 125.801 292.855 123.419 291.695 121.327C290.574 119.235 289.008 117.588 286.997 116.387C285.025 115.187 282.744 114.586 280.153 114.586C277.485 114.586 275.049 115.225 272.845 116.504C270.679 117.782 268.958 119.525 267.682 121.733C266.406 123.903 265.768 126.363 265.768 129.113C265.768 131.864 266.406 134.343 267.682 136.551C268.997 138.759 270.756 140.502 272.961 141.781C275.203 143.02 277.717 143.64 280.501 143.64C282.666 143.64 284.716 143.233 286.649 142.42C288.583 141.606 290.226 140.405 291.579 138.817L287.519 134.691C286.669 135.66 285.624 136.396 284.387 136.9C283.188 137.403 281.874 137.655 280.443 137.655C278.78 137.655 277.311 137.306 276.035 136.609C274.759 135.873 273.773 134.846 273.077 133.529C272.744 132.9 272.491 132.222 272.317 131.496ZM272.337 126.266C272.499 125.616 272.727 125.015 273.019 124.464C273.676 123.186 274.604 122.198 275.803 121.501C277.001 120.804 278.413 120.455 280.037 120.455C281.584 120.455 282.879 120.765 283.923 121.385C285.006 122.005 285.837 122.896 286.417 124.058C286.742 124.709 286.988 125.445 287.155 126.266H272.337Z" stroke="url(#paint61_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-3-inside-3_4178_61371)"/>
<path d="M256.597 108.485H269.822V102.383H236.702V108.485H249.927V143.059H256.597V108.485Z" stroke="url(#paint62_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-3-inside-3_4178_61371)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M209.883 127.544C209.883 125.142 210.463 123.38 211.623 122.256C212.783 121.133 214.253 120.571 216.031 120.571C216.843 120.571 217.559 120.687 218.178 120.92C218.796 121.152 219.357 121.54 219.86 122.082L224.036 117.782C223.069 116.659 222.025 115.845 220.904 115.341C219.782 114.838 218.526 114.586 217.133 114.586C213.963 114.586 211.585 115.69 209.999 117.898C209.96 117.953 209.921 118.009 209.883 118.064V115.167H203.503V143.059H209.883V127.544Z" stroke="url(#paint63_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-3-inside-3_4178_61371)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M159.051 115.167V111.448C159.051 109.899 159.457 108.717 160.269 107.904C161.119 107.051 162.318 106.625 163.865 106.625C164.716 106.625 165.412 106.761 165.953 107.032C166.494 107.303 166.997 107.671 167.461 108.136L171.579 104.01C170.535 102.926 169.414 102.093 168.215 101.512C167.016 100.931 165.566 100.64 163.865 100.64C161.661 100.64 159.708 101.105 158.007 102.035C156.344 102.964 155.029 104.243 154.062 105.87C153.134 107.497 152.67 109.376 152.67 111.506V115.167H146V120.978H152.67V143.059H159.051V120.978H167.461V115.167H159.051Z" stroke="url(#paint64_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-3-inside-3_4178_61371)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M509.509 143.059V139.998C508.726 140.913 507.779 141.682 506.667 142.304C505.005 143.195 503.11 143.64 500.983 143.64C498.47 143.64 496.188 143.001 494.139 141.723C492.128 140.444 490.523 138.72 489.324 136.551C488.164 134.343 487.584 131.883 487.584 129.171C487.584 126.421 488.164 123.961 489.324 121.791C490.523 119.583 492.128 117.84 494.139 116.562C496.188 115.245 498.47 114.586 500.983 114.586C503.11 114.586 504.985 115.051 506.609 115.981C507.736 116.584 508.702 117.348 509.509 118.272V101.221H515.89V143.059H509.509ZM506.145 136.551C504.985 137.248 503.613 137.597 502.027 137.597C500.48 137.597 499.108 137.248 497.909 136.551C496.749 135.815 495.821 134.808 495.125 133.529C494.467 132.251 494.139 130.779 494.139 129.113C494.139 127.447 494.467 125.975 495.125 124.697C495.821 123.419 496.749 122.431 497.909 121.733C499.108 120.997 500.48 120.629 502.027 120.629C503.613 120.629 504.985 120.997 506.145 121.733C507.344 122.431 508.272 123.419 508.929 124.697C509.587 125.975 509.915 127.447 509.915 129.113C509.915 130.779 509.587 132.251 508.929 133.529C508.272 134.808 507.344 135.815 506.145 136.551Z" stroke="url(#paint65_linear_4178_61371)" style="mix-blend-mode:plus-lighter" stroke-width="2" mask="url(#path-3-inside-3_4178_61371)"/>
<defs>
<filter id="filter0_ddi_4178_61371" x="296.023" y="0" width="436.676" height="118.24" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="10"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.064118 0 0 0 0 0.148577 0 0 0 0 0.350962 0 0 0 1 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4178_61371"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="15"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.293269 0 0 0 0 0.501131 0 0 0 0 1 0 0 0 0.5 0"/>
<feBlend mode="normal" in2="effect1_dropShadow_4178_61371" result="effect2_dropShadow_4178_61371"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_4178_61371" result="shape"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="6"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0"/>
<feBlend mode="plus-lighter" in2="shape" result="effect3_innerShadow_4178_61371"/>
</filter>
<linearGradient id="paint0_linear_4178_61371" x1="151" y1="32.6401" x2="151" y2="74.6401" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#A2BEFF"/>
</linearGradient>
<linearGradient id="paint1_linear_4178_61371" x1="151" y1="32.6401" x2="151" y2="74.6401" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#A2BEFF"/>
</linearGradient>
<linearGradient id="paint2_linear_4178_61371" x1="151" y1="32.6401" x2="151" y2="74.6401" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#A2BEFF"/>
</linearGradient>
<linearGradient id="paint3_linear_4178_61371" x1="151" y1="32.6401" x2="151" y2="74.6401" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#A2BEFF"/>
</linearGradient>
<linearGradient id="paint4_linear_4178_61371" x1="151" y1="32.6401" x2="151" y2="74.6401" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#A2BEFF"/>
</linearGradient>
<linearGradient id="paint5_linear_4178_61371" x1="151" y1="32.6401" x2="151" y2="74.6401" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#A2BEFF"/>
</linearGradient>
<linearGradient id="paint6_linear_4178_61371" x1="151" y1="32.6401" x2="151" y2="74.6401" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#A2BEFF"/>
</linearGradient>
<linearGradient id="paint7_linear_4178_61371" x1="151" y1="32.6401" x2="151" y2="74.6401" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#A2BEFF"/>
</linearGradient>
<linearGradient id="paint8_linear_4178_61371" x1="151" y1="32.6401" x2="151" y2="74.6401" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#A2BEFF"/>
</linearGradient>
<linearGradient id="paint9_linear_4178_61371" x1="151" y1="32.6401" x2="151" y2="74.6401" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#A2BEFF"/>
</linearGradient>
<linearGradient id="paint10_linear_4178_61371" x1="151" y1="32.6401" x2="151" y2="74.6401" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint11_linear_4178_61371" x1="151" y1="32.6401" x2="151" y2="74.6401" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint12_linear_4178_61371" x1="151" y1="32.6401" x2="151" y2="74.6401" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint13_linear_4178_61371" x1="151" y1="32.6401" x2="151" y2="74.6401" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint14_linear_4178_61371" x1="151" y1="32.6401" x2="151" y2="74.6401" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint15_linear_4178_61371" x1="151" y1="32.6401" x2="151" y2="74.6401" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint16_linear_4178_61371" x1="151" y1="32.6401" x2="151" y2="74.6401" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint17_linear_4178_61371" x1="151" y1="32.6401" x2="151" y2="74.6401" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint18_linear_4178_61371" x1="151" y1="32.6401" x2="151" y2="74.6401" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint19_linear_4178_61371" x1="151" y1="32.6401" x2="151" y2="74.6401" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint20_linear_4178_61371" x1="514.361" y1="30" x2="514.361" y2="105.92" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint21_linear_4178_61371" x1="514.361" y1="30" x2="514.361" y2="105.92" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint22_linear_4178_61371" x1="514.361" y1="30" x2="514.361" y2="105.92" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint23_linear_4178_61371" x1="514.361" y1="30" x2="514.361" y2="105.92" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint24_linear_4178_61371" x1="514.361" y1="30" x2="514.361" y2="105.92" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint25_linear_4178_61371" x1="514.361" y1="30" x2="514.361" y2="105.92" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint26_linear_4178_61371" x1="514.361" y1="30" x2="514.361" y2="105.92" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint27_linear_4178_61371" x1="514.361" y1="30" x2="514.361" y2="105.92" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint28_linear_4178_61371" x1="514.361" y1="30" x2="514.361" y2="105.92" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint29_linear_4178_61371" x1="514.361" y1="30" x2="514.361" y2="105.92" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint30_linear_4178_61371" x1="514.361" y1="30" x2="514.361" y2="88.24" gradientUnits="userSpaceOnUse">
<stop stop-color="#4D81FF"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint31_linear_4178_61371" x1="514.361" y1="30" x2="514.361" y2="88.24" gradientUnits="userSpaceOnUse">
<stop stop-color="#4D81FF"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint32_linear_4178_61371" x1="514.361" y1="30" x2="514.361" y2="88.24" gradientUnits="userSpaceOnUse">
<stop stop-color="#4D81FF"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint33_linear_4178_61371" x1="514.361" y1="30" x2="514.361" y2="88.24" gradientUnits="userSpaceOnUse">
<stop stop-color="#4D81FF"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint34_linear_4178_61371" x1="514.361" y1="30" x2="514.361" y2="88.24" gradientUnits="userSpaceOnUse">
<stop stop-color="#4D81FF"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint35_linear_4178_61371" x1="514.361" y1="30" x2="514.361" y2="88.24" gradientUnits="userSpaceOnUse">
<stop stop-color="#4D81FF"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint36_linear_4178_61371" x1="514.361" y1="30" x2="514.361" y2="88.24" gradientUnits="userSpaceOnUse">
<stop stop-color="#4D81FF"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint37_linear_4178_61371" x1="514.361" y1="30" x2="514.361" y2="88.24" gradientUnits="userSpaceOnUse">
<stop stop-color="#4D81FF"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint38_linear_4178_61371" x1="514.361" y1="30" x2="514.361" y2="88.24" gradientUnits="userSpaceOnUse">
<stop stop-color="#4D81FF"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint39_linear_4178_61371" x1="514.361" y1="30" x2="514.361" y2="88.24" gradientUnits="userSpaceOnUse">
<stop stop-color="#4D81FF"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint40_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#A2BEFF"/>
</linearGradient>
<linearGradient id="paint41_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#A2BEFF"/>
</linearGradient>
<linearGradient id="paint42_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#A2BEFF"/>
</linearGradient>
<linearGradient id="paint43_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#A2BEFF"/>
</linearGradient>
<linearGradient id="paint44_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#A2BEFF"/>
</linearGradient>
<linearGradient id="paint45_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#A2BEFF"/>
</linearGradient>
<linearGradient id="paint46_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#A2BEFF"/>
</linearGradient>
<linearGradient id="paint47_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#A2BEFF"/>
</linearGradient>
<linearGradient id="paint48_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#A2BEFF"/>
</linearGradient>
<linearGradient id="paint49_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#A2BEFF"/>
</linearGradient>
<linearGradient id="paint50_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#A2BEFF"/>
</linearGradient>
<linearGradient id="paint51_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#A2BEFF"/>
</linearGradient>
<linearGradient id="paint52_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#A2BEFF"/>
</linearGradient>
<linearGradient id="paint53_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint54_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint55_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint56_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint57_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint58_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint59_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint60_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint61_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint62_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint63_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint64_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint65_linear_4178_61371" x1="351.5" y1="100.64" x2="351.5" y2="143.64" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>

47
public/assets/images/hero_light_left.svg

@ -0,0 +1,47 @@
<svg width="1016" height="340" viewBox="0 0 1016 340" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.8">
<path d="M862.487 123.637C861.813 123.679 861.301 124.26 861.343 124.934C861.385 125.607 861.966 126.119 862.639 126.077C863.313 126.035 863.825 125.454 863.783 124.781C863.741 124.107 863.16 123.595 862.487 123.637Z" fill="#5A73CC"/>
<path d="M821.01 224.215C820.336 224.258 819.824 224.838 819.866 225.512C819.909 226.186 820.489 226.698 821.163 226.655C821.837 226.613 822.349 226.033 822.306 225.359C822.264 224.685 821.684 224.173 821.01 224.215Z" fill="#5A73CC"/>
<path d="M802.549 105.344C801.875 105.386 801.363 105.967 801.405 106.641C801.448 107.314 802.028 107.826 802.702 107.784C803.376 107.742 803.888 107.162 803.845 106.488C803.803 105.814 803.223 105.302 802.549 105.344Z" fill="#5A73CC"/>
<path d="M791.276 179.532C790.602 179.574 790.09 180.154 790.132 180.828C790.174 181.502 790.755 182.014 791.428 181.972C792.102 181.93 792.614 181.349 792.572 180.675C792.53 180.002 791.949 179.49 791.276 179.532Z" fill="#5A73CC"/>
<path d="M778.612 153.383C777.938 153.425 777.426 154.006 777.468 154.68C777.51 155.353 778.091 155.865 778.764 155.823C779.438 155.781 779.95 155.201 779.908 154.527C779.866 153.853 779.285 153.341 778.612 153.383Z" fill="#5A73CC"/>
<path d="M734.08 205.165C733.407 205.207 732.895 205.787 732.937 206.461C732.979 207.135 733.559 207.647 734.233 207.605C734.907 207.562 735.419 206.982 735.377 206.308C735.335 205.634 734.754 205.122 734.08 205.165Z" fill="#5A73CC"/>
<path opacity="0.3" d="M700.994 165.59C700.321 165.633 699.809 166.213 699.851 166.887C699.893 167.561 700.473 168.073 701.147 168.03C701.821 167.988 702.333 167.408 702.291 166.734C702.249 166.06 701.668 165.548 700.994 165.59Z" fill="#5A73CC"/>
<path opacity="0.3" d="M685.354 150.653C684.68 150.695 684.168 151.275 684.21 151.949C684.252 152.623 684.833 153.135 685.507 153.093C686.18 153.051 686.692 152.47 686.65 151.796C686.608 151.123 686.028 150.611 685.354 150.653Z" fill="#5A73CC"/>
<path d="M669.572 172.461C668.899 172.504 668.387 173.084 668.429 173.758C668.471 174.432 669.052 174.944 669.725 174.901C670.399 174.859 670.911 174.279 670.869 173.605C670.827 172.931 670.246 172.419 669.572 172.461Z" fill="#5A73CC"/>
<path d="M652.791 178.411C652.117 178.453 651.605 179.033 651.648 179.707C651.69 180.381 652.27 180.893 652.944 180.851C653.618 180.808 654.13 180.228 654.088 179.554C654.045 178.88 653.465 178.368 652.791 178.411Z" fill="#5A73CC"/>
<path d="M620.791 273.497C620.117 273.539 619.605 274.119 619.648 274.793C619.69 275.467 620.27 275.979 620.944 275.937C621.618 275.894 622.13 275.314 622.088 274.64C622.045 273.966 621.465 273.454 620.791 273.497Z" fill="#5A73CC"/>
<path opacity="0.5" d="M612.08 154.02C611.407 154.062 610.895 154.643 610.937 155.316C610.979 155.99 611.559 156.502 612.233 156.46C612.907 156.418 613.419 155.837 613.377 155.164C613.335 154.49 612.754 153.978 612.08 154.02Z" fill="#5A73CC"/>
<path opacity="0.5" d="M615.135 202.813C614.461 202.855 613.949 203.436 613.991 204.109C614.034 204.783 614.614 205.295 615.288 205.253C615.962 205.211 616.474 204.63 616.431 203.957C616.389 203.283 615.809 202.771 615.135 202.813Z" fill="#5A73CC"/>
<path d="M556.276 240.797C555.602 240.84 555.09 241.42 555.132 242.094C555.174 242.768 555.755 243.28 556.428 243.237C557.102 243.195 557.614 242.615 557.572 241.941C557.53 241.267 556.949 240.755 556.276 240.797Z" fill="#5A73CC"/>
<path opacity="0.3" d="M948.901 233.375C948.227 233.417 947.715 233.998 947.757 234.672C947.799 235.345 948.38 235.857 949.053 235.815C949.727 235.773 950.239 235.193 950.197 234.519C950.155 233.845 949.574 233.333 948.901 233.375Z" fill="#5A73CC"/>
<path d="M522.713 154.715C522.039 154.757 521.527 155.338 521.57 156.012C521.612 156.685 522.192 157.197 522.866 157.155C523.54 157.113 524.052 156.533 524.01 155.859C523.967 155.185 523.387 154.673 522.713 154.715Z" fill="#5A73CC"/>
<path d="M525.776 203.516C525.102 203.558 524.59 204.139 524.632 204.813C524.674 205.486 525.255 205.998 525.928 205.956C526.602 205.914 527.114 205.333 527.072 204.66C527.03 203.986 526.449 203.474 525.776 203.516Z" fill="#5A73CC"/>
<path d="M506.237 106.754C505.563 106.797 505.051 107.377 505.093 108.051C505.135 108.724 505.716 109.236 506.389 109.194C507.063 109.152 507.575 108.572 507.533 107.898C507.491 107.224 506.91 106.712 506.237 106.754Z" fill="#5A73CC"/>
<path d="M1009.66 266.649C1008.98 266.691 1008.47 267.271 1008.51 267.945C1008.56 268.619 1009.14 269.131 1009.81 269.089C1010.49 269.046 1011 268.466 1010.95 267.792C1010.91 267.119 1010.33 266.607 1009.66 266.649Z" fill="#5A73CC"/>
<path d="M1010.23 211.504C1009.55 211.546 1009.04 212.127 1009.09 212.801C1009.13 213.474 1009.71 213.986 1010.38 213.944C1011.06 213.902 1011.57 213.322 1011.53 212.648C1011.48 211.974 1010.9 211.462 1010.23 211.504Z" fill="#5A73CC"/>
<path opacity="0.3" d="M499.096 266.426C498.422 266.468 497.91 267.049 497.952 267.723C497.995 268.396 498.575 268.908 499.249 268.866C499.923 268.824 500.435 268.244 500.392 267.57C500.35 266.896 499.77 266.384 499.096 266.426Z" fill="#5A73CC"/>
<path d="M485.362 184.001C484.688 184.043 484.176 184.623 484.218 185.297C484.26 185.971 484.841 186.483 485.514 186.44C486.188 186.398 486.7 185.818 486.658 185.144C486.616 184.47 486.035 183.958 485.362 184.001Z" fill="#5A73CC"/>
<path opacity="0.5" d="M458.799 33.7852C458.125 33.8274 457.613 34.4078 457.655 35.0816C457.698 35.7554 458.278 36.2674 458.952 36.2252C459.626 36.183 460.138 35.6025 460.095 34.9288C460.053 34.255 459.473 33.743 458.799 33.7852Z" fill="#5A73CC"/>
<path d="M469.346 221.747C468.672 221.789 468.16 222.369 468.202 223.043C468.245 223.717 468.825 224.229 469.499 224.187C470.173 224.144 470.685 223.564 470.642 222.89C470.6 222.216 470.02 221.704 469.346 221.747Z" fill="#5A73CC"/>
<path d="M449.596 160.524C448.922 160.566 448.41 161.147 448.452 161.82C448.495 162.494 449.075 163.006 449.749 162.964C450.423 162.922 450.935 162.341 450.892 161.668C450.85 160.994 450.27 160.482 449.596 160.524Z" fill="#5A73CC"/>
<path d="M398.877 74.2895C398.203 74.3317 397.691 74.9121 397.734 75.5859C397.776 76.2596 398.356 76.7716 399.03 76.7294C399.704 76.6872 400.216 76.1068 400.174 75.433C400.131 74.7593 399.551 74.2473 398.877 74.2895Z" fill="#5A73CC"/>
<path d="M390.807 219.321C390.133 219.363 389.621 219.943 389.663 220.617C389.705 221.291 390.286 221.803 390.96 221.761C391.633 221.719 392.145 221.138 392.103 220.464C392.061 219.791 391.481 219.279 390.807 219.321Z" fill="#5A73CC"/>
<path d="M944.33 119.442C943.657 119.484 943.145 120.064 943.187 120.738C943.229 121.412 943.809 121.924 944.483 121.882C945.157 121.84 945.669 121.259 945.627 120.585C945.585 119.912 945.004 119.4 944.33 119.442Z" fill="#5A73CC"/>
<path opacity="0.3" d="M357.369 174.895C356.696 174.937 356.184 175.518 356.226 176.191C356.268 176.865 356.848 177.377 357.522 177.335C358.196 177.293 358.708 176.712 358.666 176.039C358.624 175.365 358.043 174.853 357.369 174.895Z" fill="#5A73CC"/>
<path d="M327.619 130.215C326.946 130.257 326.434 130.838 326.476 131.512C326.518 132.185 327.098 132.697 327.772 132.655C328.446 132.613 328.958 132.033 328.916 131.359C328.874 130.685 328.293 130.173 327.619 130.215Z" fill="#5A73CC"/>
<path d="M300.947 193.129C300.274 193.172 299.762 193.752 299.804 194.426C299.846 195.1 300.427 195.612 301.1 195.569C301.774 195.527 302.286 194.947 302.244 194.273C302.202 193.599 301.621 193.087 300.947 193.129Z" fill="#5A73CC"/>
<path d="M270.44 155.848C269.766 155.89 269.254 156.471 269.296 157.145C269.338 157.818 269.919 158.33 270.593 158.288C271.266 158.246 271.778 157.666 271.736 156.992C271.694 156.318 271.113 155.806 270.44 155.848Z" fill="#5A73CC"/>
<path d="M237.346 116.274C236.672 116.316 236.16 116.896 236.202 117.57C236.245 118.244 236.825 118.756 237.499 118.714C238.173 118.672 238.685 118.091 238.642 117.417C238.6 116.744 238.02 116.232 237.346 116.274Z" fill="#5A73CC"/>
<path opacity="0.5" d="M205.932 123.141C205.258 123.183 204.746 123.764 204.788 124.437C204.83 125.111 205.411 125.623 206.085 125.581C206.758 125.539 207.27 124.958 207.228 124.285C207.186 123.611 206.606 123.099 205.932 123.141Z" fill="#5A73CC"/>
<path d="M913.135 209.899C912.461 209.941 911.949 210.521 911.991 211.195C912.034 211.869 912.614 212.381 913.288 212.339C913.962 212.296 914.474 211.716 914.431 211.042C914.389 210.369 913.809 209.857 913.135 209.899Z" fill="#5A73CC"/>
<path d="M189.151 129.094C188.477 129.136 187.965 129.717 188.007 130.391C188.049 131.064 188.63 131.576 189.303 131.534C189.977 131.492 190.489 130.912 190.447 130.238C190.405 129.564 189.824 129.052 189.151 129.094Z" fill="#5A73CC"/>
<path d="M157.166 224.176C156.492 224.218 155.98 224.799 156.023 225.473C156.065 226.146 156.645 226.658 157.319 226.616C157.993 226.574 158.505 225.994 158.463 225.32C158.42 224.646 157.84 224.134 157.166 224.176Z" fill="#5A73CC"/>
<path opacity="0.5" d="M151.51 153.493C150.836 153.535 150.324 154.115 150.366 154.789C150.409 155.463 150.989 155.975 151.663 155.933C152.337 155.89 152.849 155.31 152.806 154.636C152.764 153.962 152.184 153.45 151.51 153.493Z" fill="#5A73CC"/>
<path d="M92.6584 191.477C91.9847 191.519 91.4727 192.1 91.5149 192.773C91.5571 193.447 92.1375 193.959 92.8113 193.917C93.485 193.875 93.997 193.294 93.9548 192.621C93.9126 191.947 93.3322 191.435 92.6584 191.477Z" fill="#5A73CC"/>
<path d="M899.487 226.672C898.813 226.714 898.301 227.295 898.343 227.969C898.385 228.642 898.966 229.154 899.639 229.112C900.313 229.07 900.825 228.49 900.783 227.816C900.741 227.142 900.16 226.63 899.487 226.672Z" fill="#5A73CC"/>
<path d="M35.4787 217.106C34.805 217.148 34.293 217.729 34.3352 218.402C34.3774 219.076 34.9578 219.588 35.6316 219.546C36.3054 219.504 36.8174 218.923 36.7751 218.25C36.7329 217.576 36.1525 217.064 35.4787 217.106Z" fill="#5A73CC"/>
<path opacity="0.3" d="M24.7834 124.688C24.1097 124.73 23.5977 125.311 23.6399 125.984C23.6821 126.658 24.2625 127.17 24.9363 127.128C25.61 127.086 26.122 126.505 26.0798 125.831C26.0376 125.158 25.4572 124.646 24.7834 124.688Z" fill="#5A73CC"/>
<path opacity="0.5" d="M5.72875 172.43C5.05497 172.472 4.54297 173.053 4.58517 173.727C4.62737 174.4 5.20779 174.912 5.88157 174.87C6.55535 174.828 7.06735 174.248 7.02515 173.574C6.98295 172.9 6.40253 172.388 5.72875 172.43Z" fill="#5A73CC"/>
</g>
</svg>

47
public/assets/images/hero_light_right.svg

@ -0,0 +1,47 @@
<svg width="1023" height="270" viewBox="0 0 1023 270" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.8">
<path d="M994.215 114.906C993.54 114.906 992.993 115.454 992.993 116.129C992.993 116.804 993.54 117.351 994.215 117.351C994.89 117.351 995.438 116.804 995.438 116.129C995.438 115.454 994.89 114.906 994.215 114.906Z" fill="#5A73CC"/>
<path d="M946.535 212.695C945.86 212.695 945.313 213.243 945.313 213.918C945.313 214.593 945.86 215.14 946.535 215.14C947.211 215.14 947.758 214.593 947.758 213.918C947.758 213.243 947.211 212.695 946.535 212.695Z" fill="#5A73CC"/>
<path d="M935.535 92.9023C934.86 92.9023 934.313 93.4496 934.313 94.1247C934.313 94.7998 934.86 95.3471 935.535 95.3471C936.211 95.3471 936.758 94.7998 936.758 94.1247C936.758 93.4496 936.211 92.9023 935.535 92.9023Z" fill="#5A73CC"/>
<path d="M919.645 166.242C918.97 166.242 918.422 166.789 918.422 167.465C918.422 168.14 918.97 168.687 919.645 168.687C920.32 168.687 920.867 168.14 920.867 167.465C920.867 166.789 920.32 166.242 919.645 166.242Z" fill="#5A73CC"/>
<path d="M908.645 139.352C907.97 139.352 907.422 139.899 907.422 140.574C907.422 141.249 907.97 141.796 908.645 141.796C909.32 141.796 909.867 141.249 909.867 140.574C909.867 139.899 909.32 139.352 908.645 139.352Z" fill="#5A73CC"/>
<path d="M860.965 188.246C860.29 188.246 859.743 188.793 859.743 189.468C859.743 190.144 860.29 190.691 860.965 190.691C861.64 190.691 862.188 190.144 862.188 189.468C862.188 188.793 861.64 188.246 860.965 188.246Z" fill="#5A73CC"/>
<path opacity="0.3" d="M830.418 146.688C829.743 146.688 829.196 147.235 829.196 147.91C829.196 148.585 829.743 149.132 830.418 149.132C831.093 149.132 831.641 148.585 831.641 147.91C831.641 147.235 831.093 146.688 830.418 146.688Z" fill="#5A73CC"/>
<path opacity="0.3" d="M815.739 130.797C815.063 130.797 814.516 131.344 814.516 132.019C814.516 132.694 815.063 133.242 815.739 133.242C816.414 133.242 816.961 132.694 816.961 132.019C816.961 131.344 816.414 130.797 815.739 130.797Z" fill="#5A73CC"/>
<path d="M798.621 151.578C797.946 151.578 797.399 152.125 797.399 152.801C797.399 153.476 797.946 154.023 798.621 154.023C799.296 154.023 799.844 153.476 799.844 152.801C799.844 152.125 799.296 151.578 798.621 151.578Z" fill="#5A73CC"/>
<path d="M781.52 156.469C780.845 156.469 780.297 157.016 780.297 157.691C780.297 158.366 780.845 158.914 781.52 158.914C782.195 158.914 782.742 158.366 782.742 157.691C782.742 157.016 782.195 156.469 781.52 156.469Z" fill="#5A73CC"/>
<path d="M743.629 249.367C742.954 249.367 742.407 249.914 742.407 250.59C742.407 251.265 742.954 251.812 743.629 251.812C744.304 251.812 744.852 251.265 744.852 250.59C744.852 249.914 744.304 249.367 743.629 249.367Z" fill="#5A73CC"/>
<path opacity="0.5" d="M742.403 129.578C741.728 129.578 741.18 130.125 741.18 130.801C741.18 131.476 741.728 132.023 742.403 132.023C743.078 132.023 743.625 131.476 743.625 130.801C743.625 130.125 743.078 129.578 742.403 129.578Z" fill="#5A73CC"/>
<path opacity="0.5" d="M742.403 178.469C741.728 178.469 741.18 179.016 741.18 179.691C741.18 180.366 741.728 180.914 742.403 180.914C743.078 180.914 743.625 180.366 743.625 179.691C743.625 179.016 743.078 178.469 742.403 178.469Z" fill="#5A73CC"/>
<path d="M681.285 212.695C680.61 212.695 680.063 213.243 680.063 213.918C680.063 214.593 680.61 215.14 681.285 215.14C681.961 215.14 682.508 214.593 682.508 213.918C682.508 213.243 681.961 212.695 681.285 212.695Z" fill="#5A73CC"/>
<path d="M653.168 124.688C652.493 124.688 651.946 125.235 651.946 125.91C651.946 126.585 652.493 127.132 653.168 127.132C653.843 127.132 654.391 126.585 654.391 125.91C654.391 125.235 653.843 124.688 653.168 124.688Z" fill="#5A73CC"/>
<path d="M653.168 173.582C652.493 173.582 651.946 174.129 651.946 174.804C651.946 175.48 652.493 176.027 653.168 176.027C653.843 176.027 654.391 175.48 654.391 174.804C654.391 174.129 653.843 173.582 653.168 173.582Z" fill="#5A73CC"/>
<path d="M639.723 75.7852C639.048 75.7852 638.501 76.3324 638.501 77.0075C638.501 77.6826 639.048 78.2299 639.723 78.2299C640.398 78.2299 640.945 77.6826 640.945 77.0075C640.945 76.3324 640.398 75.7852 639.723 75.7852Z" fill="#5A73CC"/>
<path opacity="0.3" d="M622.614 234.699C621.938 234.699 621.391 235.247 621.391 235.922C621.391 236.597 621.938 237.144 622.614 237.144C623.289 237.144 623.836 236.597 623.836 235.922C623.836 235.247 623.289 234.699 622.614 234.699Z" fill="#5A73CC"/>
<path d="M614.051 151.578C613.376 151.578 612.829 152.125 612.829 152.801C612.829 153.476 613.376 154.023 614.051 154.023C614.726 154.023 615.273 153.476 615.273 152.801C615.273 152.125 614.726 151.578 614.051 151.578Z" fill="#5A73CC"/>
<path opacity="0.5" d="M596.934 4.05312e-06C596.259 4.05312e-06 595.711 0.547282 595.711 1.22238C595.711 1.89749 596.259 2.44476 596.934 2.44476C597.609 2.44476 598.156 1.89749 598.156 1.22238C598.156 0.547282 597.609 4.05312e-06 596.934 4.05312e-06Z" fill="#5A73CC"/>
<path d="M595.723 188.25C595.048 188.25 594.501 188.797 594.501 189.472C594.501 190.147 595.048 190.695 595.723 190.695C596.398 190.695 596.945 190.147 596.945 189.472C596.945 188.797 596.398 188.25 595.723 188.25Z" fill="#5A73CC"/>
<path d="M579.832 125.91C579.157 125.91 578.61 126.457 578.61 127.133C578.61 127.808 579.157 128.355 579.832 128.355C580.507 128.355 581.055 127.808 581.055 127.133C581.055 126.457 580.507 125.91 579.832 125.91Z" fill="#5A73CC"/>
<path d="M534.598 36.6758C533.923 36.6758 533.376 37.2231 533.376 37.8982C533.376 38.5733 533.923 39.1205 534.598 39.1205C535.273 39.1205 535.82 38.5733 535.82 37.8982C535.82 37.2231 535.273 36.6758 534.598 36.6758Z" fill="#5A73CC"/>
<path d="M517.481 180.918C516.806 180.918 516.258 181.465 516.258 182.14C516.258 182.815 516.806 183.363 517.481 183.363C518.156 183.363 518.703 182.815 518.703 182.14C518.703 181.465 518.156 180.918 517.481 180.918Z" fill="#5A73CC"/>
<path opacity="0.3" d="M486.934 134.465C486.259 134.465 485.711 135.012 485.711 135.687C485.711 136.362 486.259 136.91 486.934 136.91C487.609 136.91 488.156 136.362 488.156 135.687C488.156 135.012 487.609 134.465 486.934 134.465Z" fill="#5A73CC"/>
<path d="M460.028 88.0117C459.353 88.0117 458.805 88.559 458.805 89.2341C458.805 89.9092 459.353 90.4565 460.028 90.4565C460.703 90.4565 461.25 89.9092 461.25 89.2341C461.25 88.559 460.703 88.0117 460.028 88.0117Z" fill="#5A73CC"/>
<path d="M429.473 149.137C428.798 149.137 428.251 149.684 428.251 150.359C428.251 151.034 428.798 151.581 429.473 151.581C430.148 151.581 430.695 151.034 430.695 150.359C430.695 149.684 430.148 149.137 429.473 149.137Z" fill="#5A73CC"/>
<path d="M401.356 110.02C400.681 110.02 400.133 110.567 400.133 111.242C400.133 111.917 400.681 112.464 401.356 112.464C402.031 112.464 402.578 111.917 402.578 111.242C402.578 110.567 402.031 110.02 401.356 110.02Z" fill="#5A73CC"/>
<path d="M370.801 68.4531C370.126 68.4531 369.579 69.0004 369.579 69.6755C369.579 70.3506 370.126 70.8979 370.801 70.8979C371.476 70.8979 372.023 70.3506 372.023 69.6755C372.023 69.0004 371.476 68.4531 370.801 68.4531Z" fill="#5A73CC"/>
<path opacity="0.5" d="M339.012 73.3438C338.337 73.3438 337.79 73.891 337.79 74.5661C337.79 75.2412 338.337 75.7885 339.012 75.7885C339.687 75.7885 340.234 75.2412 340.234 74.5661C340.234 73.891 339.687 73.3438 339.012 73.3438Z" fill="#5A73CC"/>
<path d="M321.903 78.2344C321.228 78.2344 320.68 78.7817 320.68 79.4568C320.68 80.1319 321.228 80.6791 321.903 80.6791C322.578 80.6791 323.125 80.1319 323.125 79.4568C323.125 78.7817 322.578 78.2344 321.903 78.2344Z" fill="#5A73CC"/>
<path d="M284.035 171.133C283.36 171.133 282.813 171.68 282.813 172.355C282.813 173.03 283.36 173.578 284.035 173.578C284.711 173.578 285.258 173.03 285.258 172.355C285.258 171.68 284.711 171.133 284.035 171.133Z" fill="#5A73CC"/>
<path opacity="0.5" d="M282.809 100.234C282.134 100.234 281.586 100.782 281.586 101.457C281.586 102.132 282.134 102.679 282.809 102.679C283.484 102.679 284.031 102.132 284.031 101.457C284.031 100.782 283.484 100.234 282.809 100.234Z" fill="#5A73CC"/>
<path d="M221.692 134.465C221.017 134.465 220.469 135.012 220.469 135.687C220.469 136.362 221.017 136.91 221.692 136.91C222.367 136.91 222.914 136.362 222.914 135.687C222.914 135.012 222.367 134.465 221.692 134.465Z" fill="#5A73CC"/>
<path d="M163.02 156.469C162.345 156.469 161.797 157.016 161.797 157.691C161.797 158.366 162.345 158.914 163.02 158.914C163.695 158.914 164.242 158.366 164.242 157.691C164.242 157.016 163.695 156.469 163.02 156.469Z" fill="#5A73CC"/>
<path opacity="0.3" d="M158.129 63.5664C157.454 63.5664 156.907 64.1137 156.907 64.7888C156.907 65.4639 157.454 66.0112 158.129 66.0112C158.804 66.0112 159.352 65.4639 159.352 64.7888C159.352 64.1137 158.804 63.5664 158.129 63.5664Z" fill="#5A73CC"/>
<path opacity="0.3" d="M1.22293 241.813C0.547831 241.813 0.00055337 242.36 0.00055337 243.035C0.00055337 243.71 0.547831 244.257 1.22293 244.257C1.89803 244.257 2.44531 243.71 2.44531 243.035C2.44531 242.36 1.89803 241.813 1.22293 241.813Z" fill="#5A73CC"/>
<path opacity="0.5" d="M136.121 110.02C135.446 110.02 134.899 110.567 134.899 111.242C134.899 111.917 135.446 112.464 136.121 112.464C136.796 112.464 137.344 111.917 137.344 111.242C137.344 110.567 136.796 110.02 136.121 110.02Z" fill="#5A73CC"/>
<path d="M111.676 56.2344C111.001 56.2344 110.454 56.7817 110.454 57.4568C110.454 58.1319 111.001 58.6791 111.676 58.6791C112.351 58.6791 112.898 58.1319 112.898 57.4568C112.898 56.7817 112.351 56.2344 111.676 56.2344Z" fill="#5A73CC"/>
<path d="M100.676 78.2344C100.001 78.2344 99.4537 78.7817 99.4537 79.4568C99.4537 80.1319 100.001 80.6791 100.676 80.6791C101.351 80.6791 101.898 80.1319 101.898 79.4568C101.898 78.7817 101.351 78.2344 100.676 78.2344Z" fill="#5A73CC"/>
<path d="M76.2307 147.91C75.5556 147.91 75.0084 148.457 75.0084 149.133C75.0084 149.808 75.5556 150.355 76.2307 150.355C76.9058 150.355 77.4531 149.808 77.4531 149.133C77.4531 148.457 76.9058 147.91 76.2307 147.91Z" fill="#5A73CC"/>
<path d="M19.2229 194.813C18.5478 194.813 18.0006 195.36 18.0006 196.035C18.0006 196.71 18.5478 197.257 19.2229 197.257C19.898 197.257 20.4453 196.71 20.4453 196.035C20.4453 195.36 19.898 194.813 19.2229 194.813Z" fill="#5A73CC"/>
<path d="M8.22293 131.813C7.54783 131.813 7.00055 132.36 7.00055 133.035C7.00055 133.71 7.54783 134.257 8.22293 134.257C8.89803 134.257 9.44531 133.71 9.44531 133.035C9.44531 132.36 8.89803 131.813 8.22293 131.813Z" fill="#5A73CC"/>
</g>
</svg>

4
public/assets/images/icon_clock.svg

@ -0,0 +1,4 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.4" d="M1.66797 16.0001C1.66797 8.084 8.08522 1.66675 16.0013 1.66675C23.9174 1.66675 30.3346 8.084 30.3346 16.0001C30.3346 23.9162 23.9174 30.3334 16.0013 30.3334C8.08522 30.3334 1.66797 23.9162 1.66797 16.0001Z" fill="#3D6FE5"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.0013 9.33325C16.7377 9.33325 17.3346 9.93021 17.3346 10.6666V15.4476L19.6108 17.7238C20.1315 18.2445 20.1315 19.0887 19.6108 19.6094C19.0901 20.1301 18.2459 20.1301 17.7252 19.6094L15.0585 16.9427C14.8084 16.6927 14.668 16.3535 14.668 15.9999V10.6666C14.668 9.93021 15.2649 9.33325 16.0013 9.33325Z" fill="#3D6FE5"/>
</svg>

3
public/assets/images/icon_cloud.svg

@ -0,0 +1,3 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.4" d="M1.66797 19.3333C1.66797 15.6227 4.30348 12.5286 7.8053 11.8194C8.51772 7.93942 11.9158 5 16.0013 5C20.5157 5 24.1916 8.58965 24.3306 13.0703C27.7248 13.5538 30.3346 16.4721 30.3346 20C30.3346 23.866 27.2006 27 23.3346 27H9.33463C5.10045 27 1.66797 23.5675 1.66797 19.3333Z" fill="#3D6FE5"/>
</svg>

6
public/assets/images/icon_dashboard.svg

@ -0,0 +1,6 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M8.05005 1.66675C9.03557 1.66673 9.84559 1.66672 10.5009 1.72903C11.1819 1.79377 11.7984 1.93279 12.3591 2.27641C12.9158 2.61755 13.3838 3.0856 13.725 3.64229C14.0686 4.20303 14.2076 4.81949 14.2724 5.50047C14.3347 6.15579 14.3347 6.96581 14.3346 7.95133V8.04883C14.3347 9.03435 14.3347 9.84437 14.2724 10.4997C14.2076 11.1807 14.0686 11.7971 13.725 12.3579C13.3838 12.9146 12.9158 13.3826 12.3591 13.7238C11.7984 14.0674 11.1819 14.2064 10.5009 14.2711C9.84559 14.3334 9.03557 14.3334 8.05005 14.3334H7.95256C6.96703 14.3334 6.15702 14.3334 5.50169 14.2711C4.82071 14.2064 4.20425 14.0674 3.64351 13.7238C3.08682 13.3826 2.61878 12.9146 2.27764 12.3579C1.93401 11.7971 1.795 11.1807 1.73025 10.4997C1.66794 9.84437 1.66795 9.03435 1.66797 8.04883V8.04881V7.95135V7.95134C1.66795 6.96581 1.66794 6.1558 1.73025 5.50047C1.795 4.81949 1.93401 4.20303 2.27764 3.64229C2.61878 3.0856 3.08682 2.61755 3.64351 2.27641C4.20425 1.93279 4.82071 1.79377 5.50169 1.72903C6.15702 1.66672 6.96703 1.66673 7.95256 1.66675H7.95257H8.05003H8.05005Z" fill="#3D6FE5"/>
<path d="M8.05005 17.6667C9.03557 17.6667 9.84559 17.6667 10.5009 17.729C11.1819 17.7938 11.7984 17.9328 12.3591 18.2764C12.9158 18.6176 13.3838 19.0856 13.725 19.6423C14.0686 20.203 14.2076 20.8195 14.2724 21.5005C14.3347 22.1558 14.3347 22.9658 14.3346 23.9513V24.0488C14.3347 25.0344 14.3347 25.8444 14.2724 26.4997C14.2076 27.1807 14.0686 27.7971 13.725 28.3579C13.3838 28.9146 12.9158 29.3826 12.3591 29.7238C11.7984 30.0674 11.1819 30.2064 10.5009 30.2711C9.84559 30.3334 9.03557 30.3334 8.05005 30.3334H7.95256C6.96703 30.3334 6.15702 30.3334 5.50169 30.2711C4.82071 30.2064 4.20425 30.0674 3.64351 29.7238C3.08682 29.3826 2.61878 28.9146 2.27764 28.3579C1.93401 27.7971 1.795 27.1807 1.73025 26.4997C1.66794 25.8444 1.66795 25.0344 1.66797 24.0488V24.0488V23.9514V23.9513C1.66795 22.9658 1.66794 22.1558 1.73025 21.5005C1.795 20.8195 1.93401 20.203 2.27764 19.6423C2.61878 19.0856 3.08682 18.6176 3.64351 18.2764C4.20425 17.9328 4.82071 17.7938 5.50169 17.729C6.15702 17.6667 6.96703 17.6667 7.95256 17.6667H7.95257H8.05003H8.05005Z" fill="#3D6FE5"/>
<path d="M24.05 1.66675C25.0356 1.66673 25.8456 1.66672 26.5009 1.72903C27.1819 1.79377 27.7984 1.93279 28.3591 2.27641C28.9158 2.61755 29.3838 3.0856 29.725 3.64229C30.0686 4.20303 30.2076 4.81949 30.2724 5.50047C30.3347 6.15579 30.3347 6.96581 30.3346 7.95133V8.04883C30.3347 9.03435 30.3347 9.84437 30.2724 10.4997C30.2076 11.1807 30.0686 11.7971 29.725 12.3579C29.3838 12.9146 28.9158 13.3826 28.3591 13.7238C27.7984 14.0674 27.1819 14.2064 26.5009 14.2711C25.8456 14.3334 25.0356 14.3334 24.0501 14.3334H23.9526C22.967 14.3334 22.157 14.3334 21.5017 14.2711C20.8207 14.2064 20.2043 14.0674 19.6435 13.7238C19.0868 13.3826 18.6188 12.9146 18.2776 12.3579C17.934 11.7971 17.795 11.1807 17.7302 10.4997C17.6679 9.84437 17.668 9.03435 17.668 8.04883V8.04881V7.95135V7.95134C17.668 6.96581 17.6679 6.1558 17.7302 5.50047C17.795 4.81949 17.934 4.20303 18.2776 3.64229C18.6188 3.0856 19.0868 2.61755 19.6435 2.27641C20.2043 1.93279 20.8207 1.79377 21.5017 1.72903C22.157 1.66672 22.967 1.66673 23.9526 1.66675H23.9526H24.05H24.05Z" fill="#3D6FE5"/>
<path opacity="0.5" d="M24.05 17.6667C25.0356 17.6667 25.8456 17.6667 26.5009 17.729C27.1819 17.7938 27.7984 17.9328 28.3591 18.2764C28.9158 18.6176 29.3838 19.0856 29.725 19.6423C30.0686 20.203 30.2076 20.8195 30.2724 21.5005C30.3347 22.1558 30.3347 22.9658 30.3346 23.9513V24.0488C30.3347 25.0344 30.3347 25.8444 30.2724 26.4997C30.2076 27.1807 30.0686 27.7971 29.725 28.3579C29.3838 28.9146 28.9158 29.3826 28.3591 29.7238C27.7984 30.0674 27.1819 30.2064 26.5009 30.2711C25.8456 30.3334 25.0356 30.3334 24.0501 30.3334H23.9526C22.967 30.3334 22.157 30.3334 21.5017 30.2711C20.8207 30.2064 20.2043 30.0674 19.6435 29.7238C19.0868 29.3826 18.6188 28.9146 18.2776 28.3579C17.934 27.7971 17.795 27.1807 17.7302 26.4997C17.6679 25.8444 17.668 25.0344 17.668 24.0488V24.0488V23.9514V23.9513C17.668 22.9658 17.6679 22.1558 17.7302 21.5005C17.795 20.8195 17.934 20.203 18.2776 19.6423C18.6188 19.0856 19.0868 18.6176 19.6435 18.2764C20.2043 17.9328 20.8207 17.7938 21.5017 17.729C22.157 17.6667 22.967 17.6667 23.9526 17.6667H23.9526H24.05H24.05Z" fill="#3D6FE5"/>
</svg>

4
public/assets/images/icon_dollar.svg

@ -0,0 +1,4 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.4" d="M1.66797 16.0001C1.66797 8.084 8.08522 1.66675 16.0013 1.66675C23.9174 1.66675 30.3346 8.084 30.3346 16.0001C30.3346 23.9162 23.9174 30.3334 16.0013 30.3334C8.08522 30.3334 1.66797 23.9162 1.66797 16.0001Z" fill="#3D6FE5"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 8.33325C16.5523 8.33325 17 8.78097 17 9.33325V9.8988C17.8203 10.0384 18.5732 10.3482 19.184 10.7961C20.0357 11.4206 20.6667 12.366 20.6667 13.5036C20.6667 14.0559 20.219 14.5036 19.6667 14.5036C19.1144 14.5036 18.6667 14.0559 18.6667 13.5036C18.6667 13.1563 18.4768 12.7575 18.0014 12.4089C17.5266 12.0608 16.8223 11.815 16 11.815C15.1777 11.815 14.4734 12.0608 13.9986 12.4089C13.5232 12.7575 13.3333 13.1563 13.3333 13.5036C13.3333 13.9878 13.4742 14.2152 13.723 14.3818C14.0574 14.6056 14.7304 14.8082 16 14.8082C17.3891 14.8082 18.6294 15.0004 19.5439 15.5932C20.5493 16.2448 21 17.2679 21 18.4968C21 19.8362 20.3431 20.8217 19.341 21.4199C18.6632 21.8245 17.8488 22.0433 17 22.1341V22.6666C17 23.2189 16.5523 23.6666 16 23.6666C15.4477 23.6666 15 23.2189 15 22.6666V22.1132C14.1048 21.9822 13.2812 21.6765 12.6137 21.2279C11.71 20.6204 11 19.6738 11 18.4968C11 17.9445 11.4477 17.4968 12 17.4968C12.5523 17.4968 13 17.9445 13 18.4968C13 18.8047 13.1854 19.2023 13.7294 19.568C14.2672 19.9294 15.067 20.1854 16 20.1854C17.0144 20.1854 17.8095 20.0048 18.3159 19.7026C18.7615 19.4366 19 19.0778 19 18.4968C19 17.8052 18.784 17.484 18.4561 17.2715C18.0373 17 17.2776 16.8082 16 16.8082C14.6029 16.8082 13.4426 16.6009 12.6104 16.0437C11.6925 15.4292 11.3333 14.5044 11.3333 13.5036C11.3333 12.366 11.9643 11.4206 12.816 10.7961C13.4268 10.3482 14.1797 10.0384 15 9.8988L15 9.33325C15 8.78097 15.4477 8.33325 16 8.33325Z" fill="#3D6FE5"/>
</svg>

6
public/assets/images/icon_mic.svg

@ -0,0 +1,6 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.4" d="M8.33203 9.33341C8.33203 5.09923 11.7645 1.66675 15.9987 1.66675C20.2329 1.66675 23.6654 5.09923 23.6654 9.33341V14.6667C23.6654 18.9009 20.2329 22.3334 15.9987 22.3334C11.7645 22.3334 8.33203 18.9009 8.33203 14.6667V9.33341Z" fill="#3D6FE5"/>
<path d="M17.75 10.25V11C17.75 11.2542 17.7335 11.5045 17.7015 11.75H14C13.5858 11.75 13.25 11.4142 13.25 11C13.25 10.5858 13.5858 10.25 14 10.25H17.75Z" fill="#3D6FE5"/>
<path d="M17.7015 6.25C17.7335 6.49547 17.75 6.74581 17.75 7V7.75H14C13.5858 7.75 13.25 7.41421 13.25 7C13.25 6.58579 13.5858 6.25 14 6.25H17.7015Z" fill="#3D6FE5"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.62833 13.6667C6.34425 13.6667 6.92462 14.2407 6.92462 14.9488C6.92462 19.9052 10.9872 23.9232 15.9987 23.9232C21.0102 23.9232 25.0728 19.9052 25.0728 14.9488C25.0728 14.2407 25.6531 13.6667 26.3691 13.6667C27.085 13.6667 27.6654 14.2407 27.6654 14.9488C27.6654 20.888 23.1283 25.7791 17.295 26.4168V27.7693H19.8876C20.6035 27.7693 21.1839 28.3433 21.1839 29.0514C21.1839 29.7594 20.6035 30.3334 19.8876 30.3334H12.1098C11.3939 30.3334 10.8135 29.7594 10.8135 29.0514C10.8135 28.3433 11.3939 27.7693 12.1098 27.7693H14.7024V26.4168C8.86913 25.7791 4.33203 20.888 4.33203 14.9488C4.33203 14.2407 4.9124 13.6667 5.62833 13.6667Z" fill="#3D6FE5"/>
</svg>

10
public/assets/images/line_divider.svg

@ -0,0 +1,10 @@
<svg width="1" height="40" viewBox="0 0 1 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<line x1="0.5" y1="40" x2="0.499998" y2="2.18557e-08" stroke="url(#paint0_linear_4178_61414)"/>
<defs>
<linearGradient id="paint0_linear_4178_61414" x1="1.5" y1="-2.18557e-08" x2="1.5" y2="40" gradientUnits="userSpaceOnUse">
<stop stop-color="#03070D" stop-opacity="0"/>
<stop offset="0.5" stop-color="#2C4366"/>
<stop offset="1" stop-color="#03070D" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>

BIN
public/assets/images/logo_icon.png

After

Width: 51  |  Height: 51  |  Size: 5.0 KiB

268
public/assets/images/logo_icon.svg

@ -0,0 +1,268 @@
<svg width="51" height="51" viewBox="0 0 51 51" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M35.4741 24.5053H22.1291V22.1289H33.0978V17.3763H35.4741V24.5053Z" fill="url(#paint0_linear_4178_61388)"/>
<path d="M35.4741 17.3763L28.6187 17.3763C27.2476 17.3764 24.5054 18.117 24.5054 21.0781V22.2656H22.1291V21.3516C22.1293 18.7925 23.5467 15.0001 28.6187 15H35.4741V17.3763Z" fill="url(#paint1_linear_4178_61388)"/>
<path d="M15 28.6186C15 23.546 18.7937 22.129 21.3529 22.129H22.2669V24.5053H21.0781C18.117 24.5055 17.3763 27.2477 17.3763 28.6186V35.4728H15V28.6186Z" fill="url(#paint2_linear_4178_61388)"/>
<path d="M24.5053 22.129V35.4728H17.3763L17.3764 33.0965H22.129L22.1291 22.1289L24.5053 22.129Z" fill="url(#paint3_linear_4178_61388)"/>
<path d="M29.258 24.5054L24.5053 24.5054L24.5053 22.129L29.258 22.129V24.5054Z" fill="url(#paint4_linear_4178_61388)"/>
<path d="M35.4741 24.5053H22.1291V22.1289H33.0978V17.3763H35.4741V24.5053Z" fill="url(#paint5_linear_4178_61388)"/>
<path d="M35.4741 17.3763L28.6187 17.3763C27.2476 17.3764 24.5054 18.117 24.5054 21.0781V22.2656H22.1291V21.3516C22.1293 18.7925 23.5467 15.0001 28.6187 15H35.4741V17.3763Z" fill="url(#paint6_linear_4178_61388)"/>
<path d="M15 28.6186C15 23.546 18.7937 22.129 21.3529 22.129H22.2669V24.5053H21.0781C18.117 24.5055 17.3763 27.2477 17.3763 28.6186V35.4728H15V28.6186Z" fill="url(#paint7_linear_4178_61388)"/>
<path d="M24.5053 22.129V35.4728H17.3763L17.3764 33.0965H22.129L22.1291 22.1289L24.5053 22.129Z" fill="url(#paint8_linear_4178_61388)"/>
<path d="M29.258 24.5054L24.5053 24.5054L24.5053 22.129L29.258 22.129V24.5054Z" fill="url(#paint9_linear_4178_61388)"/>
<g opacity="0.3" filter="url(#filter0_f_4178_61388)" style="mix-blend-mode:color-dodge">
<path d="M35.4741 24.5053H22.1291V22.1289H33.0978V17.3763H35.4741V24.5053Z" fill="white"/>
<path d="M35.4741 17.3763L28.6187 17.3763C27.2476 17.3764 24.5054 18.117 24.5054 21.0781V22.2656H22.1291V21.3516C22.1293 18.7925 23.5467 15.0001 28.6187 15H35.4741V17.3763Z" fill="white"/>
<path d="M15 28.6186C15 23.546 18.7937 22.129 21.3529 22.129H22.2669V24.5053H21.0781C18.117 24.5055 17.3763 27.2477 17.3763 28.6186V35.4728H15V28.6186Z" fill="white"/>
<path d="M24.5053 22.129V35.4728H17.3763L17.3764 33.0965H22.129L22.1291 22.1289L24.5053 22.129Z" fill="white"/>
<path d="M29.258 24.5054L24.5053 24.5054L24.5053 22.129L29.258 22.129V24.5054Z" fill="white"/>
<path d="M35.4741 24.5053H22.1291V22.1289H33.0978V17.3763H35.4741V24.5053Z" fill="white"/>
<path d="M35.4741 17.3763L28.6187 17.3763C27.2476 17.3764 24.5054 18.117 24.5054 21.0781V22.2656H22.1291V21.3516C22.1293 18.7925 23.5467 15.0001 28.6187 15H35.4741V17.3763Z" fill="white"/>
<path d="M15 28.6186C15 23.546 18.7937 22.129 21.3529 22.129H22.2669V24.5053H21.0781C18.117 24.5055 17.3763 27.2477 17.3763 28.6186V35.4728H15V28.6186Z" fill="white"/>
<path d="M24.5053 22.129V35.4728H17.3763L17.3764 33.0965H22.129L22.1291 22.1289L24.5053 22.129Z" fill="white"/>
<path d="M29.258 24.5054L24.5053 24.5054L24.5053 22.129L29.258 22.129V24.5054Z" fill="white"/>
</g>
<g filter="url(#filter1_f_4178_61388)" style="mix-blend-mode:plus-lighter">
<path d="M35.4741 24.5053H22.1291V22.1289H33.0978V17.3763H35.4741V24.5053Z" fill="url(#paint10_linear_4178_61388)"/>
<path d="M35.4741 17.3763L28.6187 17.3763C27.2476 17.3764 24.5054 18.117 24.5054 21.0781V22.2656H22.1291V21.3516C22.1293 18.7925 23.5467 15.0001 28.6187 15H35.4741V17.3763Z" fill="url(#paint11_linear_4178_61388)"/>
<path d="M15 28.6186C15 23.546 18.7937 22.129 21.3529 22.129H22.2669V24.5053H21.0781C18.117 24.5055 17.3763 27.2477 17.3763 28.6186V35.4728H15V28.6186Z" fill="url(#paint12_linear_4178_61388)"/>
<path d="M24.5053 22.129V35.4728H17.3763L17.3764 33.0965H22.129L22.1291 22.1289L24.5053 22.129Z" fill="url(#paint13_linear_4178_61388)"/>
<path d="M29.258 24.5054L24.5053 24.5054L24.5053 22.129L29.258 22.129V24.5054Z" fill="url(#paint14_linear_4178_61388)"/>
<path d="M35.4741 24.5053H22.1291V22.1289H33.0978V17.3763H35.4741V24.5053Z" fill="url(#paint15_linear_4178_61388)"/>
<path d="M35.4741 17.3763L28.6187 17.3763C27.2476 17.3764 24.5054 18.117 24.5054 21.0781V22.2656H22.1291V21.3516C22.1293 18.7925 23.5467 15.0001 28.6187 15H35.4741V17.3763Z" fill="url(#paint16_linear_4178_61388)"/>
<path d="M15 28.6186C15 23.546 18.7937 22.129 21.3529 22.129H22.2669V24.5053H21.0781C18.117 24.5055 17.3763 27.2477 17.3763 28.6186V35.4728H15V28.6186Z" fill="url(#paint17_linear_4178_61388)"/>
<path d="M24.5053 22.129V35.4728H17.3763L17.3764 33.0965H22.129L22.1291 22.1289L24.5053 22.129Z" fill="url(#paint18_linear_4178_61388)"/>
<path d="M29.258 24.5054L24.5053 24.5054L24.5053 22.129L29.258 22.129V24.5054Z" fill="url(#paint19_linear_4178_61388)"/>
</g>
<defs>
<filter id="filter0_f_4178_61388" x="5" y="5" width="40.4727" height="40.4728" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="5" result="effect1_foregroundBlur_4178_61388"/>
</filter>
<filter id="filter1_f_4178_61388" x="0" y="0" width="50.4727" height="50.4728" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="7.5" result="effect1_foregroundBlur_4178_61388"/>
</filter>
<linearGradient id="paint0_linear_4178_61388" x1="25.2371" y1="15" x2="25.2371" y2="41.6877" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint1_linear_4178_61388" x1="25.2371" y1="15" x2="25.2371" y2="41.6877" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint2_linear_4178_61388" x1="25.2371" y1="15" x2="25.2371" y2="41.6877" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint3_linear_4178_61388" x1="25.2371" y1="15" x2="25.2371" y2="41.6877" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint4_linear_4178_61388" x1="25.2371" y1="15" x2="25.2371" y2="41.6877" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint5_linear_4178_61388" x1="25.2371" y1="15" x2="25.2371" y2="41.6877" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint6_linear_4178_61388" x1="25.2371" y1="15" x2="25.2371" y2="41.6877" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint7_linear_4178_61388" x1="25.2371" y1="15" x2="25.2371" y2="41.6877" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint8_linear_4178_61388" x1="25.2371" y1="15" x2="25.2371" y2="41.6877" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint9_linear_4178_61388" x1="25.2371" y1="15" x2="25.2371" y2="41.6877" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint10_linear_4178_61388" x1="25.2371" y1="15" x2="25.2371" y2="41.6877" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint11_linear_4178_61388" x1="25.2371" y1="15" x2="25.2371" y2="41.6877" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint12_linear_4178_61388" x1="25.2371" y1="15" x2="25.2371" y2="41.6877" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint13_linear_4178_61388" x1="25.2371" y1="15" x2="25.2371" y2="41.6877" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint14_linear_4178_61388" x1="25.2371" y1="15" x2="25.2371" y2="41.6877" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint15_linear_4178_61388" x1="25.2371" y1="15" x2="25.2371" y2="41.6877" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint16_linear_4178_61388" x1="25.2371" y1="15" x2="25.2371" y2="41.6877" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint17_linear_4178_61388" x1="25.2371" y1="15" x2="25.2371" y2="41.6877" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint18_linear_4178_61388" x1="25.2371" y1="15" x2="25.2371" y2="41.6877" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint19_linear_4178_61388" x1="25.2371" y1="15" x2="25.2371" y2="41.6877" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
</defs>
</svg>

BIN
public/assets/images/luminous_ball.png

After

Width: 1349  |  Height: 865  |  Size: 904 KiB

340
public/assets/images/luminous_ball.svg

@ -0,0 +1,340 @@
<svg width="1349" height="865" viewBox="0 0 1349 865" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_f_1429_12168)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M514.081 250.023C537.054 249.41 557.255 261.359 575.225 275.656C596.248 292.382 622.942 309.842 622.992 336.673C623.042 363.518 599.132 385.181 575.452 397.917C556.713 407.995 535.335 394.075 514.081 395.246C490.12 396.567 466.052 417.498 445.534 405.078C423.572 391.784 415.174 362.218 417.315 336.673C419.331 312.637 438.128 294.94 456.118 278.831C472.819 263.876 491.65 250.62 514.081 250.023Z" fill="url(#paint0_linear_1429_12168)"/>
</g>
<g filter="url(#filter1_f_1429_12168)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M824.081 405.023C847.054 404.41 867.255 416.359 885.225 430.656C906.248 447.382 932.942 464.842 932.992 491.673C933.042 518.518 909.132 540.181 885.452 552.917C866.713 562.995 845.335 549.075 824.081 550.246C800.12 551.567 776.052 572.498 755.534 560.078C733.572 546.784 725.174 517.218 727.315 491.673C729.331 467.637 748.128 449.94 766.118 433.831C782.819 418.876 801.65 405.62 824.081 405.023Z" fill="url(#paint1_linear_1429_12168)"/>
</g>
<g filter="url(#filter2_f_1429_12168)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M568.61 456.023C591.471 455.41 611.575 467.359 629.457 481.656C650.378 498.382 676.943 515.842 676.992 542.673C677.042 569.518 653.248 591.181 629.682 603.917C611.035 613.995 589.761 600.075 568.61 601.246C544.765 602.567 520.814 623.498 500.396 611.078C478.54 597.784 470.183 568.218 472.314 542.673C474.319 518.637 493.026 500.94 510.928 484.831C527.548 469.876 546.288 456.62 568.61 456.023Z" fill="url(#paint2_linear_1429_12168)"/>
</g>
<g filter="url(#filter3_f_1429_12168)" style="mix-blend-mode:screen">
<circle cx="637.492" cy="421.5" r="218.5" fill="url(#paint3_linear_1429_12168)"/>
</g>
<g filter="url(#filter4_iii_1429_12168)">
<circle cx="637.492" cy="421.5" r="218.5" fill="#03070D"/>
</g>
<g filter="url(#filter5_d_1429_12168)" style="mix-blend-mode:plus-lighter">
<path d="M409.521 398.102C418.386 343.271 447.011 289.756 488.325 252.374C529.628 215.002 583.571 193.786 643.129 203.414C702.738 213.051 761.779 252.583 803.709 303.489C845.648 354.406 870.311 416.506 861.474 471.168C852.633 525.851 815.522 570.727 765.614 599.536C715.707 628.345 653.088 641.032 593.414 631.384C474.061 612.089 391.822 507.581 409.521 398.102Z" stroke="url(#paint4_linear_1429_12168)" stroke-width="2" shape-rendering="crispEdges"/>
</g>
<mask id="mask0_1429_12168" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="418" y="203" width="438" height="437">
<circle cx="637.492" cy="421.5" r="218.5" fill="#D9D9D9"/>
</mask>
<g mask="url(#mask0_1429_12168)">
<g filter="url(#filter6_fn_1429_12168)" style="mix-blend-mode:plus-lighter">
<circle cx="753.203" cy="514.742" r="218.5" fill="url(#paint5_linear_1429_12168)"/>
</g>
<g filter="url(#filter7_f_1429_12168)">
<mask id="mask1_1429_12168" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="530" y="314" width="214" height="214">
<path d="M636.929 314.216C650.189 380.791 676.69 407.551 743.652 420.938C676.674 434.325 650.173 461.085 636.929 527.661C623.67 461.085 597.169 434.309 530.207 420.938C597.184 407.551 623.686 380.791 636.929 314.216Z" fill="white"/>
</mask>
<g mask="url(#mask1_1429_12168)">
<path d="M743.652 314.216H530.207V527.661H743.652V314.216Z" fill="white"/>
<g filter="url(#filter8_f_1429_12168)">
<path d="M757.524 387.854H629.457V538.333H757.524V387.854Z" fill="#0066FF"/>
</g>
</g>
</g>
<g style="mix-blend-mode:screen">
<g filter="url(#filter9_f_1429_12168)">
<path d="M275.199 1129.8L1068.31 1129.8V455.766C1068.31 455.766 923.117 545.635 671.757 545.636C420.397 545.638 275.199 455.763 275.199 455.763V1129.8Z" fill="#0029B2"/>
</g>
<g filter="url(#filter10_f_1429_12168)">
<path d="M275.199 1073.63L1068.31 1073.63V511.936C1068.31 511.936 921.465 601.806 671.757 601.806C422.05 601.806 275.199 511.933 275.199 511.933V1073.63Z" fill="#3D6FE5"/>
</g>
<g filter="url(#filter11_f_1429_12168)">
<path d="M275.199 1017.46L1068.31 1017.46V568.105C1068.31 568.105 921.465 657.975 671.757 657.975C422.05 657.975 275.199 568.103 275.199 568.103V1017.46Z" fill="#4B80FF"/>
</g>
<g filter="url(#filter12_f_1429_12168)" style="mix-blend-mode:plus-lighter">
<path d="M275.199 961.289L1068.31 961.29V624.274C1068.31 624.274 920.845 714.145 671.757 714.145C422.669 714.145 275.199 624.272 275.199 624.272V961.289Z" fill="#2D4D99"/>
</g>
<g filter="url(#filter13_f_1429_12168)">
<path d="M275.199 905.12L1068.31 905.121V680.443C1068.31 680.443 921.465 770.314 671.757 770.314C422.05 770.314 275.199 680.442 275.199 680.442V905.12Z" fill="white"/>
</g>
</g>
<g opacity="0.5" style="mix-blend-mode:screen">
<path d="M634.122 207.12C692.119 207.12 745.705 221.614 784.78 255.26C823.836 288.889 848.502 341.743 848.502 418.691C848.502 495.632 822.976 548.487 783.484 582.12C743.972 615.771 690.384 630.263 634.122 630.263C521.756 630.263 419.742 535.398 419.742 418.691C419.742 301.978 518.302 207.12 634.122 207.12Z" stroke="url(#paint6_linear_1429_12168)" stroke-width="1.5"/>
</g>
<g opacity="0.5" style="mix-blend-mode:screen">
<path d="M640.864 211.614C698.861 211.614 752.447 226.107 791.522 259.753C830.578 293.383 855.244 346.236 855.244 423.185C855.244 500.126 829.718 552.981 790.227 586.614C750.715 620.265 697.126 634.756 640.864 634.756C528.498 634.756 426.484 539.891 426.484 423.185C426.484 306.471 525.044 211.614 640.864 211.614Z" stroke="url(#paint7_linear_1429_12168)" stroke-width="1.5"/>
</g>
</g>
<path d="M775.676 409.65C775.145 409.698 774.753 410.168 774.801 410.699C774.849 411.23 775.319 411.622 775.85 411.574C776.382 411.526 776.773 411.056 776.725 410.525C776.677 409.993 776.207 409.602 775.676 409.65Z" fill="#9DB2D1"/>
<path d="M745.121 490.012C744.59 490.06 744.198 490.529 744.247 491.061C744.295 491.592 744.764 491.984 745.296 491.936C745.827 491.887 746.219 491.418 746.171 490.886C746.122 490.355 745.653 489.963 745.121 490.012Z" fill="#9DB2D1"/>
<path d="M727.926 396.519C727.395 396.568 727.003 397.037 727.051 397.569C727.099 398.1 727.569 398.492 728.1 398.443C728.632 398.395 729.023 397.925 728.975 397.394C728.927 396.863 728.457 396.471 727.926 396.519Z" fill="#9DB2D1"/>
<path d="M720.653 455.369C720.121 455.418 719.73 455.887 719.778 456.419C719.826 456.95 720.296 457.342 720.827 457.294C721.358 457.245 721.75 456.776 721.702 456.244C721.654 455.713 721.184 455.321 720.653 455.369Z" fill="#9DB2D1"/>
<path d="M710.075 434.993C709.543 435.041 709.152 435.51 709.2 436.042C709.248 436.573 709.718 436.965 710.249 436.917C710.78 436.868 711.172 436.399 711.124 435.867C711.076 435.336 710.606 434.944 710.075 434.993Z" fill="#9DB2D1"/>
<path d="M676.035 476.876C675.504 476.924 675.112 477.394 675.161 477.925C675.209 478.456 675.679 478.848 676.21 478.8C676.741 478.752 677.133 478.282 677.085 477.751C677.037 477.219 676.567 476.828 676.035 476.876Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M649.028 446.344C648.496 446.392 648.105 446.862 648.153 447.393C648.201 447.924 648.671 448.316 649.202 448.268C649.733 448.219 650.125 447.75 650.077 447.218C650.029 446.687 649.559 446.295 649.028 446.344Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M636.348 434.889C635.817 434.937 635.425 435.406 635.473 435.938C635.521 436.469 635.991 436.861 636.522 436.813C637.054 436.764 637.445 436.295 637.397 435.763C637.349 435.232 636.879 434.84 636.348 434.889Z" fill="#9DB2D1"/>
<path d="M624.364 452.463C623.832 452.511 623.441 452.981 623.489 453.512C623.537 454.043 624.007 454.435 624.538 454.387C625.069 454.339 625.461 453.869 625.413 453.338C625.365 452.806 624.895 452.415 624.364 452.463Z" fill="#9DB2D1"/>
<path d="M611.239 457.532C610.707 457.58 610.316 458.05 610.364 458.581C610.412 459.112 610.882 459.504 611.413 459.456C611.944 459.407 612.336 458.938 612.288 458.406C612.24 457.875 611.77 457.483 611.239 457.532Z" fill="#9DB2D1"/>
<path d="M588.051 533.346C587.52 533.394 587.128 533.864 587.176 534.395C587.224 534.927 587.694 535.318 588.225 535.27C588.757 535.222 589.148 534.752 589.1 534.221C589.052 533.69 588.582 533.298 588.051 533.346Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M578.543 439.16C578.012 439.209 577.62 439.678 577.668 440.21C577.717 440.741 578.186 441.133 578.718 441.085C579.249 441.036 579.641 440.567 579.592 440.035C579.544 439.504 579.075 439.112 578.543 439.16Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M582.028 477.636C581.496 477.684 581.105 478.154 581.153 478.685C581.201 479.217 581.671 479.608 582.202 479.56C582.733 479.512 583.125 479.042 583.077 478.511C583.029 477.98 582.559 477.588 582.028 477.636Z" fill="#9DB2D1"/>
<path d="M536.371 508.936C535.84 508.985 535.448 509.454 535.497 509.986C535.545 510.517 536.014 510.909 536.546 510.86C537.077 510.812 537.469 510.342 537.421 509.811C537.372 509.28 536.903 508.888 536.371 508.936Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M846.348 494.432C845.817 494.481 845.425 494.95 845.473 495.482C845.521 496.013 845.991 496.405 846.522 496.356C847.054 496.308 847.445 495.839 847.397 495.307C847.349 494.776 846.879 494.384 846.348 494.432Z" fill="#9DB2D1"/>
<path d="M507.965 441.677C507.434 441.725 507.042 442.195 507.09 442.726C507.138 443.257 507.608 443.649 508.14 443.601C508.671 443.552 509.063 443.083 509.014 442.551C508.966 442.02 508.496 441.628 507.965 441.677Z" fill="#9DB2D1"/>
<path d="M511.457 480.158C510.926 480.206 510.534 480.676 510.583 481.207C510.631 481.739 511.1 482.13 511.632 482.082C512.163 482.034 512.555 481.564 512.507 481.033C512.458 480.502 511.989 480.11 511.457 480.158Z" fill="#9DB2D1"/>
<path d="M493.895 404.154C493.364 404.202 492.972 404.672 493.02 405.203C493.068 405.735 493.538 406.126 494.069 406.078C494.601 406.03 494.992 405.56 494.944 405.029C494.896 404.498 494.426 404.106 493.895 404.154Z" fill="#9DB2D1"/>
<path d="M895.082 519.379C894.551 519.427 894.159 519.897 894.208 520.428C894.256 520.959 894.725 521.351 895.257 521.303C895.788 521.255 896.18 520.785 896.132 520.254C896.083 519.722 895.614 519.331 895.082 519.379Z" fill="#9DB2D1"/>
<path d="M894.309 475.806C893.778 475.855 893.386 476.324 893.434 476.856C893.482 477.387 893.952 477.779 894.483 477.731C895.015 477.682 895.406 477.213 895.358 476.681C895.31 476.15 894.84 475.758 894.309 475.806Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M491.77 530.439C491.239 530.487 490.847 530.957 490.895 531.488C490.943 532.02 491.413 532.411 491.944 532.363C492.476 532.315 492.867 531.845 492.819 531.314C492.771 530.783 492.301 530.391 491.77 530.439Z" fill="#9DB2D1"/>
<path d="M479.106 465.631C478.574 465.679 478.183 466.149 478.231 466.68C478.279 467.212 478.749 467.603 479.28 467.555C479.811 467.507 480.203 467.037 480.155 466.506C480.107 465.975 479.637 465.583 479.106 465.631Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M454.825 347.558C454.293 347.607 453.902 348.076 453.95 348.608C453.998 349.139 454.468 349.531 454.999 349.482C455.53 349.434 455.922 348.965 455.874 348.433C455.826 347.902 455.356 347.51 454.825 347.558Z" fill="#9DB2D1"/>
<path d="M467.293 495.8C466.762 495.849 466.37 496.318 466.418 496.85C466.467 497.381 466.936 497.773 467.468 497.724C467.999 497.676 468.391 497.206 468.342 496.675C468.294 496.144 467.825 495.752 467.293 495.8Z" fill="#9DB2D1"/>
<path d="M450.332 447.874C449.801 447.922 449.409 448.392 449.458 448.923C449.506 449.454 449.975 449.846 450.507 449.798C451.038 449.75 451.43 449.28 451.382 448.749C451.333 448.217 450.864 447.826 450.332 447.874Z" fill="#9DB2D1"/>
<path d="M408.379 380.872C407.848 380.921 407.456 381.39 407.504 381.922C407.553 382.453 408.022 382.845 408.554 382.796C409.085 382.748 409.477 382.279 409.428 381.747C409.38 381.216 408.91 380.824 408.379 380.872Z" fill="#9DB2D1"/>
<path d="M405.192 495.613C404.66 495.661 404.269 496.131 404.317 496.662C404.365 497.193 404.835 497.585 405.366 497.537C405.897 497.489 406.289 497.019 406.241 496.487C406.193 495.956 405.723 495.564 405.192 495.613Z" fill="#9DB2D1"/>
<path d="M840.239 404.535C839.707 404.583 839.316 405.052 839.364 405.584C839.412 406.115 839.882 406.507 840.413 406.459C840.944 406.41 841.336 405.941 841.288 405.409C841.24 404.878 840.77 404.486 840.239 404.535Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M377.809 461.256C377.278 461.304 376.886 461.774 376.934 462.305C376.982 462.836 377.452 463.228 377.983 463.18C378.515 463.132 378.906 462.662 378.858 462.131C378.81 461.599 378.34 461.208 377.809 461.256Z" fill="#9DB2D1"/>
<path d="M353.317 426.618C352.785 426.666 352.394 427.135 352.442 427.667C352.49 428.198 352.96 428.59 353.491 428.542C354.022 428.493 354.414 428.024 354.366 427.492C354.318 426.961 353.848 426.569 353.317 426.618Z" fill="#9DB2D1"/>
<path d="M333.637 476.901C333.106 476.949 332.714 477.419 332.762 477.95C332.81 478.482 333.28 478.873 333.811 478.825C334.343 478.777 334.734 478.307 334.686 477.776C334.638 477.245 334.168 476.853 333.637 476.901Z" fill="#9DB2D1"/>
<path d="M308.715 448.123C308.184 448.172 307.792 448.641 307.84 449.173C307.888 449.704 308.358 450.096 308.89 450.047C309.421 449.999 309.813 449.529 309.764 448.998C309.716 448.467 309.246 448.075 308.715 448.123Z" fill="#9DB2D1"/>
<path d="M281.707 417.592C281.176 417.64 280.784 418.11 280.833 418.641C280.881 419.172 281.35 419.564 281.882 419.516C282.413 419.468 282.805 418.998 282.757 418.466C282.708 417.935 282.239 417.543 281.707 417.592Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M257.035 423.707C256.504 423.756 256.112 424.225 256.161 424.757C256.209 425.288 256.679 425.68 257.21 425.631C257.741 425.583 258.133 425.113 258.085 424.582C258.037 424.051 257.567 423.659 257.035 423.707Z" fill="#9DB2D1"/>
<path d="M817.59 476.675C817.059 476.723 816.667 477.193 816.715 477.724C816.763 478.256 817.233 478.647 817.765 478.599C818.296 478.551 818.688 478.081 818.639 477.55C818.591 477.019 818.121 476.627 817.59 476.675Z" fill="#9DB2D1"/>
<path d="M243.918 428.779C243.387 428.827 242.995 429.297 243.043 429.828C243.092 430.36 243.561 430.751 244.093 430.703C244.624 430.655 245.016 430.185 244.967 429.654C244.919 429.123 244.45 428.731 243.918 428.779Z" fill="#9DB2D1"/>
<path d="M220.746 504.59C220.215 504.638 219.823 505.108 219.872 505.639C219.92 506.17 220.389 506.562 220.921 506.514C221.452 506.466 221.844 505.996 221.796 505.464C221.747 504.933 221.278 504.542 220.746 504.59Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M214.723 448.88C214.192 448.928 213.8 449.398 213.848 449.929C213.896 450.461 214.366 450.852 214.897 450.804C215.429 450.756 215.82 450.286 215.772 449.755C215.724 449.224 215.254 448.832 214.723 448.88Z" fill="#9DB2D1"/>
<path d="M169.067 480.18C168.535 480.228 168.144 480.697 168.192 481.229C168.24 481.76 168.71 482.152 169.241 482.104C169.772 482.055 170.164 481.586 170.116 481.054C170.068 480.523 169.598 480.131 169.067 480.18Z" fill="#9DB2D1"/>
<path d="M807.176 490.225C806.645 490.273 806.253 490.743 806.301 491.274C806.349 491.805 806.819 492.197 807.35 492.149C807.882 492.101 808.273 491.631 808.225 491.1C808.177 490.568 807.707 490.177 807.176 490.225Z" fill="#9DB2D1"/>
<path d="M124.457 501.683C123.926 501.731 123.534 502.201 123.583 502.732C123.631 503.263 124.1 503.655 124.632 503.607C125.163 503.559 125.555 503.089 125.507 502.558C125.458 502.026 124.989 501.635 124.457 501.683Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M113.981 428.916C113.449 428.964 113.058 429.434 113.106 429.965C113.154 430.496 113.624 430.888 114.155 430.84C114.686 430.792 115.078 430.322 115.03 429.791C114.982 429.259 114.512 428.868 113.981 428.916Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M3.21513 580.391C2.68382 580.439 2.29216 580.909 2.34032 581.44C2.38849 581.971 2.85824 582.363 3.38955 582.315C3.92085 582.267 4.31252 581.797 4.26435 581.266C4.21619 580.734 3.74643 580.343 3.21513 580.391Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M99.9729 467.048C99.4416 467.096 99.05 467.566 99.0981 468.097C99.1463 468.628 99.6161 469.02 100.147 468.972C100.679 468.924 101.07 468.454 101.022 467.923C100.974 467.391 100.504 467 99.9729 467.048Z" fill="#9DB2D1"/>
<path d="M76.9026 426.459C76.3713 426.507 75.9797 426.977 76.0278 427.509C76.076 428.04 76.5457 428.432 77.077 428.383C77.6084 428.335 78 427.865 77.9519 427.334C77.9037 426.803 77.4339 426.411 76.9026 426.459Z" fill="#9DB2D1"/>
<path d="M69.8167 444.558C69.2854 444.606 68.8937 445.076 68.9419 445.607C68.9901 446.138 69.4598 446.53 69.9911 446.482C70.5224 446.434 70.9141 445.964 70.8659 445.433C70.8178 444.901 70.348 444.51 69.8167 444.558Z" fill="#9DB2D1"/>
<path d="M55.5511 501.139C55.0198 501.187 54.6281 501.657 54.6763 502.188C54.7244 502.72 55.1942 503.111 55.7255 503.063C56.2568 503.015 56.6485 502.545 56.6003 502.014C56.5521 501.483 56.0824 501.091 55.5511 501.139Z" fill="#9DB2D1"/>
<path d="M14.0276 542.119C13.4963 542.167 13.1047 542.637 13.1528 543.168C13.201 543.7 13.6707 544.091 14.202 544.043C14.7334 543.995 15.125 543.525 15.0769 542.994C15.0287 542.462 14.5589 542.071 14.0276 542.119Z" fill="#9DB2D1"/>
<path d="M0.879191 493.321C0.347885 493.369 -0.0437781 493.839 0.00438636 494.37C0.0525508 494.901 0.522304 495.293 1.05361 495.245C1.58492 495.197 1.97658 494.727 1.92842 494.195C1.88025 493.664 1.4105 493.272 0.879191 493.321Z" fill="#9DB2D1"/>
<path d="M1235.68 333.806C1235.15 333.806 1234.72 334.239 1234.72 334.772C1234.72 335.306 1235.15 335.738 1235.68 335.738C1236.22 335.738 1236.65 335.306 1236.65 334.772C1236.65 334.239 1236.22 333.806 1235.68 333.806Z" fill="#9DB2D1"/>
<path d="M1198 411.081C1197.47 411.081 1197.04 411.514 1197.04 412.047C1197.04 412.581 1197.47 413.013 1198 413.013C1198.54 413.013 1198.97 412.581 1198.97 412.047C1198.97 411.514 1198.54 411.081 1198 411.081Z" fill="#9DB2D1"/>
<path d="M1189.32 316.418C1188.78 316.418 1188.35 316.85 1188.35 317.384C1188.35 317.917 1188.78 318.35 1189.32 318.35C1189.85 318.35 1190.28 317.917 1190.28 317.384C1190.28 316.85 1189.85 316.418 1189.32 316.418Z" fill="#9DB2D1"/>
<path d="M1176.76 374.371C1176.23 374.371 1175.79 374.804 1175.79 375.337C1175.79 375.871 1176.23 376.303 1176.76 376.303C1177.29 376.303 1177.73 375.871 1177.73 375.337C1177.73 374.804 1177.29 374.371 1176.76 374.371Z" fill="#9DB2D1"/>
<path d="M1168.07 353.123C1167.53 353.123 1167.1 353.555 1167.1 354.089C1167.1 354.622 1167.53 355.055 1168.07 355.055C1168.6 355.055 1169.03 354.622 1169.03 354.089C1169.03 353.555 1168.6 353.123 1168.07 353.123Z" fill="#9DB2D1"/>
<path d="M1130.39 391.762C1129.85 391.762 1129.42 392.194 1129.42 392.728C1129.42 393.261 1129.85 393.694 1130.39 393.694C1130.92 393.694 1131.35 393.261 1131.35 392.728C1131.35 392.194 1130.92 391.762 1130.39 391.762Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M1106.24 358.917C1105.71 358.917 1105.28 359.349 1105.28 359.883C1105.28 360.416 1105.71 360.849 1106.24 360.849C1106.78 360.849 1107.21 360.416 1107.21 359.883C1107.21 359.349 1106.78 358.917 1106.24 358.917Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M1094.64 346.363C1094.11 346.363 1093.68 346.795 1093.68 347.328C1093.68 347.862 1094.11 348.294 1094.64 348.294C1095.18 348.294 1095.61 347.862 1095.61 347.328C1095.61 346.795 1095.18 346.363 1094.64 346.363Z" fill="#9DB2D1"/>
<path d="M1081.13 362.783C1080.59 362.783 1080.16 363.215 1080.16 363.749C1080.16 364.282 1080.59 364.715 1081.13 364.715C1081.66 364.715 1082.09 364.282 1082.09 363.749C1082.09 363.215 1081.66 362.783 1081.13 362.783Z" fill="#9DB2D1"/>
<path d="M1067.6 366.646C1067.06 366.646 1066.63 367.079 1066.63 367.612C1066.63 368.146 1067.06 368.578 1067.6 368.578C1068.13 368.578 1068.56 368.146 1068.56 367.612C1068.56 367.079 1068.13 366.646 1067.6 366.646Z" fill="#9DB2D1"/>
<path d="M1037.66 440.058C1037.13 440.058 1036.69 440.49 1036.69 441.024C1036.69 441.557 1037.13 441.99 1037.66 441.99C1038.19 441.99 1038.62 441.557 1038.62 441.024C1038.62 440.49 1038.19 440.058 1037.66 440.058Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M1036.7 345.399C1036.16 345.399 1035.73 345.832 1035.73 346.365C1035.73 346.899 1036.16 347.331 1036.7 347.331C1037.23 347.331 1037.66 346.899 1037.66 346.365C1037.66 345.832 1037.23 345.399 1036.7 345.399Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M1036.69 384.032C1036.16 384.032 1035.72 384.464 1035.72 384.998C1035.72 385.531 1036.16 385.964 1036.69 385.964C1037.22 385.964 1037.66 385.531 1037.66 384.998C1037.66 384.464 1037.22 384.032 1036.69 384.032Z" fill="#9DB2D1"/>
<path d="M988.393 411.082C987.86 411.082 987.427 411.514 987.427 412.048C987.427 412.581 987.86 413.014 988.393 413.014C988.927 413.014 989.359 412.581 989.359 412.048C989.359 411.514 988.927 411.082 988.393 411.082Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M1298.42 424.623C1297.88 424.623 1297.45 425.056 1297.45 425.589C1297.45 426.123 1297.88 426.555 1298.42 426.555C1298.95 426.555 1299.38 426.123 1299.38 425.589C1299.38 425.056 1298.95 424.623 1298.42 424.623Z" fill="#9DB2D1"/>
<path d="M966.175 341.533C965.641 341.533 965.209 341.965 965.209 342.499C965.209 343.032 965.641 343.465 966.175 343.465C966.708 343.465 967.141 343.032 967.141 342.499C967.141 341.965 966.708 341.533 966.175 341.533Z" fill="#9DB2D1"/>
<path d="M966.182 380.172C965.649 380.172 965.217 380.605 965.217 381.138C965.217 381.672 965.649 382.104 966.182 382.104C966.716 382.104 967.148 381.672 967.148 381.138C967.148 380.605 966.716 380.172 966.182 380.172Z" fill="#9DB2D1"/>
<path d="M955.55 302.892C955.016 302.892 954.584 303.325 954.584 303.858C954.584 304.392 955.016 304.824 955.55 304.824C956.083 304.824 956.516 304.392 956.516 303.858C956.516 303.325 956.083 302.892 955.55 302.892Z" fill="#9DB2D1"/>
<path d="M1344.7 453.867C1344.16 453.867 1343.73 454.3 1343.73 454.833C1343.73 455.367 1344.16 455.799 1344.7 455.799C1345.23 455.799 1345.66 455.367 1345.66 454.833C1345.66 454.3 1345.23 453.867 1344.7 453.867Z" fill="#9DB2D1"/>
<path d="M1347.86 410.404C1347.33 410.404 1346.9 410.836 1346.9 411.369C1346.9 411.903 1347.33 412.335 1347.86 412.335C1348.4 412.335 1348.83 411.903 1348.83 411.369C1348.83 410.836 1348.4 410.404 1347.86 410.404Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M942.034 428.47C941.501 428.47 941.068 428.903 941.068 429.436C941.068 429.97 941.501 430.402 942.034 430.402C942.568 430.402 943 429.97 943 429.436C943 428.903 942.568 428.47 942.034 428.47Z" fill="#9DB2D1"/>
<path d="M935.268 362.784C934.735 362.784 934.302 363.216 934.302 363.75C934.302 364.283 934.735 364.716 935.268 364.716C935.802 364.716 936.234 364.283 936.234 363.75C936.234 363.216 935.802 362.784 935.268 362.784Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M921.745 243C921.211 243 920.779 243.432 920.779 243.966C920.779 244.499 921.211 244.932 921.745 244.932C922.278 244.932 922.711 244.499 922.711 243.966C922.711 243.432 922.278 243 921.745 243Z" fill="#9DB2D1"/>
<path d="M920.776 391.762C920.243 391.762 919.81 392.195 919.81 392.728C919.81 393.262 920.243 393.694 920.776 393.694C921.31 393.694 921.742 393.262 921.742 392.728C921.742 392.195 921.31 391.762 920.776 391.762Z" fill="#9DB2D1"/>
<path d="M908.222 342.502C907.688 342.502 907.256 342.934 907.256 343.468C907.256 344.001 907.688 344.434 908.222 344.434C908.755 344.434 909.188 344.001 909.188 343.468C909.188 342.934 908.755 342.502 908.222 342.502Z" fill="#9DB2D1"/>
<path d="M872.479 271.984C871.946 271.984 871.513 272.417 871.513 272.95C871.513 273.484 871.946 273.916 872.479 273.916C873.013 273.916 873.445 273.484 873.445 272.95C873.445 272.417 873.013 271.984 872.479 271.984Z" fill="#9DB2D1"/>
<path d="M858.956 385.97C858.422 385.97 857.99 386.402 857.99 386.936C857.99 387.469 858.422 387.902 858.956 387.902C859.489 387.902 859.922 387.469 859.922 386.936C859.922 386.402 859.489 385.97 858.956 385.97Z" fill="#9DB2D1"/>
<path d="M1300.45 334.541C1299.91 334.541 1299.48 334.973 1299.48 335.507C1299.48 336.04 1299.91 336.473 1300.45 336.473C1300.98 336.473 1301.41 336.04 1301.41 335.507C1301.41 334.973 1300.98 334.541 1300.45 334.541Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M834.776 349.28C834.243 349.28 833.81 349.712 833.81 350.246C833.81 350.779 834.243 351.212 834.776 351.212C835.31 351.212 835.742 350.779 835.742 350.246C835.742 349.712 835.31 349.28 834.776 349.28Z" fill="#9DB2D1"/>
<path d="M813.518 312.572C812.985 312.572 812.552 313.004 812.552 313.538C812.552 314.071 812.985 314.504 813.518 314.504C814.052 314.504 814.484 314.071 814.484 313.538C814.484 313.004 814.052 312.572 813.518 312.572Z" fill="#9DB2D1"/>
<path d="M789.37 360.874C788.836 360.874 788.404 361.306 788.404 361.84C788.404 362.373 788.836 362.806 789.37 362.806C789.903 362.806 790.336 362.373 790.336 361.84C790.336 361.306 789.903 360.874 789.37 360.874Z" fill="#9DB2D1"/>
<path d="M767.159 329.964C766.626 329.964 766.193 330.397 766.193 330.93C766.193 331.464 766.626 331.896 767.159 331.896C767.693 331.896 768.125 331.464 768.125 330.93C768.125 330.397 767.693 329.964 767.159 329.964Z" fill="#9DB2D1"/>
<path d="M743.003 297.117C742.469 297.117 742.037 297.549 742.037 298.083C742.037 298.616 742.469 299.049 743.003 299.049C743.536 299.049 743.969 298.616 743.969 298.083C743.969 297.549 743.536 297.117 743.003 297.117Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M717.893 300.982C717.36 300.982 716.927 301.414 716.927 301.948C716.927 302.481 717.36 302.914 717.893 302.914C718.427 302.914 718.859 302.481 718.859 301.948C718.859 301.414 718.427 300.982 717.893 300.982Z" fill="#9DB2D1"/>
<path d="M1271.38 404.342C1270.84 404.342 1270.41 404.774 1270.41 405.307C1270.41 405.841 1270.84 406.273 1271.38 406.273C1271.91 406.273 1272.34 405.841 1272.34 405.307C1272.34 404.774 1271.91 404.342 1271.38 404.342Z" fill="#9DB2D1"/>
<path d="M704.37 304.848C703.836 304.848 703.404 305.28 703.404 305.814C703.404 306.347 703.836 306.78 704.37 306.78C704.903 306.78 705.336 306.347 705.336 305.814C705.336 305.28 704.903 304.848 704.37 304.848Z" fill="#9DB2D1"/>
<path d="M674.448 378.258C673.915 378.258 673.482 378.69 673.482 379.223C673.482 379.757 673.915 380.189 674.448 380.189C674.982 380.189 675.414 379.757 675.414 379.223C675.414 378.69 674.982 378.258 674.448 378.258Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M673.479 322.231C672.946 322.231 672.513 322.664 672.513 323.197C672.513 323.731 672.946 324.163 673.479 324.163C674.013 324.163 674.445 323.731 674.445 323.197C674.445 322.664 674.013 322.231 673.479 322.231Z" fill="#9DB2D1"/>
<path d="M625.182 349.282C624.649 349.282 624.217 349.714 624.217 350.248C624.217 350.781 624.649 351.214 625.182 351.214C625.716 351.214 626.148 350.781 626.148 350.248C626.148 349.714 625.716 349.282 625.182 349.282Z" fill="#9DB2D1"/>
<path d="M1259.78 416.896C1259.25 416.896 1258.82 417.329 1258.82 417.862C1258.82 418.396 1259.25 418.828 1259.78 418.828C1260.32 418.828 1260.75 418.396 1260.75 417.862C1260.75 417.329 1260.32 416.896 1259.78 416.896Z" fill="#9DB2D1"/>
<path d="M578.815 366.67C578.282 366.67 577.849 367.102 577.849 367.636C577.849 368.169 578.282 368.602 578.815 368.602C579.349 368.602 579.781 368.169 579.781 367.636C579.781 367.102 579.349 366.67 578.815 366.67Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M574.948 293.253C574.415 293.253 573.982 293.686 573.982 294.219C573.982 294.753 574.415 295.185 574.948 295.185C575.482 295.185 575.914 294.753 575.914 294.219C575.914 293.686 575.482 293.253 574.948 293.253Z" fill="#9DB2D1"/>
<path opacity="0.3" d="M450.956 434.109C450.422 434.109 449.99 434.542 449.99 435.075C449.99 435.609 450.422 436.041 450.956 436.041C451.489 436.041 451.922 435.609 451.922 435.075C451.922 434.542 451.489 434.109 450.956 434.109Z" fill="#9DB2D1"/>
<path opacity="0.5" d="M557.557 329.966C557.024 329.966 556.592 330.398 556.592 330.932C556.592 331.465 557.024 331.897 557.557 331.897C558.091 331.897 558.523 331.465 558.523 330.932C558.523 330.398 558.091 329.966 557.557 329.966Z" fill="#9DB2D1"/>
<path d="M538.245 287.459C537.711 287.459 537.279 287.892 537.279 288.425C537.279 288.959 537.711 289.391 538.245 289.391C538.778 289.391 539.211 288.959 539.211 288.425C539.211 287.892 538.778 287.459 538.245 287.459Z" fill="#9DB2D1"/>
<path d="M529.55 304.844C529.016 304.844 528.584 305.276 528.584 305.81C528.584 306.343 529.016 306.776 529.55 306.776C530.083 306.776 530.516 306.343 530.516 305.81C530.516 305.276 530.083 304.844 529.55 304.844Z" fill="#9DB2D1"/>
<path d="M510.237 359.906C509.704 359.906 509.271 360.339 509.271 360.872C509.271 361.406 509.704 361.838 510.237 361.838C510.771 361.838 511.203 361.406 511.203 360.872C511.203 360.339 510.771 359.906 510.237 359.906Z" fill="#9DB2D1"/>
<path d="M465.182 396.97C464.649 396.97 464.217 397.403 464.217 397.936C464.217 398.47 464.649 398.902 465.182 398.902C465.716 398.902 466.148 398.47 466.148 397.936C466.148 397.403 465.716 396.97 465.182 396.97Z" fill="#9DB2D1"/>
<path d="M456.495 347.184C455.961 347.184 455.529 347.617 455.529 348.15C455.529 348.684 455.961 349.116 456.495 349.116C457.028 349.116 457.461 348.684 457.461 348.15C457.461 347.617 457.028 347.184 456.495 347.184Z" fill="#9DB2D1"/>
<defs>
<filter id="filter0_f_1429_12168" x="166.992" y="0" width="706" height="659" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="125" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter1_f_1429_12168" x="476.992" y="155" width="706" height="659" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="125" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter2_f_1429_12168" x="221.992" y="206" width="705" height="659" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="125" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter3_f_1429_12168" x="318.992" y="103" width="637" height="637" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="50" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter4_iii_1429_12168" x="418.992" y="203" width="437" height="441" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="4"/>
<feGaussianBlur stdDeviation="50"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.195532 0 0 0 0 0.697115 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1429_12168"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="4"/>
<feGaussianBlur stdDeviation="16"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.1875 0 0 0 0 0.572368 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="effect1_innerShadow_1429_12168" result="effect2_innerShadow_1429_12168"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="5"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.9 0"/>
<feBlend mode="plus-lighter" in2="effect2_innerShadow_1429_12168" result="effect3_innerShadow_1429_12168"/>
</filter>
<filter id="filter5_d_1429_12168" x="396.225" y="188.201" width="477.937" height="455.275" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="-2"/>
<feGaussianBlur stdDeviation="4.95"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.439216 0 0 0 0 0.301961 0 0 0 0 0.890196 0 0 0 1 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1429_12168"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1429_12168" result="shape"/>
</filter>
<filter id="filter6_fn_1429_12168" x="386.703" y="148.242" width="733" height="733" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="74" result="effect1_foregroundBlur_1429_12168"/>
<feTurbulence type="fractalNoise" baseFrequency="0.20000000298023224 0.20000000298023224" stitchTiles="stitch" numOctaves="3" result="noise" seed="5948" />
<feColorMatrix in="noise" type="luminanceToAlpha" result="alphaNoise" />
<feComponentTransfer in="alphaNoise" result="coloredNoise1">
<feFuncA type="discrete" tableValues="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "/>
</feComponentTransfer>
<feComposite operator="in" in2="effect1_foregroundBlur_1429_12168" in="coloredNoise1" result="noise1Clipped" />
<feComponentTransfer in="alphaNoise" result="coloredNoise2">
<feFuncA type="discrete" tableValues="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "/>
</feComponentTransfer>
<feComposite operator="in" in2="effect1_foregroundBlur_1429_12168" in="coloredNoise2" result="noise2Clipped" />
<feFlood flood-color="#ADD1FF" result="color1Flood" />
<feComposite operator="in" in2="noise1Clipped" in="color1Flood" result="color1" />
<feFlood flood-color="rgba(255, 255, 255, 0)" result="color2Flood" />
<feComposite operator="in" in2="noise2Clipped" in="color2Flood" result="color2" />
<feMerge result="effect2_noise_1429_12168">
<feMergeNode in="effect1_foregroundBlur_1429_12168" />
<feMergeNode in="color1" />
<feMergeNode in="color2" />
</feMerge>
</filter>
<filter id="filter7_f_1429_12168" x="520.207" y="304.216" width="233.445" height="233.445" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="0" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter8_f_1429_12168" x="504.457" y="262.854" width="378.066" height="400.479" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="62.5" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter9_f_1429_12168" x="75.1992" y="255.763" width="1193.12" height="1074.04" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="100" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter10_f_1429_12168" x="115.199" y="351.933" width="1113.12" height="881.697" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="80" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter11_f_1429_12168" x="155.199" y="448.103" width="1033.12" height="689.357" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="60" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter12_f_1429_12168" x="155.199" y="504.272" width="1033.12" height="577.018" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="60" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<filter id="filter13_f_1429_12168" x="155.199" y="560.442" width="1033.12" height="464.679" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="60" result="effect1_foregroundBlur_1429_12168"/>
</filter>
<linearGradient id="paint0_linear_1429_12168" x1="395.077" y1="250" x2="653.061" y2="262.422" gradientUnits="userSpaceOnUse">
<stop stop-color="#7641E0"/>
<stop offset="1" stop-color="#3E47FD"/>
</linearGradient>
<linearGradient id="paint1_linear_1429_12168" x1="705.077" y1="405" x2="963.061" y2="417.422" gradientUnits="userSpaceOnUse">
<stop stop-color="#4143E0"/>
<stop offset="1" stop-color="#3E47FD"/>
</linearGradient>
<linearGradient id="paint2_linear_1429_12168" x1="450.184" y1="456" x2="706.92" y2="468.302" gradientUnits="userSpaceOnUse">
<stop stop-color="#A229CA"/>
<stop offset="1" stop-color="#3E47FD"/>
</linearGradient>
<linearGradient id="paint3_linear_1429_12168" x1="637.492" y1="203" x2="637.492" y2="772.661" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint4_linear_1429_12168" x1="410.811" y1="383.86" x2="1002.54" y2="479.523" gradientUnits="userSpaceOnUse">
<stop stop-color="#D3DDFF"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#ADBFFF"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#D4DEFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint5_linear_1429_12168" x1="753.203" y1="296.242" x2="753.203" y2="865.902" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint6_linear_1429_12168" x1="634.122" y1="206.37" x2="634.122" y2="759.922" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint7_linear_1429_12168" x1="640.864" y1="210.864" x2="640.864" y2="764.416" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
</defs>
</svg>

BIN
public/assets/images/object_left.png

After

Width: 115  |  Height: 116  |  Size: 8.2 KiB

20
public/assets/images/object_left.svg
File diff suppressed because it is too large
View File

BIN
public/assets/images/object_right.png

After

Width: 108  |  Height: 108  |  Size: 5.2 KiB

BIN
public/assets/images/side_decor_left.png

After

Width: 50  |  Height: 178  |  Size: 14 KiB

94
public/assets/images/side_decor_left.svg

@ -0,0 +1,94 @@
<svg width="50" height="178" viewBox="0 0 50 178" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.043 25C18.9072 26.4772 23.5228 31.0928 25 36.957C26.4771 31.0931 31.0923 26.4774 36.9561 25C31.0923 23.5226 26.4771 18.9069 25 13.043C23.5228 18.9072 18.9072 23.5228 13.043 25ZM33.5 8.5L33.5 9C33.5 13.1421 36.8579 16.5 41 16.5L41.5 16.5L41.5 33.5L41 33.5C36.8579 33.5 33.5 36.8579 33.5 41L33.5 41.5L16.5 41.5L16.5 41C16.5 36.8579 13.1421 33.5 9 33.5L8.5 33.5L8.5 16.5L9 16.5C13.1421 16.5 16.5 13.1421 16.5 9L16.5 8.5L33.5 8.5Z" fill="url(#paint0_radial_1429_12423)" fill-opacity="0.1" stroke="url(#paint1_linear_1429_12423)"/>
<g filter="url(#filter0_f_1429_12423)" style="mix-blend-mode:plus-lighter">
<path d="M25 41C25 32.1635 32.1635 25 41 25L41 33C36.5817 33 33 36.5817 33 41L25 41ZM33 8.99992C33 13.4182 36.5817 16.9999 41 16.9999L41 25C32.1635 25 25 17.8364 25 8.99992L33 8.99992ZM9 25C17.8365 25 25 32.1635 25 41L17 41C17 36.5817 13.4182 33 9 33L9 25ZM9 16.9999C13.4182 16.9999 17 13.4182 17 8.99992L25 8.99992C25 17.8364 17.8365 25 9 25L9 16.9999Z" fill="url(#paint2_radial_1429_12423)" fill-opacity="0.1"/>
<path d="M13.043 25C18.9072 26.4772 23.5228 31.0928 25 36.957C26.4771 31.0931 31.0923 26.4774 36.9561 25C31.0923 23.5226 26.4771 18.9069 25 13.043C23.5228 18.9072 18.9072 23.5228 13.043 25ZM33.5 8.5L33.5 9C33.5 13.1421 36.8579 16.5 41 16.5L41.5 16.5L41.5 33.5L41 33.5C36.8579 33.5 33.5 36.8579 33.5 41L33.5 41.5L16.5 41.5L16.5 41C16.5 36.8579 13.1421 33.5 9 33.5L8.5 33.5L8.5 16.5L9 16.5C13.1421 16.5 16.5 13.1421 16.5 9L16.5 8.5L33.5 8.5Z" stroke="url(#paint3_linear_1429_12423)"/>
</g>
<path d="M41.5 80.9998C41.5 76.3054 37.6944 72.4998 33 72.4998L16.5 72.4998L16.5 80.4998L8.5 80.4998L8.5 96.9998C8.50001 101.694 12.3056 105.5 17 105.5L33.5 105.5L33.5 97.4998L41.5 97.4998L41.5 80.9998ZM32.5 88.5154C28.2038 88.7646 24.7649 92.2036 24.5156 96.4998L17.5 96.4998L17.5 89.4851C21.7963 89.2358 25.2351 85.7959 25.4844 81.4998L32.5 81.4998L32.5 88.5154Z" fill="url(#paint4_radial_1429_12423)" fill-opacity="0.1" stroke="url(#paint5_linear_1429_12423)"/>
<g filter="url(#filter1_f_1429_12423)" style="mix-blend-mode:plus-lighter">
<path d="M17.1034 88.9991C21.474 88.9437 25 85.3835 25 80.9997L33 80.9997L33 88.9997C28.5818 88.9997 25 92.5815 25 96.9997L17 96.9997L17 88.9997L17.1034 88.9991ZM9.00001 80.9997L9.00001 96.9997C9.00001 101.418 12.5818 105 17 105L33 105L33 96.9997L41 96.9997L41 80.9997C41 76.5814 37.4183 72.9997 33 72.9997L17 72.9997L17 80.9997L9.00001 80.9997Z" fill="url(#paint6_radial_1429_12423)" fill-opacity="0.1"/>
<path d="M41.5 80.9998C41.5 76.3054 37.6944 72.4998 33 72.4998L16.5 72.4998L16.5 80.4998L8.5 80.4998L8.5 96.9998C8.50001 101.694 12.3056 105.5 17 105.5L33.5 105.5L33.5 97.4998L41.5 97.4998L41.5 80.9998ZM32.5 88.5154C28.2038 88.7646 24.7649 92.2036 24.5156 96.4998L17.5 96.4998L17.5 89.4851C21.7963 89.2358 25.2351 85.7959 25.4844 81.4998L32.5 81.4998L32.5 88.5154Z" stroke="url(#paint7_linear_1429_12423)"/>
</g>
<path d="M8.5 144.5L16.5 144.5L16.5 136.5L33.5 136.5L33.5 144.5L41.5 144.5L41.5 161.5L33.5 161.5L33.5 169.5L16.5 169.5L16.5 161.5L8.5 161.5L8.5 144.5ZM32.5 160.5L32.5 145.5L17.5 145.5L17.5 160.5L32.5 160.5ZM21.5 153C21.5 151.067 23.067 149.5 25 149.5C26.933 149.5 28.5 151.067 28.5 153C28.5 154.933 26.933 156.5 25 156.5C23.067 156.5 21.5 154.933 21.5 153Z" fill="url(#paint8_radial_1429_12423)" fill-opacity="0.1" stroke="url(#paint9_linear_1429_12423)"/>
<g filter="url(#filter2_f_1429_12423)" style="mix-blend-mode:plus-lighter">
<path d="M41.0001 145L41.0001 161L33.0001 161L33.0001 145L41.0001 145ZM33.0001 161L33.0001 169L17 169L17 161L33.0001 161ZM33.0001 137L33.0001 145L17 145L17 137L33.0001 137ZM22 153C22 151.343 23.3432 150 25 150C26.6569 150 28 151.343 28 153C28 154.657 26.6569 156 25 156C23.3432 156 22 154.657 22 153ZM17 145L17 161L9 161L9 145L17 145Z" fill="url(#paint10_radial_1429_12423)" fill-opacity="0.1"/>
<path d="M8.5 144.5L16.5 144.5L16.5 136.5L33.5 136.5L33.5 144.5L41.5 144.5L41.5 161.5L33.5 161.5L33.5 169.5L16.5 169.5L16.5 161.5L8.5 161.5L8.5 144.5ZM32.5 160.5L32.5 145.5L17.5 145.5L17.5 160.5L32.5 160.5ZM21.5 153C21.5 151.067 23.067 149.5 25 149.5C26.933 149.5 28.5 151.067 28.5 153C28.5 154.933 26.933 156.5 25 156.5C23.067 156.5 21.5 154.933 21.5 153Z" stroke="url(#paint11_linear_1429_12423)"/>
</g>
<defs>
<filter id="filter0_f_1429_12423" x="0" y="0" width="50" height="50" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="4" result="effect1_foregroundBlur_1429_12423"/>
</filter>
<filter id="filter1_f_1429_12423" x="0" y="63.9998" width="50" height="50" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="4" result="effect1_foregroundBlur_1429_12423"/>
</filter>
<filter id="filter2_f_1429_12423" x="0" y="128" width="50" height="50" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="4" result="effect1_foregroundBlur_1429_12423"/>
</filter>
<radialGradient id="paint0_radial_1429_12423" cx="0" cy="0" r="1" gradientTransform="matrix(8.18608 30.551 -36.4362 9.41392 23.1184 11.7824)" gradientUnits="userSpaceOnUse">
<stop stop-color="#3860FF"/>
<stop offset="0.55" stop-color="#0051FF" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint1_linear_1429_12423" x1="19.1958" y1="8.95556" x2="29.4022" y2="33.5257" gradientUnits="userSpaceOnUse">
<stop stop-color="#CDC8FF"/>
<stop offset="0.314723" stop-color="#515AF5" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<radialGradient id="paint2_radial_1429_12423" cx="0" cy="0" r="1" gradientTransform="matrix(8.18608 30.551 -36.4362 9.41392 23.1184 11.7824)" gradientUnits="userSpaceOnUse">
<stop stop-color="#3860FF"/>
<stop offset="0.55" stop-color="#0051FF" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint3_linear_1429_12423" x1="19.1958" y1="8.95556" x2="29.4022" y2="33.5257" gradientUnits="userSpaceOnUse">
<stop stop-color="#CDC8FF"/>
<stop offset="0.314723" stop-color="#515AF5" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<radialGradient id="paint4_radial_1429_12423" cx="0" cy="0" r="1" gradientTransform="matrix(-26 11.6667 14.1581 30.8101 35.3333 81.6664)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000DFF"/>
<stop offset="0.287094" stop-color="#0051FF" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint5_linear_1429_12423" x1="30.8042" y1="72.9553" x2="20.5978" y2="97.5255" gradientUnits="userSpaceOnUse">
<stop stop-color="#CDC8FF"/>
<stop offset="0.314723" stop-color="#515AF5" stop-opacity="0.5"/>
<stop offset="1"/>
</linearGradient>
<radialGradient id="paint6_radial_1429_12423" cx="0" cy="0" r="1" gradientTransform="matrix(-26 11.6667 14.1581 30.8101 35.3333 81.6664)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000DFF"/>
<stop offset="0.287094" stop-color="#0051FF" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint7_linear_1429_12423" x1="30.8042" y1="72.9553" x2="20.5978" y2="97.5255" gradientUnits="userSpaceOnUse">
<stop stop-color="#CDC8FF"/>
<stop offset="0.314723" stop-color="#515AF5" stop-opacity="0.5"/>
<stop offset="1"/>
</linearGradient>
<radialGradient id="paint8_radial_1429_12423" cx="0" cy="0" r="1" gradientTransform="matrix(1.53377 25.4941 -30.3489 1.553 23.1184 139.782)" gradientUnits="userSpaceOnUse">
<stop stop-color="#008CFF"/>
<stop offset="0.287094" stop-color="#0051FF" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint9_linear_1429_12423" x1="19.1958" y1="136.955" x2="29.4021" y2="161.526" gradientUnits="userSpaceOnUse">
<stop stop-color="#CDC8FF"/>
<stop offset="0.314723" stop-color="#515AF5" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<radialGradient id="paint10_radial_1429_12423" cx="0" cy="0" r="1" gradientTransform="matrix(1.53377 25.4941 -30.3489 1.553 23.1184 139.782)" gradientUnits="userSpaceOnUse">
<stop stop-color="#008CFF"/>
<stop offset="0.287094" stop-color="#0051FF" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint11_linear_1429_12423" x1="19.1958" y1="136.955" x2="29.4021" y2="161.526" gradientUnits="userSpaceOnUse">
<stop stop-color="#CDC8FF"/>
<stop offset="0.314723" stop-color="#515AF5" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>

BIN
public/assets/images/side_decor_right.png

After

Width: 50  |  Height: 178  |  Size: 14 KiB

94
public/assets/images/side_decor_right.svg

@ -0,0 +1,94 @@
<svg width="50" height="178" viewBox="0 0 50 178" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.043 25C18.9072 26.4772 23.5228 31.0928 25 36.957C26.4771 31.0931 31.0923 26.4774 36.9561 25C31.0923 23.5226 26.4771 18.9069 25 13.043C23.5228 18.9072 18.9072 23.5228 13.043 25ZM33.5 8.5L33.5 9C33.5 13.1421 36.8579 16.5 41 16.5L41.5 16.5L41.5 33.5L41 33.5C36.8579 33.5 33.5 36.8579 33.5 41L33.5 41.5L16.5 41.5L16.5 41C16.5 36.8579 13.1421 33.5 9 33.5L8.5 33.5L8.5 16.5L9 16.5C13.1421 16.5 16.5 13.1421 16.5 9L16.5 8.5L33.5 8.5Z" fill="url(#paint0_radial_1429_12433)" fill-opacity="0.1" stroke="url(#paint1_linear_1429_12433)"/>
<g filter="url(#filter0_f_1429_12433)" style="mix-blend-mode:plus-lighter">
<path d="M25 41C25 32.1635 32.1635 25 41 25L41 33C36.5817 33 33 36.5817 33 41L25 41ZM33 8.99992C33 13.4182 36.5817 16.9999 41 16.9999L41 25C32.1635 25 25 17.8364 25 8.99992L33 8.99992ZM9 25C17.8365 25 25 32.1635 25 41L17 41C17 36.5817 13.4182 33 9 33L9 25ZM9 16.9999C13.4182 16.9999 17 13.4182 17 8.99992L25 8.99992C25 17.8364 17.8365 25 9 25L9 16.9999Z" fill="url(#paint2_radial_1429_12433)" fill-opacity="0.1"/>
<path d="M13.043 25C18.9072 26.4772 23.5228 31.0928 25 36.957C26.4771 31.0931 31.0923 26.4774 36.9561 25C31.0923 23.5226 26.4771 18.9069 25 13.043C23.5228 18.9072 18.9072 23.5228 13.043 25ZM33.5 8.5L33.5 9C33.5 13.1421 36.8579 16.5 41 16.5L41.5 16.5L41.5 33.5L41 33.5C36.8579 33.5 33.5 36.8579 33.5 41L33.5 41.5L16.5 41.5L16.5 41C16.5 36.8579 13.1421 33.5 9 33.5L8.5 33.5L8.5 16.5L9 16.5C13.1421 16.5 16.5 13.1421 16.5 9L16.5 8.5L33.5 8.5Z" stroke="url(#paint3_linear_1429_12433)"/>
</g>
<path d="M41.5 80.9998C41.5 76.3054 37.6944 72.4998 33 72.4998L16.5 72.4998L16.5 80.4998L8.5 80.4998L8.5 96.9998C8.50001 101.694 12.3056 105.5 17 105.5L33.5 105.5L33.5 97.4998L41.5 97.4998L41.5 80.9998ZM32.5 88.5154C28.2038 88.7646 24.7649 92.2036 24.5156 96.4998L17.5 96.4998L17.5 89.4851C21.7963 89.2358 25.2351 85.7959 25.4844 81.4998L32.5 81.4998L32.5 88.5154Z" fill="url(#paint4_radial_1429_12433)" fill-opacity="0.1" stroke="url(#paint5_linear_1429_12433)"/>
<g filter="url(#filter1_f_1429_12433)" style="mix-blend-mode:plus-lighter">
<path d="M17.1034 88.9991C21.474 88.9437 25 85.3835 25 80.9997L33 80.9997L33 88.9997C28.5818 88.9997 25 92.5815 25 96.9997L17 96.9997L17 88.9997L17.1034 88.9991ZM9.00001 80.9997L9.00001 96.9997C9.00001 101.418 12.5818 105 17 105L33 105L33 96.9997L41 96.9997L41 80.9997C41 76.5814 37.4183 72.9997 33 72.9997L17 72.9997L17 80.9997L9.00001 80.9997Z" fill="url(#paint6_radial_1429_12433)" fill-opacity="0.1"/>
<path d="M41.5 80.9998C41.5 76.3054 37.6944 72.4998 33 72.4998L16.5 72.4998L16.5 80.4998L8.5 80.4998L8.5 96.9998C8.50001 101.694 12.3056 105.5 17 105.5L33.5 105.5L33.5 97.4998L41.5 97.4998L41.5 80.9998ZM32.5 88.5154C28.2038 88.7646 24.7649 92.2036 24.5156 96.4998L17.5 96.4998L17.5 89.4851C21.7963 89.2358 25.2351 85.7959 25.4844 81.4998L32.5 81.4998L32.5 88.5154Z" stroke="url(#paint7_linear_1429_12433)"/>
</g>
<path d="M8.5 144.5L16.5 144.5L16.5 136.5L33.5 136.5L33.5 144.5L41.5 144.5L41.5 161.5L33.5 161.5L33.5 169.5L16.5 169.5L16.5 161.5L8.5 161.5L8.5 144.5ZM32.5 160.5L32.5 145.5L17.5 145.5L17.5 160.5L32.5 160.5ZM21.5 153C21.5 151.067 23.067 149.5 25 149.5C26.933 149.5 28.5 151.067 28.5 153C28.5 154.933 26.933 156.5 25 156.5C23.067 156.5 21.5 154.933 21.5 153Z" fill="url(#paint8_radial_1429_12433)" fill-opacity="0.1" stroke="url(#paint9_linear_1429_12433)"/>
<g filter="url(#filter2_f_1429_12433)" style="mix-blend-mode:plus-lighter">
<path d="M41.0001 145L41.0001 161L33.0001 161L33.0001 145L41.0001 145ZM33.0001 161L33.0001 169L17 169L17 161L33.0001 161ZM33.0001 137L33.0001 145L17 145L17 137L33.0001 137ZM22 153C22 151.343 23.3432 150 25 150C26.6569 150 28 151.343 28 153C28 154.657 26.6569 156 25 156C23.3432 156 22 154.657 22 153ZM17 145L17 161L9 161L9 145L17 145Z" fill="url(#paint10_radial_1429_12433)" fill-opacity="0.1"/>
<path d="M8.5 144.5L16.5 144.5L16.5 136.5L33.5 136.5L33.5 144.5L41.5 144.5L41.5 161.5L33.5 161.5L33.5 169.5L16.5 169.5L16.5 161.5L8.5 161.5L8.5 144.5ZM32.5 160.5L32.5 145.5L17.5 145.5L17.5 160.5L32.5 160.5ZM21.5 153C21.5 151.067 23.067 149.5 25 149.5C26.933 149.5 28.5 151.067 28.5 153C28.5 154.933 26.933 156.5 25 156.5C23.067 156.5 21.5 154.933 21.5 153Z" stroke="url(#paint11_linear_1429_12433)"/>
</g>
<defs>
<filter id="filter0_f_1429_12433" x="0" y="0" width="50" height="50" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="4" result="effect1_foregroundBlur_1429_12433"/>
</filter>
<filter id="filter1_f_1429_12433" x="0" y="63.9998" width="50" height="50" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="4" result="effect1_foregroundBlur_1429_12433"/>
</filter>
<filter id="filter2_f_1429_12433" x="0" y="128" width="50" height="50" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="4" result="effect1_foregroundBlur_1429_12433"/>
</filter>
<radialGradient id="paint0_radial_1429_12433" cx="0" cy="0" r="1" gradientTransform="matrix(8.18608 30.551 -36.4362 9.41392 23.1184 11.7824)" gradientUnits="userSpaceOnUse">
<stop stop-color="#3860FF"/>
<stop offset="0.55" stop-color="#0051FF" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint1_linear_1429_12433" x1="19.1958" y1="8.95556" x2="29.4022" y2="33.5257" gradientUnits="userSpaceOnUse">
<stop stop-color="#CDC8FF"/>
<stop offset="0.314723" stop-color="#515AF5" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<radialGradient id="paint2_radial_1429_12433" cx="0" cy="0" r="1" gradientTransform="matrix(8.18608 30.551 -36.4362 9.41392 23.1184 11.7824)" gradientUnits="userSpaceOnUse">
<stop stop-color="#3860FF"/>
<stop offset="0.55" stop-color="#0051FF" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint3_linear_1429_12433" x1="19.1958" y1="8.95556" x2="29.4022" y2="33.5257" gradientUnits="userSpaceOnUse">
<stop stop-color="#CDC8FF"/>
<stop offset="0.314723" stop-color="#515AF5" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<radialGradient id="paint4_radial_1429_12433" cx="0" cy="0" r="1" gradientTransform="matrix(-26 11.6667 14.1581 30.8101 35.3333 81.6664)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000DFF"/>
<stop offset="0.287094" stop-color="#0051FF" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint5_linear_1429_12433" x1="30.8042" y1="72.9553" x2="20.5978" y2="97.5255" gradientUnits="userSpaceOnUse">
<stop stop-color="#CDC8FF"/>
<stop offset="0.314723" stop-color="#515AF5" stop-opacity="0.5"/>
<stop offset="1"/>
</linearGradient>
<radialGradient id="paint6_radial_1429_12433" cx="0" cy="0" r="1" gradientTransform="matrix(-26 11.6667 14.1581 30.8101 35.3333 81.6664)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000DFF"/>
<stop offset="0.287094" stop-color="#0051FF" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint7_linear_1429_12433" x1="30.8042" y1="72.9553" x2="20.5978" y2="97.5255" gradientUnits="userSpaceOnUse">
<stop stop-color="#CDC8FF"/>
<stop offset="0.314723" stop-color="#515AF5" stop-opacity="0.5"/>
<stop offset="1"/>
</linearGradient>
<radialGradient id="paint8_radial_1429_12433" cx="0" cy="0" r="1" gradientTransform="matrix(1.53377 25.4941 -30.3489 1.553 23.1184 139.782)" gradientUnits="userSpaceOnUse">
<stop stop-color="#008CFF"/>
<stop offset="0.287094" stop-color="#0051FF" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint9_linear_1429_12433" x1="19.1958" y1="136.955" x2="29.4021" y2="161.526" gradientUnits="userSpaceOnUse">
<stop stop-color="#CDC8FF"/>
<stop offset="0.314723" stop-color="#515AF5" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<radialGradient id="paint10_radial_1429_12433" cx="0" cy="0" r="1" gradientTransform="matrix(1.53377 25.4941 -30.3489 1.553 23.1184 139.782)" gradientUnits="userSpaceOnUse">
<stop stop-color="#008CFF"/>
<stop offset="0.287094" stop-color="#0051FF" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint11_linear_1429_12433" x1="19.1958" y1="136.955" x2="29.4021" y2="161.526" gradientUnits="userSpaceOnUse">
<stop stop-color="#CDC8FF"/>
<stop offset="0.314723" stop-color="#515AF5" stop-opacity="0.5"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>

BIN
public/assets/images/step_arrow_btn.png

After

Width: 100  |  Height: 100  |  Size: 12 KiB

43
public/assets/images/step_arrow_btn.svg

@ -0,0 +1,43 @@
<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_di_1429_10901)">
<rect width="40" height="40" rx="20" transform="matrix(-1 0 0 1 70 30)" fill="url(#paint0_linear_1429_10901)" shape-rendering="crispEdges"/>
<rect x="-0.5" y="0.5" width="39" height="39" rx="19.5" transform="matrix(-1 0 0 1 69 30)" stroke="url(#paint1_linear_1429_10901)" shape-rendering="crispEdges"/>
<path d="M50.3483 43.2416C49.9294 43.6015 49.8816 44.2328 50.2415 44.6517L54.8371 50L50.2415 55.3483C49.8816 55.7672 49.9294 56.3985 50.3483 56.7585C50.7672 57.1184 51.3985 57.0706 51.7585 56.6517L56.3864 51.2658L56.3864 51.2658C56.4975 51.1367 56.6334 50.9787 56.7348 50.8259C56.858 50.64 57 50.3628 57 50C57 49.6372 56.858 49.36 56.7348 49.1742C56.6334 49.0214 56.4975 48.8633 56.3864 48.7343L51.7585 43.3483C51.3985 42.9294 50.7672 42.8816 50.3483 43.2416Z" fill="#F7FAFF"/>
<path opacity="0.4" d="M43.6525 43.0624C43.2603 43.2077 43 43.5818 43 44V56C43 56.4183 43.2603 56.7924 43.6525 56.9377C44.0447 57.0831 44.4859 56.969 44.7585 56.6518L49.3864 51.2658C49.4975 51.1367 49.6334 50.9787 49.7348 50.8259C49.858 50.64 50 50.3628 50 50C50 49.6373 49.858 49.3601 49.7348 49.1742C49.6334 49.0214 49.4975 48.8634 49.3864 48.7343L44.7585 43.3483C44.4859 43.0311 44.0447 42.917 43.6525 43.0624Z" fill="#F7FAFF"/>
</g>
<defs>
<filter id="filter0_di_1429_10901" x="0" y="0" width="100" height="100" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="15"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.293269 0 0 0 0 0.501131 0 0 0 0 1 0 0 0 0.5 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1429_10901"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="6"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0"/>
<feBlend mode="plus-lighter" in2="shape" result="effect2_innerShadow_1429_10901"/>
<feBlend mode="normal" in="effect2_innerShadow_1429_10901" in2="effect1_dropShadow_1429_10901" result="effect2_innerShadow_1429_10901"/>
</filter>
<linearGradient id="paint0_linear_1429_10901" x1="20" y1="0" x2="20" y2="52.1429" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint1_linear_1429_10901" x1="-15.5556" y1="-17.4468" x2="64.5244" y2="-3.14518" gradientUnits="userSpaceOnUse">
<stop stop-color="white" stop-opacity="0.5"/>
<stop offset="0.52154" stop-color="white" stop-opacity="0"/>
<stop offset="1" stop-color="white" stop-opacity="0.5"/>
</linearGradient>
</defs>
</svg>

4
public/assets/images/step_arrow_icon.svg

@ -0,0 +1,4 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.3483 5.24155C11.9294 5.60149 11.8816 6.23285 12.2415 6.65173L16.8371 12L12.2415 17.3483C11.8816 17.7672 11.9294 18.3985 12.3483 18.7585C12.7672 19.1184 13.3985 19.0706 13.7585 18.6517L18.3864 13.2658L18.3864 13.2658C18.4975 13.1367 18.6334 12.9787 18.7348 12.8259C18.858 12.64 19 12.3628 19 12C19 11.6372 18.858 11.36 18.7348 11.1742C18.6334 11.0214 18.4975 10.8633 18.3864 10.7343L13.7585 5.3483C13.3985 4.92941 12.7672 4.88162 12.3483 5.24155Z" fill="#F7FAFF"/>
<path opacity="0.4" d="M5.65248 5.06237C5.2603 5.20772 5 5.58179 5 6.00005V18C5 18.4183 5.2603 18.7924 5.65248 18.9377C6.04467 19.0831 6.48588 18.969 6.75846 18.6518L11.3864 13.2658C11.4975 13.1367 11.6334 12.9787 11.7348 12.8259C11.858 12.64 12 12.3628 12 12C12 11.6373 11.858 11.3601 11.7348 11.1742C11.6334 11.0214 11.4975 10.8634 11.3864 10.7343L6.75846 5.34833C6.48588 5.0311 6.04467 4.91702 5.65248 5.06237Z" fill="#F7FAFF"/>
</svg>

BIN
public/assets/images/step_card_mesh.png

After

Width: 87  |  Height: 45  |  Size: 3.3 KiB

17
public/assets/images/step_card_mesh.svg
File diff suppressed because it is too large
View File

BIN
public/assets/images/step_card_stars.png

After

Width: 185  |  Height: 135  |  Size: 1.1 KiB

44
public/assets/images/step_card_stars.svg

@ -0,0 +1,44 @@
<svg width="185" height="135" viewBox="0 0 185 135" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="102.75" cy="32.2158" r="0.750058" transform="rotate(-180 102.75 32.2158)" fill="#3D6FE5" fill-opacity="0.15"/>
<circle cx="126.75" cy="26.2158" r="0.750058" transform="rotate(-180 126.75 26.2158)" fill="#3D6FE5" fill-opacity="0.6"/>
<circle cx="20.7812" cy="30.4081" r="0.750058" transform="rotate(-180 20.7812 30.4081)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="8.62507" cy="103.934" r="1.12493" transform="rotate(-180 8.62507 103.934)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="58.3126" cy="117.614" r="1.12493" transform="rotate(-180 58.3126 117.614)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="77.1251" cy="28.5904" r="1.12493" transform="rotate(-180 77.1251 28.5904)" fill="#3D6FE5" fill-opacity="0.15"/>
<circle cx="27.1251" cy="129.59" r="1.12493" transform="rotate(-180 27.1251 129.59)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="52.4219" cy="108.162" r="1.12493" transform="rotate(-180 52.4219 108.162)" fill="#3D6FE5" fill-opacity="0.15"/>
<circle cx="26.9844" cy="55.8062" r="1.12493" transform="rotate(-180 26.9844 55.8062)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="5.60163" cy="40.9063" r="1.12493" transform="rotate(-180 5.60163 40.9063)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="50.1251" cy="7.5904" r="1.12493" transform="rotate(-180 50.1251 7.5904)" fill="#3D6FE5" fill-opacity="0.772549"/>
<circle cx="132.289" cy="129.818" r="0.374874" transform="rotate(-180 132.289 129.818)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="169.211" cy="100.469" r="0.374874" transform="rotate(-180 169.211 100.469)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="80.7579" cy="67.0577" r="0.374874" transform="rotate(-180 80.7579 67.0577)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="163.117" cy="118.079" r="0.374874" transform="rotate(-180 163.117 118.079)" fill="#3D6FE5" fill-opacity="0.6"/>
<circle cx="55.8283" cy="122.922" r="0.374874" transform="rotate(-180 55.8283 122.922)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="44.6095" cy="20.631" r="0.374874" transform="rotate(-180 44.6095 20.631)" fill="#3D6FE5" fill-opacity="0.15"/>
<circle cx="55.4142" cy="84.1906" r="0.374874" transform="rotate(-180 55.4142 84.1906)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="172.375" cy="45.8405" r="0.374874" transform="rotate(-180 172.375 45.8405)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="119.227" cy="58.0831" r="0.374874" transform="rotate(-180 119.227 58.0831)" fill="#3D6FE5" fill-opacity="0.772549"/>
<circle cx="184.375" cy="72.8405" r="0.374874" transform="rotate(-180 184.375 72.8405)" fill="#3D6FE5" fill-opacity="0.15"/>
<circle cx="10.3751" cy="75.8405" r="0.374874" transform="rotate(-180 10.3751 75.8405)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="32.172" cy="98.1066" r="0.374874" transform="rotate(-180 32.172 98.1066)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="152.82" cy="8.51966" r="0.374874" transform="rotate(-180 152.82 8.51966)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="118.399" cy="102.121" r="0.374874" transform="rotate(-180 118.399 102.121)" fill="#3D6FE5" fill-opacity="0.15"/>
<circle cx="38.3751" cy="30.8405" r="0.374874" transform="rotate(-180 38.3751 30.8405)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="118.367" cy="50.7325" r="0.374874" transform="rotate(-180 118.367 50.7325)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="129.711" cy="55.2501" r="0.374874" transform="rotate(-180 129.711 55.2501)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="8.37513" cy="63.8405" r="0.374874" transform="rotate(-180 8.37513 63.8405)" fill="#3D6FE5" fill-opacity="0.15"/>
<circle cx="106.867" cy="1.25208" r="0.374874" transform="rotate(-180 106.867 1.25208)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="101.461" cy="27.0929" r="0.374874" transform="rotate(-180 101.461 27.0929)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="30.0548" cy="3.62806" r="0.374874" transform="rotate(-180 30.0548 3.62806)" fill="#3D6FE5" fill-opacity="0.1"/>
<path d="M182.75 22.9658L182.1 21.8407L183.4 21.8407L182.75 22.9658Z" fill="#3D6FE5" fill-opacity="0.6"/>
<circle cx="51.3751" cy="56.8405" r="0.374874" transform="rotate(-180 51.3751 56.8405)" fill="#3D6FE5" fill-opacity="0.1"/>
<path d="M0.749942 19.9658L0.100373 18.8407L1.39951 18.8407L0.749942 19.9658Z" fill="#3D6FE5" fill-opacity="0.1"/>
<path d="M1.50775 1.5L1.34864 0.909053L0.757696 0.749942L1.34864 0.59083L1.50775 -0.000116175L1.66687 0.590831L2.25781 0.749942L1.66687 0.909053L1.50775 1.5Z" fill="#3D6FE5" fill-opacity="0.1"/>
<path d="M150.75 28.9658L150.591 28.3749L150 28.2158L150.591 28.0567L150.75 27.4657L150.909 28.0567L151.5 28.2158L150.909 28.3749L150.75 28.9658Z" fill="#3D6FE5" fill-opacity="0.6"/>
<path d="M93.9531 60.8936L93.794 60.3026L93.203 60.1435L93.794 59.9844L93.9531 59.3934L94.1122 59.9844L94.7031 60.1435L94.1122 60.3026L93.9531 60.8936Z" fill="#3D6FE5" fill-opacity="0.1"/>
<path d="M129.75 5.96582L129.591 5.37487L129 5.21576L129.591 5.05665L129.75 4.4657L129.909 5.05665L130.5 5.21576L129.909 5.37487L129.75 5.96582Z" fill="#5B8CFF" fill-opacity="0.8"/>
<path d="M119.375 114.54L119.216 113.949L118.625 113.79L119.216 113.631L119.375 113.04L119.534 113.631L120.125 113.79L119.534 113.949L119.375 114.54Z" fill="#3D6FE5" fill-opacity="0.15"/>
<path d="M55.3281 40.8057L55.169 40.2147L54.578 40.0556L55.169 39.8965L55.3281 39.3055L55.4872 39.8965L56.0781 40.0556L55.4872 40.2147L55.3281 40.8057Z" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="182.375" cy="49.8405" r="0.374874" transform="rotate(-180 182.375 49.8405)" fill="#3D6FE5" fill-opacity="0.1"/>
</svg>

17
public/assets/images/step_grid_mesh.svg
File diff suppressed because it is too large
View File

44
public/assets/images/step_stars.svg

@ -0,0 +1,44 @@
<svg width="185" height="135" viewBox="0 0 185 135" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="102.75" cy="32.2158" r="0.750058" transform="rotate(-180 102.75 32.2158)" fill="#3D6FE5" fill-opacity="0.15"/>
<circle cx="126.75" cy="26.2158" r="0.750058" transform="rotate(-180 126.75 26.2158)" fill="#3D6FE5" fill-opacity="0.6"/>
<circle cx="20.7812" cy="30.4081" r="0.750058" transform="rotate(-180 20.7812 30.4081)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="8.62507" cy="103.934" r="1.12493" transform="rotate(-180 8.62507 103.934)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="58.3126" cy="117.614" r="1.12493" transform="rotate(-180 58.3126 117.614)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="77.1251" cy="28.5904" r="1.12493" transform="rotate(-180 77.1251 28.5904)" fill="#3D6FE5" fill-opacity="0.15"/>
<circle cx="27.1251" cy="129.59" r="1.12493" transform="rotate(-180 27.1251 129.59)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="52.4219" cy="108.162" r="1.12493" transform="rotate(-180 52.4219 108.162)" fill="#3D6FE5" fill-opacity="0.15"/>
<circle cx="26.9844" cy="55.8062" r="1.12493" transform="rotate(-180 26.9844 55.8062)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="5.60163" cy="40.9063" r="1.12493" transform="rotate(-180 5.60163 40.9063)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="50.1251" cy="7.5904" r="1.12493" transform="rotate(-180 50.1251 7.5904)" fill="#3D6FE5" fill-opacity="0.772549"/>
<circle cx="132.289" cy="129.818" r="0.374874" transform="rotate(-180 132.289 129.818)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="169.211" cy="100.469" r="0.374874" transform="rotate(-180 169.211 100.469)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="80.7579" cy="67.0577" r="0.374874" transform="rotate(-180 80.7579 67.0577)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="163.117" cy="118.079" r="0.374874" transform="rotate(-180 163.117 118.079)" fill="#3D6FE5" fill-opacity="0.6"/>
<circle cx="55.8283" cy="122.922" r="0.374874" transform="rotate(-180 55.8283 122.922)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="44.6095" cy="20.631" r="0.374874" transform="rotate(-180 44.6095 20.631)" fill="#3D6FE5" fill-opacity="0.15"/>
<circle cx="55.4142" cy="84.1906" r="0.374874" transform="rotate(-180 55.4142 84.1906)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="172.375" cy="45.8405" r="0.374874" transform="rotate(-180 172.375 45.8405)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="119.227" cy="58.0831" r="0.374874" transform="rotate(-180 119.227 58.0831)" fill="#3D6FE5" fill-opacity="0.772549"/>
<circle cx="184.375" cy="72.8405" r="0.374874" transform="rotate(-180 184.375 72.8405)" fill="#3D6FE5" fill-opacity="0.15"/>
<circle cx="10.3751" cy="75.8405" r="0.374874" transform="rotate(-180 10.3751 75.8405)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="32.172" cy="98.1066" r="0.374874" transform="rotate(-180 32.172 98.1066)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="152.82" cy="8.51966" r="0.374874" transform="rotate(-180 152.82 8.51966)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="118.399" cy="102.121" r="0.374874" transform="rotate(-180 118.399 102.121)" fill="#3D6FE5" fill-opacity="0.15"/>
<circle cx="38.3751" cy="30.8405" r="0.374874" transform="rotate(-180 38.3751 30.8405)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="118.367" cy="50.7325" r="0.374874" transform="rotate(-180 118.367 50.7325)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="129.711" cy="55.2501" r="0.374874" transform="rotate(-180 129.711 55.2501)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="8.37513" cy="63.8405" r="0.374874" transform="rotate(-180 8.37513 63.8405)" fill="#3D6FE5" fill-opacity="0.15"/>
<circle cx="106.867" cy="1.25208" r="0.374874" transform="rotate(-180 106.867 1.25208)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="101.461" cy="27.0929" r="0.374874" transform="rotate(-180 101.461 27.0929)" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="30.0548" cy="3.62806" r="0.374874" transform="rotate(-180 30.0548 3.62806)" fill="#3D6FE5" fill-opacity="0.1"/>
<path d="M182.75 22.9658L182.1 21.8407L183.4 21.8407L182.75 22.9658Z" fill="#3D6FE5" fill-opacity="0.6"/>
<circle cx="51.3751" cy="56.8405" r="0.374874" transform="rotate(-180 51.3751 56.8405)" fill="#3D6FE5" fill-opacity="0.1"/>
<path d="M0.749942 19.9658L0.100373 18.8407L1.39951 18.8407L0.749942 19.9658Z" fill="#3D6FE5" fill-opacity="0.1"/>
<path d="M1.50775 1.5L1.34864 0.909053L0.757696 0.749942L1.34864 0.59083L1.50775 -0.000116175L1.66687 0.590831L2.25781 0.749942L1.66687 0.909053L1.50775 1.5Z" fill="#3D6FE5" fill-opacity="0.1"/>
<path d="M150.75 28.9658L150.591 28.3749L150 28.2158L150.591 28.0567L150.75 27.4657L150.909 28.0567L151.5 28.2158L150.909 28.3749L150.75 28.9658Z" fill="#3D6FE5" fill-opacity="0.6"/>
<path d="M93.9531 60.8936L93.794 60.3026L93.203 60.1435L93.794 59.9844L93.9531 59.3934L94.1122 59.9844L94.7031 60.1435L94.1122 60.3026L93.9531 60.8936Z" fill="#3D6FE5" fill-opacity="0.1"/>
<path d="M129.75 5.96582L129.591 5.37487L129 5.21576L129.591 5.05665L129.75 4.4657L129.909 5.05665L130.5 5.21576L129.909 5.37487L129.75 5.96582Z" fill="#5B8CFF" fill-opacity="0.8"/>
<path d="M119.375 114.54L119.216 113.949L118.625 113.79L119.216 113.631L119.375 113.04L119.534 113.631L120.125 113.79L119.534 113.949L119.375 114.54Z" fill="#3D6FE5" fill-opacity="0.15"/>
<path d="M55.3281 40.8057L55.169 40.2147L54.578 40.0556L55.169 39.8965L55.3281 39.3055L55.4872 39.8965L56.0781 40.0556L55.4872 40.2147L55.3281 40.8057Z" fill="#3D6FE5" fill-opacity="0.1"/>
<circle cx="182.375" cy="49.8405" r="0.374874" transform="rotate(-180 182.375 49.8405)" fill="#3D6FE5" fill-opacity="0.1"/>
</svg>

BIN
public/assets/images/steps_badge.png

After

Width: 100  |  Height: 100  |  Size: 13 KiB

47
public/assets/images/steps_badge.svg

@ -0,0 +1,47 @@
<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_di_1429_10892)">
<rect x="30" y="30" width="40" height="40" rx="20" fill="url(#paint0_linear_1429_10892)" fill-opacity="0.7" shape-rendering="crispEdges"/>
<rect x="30.5" y="30.5" width="39" height="39" rx="19.5" stroke="url(#paint1_linear_1429_10892)" shape-rendering="crispEdges"/>
<path d="M48.5294 38.0992C65.2689 36.2302 66.9622 61.3881 50.4783 61.9898C35.0507 62.5518 33.3866 39.7918 48.5294 38.0992ZM51.797 40.4155C50.9515 40.5455 49.6104 41.1847 48.9286 41.707C47.2802 42.9699 43.0796 47.1419 41.7474 48.7684C36.6116 55.0298 44.8536 63.3121 51.483 57.9742C52.9968 56.7554 58.5162 51.347 59.2114 49.8417C61.5371 44.8057 57.3365 39.567 51.797 40.4155Z" fill="#FF6333"/>
<path d="M48.5294 38.0992C65.2689 36.2302 66.9622 61.3881 50.4783 61.9898C35.0507 62.5518 33.3866 39.7918 48.5294 38.0992ZM51.797 40.4155C50.9515 40.5455 49.6104 41.1847 48.9286 41.707C47.2802 42.9699 43.0796 47.1419 41.7474 48.7684C36.6116 55.0298 44.8536 63.3121 51.483 57.9742C52.9968 56.7554 58.5162 51.347 59.2114 49.8417C61.5371 44.8057 57.3365 39.567 51.797 40.4155Z" fill="url(#paint2_linear_1429_10892)"/>
</g>
<defs>
<filter id="filter0_di_1429_10892" x="0" y="0" width="100" height="100" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="15"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.293269 0 0 0 0 0.501131 0 0 0 0 1 0 0 0 0.5 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1429_10892"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="6"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0"/>
<feBlend mode="plus-lighter" in2="shape" result="effect2_innerShadow_1429_10892"/>
<feBlend mode="normal" in="effect2_innerShadow_1429_10892" in2="effect1_dropShadow_1429_10892" result="effect2_innerShadow_1429_10892"/>
</filter>
<linearGradient id="paint0_linear_1429_10892" x1="50" y1="30" x2="50" y2="82.1429" gradientUnits="userSpaceOnUse">
<stop stop-color="#0029B3"/>
<stop offset="0.1" stop-color="#0038BF"/>
<stop offset="0.2" stop-color="#0E4ACC"/>
<stop offset="0.3" stop-color="#255CD9"/>
<stop offset="0.4" stop-color="#3D6FE6"/>
<stop offset="0.5" stop-color="#487EFF"/>
<stop offset="0.65" stop-color="#4B80FF"/>
<stop offset="0.8" stop-color="#5D8BFF"/>
<stop offset="1" stop-color="#ADBFFF"/>
</linearGradient>
<linearGradient id="paint1_linear_1429_10892" x1="14.4444" y1="12.5532" x2="94.5244" y2="26.8548" gradientUnits="userSpaceOnUse">
<stop stop-color="white" stop-opacity="0.5"/>
<stop offset="0.52154" stop-color="white" stop-opacity="0"/>
<stop offset="1" stop-color="white" stop-opacity="0.5"/>
</linearGradient>
<linearGradient id="paint2_linear_1429_10892" x1="50" y1="38" x2="50" y2="62" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#CADAFF"/>
</linearGradient>
</defs>
</svg>

BIN
public/assets/images/steps_btn_glow.png

After

Width: 504  |  Height: 504  |  Size: 169 KiB

21
public/assets/images/steps_btn_glow.svg

@ -0,0 +1,21 @@
<svg width="504" height="504" viewBox="0 0 504 504" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_f_1429_10906)">
<circle cx="252" cy="252" r="52" transform="rotate(-180 252 252)" fill="#001AC7"/>
</g>
<g filter="url(#filter1_f_1429_10906)">
<circle cx="252" cy="252" r="32" transform="rotate(-180 252 252)" fill="#4E66FF"/>
</g>
<rect x="494" y="434" width="485" height="183" transform="rotate(-180 494 434)" fill="#03070D"/>
<defs>
<filter id="filter0_f_1429_10906" x="0" y="0" width="504" height="504" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="100" result="effect1_foregroundBlur_1429_10906"/>
</filter>
<filter id="filter1_f_1429_10906" x="120" y="120" width="264" height="264" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="50" result="effect1_foregroundBlur_1429_10906"/>
</filter>
</defs>
</svg>

21
public/assets/images/steps_header_glow.svg

@ -0,0 +1,21 @@
<svg width="504" height="504" viewBox="0 0 504 504" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_f_1429_10887)">
<circle cx="252" cy="252" r="52" fill="#001AC7"/>
</g>
<g filter="url(#filter1_f_1429_10887)">
<circle cx="252" cy="252" r="32" fill="#4E66FF"/>
</g>
<rect x="10" y="69" width="485" height="183" fill="#03070D"/>
<defs>
<filter id="filter0_f_1429_10887" x="0" y="0" width="504" height="504" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="100" result="effect1_foregroundBlur_1429_10887"/>
</filter>
<filter id="filter1_f_1429_10887" x="120" y="120" width="264" height="264" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="50" result="effect1_foregroundBlur_1429_10887"/>
</filter>
</defs>
</svg>

26
public/assets/images/tab_icon_star.svg

@ -0,0 +1,26 @@
<svg width="27" height="27" viewBox="0 0 27 27" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.4427 4.62964C12.6023 10.452 14.9199 12.7922 20.776 13.963C14.9185 15.1337 12.6009 17.474 11.4427 23.2963C10.2831 17.474 7.96548 15.1323 2.10938 13.963C7.96679 12.7922 10.2845 10.452 11.4427 4.62964Z" fill="url(#paint0_linear_4178_61409)"/>
<g opacity="0.1" filter="url(#filter0_f_4178_61409)" style="mix-blend-mode:plus-lighter">
<path d="M13.2963 5C14.327 10.1754 16.3872 12.2556 21.5926 13.2963C16.3859 14.337 14.3258 16.4172 13.2963 21.5926C12.2656 16.4172 10.2054 14.3357 5 13.2963C10.2066 12.2556 12.2668 10.1754 13.2963 5Z" fill="url(#paint1_linear_4178_61409)"/>
</g>
<path d="M18.7786 3.29639C19.1928 5.37579 20.0205 6.21159 22.112 6.62972C20.02 7.04785 19.1923 7.88365 18.7786 9.96305C18.3645 7.88365 17.5368 7.04735 15.4453 6.62972C17.5372 6.21159 18.365 5.37579 18.7786 3.29639Z" fill="url(#paint2_linear_4178_61409)"/>
<defs>
<filter id="filter0_f_4178_61409" x="0" y="0" width="26.5938" height="26.5925" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="2.5" result="effect1_foregroundBlur_4178_61409"/>
</filter>
<linearGradient id="paint0_linear_4178_61409" x1="11.4427" y1="9.29631" x2="11.4427" y2="23.2963" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#769FFF"/>
</linearGradient>
<linearGradient id="paint1_linear_4178_61409" x1="13.2963" y1="9.14815" x2="13.2963" y2="21.5926" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#769FFF"/>
</linearGradient>
<linearGradient id="paint2_linear_4178_61409" x1="18.7786" y1="4.96305" x2="18.7786" y2="9.96305" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#769FFF"/>
</linearGradient>
</defs>
</svg>
Loading…
Cancel
Save