/* =========================================================
   EmbeddedBuy — Coming Soon
   Playful light theme · a fun shop for gadgets & kits
   ========================================================= */

:root {
    /* Warm cream / paper palette */
    --bg: #fff6e5;
    --bg-2: #fff1d3;
    --surface: #ffffff;
    --surface-2: #fffaf0;

    /* Ink & text */
    --ink: #1b1240;
    --ink-soft: #4a3f7a;
    --ink-mute: #7d78a3;
    --line: rgba(27, 18, 64, 0.10);
    --line-strong: rgba(27, 18, 64, 0.18);

    /* Playful accents */
    --yellow: #ffd447;
    --yellow-2: #ffb800;
    --pink: #ff5c8a;
    --pink-2: #ffc9dc;
    --teal: #00c2b8;
    --teal-2: #c7f2e6;
    --violet: #7c5cff;
    --violet-2: #d9d0ff;
    --coral: #ff8a5c;

    /* Type */
    --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 28px;

    /* Chunky brand shadow */
    --shadow-pop: 6px 6px 0 var(--ink);
    --shadow-pop-hover: 8px 8px 0 var(--ink);
    --shadow-soft: 0 12px 40px rgba(27, 18, 64, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body { height: 100%; }

body {
    font-family: var(--font-sans);
    background:
        radial-gradient(circle at 15% 10%, #ffe9b0 0%, transparent 45%),
        radial-gradient(circle at 90% 85%, #ffd9e6 0%, transparent 40%),
        radial-gradient(circle at 80% 15%, #d4f4ef 0%, transparent 40%),
        var(--bg);
    color: var(--ink);
    line-height: 1.55;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle dot texture overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(27, 18, 64, 0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}

/* ---------- Background shapes ---------- */
.bg-shapes {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.shape { position: absolute; display: block; }

.shape-blob {
    border-radius: 50%;
    filter: blur(2px);
}
.shape-a {
    width: 220px; height: 220px;
    background: var(--yellow);
    top: -60px; left: -60px;
    animation: float-slow 12s ease-in-out infinite;
}
.shape-b {
    width: 180px; height: 180px;
    background: var(--pink-2);
    bottom: 12%; right: -50px;
    animation: float-slow 14s ease-in-out infinite reverse;
}
.shape-c {
    width: 140px; height: 140px;
    background: var(--teal-2);
    top: 55%; left: 6%;
    animation: float-slow 10s ease-in-out infinite;
    animation-delay: -3s;
}
.shape-dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--violet);
}
.shape-d { top: 18%; right: 22%; background: var(--pink); }
.shape-e { bottom: 22%; left: 32%; background: var(--teal); width: 10px; height: 10px; }

.shape-ring {
    width: 90px; height: 90px;
    border: 4px solid var(--ink);
    border-radius: 50%;
    top: 22%; right: 8%;
    animation: spin 22s linear infinite;
}
.shape-ring::after {
    content: "";
    position: absolute;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--yellow);
    top: -8px; left: 50%;
    transform: translateX(-50%);
}

.shape-squiggle {
    width: 120px;
    color: var(--violet);
    bottom: 8%;
    left: 42%;
    opacity: 0.7;
    animation: wiggle 6s ease-in-out infinite;
}
.shape-squiggle svg { width: 100%; height: auto; display: block; }

.shape-star {
    width: 26px; height: 26px;
    color: var(--coral);
    animation: twinkle 3s ease-in-out infinite;
}
.shape-star svg { width: 100%; height: 100%; display: block; }
.shape-g { top: 12%; left: 44%; }
.shape-h { bottom: 30%; right: 30%; color: var(--yellow-2); animation-delay: -1.4s; }

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50%      { transform: translate(20px, 30px) rotate(6deg); }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
@keyframes wiggle {
    0%, 100% { transform: translateX(0) rotate(-4deg); }
    50%      { transform: translateX(10px) rotate(4deg); }
}
@keyframes twinkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.9; }
    50%      { transform: scale(1.3) rotate(20deg); opacity: 1; }
}

/* ---------- Page shell ---------- */
.page {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ---------- Header ---------- */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
}
.brand-mark {
    display: inline-flex;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.brand:hover .brand-mark {
    transform: rotate(-8deg) scale(1.08);
}
.brand-text {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.brand-accent {
    color: var(--pink);
    font-style: italic;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--ink);
    color: var(--yellow);
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-pop);
    transform: rotate(-2deg);
    transition: transform 0.2s;
}
.header-badge:hover { transform: rotate(0deg) scale(1.02); }
.header-badge-emoji {
    animation: rocket 2.4s ease-in-out infinite;
    display: inline-block;
}
@keyframes rocket {
    0%, 100% { transform: translate(0, 0) rotate(-8deg); }
    50%      { transform: translate(2px, -3px) rotate(6deg); }
}

/* ---------- Hero ---------- */
.hero {
    flex: 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 20px 0 60px;
}
.hero-content { max-width: 640px; }

/* Tagline pill */
.tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    padding: 10px 16px;
    background: var(--surface);
    border: 2px solid var(--ink);
    border-radius: 999px;
    margin-bottom: 26px;
    box-shadow: 4px 4px 0 var(--yellow);
    transform: rotate(-1deg);
}
.tag-emoji {
    display: inline-block;
    animation: twinkle 2s ease-in-out infinite;
}

/* Headline */
.headline {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.8vw, 5rem);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 26px;
}
.highlight {
    position: relative;
    display: inline-block;
    color: var(--pink);
    font-style: italic;
    font-weight: 900;
}
.highlight .underline {
    position: absolute;
    left: 0; right: 0;
    bottom: -0.15em;
    width: 100%;
    height: 0.35em;
    color: var(--teal);
    pointer-events: none;
}
.highlight .underline path {
    stroke-dasharray: 320;
    stroke-dashoffset: 320;
    animation: draw-underline 1.4s ease-out 0.4s forwards;
}
@keyframes draw-underline {
    to { stroke-dashoffset: 0; }
}

