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

html, body {
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #ffffff;
    background: #0b3c4b;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.page {
    min-height: 100vh;
    padding: 40px 56px 56px;
    position: relative;
    background: #0b3c4b;
}

.top-bar {
    margin-bottom: 24px;
}

.brand-logo {
    width: 64px;
    height: auto;
    display: block;
    opacity: 0;
    animation: fadeSlideDown 0.7s ease-out 0.1s forwards;
}

/* ===== HERO CARD ===== */
.hero-card {
    position: relative;
    background: linear-gradient(180deg, #124b5c 0%, #0f4556 100%);
    border-radius: 28px;
    padding: 64px 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    overflow: hidden;
    min-height: 720px;
    opacity: 0;
    animation: fadeScaleIn 0.9s ease-out 0.05s forwards;
}

.hero-left {
    position: relative;
    z-index: 2;
    max-width: 540px;
}

.hero-right {
    position: relative;
    z-index: 2;
}

/* ===== BADGE ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease-out 0.35s forwards;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    animation: softPulse 2.4s ease-in-out infinite 1.2s;
}

/* ===== HERO TITLE ===== */
.hero-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeSlideUp 0.7s ease-out 0.5s forwards;
}

.hero-sub {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease-out 0.68s forwards;
}

/* ===== WAITLIST FORM ===== */
.waitlist-form {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
    align-items: center;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease-out 0.82s forwards;
}

.email-input {
    flex: 0 1 280px;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    min-width: 0;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.email-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.07);
}

.waitlist-btn {
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
}

.waitlist-btn:hover {
    background: rgba(255, 255, 255, 0.14);
}

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

.arrow {
    font-size: 15px;
    display: inline-block;
    transition: transform 0.25s ease;
}

.waitlist-btn:hover .arrow {
    transform: translateX(3px);
}

/* ===== PERKS ===== */
.perks {
    display: flex;
    gap: 24px;
    list-style: none;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.perks li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    animation: fadeSlideUp 0.5s ease-out forwards;
}

.perks li:nth-child(1) { animation-delay: 0.95s; }
.perks li:nth-child(2) { animation-delay: 1.05s; }
.perks li:nth-child(3) { animation-delay: 1.15s; }

.check {
    color: #4ade80;
    font-weight: 600;
    font-size: 13px;
}

/* ===== ENGINEERED SECTION ===== */
.engineered {
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease-out 1.3s forwards;
}

.engineered-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
}

