
/* ————— CSS Variables ————— */
:root {
    --bg: #f9fbf9;
    --panel: #ffffff;
    --ink: #0e1b16;
    --subtle-ink: #36594b;
    --muted: #edf4f1;
    --brand: #0ad68d;
    /* TinkerHub green-ish */
    --brand-2: #ffba08;
    /* festive yellow */
    --brand-3: #ff477e;
    /* playful pink */
    --ok: #20c997;
    --warn: #ff9f1c;
    --shadow: 0 8px 30px rgba(0, 0, 0, .07);
    --radius: 16px;
    --radius-lg: 22px;
    --maxw: 1100px;
}

/* ————— Base ————— */
* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--ink);
    background:
        radial-gradient(1200px 1200px at 110% -10%, rgba(255, 71, 126, .06), transparent 55%),
        radial-gradient(900px 900px at -10% 110%, rgba(10, 214, 141, .08), transparent 50%),
        linear-gradient(180deg, #fefefe 0%, var(--bg) 100%);
}

a {
    color: #0a7d5a;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

code,
pre {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 28px 20px;
}

/* ————— Decorative Leaves/Flowers (pure CSS) ————— */
.leaf {
    position: absolute;
    z-index: -1;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .08));
    opacity: .85;
}

.leaf--l {
    left: -60px;
    top: 140px;
    transform: rotate(-14deg) scale(1.1);
}

.leaf--r {
    right: -64px;
    bottom: 140px;
    transform: rotate(18deg) scale(1.05);
}

.leaf svg {
    display: block;
    width: 180px;
    height: auto;
}

.petals {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.petals::before,
.petals::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 70% 30%, rgba(255, 71, 126, .18), transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(255, 186, 8, .18), transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(10, 214, 141, .14), transparent 66%);
    filter: blur(14px);
    opacity: .55;
}

.petals::before {
    left: -140px;
    top: -60px;
}

.petals::after {
    right: -120px;
    bottom: -80px;
}

/* ————— Header ————— */
header {
    position: relative;
    padding: 24px 0 12px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: .4px;
}

.brand .dot {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--brand), #17b87b);
    box-shadow: var(--shadow);
}

.brand small {
    color: var(--subtle-ink);
    font-weight: 600;
}