.subheadline {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 540px;
    margin-bottom: 32px;
}

/* ---------- Countdown ---------- */
.countdown {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    max-width: 540px;
}
.count-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 8px;
    background: var(--surface);
    border: 2px solid var(--ink);
    border-radius: var(--radius-sm);
    box-shadow: 4px 4px 0 var(--ink);
    min-width: 60px;
    transition: transform 0.2s;
}
.count-block:nth-child(1) { background: #fff2c2; }
.count-block:nth-child(2) { background: #ffe0eb; }
.count-block:nth-child(3) { background: #d9f7f2; }
.count-block:nth-child(4) { background: #e8e0ff; }
.count-block:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--ink);
}
.count-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.6vw, 3rem);
    font-weight: 900;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -1px;
    font-variant-numeric: tabular-nums;
}
.count-label {
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ink-soft);
    font-weight: 600;
    margin-top: 10px;
}

/* ---------- Notify form ---------- */
.notify-form {
    display: flex;
    gap: 10px;
    max-width: 540px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.input-wrap {
    position: relative;
    flex: 1 1 240px;
}
.input-emoji {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    pointer-events: none;
}
.notify-form input[type="email"] {
    width: 100%;
    padding: 14px 16px 14px 44px;
    background: var(--surface);
    border: 2px solid var(--ink);
    border-radius: var(--radius-sm);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 15px;
    outline: none;
    box-shadow: 4px 4px 0 var(--ink);
    transition: transform 0.15s, box-shadow 0.15s;
}
.notify-form input[type="email"]::placeholder { color: var(--ink-mute); }
.notify-form input[type="email"]:focus {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--yellow);
}

.btn-notify {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--pink);
    color: #fff;
    border: 2px solid var(--ink);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 4px 4px 0 var(--ink);
    transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
    white-space: nowrap;
}
.btn-notify:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--ink);
    background: #ff4577;
}
.btn-notify:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--ink);
}
.btn-arrow {
    display: inline-block;
    font-size: 18px;
    transition: transform 0.2s;
}
.btn-notify:hover .btn-arrow { transform: translateX(4px); }

.form-msg {
    min-height: 22px;
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 24px;
}
.form-msg.success { color: var(--teal); font-weight: 600; }
.form-msg.error   { color: #d63c5e; font-weight: 600; }

/* ---------- Features chips ---------- */
.features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}
.features li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px 8px 8px;
    background: var(--surface);
    border: 2px solid var(--ink);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    box-shadow: 3px 3px 0 var(--ink);
    transition: transform 0.15s;
}
.features li:hover { transform: translate(-1px, -1px) rotate(-1deg); }
.chip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 14px;
}

/* =========================================================
   Hero visual: playful floating product cards
   ========================================================= */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}
.stage {
    position: relative;
    width: 100%;
    max-width: 460px;
    height: 500px;
}

