        :root {
            --teal: #4ECDC4;
            --teal-dark: #3BB8B0;
            --yellow: #FFD93D;
            --green: #6BCB77;
            --pink: #FF6B9D;
            --cream: #FDF8F3;
            --cream-dark: #F5EDE4;
            --charcoal: #2C3E50;
            --charcoal-light: #546E7A;
            --white: #FFFFFF;
            --shadow-soft: 0 4px 20px rgba(44, 62, 80, 0.08);
            --shadow-medium: 0 8px 30px rgba(44, 62, 80, 0.12);
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Nunito', sans-serif;
            color: var(--charcoal);
            background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .topbar {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(44, 62, 80, 0.08);
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .topbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            gap: 14px;
        }

        .logo {
            display: inline-flex;
            gap: 6px;
            font-family: 'Baloo 2', cursive;
            font-weight: 800;
            text-decoration: none;
            font-size: 1.4rem;
        }
        .logo .lets { color: var(--pink); }
        .logo .sew { color: var(--green); }
        .logo .club { color: var(--teal); }

        .top-actions {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 18px;
            border-radius: 999px;
            font-weight: 800;
            text-decoration: none;
            border: 2px solid transparent;
            transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
            cursor: pointer;
            white-space: nowrap;
        }
        .btn:hover { transform: translateY(-1px); }
        .btn-primary { background: var(--teal); color: var(--white); }
        .btn-primary:hover { background: var(--teal-dark); }
        .btn-ghost { background: transparent; color: var(--charcoal); border-color: rgba(44, 62, 80, 0.15); }
        .btn-ghost:hover { border-color: rgba(78, 205, 196, 0.6); }

        .hero {
            padding: 56px 0 26px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 22px;
            align-items: start;
        }

        .hero-card {
            background: rgba(255, 255, 255, 0.92);
            border-radius: var(--radius-xl);
            padding: 28px;
            box-shadow: var(--shadow-soft);
            border: 2px solid rgba(78, 205, 196, 0.25);
        }

        .hero h1 {
            font-family: 'Baloo 2', cursive;
            font-size: 2.6rem;
            line-height: 1.05;
            margin-bottom: 10px;
        }

        .hero p {
            color: var(--charcoal-light);
            font-weight: 700;
            font-size: 1.05rem;
        }

        .pill-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 18px;
        }

        .pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 12px;
            border-radius: 999px;
            background: var(--white);
            border: 2px solid rgba(44, 62, 80, 0.10);
            font-weight: 800;
            color: var(--charcoal);
            font-size: 0.95rem;
        }

        .side-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 22px;
            box-shadow: var(--shadow-soft);
            border: 3px dashed rgba(255, 107, 157, 0.45);
        }

        .side-card h2 {
            font-family: 'Baloo 2', cursive;
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        .side-card ul {
            list-style: none;
            display: grid;
            gap: 10px;
            margin-top: 12px;
        }

        .side-card li {
            display: flex;
            gap: 10px;
            font-weight: 700;
            color: var(--charcoal);
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--teal);
            margin-top: 7px;
            flex-shrink: 0;
        }

        .form-wrap {
            padding: 10px 0 70px;
        }

        .form-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 28px;
            box-shadow: var(--shadow-medium);
            border: 2px solid rgba(44, 62, 80, 0.08);
        }

        .form-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
        }

        .form-title h2 {
            font-family: 'Baloo 2', cursive;
            font-size: 1.8rem;
        }

        .hint {
            color: var(--charcoal-light);
            font-weight: 700;
            margin-bottom: 18px;
        }

        .grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .field { display: grid; gap: 8px; }
        label { font-weight: 800; color: var(--charcoal); }
        .required { color: var(--pink); }

        input, textarea, select {
            width: 100%;
            padding: 13px 14px;
            border-radius: 14px;
            border: 2px solid rgba(44, 62, 80, 0.12);
            font-family: 'Nunito', sans-serif;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
            background: var(--white);
        }
        textarea { min-height: 120px; resize: vertical; }

        input:focus, textarea:focus, select:focus {
            border-color: rgba(78, 205, 196, 0.75);
            box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.18);
        }

        .full { grid-column: 1 / -1; }

        .submit-row {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
            margin-top: 16px;
        }

        .note {
            color: var(--charcoal-light);
            font-weight: 700;
            font-size: 0.95rem;
        }

        .footer {
            padding: 30px 0 44px;
            color: rgba(44, 62, 80, 0.75);
            text-align: center;
            font-weight: 700;
            font-size: 0.95rem;
        }

        @media (max-width: 900px) {
            .hero-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 720px) {
            .grid { grid-template-columns: 1fr; }
            .hero h1 { font-size: 2.2rem; }
        }
    

/* --- Utility classes (replace inline style attributes; the CSP forbids them) --- */
.hidden-block { display: none; }
.title-icon { font-size: 1.4rem; }
.link-inherit { color: inherit; }