.partner-logos {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.partner-logo {
    height: 32px;
    width: auto;
    opacity: 0;
    object-fit: contain;
    animation: fadeIn 0.6s ease-out forwards;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.partner-logo:nth-child(1) { animation-delay: 1.45s; }
.partner-logo:nth-child(2) { animation-delay: 1.55s; }
.partner-logo:nth-child(3) { animation-delay: 1.65s; }

.partner-logo:hover {
    transform: translateY(-2px);
    filter: brightness(1.15);
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease-out 1.75s forwards;
    flex-wrap: wrap;
}

.avatars {
    display: flex;
}

.avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid #0f4556;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-left: -8px;
    opacity: 0;
    transform: scale(0.6);
    animation: popIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.avatar:first-child { margin-left: 0; }
.avatars .avatar:nth-child(1) { animation-delay: 1.85s; }
.avatars .avatar:nth-child(2) { animation-delay: 1.95s; }
.avatars .avatar:nth-child(3) { animation-delay: 2.05s; }
.avatars .avatar:nth-child(4) { animation-delay: 2.15s; }

.social-proof-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.social-proof-text strong {
    color: #ffffff;
    font-weight: 600;
}

/* ===== MAC WINDOW ===== */
.mac-window {
    background: linear-gradient(180deg, #0e2a35 0%, #0a1e27 100%);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.04);
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    opacity: 0;
    transform: translateY(18px) scale(0.97);
    animation: windowPop 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

.mac-window-header {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    gap: 16px;
    background: rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.traffic-lights {
    display: flex;
    gap: 6px;
}

.light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.3);
    animation: popIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.light.red { background: #ff5f57; animation-delay: 0.95s; }
.light.yellow { background: #febc2e; animation-delay: 1.05s; }
.light.green { background: #28c840; animation-delay: 1.15s; }

.date-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto;
    opacity: 0;
    animation: fadeSlideDown 0.5s ease-out 1.25s forwards;
}

.date-pill svg {
    color: rgba(255, 255, 255, 0.7);
}

.new-btn {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: #ffffff;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: background 0.2s;
    opacity: 0;
    animation: fadeSlideDown 0.5s ease-out 1.35s forwards;
}

.new-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.plus {
    font-size: 14px;
    font-weight: 400;
}

/* ===== MAC WINDOW BODY ===== */
.mac-window-body {
    display: flex;
    min-height: 420px;
}

/* ===== SIDE NAV ===== */
.side-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 14px;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(0, 0, 0, 0.1);
}

.nav-item {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    opacity: 0;
    transform: translateX(-8px);
    animation: fadeSlideRight 0.5s ease-out forwards;
}

.nav-item:nth-child(1) { animation-delay: 1.5s; }
.nav-item:nth-child(2) { animation-delay: 1.6s; }
.nav-item:nth-child(3) { animation-delay: 1.7s; }
.nav-item:nth-child(4) { animation-delay: 1.8s; }
.nav-item:nth-child(5) { animation-delay: 1.9s; }

.nav-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(0) scale(1.06);
}

.nav-item img {
    width: 38px;
    height: 38px;
    display: block;
}

.star-item {
    background: linear-gradient(135deg, #3b9bb5, #2a7a93);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(59, 155, 181, 0.4);
    margin-top: 8px;
    animation: fadeSlideRight 0.5s ease-out 1.9s forwards, starGlow 2.8s ease-in-out infinite 2.4s;
}

.star-item svg {
    width: 18px;
    height: 18px;
    color: #ffffff;
}

/* ===== APPOINTMENTS PANEL ===== */
.appointments-panel {
    flex: 1;
    padding: 22px 24px;
    overflow: hidden;
}

.panel-header {
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeSlideUp 0.5s ease-out 1.6s forwards;
}

.panel-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.panel-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.appointment-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ===== APPOINTMENT CARDS ===== */
.appt-card {
    border-radius: 14px;
    padding: 14px 18px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    transform: translateY(14px) scale(0.98);
    animation: cardDrop 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.appt-card:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.appointment-list .appt-card:nth-child(1) { animation-delay: 1.85s; }
.appointment-list .appt-card:nth-child(2) { animation-delay: 2.0s; }
.appointment-list .appt-card:nth-child(3) { animation-delay: 2.15s; }
.appointment-list .appt-card:nth-child(4) { animation-delay: 2.3s; }

.appt-green {
    background: linear-gradient(135deg, rgba(16, 90, 70, 0.9), rgba(10, 70, 55, 0.7));
}

.appt-purple {
    background: linear-gradient(135deg, rgba(75, 55, 130, 0.9), rgba(55, 40, 110, 0.8));
}

.appt-blue {
    background: linear-gradient(135deg, rgba(30, 65, 120, 0.9), rgba(25, 55, 100, 0.8));
}

.appt-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.appt-time {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.appt-tag {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.appt-patient {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.appt-owner {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

.appt-cut {
    margin-bottom: -40px;
}

/* ===== DECORATIVE GRAPHICS ===== */
.side-graphic {
    position: absolute;
    right: -40px;
    bottom: -60px;
    width: 520px;
    height: auto;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    animation: graphicFloat 1.2s ease-out 1.2s forwards, slowDrift 12s ease-in-out infinite 2.4s;
}

.decor-star {
    position: absolute;
    right: 180px;
    bottom: 140px;
    width: 22px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    animation: starTwinkle 0.6s ease-out 2.5s forwards, twinkleLoop 3.4s ease-in-out infinite 3.2s;
}

/* ===== INPUT ERROR STATE ===== */
.email-input.input-error {
    border-color: rgba(239, 68, 68, 0.7);
    background: rgba(239, 68, 68, 0.08);
    animation: shake 0.45s ease-in-out;
}

/* ===== BUTTON STATES ===== */
.waitlist-btn:disabled {
    cursor: default;
    opacity: 0.95;
}

.waitlist-btn.is-loading {
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.waitlist-btn.is-loading .arrow {
    animation: spin 0.8s linear infinite;
}

.waitlist-btn.is-success {
    background: rgba(74, 222, 128, 0.22);
    border-color: rgba(74, 222, 128, 0.5);
    color: #dcfce7;
}

.waitlist-btn.is-success .arrow {
    display: none;
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    top: 28px;
    right: 28px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 22px 16px 18px;
    background: linear-gradient(180deg, #0f4152 0%, #0b3543 100%);
    border: 1px solid rgba(74, 222, 128, 0.35);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    color: #ffffff;
    max-width: 360px;
    min-width: 280px;
    opacity: 0;
    transform: translateY(-16px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 9999;
}

.toast.toast-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.toast-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: #052e16;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.4);
}

.toast-body {
    flex: 1;
    min-width: 0;
}

.toast-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
    line-height: 1.35;
}

.toast-sub {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.toast.toast-error {
    border-color: rgba(239, 68, 68, 0.45);
}

.toast.toast-error .toast-icon {
    background: linear-gradient(135deg, #f87171, #ef4444);
    color: #450a0a;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

@media (max-width: 680px) {
    .toast {
        top: 16px;
        right: 12px;
        left: 12px;
        max-width: none;
        min-width: 0;
        padding: 14px 16px;
    }

    .toast-title {
        font-size: 13px;
    }

    .toast-sub {
        font-size: 11.5px;
    }
}

/* ===== KEYFRAMES ===== */
@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideRight {
    from { opacity: 0; transform: translateX(-8px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeScaleIn {
    from { opacity: 0; transform: scale(0.985); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes windowPop {
    from { opacity: 0; transform: translateY(18px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes cardDrop {
    from { opacity: 0; transform: translateY(14px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes graphicFloat {
    from { opacity: 0; transform: translateY(30px) rotate(-3deg); }
    to { opacity: 0.35; transform: translateY(0) rotate(0); }
}

@keyframes slowDrift {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes starTwinkle {
    from { opacity: 0; transform: scale(0.4) rotate(-90deg); }
    to { opacity: 0.9; transform: scale(1) rotate(0); }
}

@keyframes twinkleLoop {
    0%, 100% { opacity: 0.9; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

@keyframes softPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.25); }
}

@keyframes starGlow {
    0%, 100% { box-shadow: 0 4px 12px rgba(59, 155, 181, 0.4); }
    50% { box-shadow: 0 4px 24px rgba(59, 155, 181, 0.75); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .brand-logo,
    .hero-card,
    .badge,
    .hero-title,
    .hero-sub,
    .waitlist-form,
    .perks li,
    .engineered,
    .partner-logo,
    .social-proof,
    .avatar,
    .mac-window,
    .light,
    .date-pill,
    .new-btn,
    .nav-item,
    .panel-header,
    .appt-card,
    .side-graphic,
    .decor-star {
        opacity: 1 !important;
        transform: none !important;
    }

    .side-graphic { opacity: 0.35 !important; }
    .decor-star { opacity: 0.9 !important; }
}

/* ===== RESPONSIVE: Tablet ===== */
@media (max-width: 1100px) {
    .page {
        padding: 32px 32px 40px;
    }

    .hero-card {
        grid-template-columns: 1fr;
        padding: 48px 40px;
        gap: 40px;
        min-height: auto;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-right {
        margin-top: 8px;
    }

    .mac-window {
        max-width: 100%;
        margin-left: 0;
        margin-right: auto;
    }

    .side-graphic {
        width: 380px;
        right: -80px;
        bottom: -100px;
    }

    .decor-star {
        right: 80px;
        bottom: 90px;
    }
}

/* ===== RESPONSIVE: Mobile ===== */
@media (max-width: 680px) {
    .page {
        padding: 20px 14px 28px;
    }

    .top-bar {
        margin-bottom: 16px;
    }

    .brand-logo {
        width: 52px;
    }

    .hero-card {
        padding: 32px 20px;
        border-radius: 22px;
        gap: 32px;
    }

    .badge {
        font-size: 11.5px;
        padding: 6px 12px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .hero-title br {
        display: none;
    }

    .hero-sub {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-sub br {
        display: none;
    }

    .waitlist-form {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 18px;
    }

    .email-input {
        flex: 1 1 auto;
        padding: 13px 20px;
    }

    .waitlist-btn {
        justify-content: center;
        padding: 13px 20px;
    }

    .perks {
        gap: 12px 22px;
        margin-bottom: 30px;
    }

    .perks li {
        font-size: 12.5px;
    }

    .engineered {
        margin-bottom: 24px;
    }

    .engineered-label {
        font-size: 10px;
        margin-bottom: 12px;
    }

    .partner-logos {
        gap: 20px;
    }

    .partner-logo {
        height: 26px;
    }

    .social-proof {
        gap: 12px;
    }

    .avatar {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .social-proof-text {
        font-size: 13px;
    }

    /* --- Mac window mobile --- */
    .mac-window {
        border-radius: 14px;
    }

    .mac-window-header {
        padding: 10px 12px;
        gap: 10px;
    }

    .light {
        width: 10px;
        height: 10px;
    }

    .date-pill {
        font-size: 11px;
        padding: 5px 10px;
        gap: 6px;
    }

    .date-pill svg {
        width: 12px;
        height: 12px;
    }

    .new-btn {
        font-size: 11px;
        padding: 5px 10px;
    }

    .mac-window-body {
        min-height: 340px;
    }

    .side-nav {
        padding: 12px 6px;
        gap: 6px;
    }

    .nav-item {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .nav-item img {
        width: 30px;
        height: 30px;
    }

    .star-item svg {
        width: 14px;
        height: 14px;
    }

    .appointments-panel {
        padding: 16px 14px;
    }

    .panel-header {
        margin-bottom: 14px;
    }

    .panel-header h2 {
        font-size: 15px;
    }

    .panel-header p {
        font-size: 11.5px;
    }

    .appointment-list {
        gap: 9px;
    }

    .appt-card {
        padding: 11px 14px;
        border-radius: 11px;
    }

    .appt-top {
        margin-bottom: 6px;
    }

    .appt-time {
        font-size: 11.5px;
    }

    .appt-tag {
        font-size: 9.5px;
        padding: 3px 9px;
    }

    .appt-patient {
        font-size: 13px;
    }

    .appt-owner {
        font-size: 11.5px;
    }

    .appt-cut {
        margin-bottom: -32px;
    }

    .side-graphic {
        width: 280px;
        right: -70px;
        bottom: -70px;
        opacity: 0.25;
    }

    .decor-star {
        display: none;
    }
}

/* ===== Extra small phones ===== */
@media (max-width: 380px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-card {
        padding: 28px 16px;
    }

    .date-pill span {
        display: none;
    }
}