/* Product card base */
.prod {
    position: absolute;
    width: 210px;
    background: var(--surface);
    border: 2.5px solid var(--ink);
    border-radius: 20px;
    padding: 14px;
    box-shadow: 8px 8px 0 var(--ink);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.prod-tag {
    position: absolute;
    top: -12px;
    right: 14px;
    background: var(--yellow);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 5px 10px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    transform: rotate(6deg);
}
.tag-pink { background: var(--pink); color: #fff; }
.tag-teal { background: var(--teal); color: #fff; }

.prod-art {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}
.art-board  { background: #d9f7f2; }
.art-kit    { background: #ffe9b0; }
.art-sensor { background: #ffe0eb; }

.prod-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px 2px;
}
.prod-name {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}
.prod-price {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: var(--pink);
}

/* Positions & individual float delays */
.prod-1 {
    top: 20px; left: 0;
    transform: rotate(-6deg);
    animation: float-card 7s ease-in-out infinite;
}
.prod-2 {
    top: 30px; right: 0;
    transform: rotate(5deg);
    animation: float-card 8s ease-in-out infinite;
    animation-delay: -2s;
    z-index: 2;
}
.prod-3 {
    bottom: 20px; left: 20%;
    transform: rotate(-3deg);
    animation: float-card 6.5s ease-in-out infinite;
    animation-delay: -4s;
    z-index: 3;
}
@keyframes float-card {
    0%, 100% { translate: 0 0; }
    50%      { translate: 0 -14px; }
}

/* --- Dev board art --- */
.board {
    position: relative;
    width: 130px;
    height: 90px;
    background: #0d9488;
    border-radius: 8px;
    box-shadow: inset 0 0 0 2px #065f5a, 3px 3px 0 rgba(27,18,64,0.15);
}
.board-chip {
    position: absolute;
    top: 30px; left: 50%;
    transform: translateX(-50%);
    width: 44px; height: 30px;
    background: var(--ink);
    border-radius: 4px;
    box-shadow: inset 0 0 0 2px #3d2d78;
}
.board-chip::after {
    content: "EB";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}
.board-pin {
    position: absolute;
    top: 4px;
    width: 6px; height: 6px;
    background: #ffd447;
    border-radius: 1px;
}
.board-pin:nth-child(2) { left: 12px; }
.board-pin:nth-child(3) { left: 24px; }
.board-pin:nth-child(4) { left: 36px; }
.board-pin:nth-child(5) { left: 48px; }
.board-pin:nth-child(6) { left: 76px; }
.board-pin:nth-child(7) { left: 88px; }
.board-pin:nth-child(8) { left: 100px; }
.board-pin:nth-child(9) { left: 112px; }
.board-led {
    position: absolute;
    bottom: 10px;
    left: 12px;
    width: 8px; height: 8px;
    background: var(--pink);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--pink);
    animation: led-blink 1.6s ease-in-out infinite;
}
@keyframes led-blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--pink); }
    50%      { opacity: 0.4; box-shadow: 0 0 4px var(--pink); }
}
.board-usb {
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 22px;
    background: #b8b8c8;
    border-radius: 2px;
    box-shadow: inset 0 0 0 2px #7a7a90;
}

/* --- Eval kit art (box with items) --- */
.kit-box {
    position: relative;
    width: 140px;
    height: 95px;
    background: #ff8a5c;
    border: 2.5px solid var(--ink);
    border-radius: 6px;
}
.kit-lid {
    position: absolute;
    top: -8px; left: -4px; right: -4px;
    height: 22px;
    background: var(--pink);
    border: 2.5px solid var(--ink);
    border-radius: 6px 6px 2px 2px;
    transform-origin: bottom left;
    animation: lid-wiggle 3s ease-in-out infinite;
}
@keyframes lid-wiggle {
    0%, 100% { transform: rotate(0deg); }
    50%      { transform: rotate(-6deg) translateY(-2px); }
}
.kit-item {
    position: absolute;
    border-radius: 4px;
    border: 2px solid var(--ink);
}
.i1 { top: 26px; left: 12px; width: 32px; height: 22px; background: var(--yellow); }
.i2 { top: 26px; left: 52px; width: 40px; height: 22px; background: var(--teal); border-radius: 999px; }
.i3 { top: 56px; left: 22px; width: 60px; height: 22px; background: var(--violet); }

/* --- Cute sensor art (a smiling module) --- */
.sensor {
    position: relative;
    width: 120px;
    height: 100px;
    background: var(--violet);
    border: 2.5px solid var(--ink);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: bob 3s ease-in-out infinite;
}
@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}
.sensor-face {
    display: flex;
    gap: 14px;
}
.sensor-eye {
    width: 16px;
    height: 16px;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: 50%;
    position: relative;
}
.sensor-eye::after {
    content: "";
    position: absolute;
    width: 6px; height: 6px;
    background: var(--ink);
    border-radius: 50%;
    top: 4px; left: 4px;
    animation: blink-eye 4s ease-in-out infinite;
}
@keyframes blink-eye {
    0%, 96%, 100% { transform: translateY(0); }
    98%           { transform: translateY(4px); }
}
.sensor-legs {
    display: flex;
    gap: 4px;
    position: absolute;
    bottom: -8px;
}
.sensor-legs span {
    width: 4px;
    height: 10px;
    background: var(--ink);
    border-radius: 0 0 2px 2px;
}

