        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --color-bg: #e8e8e8;
            --color-text: #111111;
            --color-text-secondary: rgba(10, 10, 10, 0.6);
            --color-border: #d1d1d1;
            --color-accent: #111111;
            --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
            --font-serif: 'Instrument Serif', Georgia, serif;
            --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background: var(--color-bg);
            color: var(--color-text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Grain texture overlay */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
        }

        /* ========================================
           HEADER / NAVIGATION (hedra.com style)
           ======================================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 24px 48px;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 90px;
            background: linear-gradient(to bottom, rgba(232, 232, 232, 0.7) 0%, transparent 100%);
            pointer-events: none;
            z-index: -1;
            transition: background 0.3s ease-out;
        }

        .header.dark-mode::before {
            background: linear-gradient(to bottom, rgba(10, 10, 10, 0.7) 0%, transparent 100%);
        }

        .header.dark-mode .logo {
            color: #ffffff;
        }

        .header.dark-mode .nav-links a {
            color: #ffffff;
        }

        .header.dark-mode .btn-ghost {
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
        }

        .header.dark-mode .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.25);
        }

        .header.dark-mode .menu-toggle span {
            background: #ffffff;
        }

        .header-inner {
            max-width: 1920px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 16px;
        }

        .logo {
            font-family: 'Racing Sans One', cursive;
            font-size: 22px;
            font-weight: 400;
            color: #444;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
            justify-self: start;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background-image: url('/static/favicon.png?v=3');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            color: var(--color-text);
            text-decoration: none;
            font-size: 15px;
            font-weight: 400;
            transition: opacity 0.3s var(--ease-out-quint);
        }

        .nav-links a:hover {
            opacity: 0.5;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0;
            justify-self: end;
        }

        .nav-actions .btn-ghost {
            border-radius: 9999px 0 0 9999px;
        }

        .nav-actions .btn-ghost + .btn-primary {
            border-radius: 0 9999px 9999px 0;
        }

        .nav-actions .btn-primary:only-child {
            border-radius: 9999px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 500;
            border-radius: 9999px;
            text-decoration: none;
            transition: transform 100ms var(--ease-out-quint), background-color 100ms var(--ease-out-quint), opacity 100ms var(--ease-out-quint);
            cursor: pointer;
            border: none;
        }

        /* Larger button variant for hero/CTA */
        .btn-lg {
            padding: 16px 32px;
            font-size: 16px;
        }

        .btn:active {
            transform: scale(0.97);
        }

        .btn-ghost {
            background: rgba(255, 255, 255, 0.7);
            color: var(--color-text);
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.9);
        }

        .btn-primary {
            background: var(--color-accent);
            color: #ffffff;
        }

        .btn-primary:hover {
            background: rgba(10, 10, 10, 0.9);
        }

        /* Liquid Magnetic Buttons */
        .btn-magnetic {
            position: relative;
            overflow: hidden;
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
            cursor: pointer;
        }

        .btn-magnetic .btn-text {
            position: relative;
            z-index: 2;
            display: inline-block;
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .btn-magnetic .btn-glow {
            position: absolute;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.25);
            pointer-events: none;
            transform: translate(-50%, -50%);
            z-index: 1;
            transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
            opacity: 0;
        }

        .btn-magnetic:hover .btn-glow {
            width: 400px;
            height: 400px;
            opacity: 1;
        }

        /* Dark button - ripple expands on hover */
        .hero-cta .btn-magnetic {
            background: #111111;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .hero-cta .btn-magnetic:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        .hero-cta .btn-magnetic:active {
            transform: translateY(-1px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.25);
        }

        /* White button in final CTA */
        .final-cta .btn-magnetic {
            background: #ffffff;
            color: #111111;
            box-shadow: 0 2px 20px rgba(255,255,255,0.15);
        }

        .final-cta .btn-magnetic:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(255,255,255,0.4);
            background: #ffffff;
        }

        .final-cta .btn-magnetic:active {
            transform: translateY(-1px);
        }

        .final-cta .btn-magnetic .btn-glow {
            background: rgba(200, 200, 200, 0.5);
        }

        .btn-outline {
            background: transparent;
            color: var(--color-text);
            border: 1.5px solid var(--color-text);
        }

        .btn-outline:hover {
            background: rgba(10, 10, 10, 0.05);
        }

        /* Mobile menu toggle */
        .menu-toggle {
            display: none;
            flex-direction: row;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            align-items: center;
            justify-content: center;
        }

        .menu-toggle span {
            width: 8px;
            height: 8px;
            background: var(--color-text);
            border-radius: 50%;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Two balls merge into one */
        .menu-toggle.active span:first-child {
            transform: translateX(7px);
        }

        .menu-toggle.active span:last-child {
            transform: translateX(-7px);
            opacity: 0;
        }

        /* Mobile menu overlay */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--color-bg);
            z-index: 999;
            display: flex;
            flex-direction: column;
            padding: 100px 32px 32px;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .mobile-menu-links a {
            display: block;
            font-size: 32px;
            font-weight: 500;
            color: var(--color-text);
            text-decoration: none;
            padding: 12px 0;
            transition: opacity 0.2s;
        }

        .mobile-menu-links a:hover {
            opacity: 0.6;
        }

        .mobile-menu-actions {
            margin-top: auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .mobile-menu-actions .btn {
            width: 100%;
            padding: 16px 24px;
            font-size: 16px;
        }

        /* Prevent scroll when menu open */
        body.menu-open {
            overflow: hidden;
        }

        /* ========================================
           HERO SECTION
           ======================================== */
        .hero {
            padding: 160px 24px 80px;
            text-align: center;
            background: linear-gradient(to bottom, var(--color-bg) 0%, var(--color-bg) 70%, #fafafa 100%);
        }

        .hero-inner {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-family: var(--font-serif);
            font-size: clamp(40px, 8vw, 48px);
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -0.9px;
        }

        .hero h1 em {
            font-style: italic;
        }

        .hero p {
            font-size: 16px;
            color: var(--color-text-secondary);
            max-width: 40ch;
            margin: 0 auto 32px;
            line-height: 1.6;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Product demo placeholder */
        .hero-demo {
            margin-top: 64px;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

        .demo-placeholder {
            background: #111111;
            border-radius: 0;
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 14px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        /* ========================================
           SECTION COMMON STYLES
           ======================================== */
        .section {
            padding: 100px 24px;
        }


        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-label {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-text-secondary);
            margin-bottom: 16px;
        }

        .section-title {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .section-title em {
            font-family: var(--font-serif);
            font-style: italic;
            font-weight: 400;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--color-text-secondary);
            max-width: 600px;
            margin: 20px auto 0;
        }

        /* ========================================
           HOW IT WORKS SECTION
           ======================================== */
        .how-it-works {
            background: #fafafa;
            transition: background-color 0.1s ease-out, color 0.1s ease-out;
        }

        .how-it-works.dark-mode {
            background: #111111;
            color: #ffffff;
        }

        .how-it-works.dark-mode .section-title {
            color: #ffffff;
        }

        .how-it-works.dark-mode .section-title em {
            color: #ffffff;
        }

        .how-it-works.dark-mode .section-subtitle {
            color: rgba(255, 255, 255, 0.6);
        }


        .steps-nav {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 48px;
            flex-wrap: wrap;
        }

        .step-tab {
            padding: 12px 24px;
            font-size: 15px;
            font-weight: 500;
            border-radius: 100px;
            border: 1.5px solid var(--color-border);
            background: transparent;
            cursor: pointer;
            transition: all 0.2s;
        }

        .step-tab:hover,
        .step-tab.active {
            background: var(--color-accent);
            color: #ffffff;
            border-color: var(--color-accent);
        }

        .steps-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            justify-items: center;
        }

        .step-card {
            border-radius: 16px;
            padding: 0;
            position: relative;
            overflow: hidden;
            aspect-ratio: 9/16;
            width: 100%;
            max-width: 320px;
            min-height: 450px;
        }

        .step-card img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .step-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
            color: #ffffff;
            z-index: 2;
        }

        .step-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #ffffff;
        }

        .step-card p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            line-height: 1.5;
        }

        .step-visual {
            margin-top: 24px;
            background: #f3f4f6;
            border-radius: 12px;
            aspect-ratio: 9/16;
            max-width: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9ca3af;
            font-size: 13px;
        }

        /* ========================================
           FEATURES SECTION
           ======================================== */
        #features {
            background: #111111;
            color: #ffffff;
            transition: background-color 0.1s ease-out, color 0.1s ease-out;
        }

        #features .section-title {
            color: #ffffff;
            transition: color 0.1s ease-out;
        }

        #features .section-title em {
            color: #ffffff;
        }

        #features.light-mode {
            background: var(--color-bg);
            color: var(--color-text);
        }

        #features.light-mode .section-title {
            color: var(--color-text);
        }

        #features.light-mode .section-title em {
            color: var(--color-text);
        }

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

        .feature-card {
            background: #fafafa;
            border-radius: 20px;
            padding: 48px;
            display: flex;
            flex-direction: column;
        }

        .feature-card.video-only {
            padding: 0;
            overflow: hidden;
            position: relative;
        }

        .feature-card.video-only video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .video-overlay-text {
            position: absolute;
            bottom: 24px;
            left: 24px;
            right: 24px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 16px 20px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 500;
            color: #000000 !important;
            text-shadow: none;
        }

        /* Full-bleed image/video feature cards */
        .feature-card.full-bleed {
            padding: 0;
            position: relative;
            overflow: hidden;
            aspect-ratio: 9/16;
            max-width: 320px;
            min-height: 450px;
        }

        .feature-card.full-bleed img,
        .feature-card.full-bleed video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .feature-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
            color: #ffffff;
            z-index: 2;
        }

        .feature-card.full-bleed h3 {
            color: #ffffff;
            font-size: 20px;
            margin-bottom: 8px;
        }

        .feature-card.full-bleed p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            line-height: 1.5;
        }

        .feature-card.large {
            grid-column: span 2;
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: var(--color-accent);
            border-radius: 12px;
            margin-bottom: 24px;
        }

        .feature-card h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .feature-card p {
            color: var(--color-text-secondary);
            font-size: 16px;
            line-height: 1.6;
            max-width: 400px;
        }

        .feature-visual {
            margin-top: auto;
            padding-top: 32px;
        }

        .feature-placeholder {
            background: #e5e7eb;
            border-radius: 12px;
            aspect-ratio: 16/9;
            width: 100%;
            max-width: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9ca3af;
            font-size: 13px;
            overflow: hidden;
        }

        .feature-visual.vertical .feature-placeholder,
        .feature-visual.vertical img {
            aspect-ratio: 9/16;
            max-width: 280px;
            width: 100%;
            object-fit: cover;
        }

        /* ========================================
           SHOWCASE / GALLERY SECTION
           ======================================== */
        .showcase {
            background: #111111;
            color: #ffffff;
            overflow: hidden;
        }

        .showcase .section-title {
            color: #ffffff;
        }

        .showcase .section-subtitle {
            color: rgba(255, 255, 255, 0.6);
        }

        .gallery-placeholder {
            aspect-ratio: 16/9;
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            background: linear-gradient(135deg, #1a1a1a 0%, #111111 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #444;
            font-size: 14px;
            border: 1px solid #222;
            overflow: hidden;
        }

        .gallery-hint {
            text-align: center;
            margin-top: 24px;
            color: rgba(255, 255, 255, 0.4);
            font-size: 14px;
        }

        /* ========================================
           SOCIAL PROOF / TESTIMONIALS
           ======================================== */
        .social-proof {
            background: #fafafa;
        }

        .logos-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
            margin-bottom: 64px;
        }

        .logo-placeholder {
            width: 120px;
            height: 40px;
            background: #e5e7eb;
            border-radius: 8px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .testimonial-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 32px;
        }

        .testimonial-card p {
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author-avatar {
            width: 44px;
            height: 44px;
            background: #e5e7eb;
            border-radius: 50%;
        }

        .author-info strong {
            display: block;
            font-size: 15px;
        }

        .author-info span {
            font-size: 13px;
            color: var(--color-text-secondary);
        }

        /* ========================================
           PRICING PREVIEW SECTION
           ======================================== */
        .pricing-preview {
            text-align: center;
        }

        .pricing-cards {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-top: 48px;
        }

        .pricing-card {
            background: #fafafa;
            border-radius: 20px;
            padding: 40px;
            width: 320px;
            text-align: left;
        }

        .pricing-card.featured {
            background: var(--color-accent);
            color: #ffffff;
        }

        .pricing-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .pricing-card .price {
            font-size: 48px;
            font-weight: 700;
            margin: 16px 0;
        }

        .pricing-card .price span {
            font-size: 16px;
            font-weight: 400;
            opacity: 0.7;
        }

        .pricing-card ul {
            list-style: none;
            margin: 24px 0;
        }

        .pricing-card li {
            padding: 8px 0;
            font-size: 15px;
        }

        .pricing-card .btn {
            width: 100%;
            margin-top: 16px;
        }

        .pricing-card.featured .btn {
            background: #ffffff;
            color: var(--color-accent);
        }

        /* ========================================
           FINAL CTA SECTION (Dark Mode)
           ======================================== */
        .final-cta {
            text-align: center;
            padding: 120px 24px;
            padding-top: 180px;
            background: #111111;
            color: #ffffff;
            position: relative;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: var(--color-bg);
            clip-path: ellipse(70% 100% at 50% 0%);
        }

        .final-cta h2 {
            font-size: clamp(36px, 6vw, 64px);
            font-weight: 600;
            line-height: 1.1;
            margin-bottom: 32px;
            letter-spacing: -0.02em;
            color: #ffffff;
        }

        .final-cta h2 em {
            font-family: var(--font-serif);
            font-style: italic;
            font-weight: 400;
        }

        .final-cta .btn {
            font-size: 32px;
            padding: 32px 80px;
            background: #ffffff;
            color: #111111;
        }

        .final-cta .btn:hover {
            opacity: 0.9;
        }

        .final-cta .subtext {
            margin-top: 16px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 15px;
        }

        /* ========================================
           FOOTER (hedra.com style)
           ======================================== */
        .footer {
            background: #111111;
            color: #ffffff;
            padding: 80px 24px 40px;
            position: relative;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr repeat(3, auto);
            gap: 64px;
            margin-bottom: 64px;
        }

        .footer-spacer {
            /* Empty left column for alignment */
        }

        .footer-column {
            text-align: right;
        }

        .footer-column h4 {
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 16px;
            color: #ffffff;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 4px;
        }

        .footer-column a {
            color: #ffffff;
            text-decoration: none;
            font-size: 18px;
            opacity: 0.7;
            transition: opacity 0.3s var(--ease-out-quint);
        }

        .footer-column a:hover {
            opacity: 1;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom-left {
            display: flex;
            gap: 40px;
        }

        .footer-bottom-right {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .footer-bottom a,
        .footer-bottom span {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 14px;
            text-transform: uppercase;
            font-family: ui-monospace, monospace;
            letter-spacing: 0.02em;
            transition: opacity 0.2s;
        }

        .footer-bottom a:hover {
            opacity: 0.6;
        }

        /* ========================================
           RESPONSIVE
           ======================================== */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: 1fr;
            }

            .feature-card.large {
                grid-column: span 1;
            }

            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 32px;
            }

            .footer-spacer {
                display: none;
            }

            .footer-column {
                text-align: left;
            }
        }

        @media (max-width: 768px) {
            .nav-links,
            .nav-actions {
                display: none;
            }

            .menu-toggle {
                display: flex;
                grid-column: 3;
                justify-self: end;
            }

            .hero {
                padding: 120px 24px 60px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .section {
                padding: 64px 24px;
            }

            .steps-content {
                grid-template-columns: 1fr;
            }

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

            .pricing-cards {
                flex-direction: column;
                align-items: center;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-column {
                text-align: left;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 24px;
                align-items: flex-start;
            }

            .footer-bottom-left,
            .footer-bottom-right {
                flex-direction: column;
                gap: 8px;
                align-items: flex-start;
            }
        }