        #home {
            color: #133425;
        }

        #home .panel,
        #home .mode-card,
        #home .extra-card {
            background: rgba(255, 255, 250, 0.94);
            border: 1.5px solid rgba(24, 92, 46, 0.16);
            box-shadow: 0 14px 34px rgba(38, 90, 54, 0.1);
        }

        .hero-comic {
            padding: 20px;
            border-radius: 28px;
        }

        .comic-strip {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 10px;
        }

        .comic-frame {
            aspect-ratio: 1.38;
            border-radius: 18px;
            overflow: hidden;
            border: 3px solid #0f5c2d;
            background: #fffaf0;
        }

        .comic-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .hero-copy {
            margin-top: 18px;
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 14px;
            align-items: center;
        }

        .hero-leaf {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            display: grid;
            place-items: center;
            background: #dff0d3;
            color: #1d7138;
            font-size: 30px;
            font-weight: 900;
        }

        .hero-copy .subtitle,
        .hero-copy .note {
            margin: 0;
            color: #29483b;
            line-height: 1.75;
        }

        .hero-copy .subtitle {
            font-size: 17px;
            font-weight: 700;
        }

        .hero-copy .note {
            grid-column: 2;
            font-size: 15px;
        }

        .mode-grid {
            margin-top: 20px;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 22px;
        }

        .mode-card {
            min-height: 205px;
            text-align: left;
            padding: 22px 20px 20px;
            border-radius: 22px;
            color: #153a2a;
            cursor: pointer;
            transition: transform 0.18s ease, box-shadow 0.18s ease;
            display: block;
            position: relative;
            overflow: hidden;
        }

        .mode-card:nth-child(1) {
            background: #fbfff5 !important;
            border-color: rgba(65, 126, 55, 0.2) !important;
        }

        .mode-card:nth-child(2) {
            background: #f4fbff !important;
            border-color: rgba(50, 143, 207, 0.2) !important;
        }

        .mode-card:nth-child(3) {
            background: #fffaf0 !important;
            border-color: rgba(226, 160, 37, 0.24) !important;
        }

        .mode-card:nth-child(4) {
            background: #fbf9ff !important;
            border-color: rgba(119, 87, 172, 0.2) !important;
        }

        .mode-card::after {
            content: "";
            position: absolute;
            inset: auto -30px -42px auto;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: rgba(94, 170, 83, 0.12);
        }

        .mode-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 42px rgba(38, 90, 54, 0.14);
        }

        .mode-card-copy {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            width: 58%;
            min-height: 100%;
        }

        .mode-time {
            display: flex;
            align-items: baseline;
            gap: 5px;
            margin-bottom: 5px;
            white-space: nowrap;
        }

        .mode-number {
            display: inline;
            color: #1b7a36;
            font-size: clamp(48px, 4.4vw, 64px);
            line-height: 0.82;
            font-weight: 900;
            white-space: nowrap;
        }

        .mode-unit {
            margin: 0;
            color: #1b7a36;
            font-size: 16px;
            font-weight: 900;
            white-space: nowrap;
        }

        .mode-card:nth-child(2) .mode-number,
        .mode-card:nth-child(2) .mode-unit {
            color: #2587cf;
        }

        .mode-card:nth-child(3) .mode-number,
        .mode-card:nth-child(3) .mode-unit {
            color: #e39c1b;
        }

        .mode-card:nth-child(4) .mode-number,
        .mode-card:nth-child(4) .mode-unit {
            color: #7657ad;
        }

        .mode-card strong {
            display: block;
            font-size: 22px;
            line-height: 1.15;
            letter-spacing: 0;
            margin-bottom: 0;
            white-space: nowrap;
            color: #153a2a;
        }

        .mode-card-copy > span:not(.mode-time):not(.mode-number):not(.mode-unit):not(.start-chip) {
            display: none;
        }

        .mode-card-copy > span:not(.mode-time):not(.start-chip) {
            color: #406255;
            font-size: 12px;
            line-height: 1.42;
        }

        .start-chip {
            margin-top: auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 34px;
            padding: 7px 15px;
            border-radius: 999px;
            background: linear-gradient(135deg, #1d7b35, #60a947);
            color: #ffffff !important;
            font-size: 14px !important;
            font-weight: 800;
            box-shadow: 0 10px 20px rgba(41, 118, 55, 0.22);
            white-space: nowrap;
            flex: 0 0 auto;
        }

        .mode-card:nth-child(2) .start-chip {
            background: linear-gradient(135deg, #168bdd, #69bde6);
            box-shadow: 0 10px 20px rgba(46, 143, 207, 0.2);
        }

        .mode-card:nth-child(3) .start-chip {
            background: linear-gradient(135deg, #eda51d, #f4c257);
            box-shadow: 0 10px 20px rgba(226, 160, 37, 0.2);
        }

        .mode-card:nth-child(4) .start-chip {
            background: linear-gradient(135deg, #7657ad, #9d82c7);
            box-shadow: 0 10px 20px rgba(119, 87, 172, 0.2);
        }

        .mode-illustration {
            position: absolute;
            z-index: 1;
            right: 14px;
            bottom: 12px;
            width: 52%;
            height: calc(100% - 28px);
            display: block;
            pointer-events: none;
            border-radius: 18px;
            overflow: hidden;
            background: inherit;
        }

        .mode-illustration img {
            width: 100%;
            height: 100%;
            max-width: 220px;
            max-height: 172px;
            object-fit: contain;
            display: block;
            margin-left: auto;
        }

        .home-dashboard {
            margin-top: 20px;
            padding: 18px 24px;
            border-radius: 22px;
            display: grid;
            grid-template-columns: 1.55fr 1fr;
            gap: 24px;
            align-items: center;
        }

        .home-dashboard h2 {
            margin: 0 0 14px;
            color: #184b2c;
            font-size: 19px;
            letter-spacing: 0;
        }

        .home-backup {
            min-height: 100%;
            padding-left: 24px;
            border-left: 1px solid rgba(24, 92, 46, 0.12);
        }

        .extra-section {
            margin-top: 22px;
            padding: 24px;
            border-radius: 26px;
        }

        .extra-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 18px;
            margin-bottom: 16px;
        }

        .extra-header h2 {
            margin: 0;
            color: #164b2b;
            font-size: 24px;
            letter-spacing: 0;
        }

        .extra-header p {
            margin: 8px 0 0;
            color: #4f695e;
            line-height: 1.7;
        }

        .extra-badge {
            flex: 0 0 auto;
            display: inline-flex;
            padding: 8px 13px;
            border-radius: 999px;
            background: #e5f4d9;
            color: #1f763a;
            font-weight: 800;
            font-size: 13px;
        }

        .extra-mode-grid {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            gap: 14px;
        }

        .extra-card {
            min-height: 164px;
            text-align: left;
            padding: 12px;
            border-radius: 18px;
            color: #153a2a;
            cursor: pointer;
            transition: transform 0.18s ease, box-shadow 0.18s ease;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            position: relative;
        }

        .extra-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 34px rgba(38, 90, 54, 0.13);
        }

        .extra-illustration {
            aspect-ratio: 1.55;
            border-radius: 14px;
            overflow: hidden;
            background: #f8f2df;
            border: 1px solid rgba(24, 92, 46, 0.12);
        }

        .extra-illustration img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .extra-copy {
            display: block;
            margin-top: 10px;
        }

        .extra-card strong {
            display: block;
            color: #184b2c;
            font-size: 16px;
            letter-spacing: 0;
            margin-bottom: 4px;
        }

        .extra-card span {
            color: #4f695e;
            font-size: 12px;
            line-height: 1.45;
        }

        .extra-card .duration {
            margin-top: auto;
            padding: 5px 9px;
            background: #ecf8e4;
            color: #1d7138;
        }