/* ————— Hero ————— */
.hero {
    position: relative;
    margin-top: 26px;
    padding: 40px;
    border-radius: var(--radius-lg);
    background: var(--panel);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero h1 {
    font-size: clamp(38px, 4.6vw, 64px);
    line-height: 1.02;
    margin: 0 0 10px;
    letter-spacing: .6px;
}

.hero .sub {
    color: var(--subtle-ink);
    font-weight: 500;
    max-width: 64ch;
}

.hero .cta {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 14px;
    padding: 12px 18px;
    font-weight: 700;
    border: 2px solid transparent;
    transition: transform .06s ease, box-shadow .2s ease;
    box-shadow: 0 8px 18px rgba(10, 214, 141, .15);
}

.btn:active {
    transform: translateY(1px);
}

.btn--primary {
    background: linear-gradient(135deg, var(--brand), #0cbf7d);
    color: #033326;
}

.btn--ghost {
    background: #f4faf7;
    color: #0a7d5a;
    border-color: #bfe8db;
    box-shadow: none;
}

.prize {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff5db;
    color: #7a4b00;
    font-weight: 700;
    border: 1px solid #ffe39c;
    padding: 10px 14px;
    border-radius: 999px;
    margin-top: 14px;
}

@media (max-width: 720px) {
    .hero {
        padding: 28px 20px;
    }
}
/* ————— Section ————— */
section {
    margin-top: 30px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .3px;
    margin-bottom: 14px;
}

.section-title .tag {
    background: #e9fcf4;
    color: #06553e;
    border: 1px solid #c9f3e3;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .4px;
}

/* ————— Cards & Grids ————— */
.grid {
    display: grid;
    gap: 16px;
}
 .grid--two {
     grid-template-columns: 1fr 1fr;
     margin-top: 40px;
 }



@media (min-width: 960px) {
    .grid--3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.text-align-anchor{
    text-align: center;
    transition: transform .2s ease;
}

.text-align-anchor:hover{
    transform: scale(1.05);
}
.card {
    background: var(--panel);
    border: 1px solid #e7eeeb;
    border-radius: var(--radius);
    padding: 18px;
    
    box-shadow: var(--shadow);
}
.bullets--compact li {
    line-height: 1.6;
    margin-bottom: 6px;
}

.card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.card p {
    margin: 0;
    color: var(--subtle-ink);
}

/* ————— Steps ————— */
.step {
    position: relative;
    padding-left: 56px;
    min-width: 444px!important;
}

.step:not(:first-child) {
    margin-top: 6px;
}

.step .num {
    position: absolute;
    left: 0;
    top: 2px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 900;
    background: linear-gradient(135deg, var(--brand-2), #ffd85e);
    color: #442a00;
    border: 1px solid #ffe39c;
    box-shadow: 0 6px 14px rgba(255, 186, 8, .18);
}

.step .body>h4 {
    margin: 0 0 6px;
    font-size: 17px;
}

.step .body>p {
    margin: 0 0 8px;
    color: var(--subtle-ink);
}

.step .body p,
.step .body li {
    line-height: 1.5;
    margin-bottom: 12px;
}

.bullets {
    margin: 8px 0 0;
    padding-left: 18px;
}

.bullets li {
    margin: 6px 0;
}

.codeblock {
    margin: 10px 0;
    padding: 12px;
    background: #0e1b16;
    color: #eafff6;
    border-radius: 12px;
    overflow: auto;
    border: 1px solid #102821;
}

/* ————— Tips / Chips ————— */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.chip {
    background: #fff0f6;
    border: 1px solid #ffd2e3;
    color: #6a0532;
    padding: 8px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
}

.chip--green {
    background: #e9fcf4;
    color: #06553e;
    border-color: #bfe8db;
}

.chip--gold {
    background: #fff5db;
    color: #7a4b00;
    border-color: #ffe39c;
}

/* ————— FAQ ————— */
details {
    border: 1px solid #e7eeeb;
    background: var(--panel);
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: var(--shadow);
}

details+details {
    margin-top: 10px;
}

summary {
    cursor: pointer;
    font-weight: 800;
}

summary::-webkit-details-marker {
    display: none;
}

/* ————— Footer ————— */
footer {
    margin: 34px 0 60px;
    text-align: center;
    color: var(--subtle-ink);
}

.links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.links a {
    background: #0a7d5a;
    color: #eafff6;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 10px 18px rgba(10, 125, 90, .18);
}

/* ————— Utilities ————— */
.muted {
    color: var(--subtle-ink);
}

.note {
    background: #f4faf7;
    border: 1px dashed #bfe8db;
    padding: 12px;
    border-radius: 12px;
}

.center {
    text-align: center;
}

/* Help Hub ribbon */
.help-dock {
    margin: 40px 0 20px;
    padding: 0 6px;
}

.help-inner {
    position: relative;
    background: radial-gradient(120% 100% at 0% 0%, rgba(255, 216, 94, .20), transparent 40%),
        linear-gradient(180deg, #2fbf79, #219e64);
    color: #fff;
    border-radius: 18px;
    padding: 26px 22px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    overflow: hidden;
}
.no-bullets {
    list-style: none;
    /* padding-left: 0; */
}

.help-inner::before,
.help-inner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    opacity: .45;
    pointer-events: none;
}

.help-inner::before {
    width: 240px;
    height: 240px;
    left: -80px;
    top: -60px;
    background: rgba(255, 186, 8, .35);
}

.help-inner::after {
    width: 220px;
    height: 220px;
    right: -70px;
    bottom: -80px;
    background: rgba(255, 71, 126, .25);
}

.help-badge {
    display: inline-block;
    background: #fff;
    color: #196548;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .4px;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 8px 16px rgba(255, 255, 255, .18);
}

.help-inner h3 {
    margin: 10px 0 6px;
    line-height: 1.25;
}

.help-grid {
    display: grid;
    gap: 14px;
    margin-top: 10px;
}

@media (min-width: 720px) {
    .help-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.help-col h4 {
    margin: 0 0 6px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .6px;
    opacity: .95;
}

.help-chip {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .45);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 8px 12px;
    border-radius: 999px;
    backdrop-filter: blur(2px);
    margin: 0 8px 8px 0;
}

.help-chip:hover {
    background: rgba(255, 255, 255, .22);
}

.help-note {
    margin: 6px 0 0;
    opacity: .9;
}

.help-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 16px 0 4px;
}

.btn.btn--sun {
    background: #ffd85e;
    color: #4a3900;
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 800;
    border: 2px solid #ffcc3a;
    text-decoration: none;
    box-shadow: 0 10px 18px rgba(255, 216, 94, .25);
}

.btn.btn--sun-outline {
    background: transparent;
    color: #ffd85e;
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 800;
    border: 2px solid #ffd85e;
    text-decoration: none;
}

.help-remember {
    margin: 10px 0 0;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}