/* Floating decorative bits around stage */
.float-bit {
    position: absolute;
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--yellow-2);
}
.bit-resistor {
    top: 40%; left: -10px;
    width: 30px; height: 10px;
    background: linear-gradient(90deg, #ffd6a5 0 25%, var(--ink) 25% 30%, #ffd6a5 30% 45%, var(--ink) 45% 50%, #ffd6a5 50% 100%);
    border-radius: 2px;
    transform: rotate(-20deg);
    animation: float-slow 5s ease-in-out infinite;
}
.bit-cap {
    bottom: 24%; right: -8px;
    width: 22px; height: 22px;
    background: var(--yellow);
    border: 2px solid var(--ink);
    border-radius: 50%;
    animation: float-slow 6s ease-in-out infinite reverse;
}
.bit-cap::after {
    content: "";
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 12px; height: 2px;
    background: var(--ink);
}
.bit-star {
    top: 8%; right: 18%;
    font-size: 26px;
    color: var(--teal);
    animation: twinkle 2.6s ease-in-out infinite;
}
.bit-plus {
    bottom: 8%; left: 8%;
    font-size: 28px;
    color: var(--pink);
    animation: twinkle 3.4s ease-in-out infinite;
    animation-delay: -1s;
}

/* ---------- Footer ---------- */
.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 2px dashed var(--line-strong);
    margin-top: auto;
}
.socials { display: flex; gap: 10px; }
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--surface);
    border: 2px solid var(--ink);
    border-radius: 12px;
    color: var(--ink);
    text-decoration: none;
    box-shadow: 3px 3px 0 var(--ink);
    transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}
.social-link:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--ink);
    background: var(--yellow);
}
.copyright {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--ink-soft);
    font-weight: 500;
}

/* Parent brand badge — "A store by Embedded Club" */
.parent-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px 8px 12px;
    background: var(--ink);
    color: var(--yellow);
    border: 2px solid var(--ink);
    border-radius: 999px;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2px;
    box-shadow: 3px 3px 0 var(--yellow-2);
    transition: transform 0.15s, box-shadow 0.15s;
}
.parent-badge:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--yellow-2);
}
.parent-badge-label {
    color: #fff5c9;
    opacity: 0.8;
    font-weight: 500;
}
.parent-badge-brand {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--yellow);
    font-weight: 700;
}
.parent-badge-brand svg {
    color: var(--yellow);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-top: 10px;
    }
    .hero-content { max-width: 100%; margin: 0 auto; }
    .tagline, .countdown, .notify-form, .features {
        justify-content: center;
    }
    .notify-form { margin-left: auto; margin-right: auto; }
    .subheadline { margin-left: auto; margin-right: auto; }
    .hero-visual { min-height: 460px; }
    .stage { max-width: 420px; height: 460px; margin: 0 auto; }
}

@media (max-width: 640px) {
    .page { padding: 20px 18px; }
    .site-header { padding-bottom: 12px; }
    .header-badge { font-size: 12px; padding: 8px 14px; }
    .brand-text { font-size: 22px; }
    .countdown {
        padding: 0;
        gap: 8px;
    }
    .count-block {
        padding: 12px 6px;
        min-width: 0;
        box-shadow: 3px 3px 0 var(--ink);
    }
    .count-num { font-size: 1.6rem; }
    .count-label { font-size: 10px; letter-spacing: 1px; margin-top: 6px; }
    .notify-form { flex-direction: column; }
    .btn-notify { width: 100%; }
    .site-footer { justify-content: center; text-align: center; }
    .stage { height: 420px; }
    .prod { width: 170px; padding: 10px; }
    .prod-art { height: 100px; }
    .board { width: 110px; height: 76px; }
    .board-chip { width: 36px; height: 24px; top: 26px; }
    .kit-box { width: 110px; height: 78px; }
    .sensor { width: 96px; height: 82px; }
}

/* ---------- Reduce motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

