.kanban-board{display:flex;flex-direction:column;gap:1rem}.kanban-board__error{background:#fcebeb;color:#a32d2d;border-radius:8px;padding:10px 12px;font-size:13px;display:flex;justify-content:space-between;align-items:center;gap:12px}.kanban-board__error button{background:#fff;border:1px solid #A32D2D;border-radius:6px;padding:4px 10px;font-size:12px;color:#a32d2d;cursor:pointer}.kanban-progress{display:flex;flex-direction:column;gap:4px}.kanban-progress__bar{height:6px;background:#e5e4dc;border-radius:3px;overflow:hidden}.kanban-progress__fill{height:100%;background:#1d9e75;border-radius:3px;transition:width .4s ease}.kanban-progress__label{font-size:12px;color:#73726c}.kanban-columns{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;align-items:start}@media (max-width: 640px){.kanban-columns{grid-template-columns:1fr}}.kanban-column{background:#f8f8f6;border-radius:12px;padding:12px;min-height:120px;display:flex;flex-direction:column;gap:8px}.kanban-column.is-drop-target{background:#eef5f1;outline:2px dashed #1D9E75;outline-offset:-4px}.kanban-column__header{display:flex;align-items:center;justify-content:space-between;margin-bottom:4px}.kanban-column__title{font-weight:500;font-size:14px;display:flex;align-items:center;gap:6px}.kanban-column__count{font-size:12px;background:#00000014;border-radius:10px;padding:1px 8px;color:#3d3d3a}.kanban-column__wip{background:#faeeda;color:#854f0b;border-radius:8px;padding:6px 8px;font-size:12px}.kanban-column__empty{border:1.5px dashed rgba(0,0,0,.15);border-radius:8px;padding:14px 8px;font-size:12px;color:#8a8a82;text-align:center}.kanban-card{background:#fff;border:.5px solid rgba(0,0,0,.12);border-radius:8px;padding:10px 12px;cursor:grab;position:relative;transition:box-shadow .15s,transform .1s;display:flex;flex-direction:column;gap:6px}.kanban-card:hover{box-shadow:0 2px 8px #00000014}.kanban-card.is-dragging{opacity:.5;transform:scale(.97)}.kanban-card[aria-disabled=true]{cursor:default}.kanban-card__top{display:flex;justify-content:space-between;align-items:center;gap:6px;font-size:11px}.kanban-card__priority{border-radius:999px;padding:1px 8px;font-weight:500;text-transform:capitalize}.kanban-card__priority--high{background:#fcebeb;color:#a32d2d}.kanban-card__priority--medium{background:#faeeda;color:#854f0b}.kanban-card__priority--low{background:#eaf3de;color:#3b6d11}.kanban-card__due{color:#73726c}.kanban-card__due--soon{color:#854f0b}.kanban-card__due--overdue{color:#a32d2d;font-weight:500}.kanban-card__title{font-size:14px;font-weight:500;color:#172230;margin:0;word-break:break-word}.kanban-card__meta{display:flex;flex-wrap:wrap;gap:6px;font-size:11px;color:#73726c}.kanban-card__assignee{background:#0000000d;border-radius:999px;padding:1px 8px}.kanban-card__tag{background:#eef5f1;color:#2c5e4d;border-radius:4px;padding:1px 6px}.kanban-card__actions{display:flex;gap:4px;flex-wrap:wrap;margin-top:4px}.kanban-card__actions button{background:none;border:1px solid rgba(0,0,0,.15);border-radius:6px;padding:3px 8px;font-size:11px;color:#3d3d3a;cursor:pointer}.kanban-card__actions button:hover{background:#0000000a}.kanban-card__actions button.is-danger{color:#a32d2d;border-color:#e8c0c0}@keyframes kanban-celebrate{0%{transform:scale(1)}30%{transform:scale(1.06)}60%{transform:scale(.97)}to{transform:scale(1)}}.kanban-card--celebrating{animation:kanban-celebrate .5s ease-out forwards;border-color:#3b6d11;background:#eaf3de}.kanban-card--celebrating:after{content:"🎉";position:absolute;top:-12px;right:8px;font-size:20px;animation:kanban-celebrate .5s ease-out}.kanban-add-btn{width:100%;border:1.5px dashed rgba(0,0,0,.18);border-radius:8px;background:transparent;padding:8px;font-size:13px;color:#73726c;cursor:pointer;margin-top:4px}.kanban-add-btn:hover{background:#0000000a;border-color:#0000004d}.kanban-skeleton-card{height:60px;background:linear-gradient(90deg,#efece5,#f7f5ef,#efece5);background-size:200% 100%;border-radius:8px;animation:kanban-shimmer 1.4s infinite linear}@keyframes kanban-shimmer{0%{background-position:200% 0}to{background-position:-200% 0}}.kanban-toast{position:fixed;bottom:24px;left:50%;transform:translate(-50%);background:#fcebeb;color:#a32d2d;padding:10px 16px;border-radius:8px;font-size:13px;box-shadow:0 4px 16px #0000001f;z-index:1100;animation:kanban-toast-fade 3s ease forwards}@keyframes kanban-toast-fade{0%,90%{opacity:1}to{opacity:0}}.task-modal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#0006;display:flex;align-items:center;justify-content:center;z-index:1000;padding:16px}.task-modal{background:#fff;border-radius:16px;padding:24px;width:100%;max-width:520px;max-height:90vh;overflow-y:auto;display:flex;flex-direction:column;gap:14px}.task-modal__title{font-size:18px;font-weight:600;margin:0;color:#172230}.task-modal__field{display:flex;flex-direction:column;gap:4px}.task-modal__field label{font-size:12px;color:#73726c;font-weight:500}.task-modal__field input,.task-modal__field textarea,.task-modal__field select{border:1px solid rgba(0,0,0,.15);border-radius:8px;padding:8px 10px;font-size:14px;font-family:inherit;background:#fff}.task-modal__field textarea{min-height:64px;resize:vertical}.task-modal__row{display:grid;grid-template-columns:1fr 1fr;gap:12px}@media (max-width: 480px){.task-modal__row{grid-template-columns:1fr}}.task-modal__error{color:#a32d2d;font-size:12px;background:#fcebeb;border-radius:6px;padding:6px 10px}.task-modal__actions{display:flex;justify-content:flex-end;gap:8px;margin-top:4px}.task-modal__actions button{border-radius:8px;padding:8px 16px;font-size:14px;font-weight:500;cursor:pointer}.task-modal__cancel{background:#fff;border:1px solid rgba(0,0,0,.15);color:#3d3d3a}.task-modal__save{background:#172230;border:1px solid #172230;color:#fff}.task-modal__save:disabled{opacity:.6;cursor:not-allowed}.kanban-move-popover{position:absolute;top:100%;right:0;margin-top:4px;background:#fff;border:1px solid rgba(0,0,0,.15);border-radius:8px;padding:6px;display:flex;flex-direction:column;gap:2px;z-index:50;box-shadow:0 4px 16px #0000001f;min-width:160px}.kanban-move-popover button{background:none;border:none;padding:6px 10px;font-size:13px;text-align:left;cursor:pointer;border-radius:4px}.kanban-move-popover button:hover{background:#0000000d}.kanban-move-popover button:disabled{opacity:.5;cursor:default}:root{color-scheme:light;--bg: #f5efe3;--bg-strong: #eadfc9;--surface: rgba(255, 251, 245, .9);--surface-strong: #fffaf2;--ink: #182331;--muted: #5c6774;--line: rgba(24, 35, 49, .12);--line-strong: rgba(17, 93, 122, .18);--accent: #115d7a;--accent-strong: #0d4e66;--accent-soft: rgba(17, 93, 122, .08);--signal: #d97b2d;--success: #2d7a4f;--danger: #b44848;--shadow: 0 24px 80px rgba(24, 35, 49, .12);--radius-xl: 36px;--radius-lg: 24px;--radius-md: 18px;--radius-sm: 12px}*{box-sizing:border-box}html,body,#root{min-height:100%}body{margin:0;font-family:Manrope,sans-serif;color:var(--ink);background:radial-gradient(circle at top left,rgba(217,123,45,.18),transparent 26%),radial-gradient(circle at top right,rgba(17,93,122,.16),transparent 22%),linear-gradient(180deg,#f8f4ec,#efe5d2)}button,input,select{font:inherit}a{color:inherit}.landing-shell{position:relative;min-height:100vh;overflow:hidden}.landing-ambient{position:fixed;width:32rem;height:32rem;border-radius:999px;filter:blur(44px);opacity:.42;pointer-events:none}.landing-ambient--left{left:-10rem;top:-9rem;background:#d97b2d4d}.landing-ambient--right{right:-8rem;top:12rem;background:#115d7a3d}.landing-main,.dashboard-shell{position:relative;z-index:1;width:min(1240px,calc(100vw - 32px));margin:0 auto;padding:28px 0 64px}.hero-panel,.path-card,.loading-panel,.feedback,.dashboard-topbar,.dashboard-panel,.team-card,.empty-state{border:1px solid var(--line);background:var(--surface);-webkit-backdrop-filter:blur(18px);backdrop-filter:blur(18px);box-shadow:var(--shadow)}.hero-panel{display:grid;grid-template-columns:minmax(0,1fr);gap:24px;padding:28px;border-radius:var(--radius-xl)}.hero-copy{display:grid;gap:18px}.hero-badges,.hero-pills,.adult-summary,.stacked-actions,.quick-action-grid,.team-card__meta,.team-card__pills,.policy-row{display:flex;flex-wrap:wrap;gap:10px}.hero-badge,.hero-pill,.adult-summary span,.team-card__meta span,.team-card__pills span{display:inline-flex;align-items:center;padding:9px 14px;border-radius:999px;border:1px solid rgba(17,93,122,.14);background:#ffffffd1;color:var(--muted);font-size:.88rem;font-weight:700}.hero-badge{color:var(--accent);background:#115d7a14}.hero-panel h1,.dashboard-topbar h1{margin:0;font-family:Fraunces,serif;line-height:.98;letter-spacing:-.05em}.hero-panel h1{font-size:clamp(1.92rem,4vw,3.84rem)}.dashboard-topbar h1{margin-top:10px;font-size:clamp(2rem,4vw,3.4rem)}.hero-body,.section-note,.adult-config-note p,.loading-panel p,.team-card__head p,.recent-entry-card p,.empty-state p{margin:0;color:var(--muted);line-height:1.6}.status-card{display:grid;gap:16px;align-self:stretch;padding:20px;border-radius:calc(var(--radius-lg) + 2px);border:1px solid var(--line-strong);background:linear-gradient(180deg,#115d7a14,#ffffffd1),var(--surface-strong)}.status-card__kicker,.section-kicker{font-size:.76rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--accent)}.section-kicker--success{color:var(--success)}.status-card__grid,.snapshot-grid,.form-grid{display:grid;gap:14px}.status-card__grid,.snapshot-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.form-grid--triple{grid-template-columns:repeat(3,minmax(0,1fr))}.status-card__grid strong,.path-card h2,.dashboard-panel h2,.empty-state h3,.team-card h3,.snapshot-grid strong{display:block;margin-top:6px}.status-label{display:block;color:var(--muted);font-size:.82rem}.feedback{margin-top:18px;padding:14px 16px;border-radius:var(--radius-md);color:var(--danger)}.feedback--error{border-color:#b448483d;background:#fff4f4eb}.loading-panel{margin-top:24px;border-radius:var(--radius-lg);padding:24px;display:grid;justify-items:center;gap:16px}.loading-spinner{width:42px;height:42px;border-radius:999px;border:3px solid rgba(17,93,122,.14);border-top-color:var(--accent);animation:spin 1s linear infinite}.path-grid,.dashboard-grid{display:grid;gap:24px;margin-top:24px}.path-grid{grid-template-columns:minmax(0,1.2fr) minmax(300px,.8fr)}.dashboard-grid{grid-template-columns:minmax(320px,.9fr) minmax(0,1.1fr)}.dashboard-stack{display:grid;gap:24px;margin-top:24px}.dashboard-grid--single{grid-template-columns:minmax(0,1fr)}.path-card,.dashboard-panel{display:grid;gap:16px;padding:24px;border-radius:var(--radius-lg)}.landing-main .hero-badge,.landing-main .hero-pill,.landing-main .adult-summary span{font-size:.9rem;padding:8px 12px}.landing-main .hero-body,.landing-main .section-note,.landing-main .info-banner,.landing-main .adult-config-note p,.landing-main .feedback,.landing-main .student-home-footer{font-size:.8rem}.landing-main .path-card h2{margin:0;font-size:2rem;line-height:1.1}.landing-main .mode-switch,.landing-main .primary-button,.landing-main .secondary-button,.landing-main .student-form label,.landing-main .team-form label,.landing-main .student-form input,.landing-main .team-form input,.landing-main .team-form select,.landing-main .apple-login-button{font-size:.8rem}.path-card--student{background:radial-gradient(circle at top right,rgba(17,93,122,.12),transparent 28%),linear-gradient(180deg,#ffffffe6,#f9fbfff0)}.path-card--adult{background:radial-gradient(circle at top left,rgba(217,123,45,.12),transparent 30%),var(--surface)}.dashboard-topbar{display:flex;justify-content:space-between;gap:24px;padding:24px 28px;border-radius:var(--radius-xl)}.dashboard-topbar--compact{align-items:flex-start}.dashboard-topbar__actions{display:flex;flex-wrap:wrap;gap:12px;align-self:flex-start}.dashboard-tab-row{display:flex;flex-wrap:wrap;gap:12px}.dashboard-tab-pill{display:inline-flex;align-items:center;min-height:44px;padding:0 20px;border-radius:999px;border:1px solid rgba(24,35,49,.12);background:#ffffffbd;color:var(--ink);font-weight:800}.dashboard-tab-pill--active{background:#1d293d;border-color:#1d293d;color:#fff}.dashboard-panel__intro{display:grid;gap:8px}.dashboard-panel__intro--spread{grid-template-columns:minmax(0,1.2fr) minmax(260px,.8fr);align-items:start}.dashboard-template-actions,.dashboard-admin-actions,.dashboard-admin-limits__actions{display:flex;flex-wrap:wrap;gap:12px;align-items:center}.dashboard-admin-actions-cell{display:grid;gap:8px;justify-items:start}.dashboard-icon-button{width:44px;height:44px;display:inline-flex;align-items:center;justify-content:center;border-radius:999px;border:1px solid rgba(24,35,49,.12);background:#ffffffe6;color:var(--ink);font-size:1.1rem;font-weight:800;cursor:pointer}.dashboard-icon-button--danger{color:#8d3c2f}.mode-switcher{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}.mode-switch,.primary-button,.primary-link-button,.secondary-button,.secondary-link-button{display:inline-flex;align-items:center;justify-content:center;min-height:48px;border-radius:999px;padding:0 18px;font-weight:800;text-decoration:none;cursor:pointer;transition:transform .15s ease,box-shadow .15s ease,background .15s ease}.mode-switch{border:1px solid rgba(17,93,122,.14);background:#ffffffc7;color:var(--muted)}.mode-switch.is-active{background:var(--accent);color:#fff;border-color:var(--accent)}.primary-button,.primary-link-button{border:none;background:linear-gradient(135deg,var(--accent),var(--signal));color:#fff;box-shadow:0 12px 28px #115d7a3d}.secondary-button,.secondary-link-button{border:1px solid rgba(24,35,49,.14);background:#ffffffd6;color:var(--ink)}.student-form,.success-panel,.team-form,.team-card-list,.recent-entry-list{display:grid;gap:12px}.student-form label,.team-form label{display:grid;gap:8px;font-weight:700}.student-form input,.team-form input,.team-form select{width:100%;border:1px solid rgba(24,35,49,.14);border-radius:var(--radius-sm);background:#ffffffe6;padding:14px 16px;color:var(--ink)}.student-form input:focus,.team-form input:focus,.team-form select:focus{outline:2px solid rgba(17,93,122,.18);border-color:var(--accent)}.checkbox-row{display:inline-flex;align-items:center;gap:10px;font-weight:700}.info-banner,.adult-config-note,.empty-state{border-radius:var(--radius-md);border:1px solid rgba(17,93,122,.14);background:#115d7a12;padding:14px 16px}.adult-auth-stack{display:grid;gap:12px}.adult-feature-list{display:grid;gap:12px;margin:0;padding:0;list-style:none}.adult-feature-list li{position:relative;padding-left:34px;color:var(--muted);font-size:.8rem;line-height:1.45}.adult-feature-list li:before{content:"✓";position:absolute;left:0;top:-1px;color:var(--accent);font-size:1rem;font-weight:800}.auth-login-slot{width:min(420px,100%);max-width:100%}.auth-login-slot>*{width:100%}.google-login-slot{min-height:44px}.apple-login-button{display:block;position:relative;width:100%;min-height:48px;border:0;border-radius:999px;background:#111;color:#fff;padding:0 18px 0 54px;font:700 .98rem/1 Manrope,sans-serif;cursor:pointer;transition:transform .14s ease,box-shadow .14s ease,opacity .14s ease;text-align:center}.apple-login-button:disabled{cursor:progress;opacity:.72}.apple-login-button__icon{position:absolute;left:6px;top:50%;width:36px;height:36px;display:inline-flex;align-items:center;justify-content:center;border-radius:999px;background:#fff;color:#111;transform:translateY(-50%)}.apple-login-button__label{display:block;width:100%}.codename-display{padding:16px 18px;border-radius:var(--radius-md);background:linear-gradient(180deg,#edfaf1f0,#fffffff5);border:1px solid rgba(45,122,79,.18);color:var(--success);font-size:clamp(1.4rem,3vw,2.1rem);font-weight:800;letter-spacing:-.03em}.team-card{display:grid;gap:14px;padding:18px 20px;border-radius:var(--radius-md)}.dashboard-panel--primary{background:radial-gradient(circle at top right,rgba(17,93,122,.09),transparent 30%),radial-gradient(circle at top left,rgba(217,123,45,.08),transparent 26%),linear-gradient(180deg,#fffffff2,#fffbf4e6)}.team-form--dashboard{gap:18px}.form-grid--double{grid-template-columns:repeat(2,minmax(0,1fr))}.dashboard-policy-row{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;align-items:stretch}.dashboard-policy-card{display:grid;gap:18px;align-content:space-between;min-height:116px;padding:18px 20px;border-radius:var(--radius-md);border:1px solid rgba(24,35,49,.12);background:#ffffffc7;font-weight:800}.dashboard-policy-card input{justify-self:start;width:22px;height:22px;padding:0;border:0;border-radius:6px;background:transparent;accent-color:var(--accent)}.dashboard-policy-note{display:grid;align-items:center;padding:14px 16px;border-radius:var(--radius-md);border:1px dashed rgba(24,35,49,.16);background:#ffffffb8;color:var(--muted);font-weight:700}.team-form__submit{justify-self:start;width:auto;min-width:220px}.dashboard-team-section{display:grid;gap:18px}.dashboard-admin-table-wrap{overflow-x:auto;border-radius:var(--radius-md);border:1px solid rgba(24,35,49,.12);background:#ffffffd1}.dashboard-admin-table{width:100%;min-width:1180px;border-collapse:collapse}.dashboard-admin-table th,.dashboard-admin-table td{padding:16px 18px;text-align:left;vertical-align:top;border-bottom:1px solid rgba(24,35,49,.08)}.dashboard-admin-table th{color:var(--muted);font-size:.82rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;background:#1823310a}.dashboard-admin-table td strong,.dashboard-admin-team-item strong{display:block}.dashboard-admin-table td span,.dashboard-admin-team-item span{color:var(--muted);line-height:1.55}.dashboard-admin-row--inactive{opacity:.72}.dashboard-admin-team-menu summary{display:inline-flex;align-items:center;min-height:42px;padding:0 16px;border-radius:999px;border:1px solid rgba(24,35,49,.12);background:#ffffffe0;cursor:pointer;font-weight:800}.dashboard-admin-team-popover{margin-top:12px;display:grid;gap:10px;min-width:260px}.dashboard-admin-team-item{display:grid;gap:4px;padding:12px 14px;border-radius:var(--radius-sm);border:1px solid rgba(24,35,49,.1);background:#ffffffdb}.dashboard-admin-limits{display:grid;gap:12px}.dashboard-admin-limits label{display:grid;gap:6px;font-weight:700}.dashboard-admin-limits input{width:100%;min-width:94px;border:1px solid rgba(24,35,49,.14);border-radius:var(--radius-sm);background:#ffffffeb;padding:10px 12px}.dashboard-admin-limits input:focus{outline:2px solid rgba(17,93,122,.18);border-color:var(--accent)}.dashboard-modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:40;display:grid;place-items:center;padding:24px;background:#0e162252;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.dashboard-modal-card{width:min(880px,calc(100vw - 32px));max-height:calc(100vh - 48px);overflow-y:auto;display:grid;gap:18px;padding:24px;border-radius:var(--radius-xl);border:1px solid var(--line);background:#fffcf7f5;box-shadow:0 28px 52px #18233133}.dashboard-template-editor,.dashboard-template-editor__list{display:grid;gap:12px}.dashboard-template-editor__row{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:12px}.dashboard-team-section .team-card-list,.dashboard-team-card{gap:18px}.dashboard-team-card__head{align-items:flex-start}.dashboard-team-card__actions{display:flex;gap:10px;flex-wrap:wrap;align-items:center;justify-content:flex-end}.dashboard-team-card__open{min-width:120px}.dashboard-team-card__action-pill{min-width:132px}.dashboard-team-card__action-pill--danger{color:#8d3c2f;border-color:#8d3c2f33;background:#fffaf8eb}.dashboard-team-details{border-top:1px solid rgba(24,35,49,.08);padding-top:16px}.dashboard-team-details__summary{cursor:pointer;font-weight:800;color:var(--ink)}.dashboard-team-details__body{margin-top:14px}.dashboard-team-detail-grid{display:grid;grid-template-columns:minmax(0,1fr);gap:18px;align-items:start}.dashboard-team-detail-card{padding:18px;border-radius:var(--radius-lg);border:1px solid rgba(24,35,49,.12);background:#ffffffd1;box-shadow:0 14px 32px #1823310d}.dashboard-team-control-panel,.dashboard-team-student-panel{display:grid;gap:14px;align-content:start}.dashboard-team-control-panel h4,.dashboard-team-student-panel h4{margin:0;font-size:1.2rem}.dashboard-team-control-stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}.dashboard-team-control-stat{display:grid;gap:8px;min-height:98px;padding:14px 16px;border-radius:var(--radius-md);border:1px solid rgba(24,35,49,.12);background:#ffffffc7}.dashboard-team-control-stat span{color:var(--muted);font-weight:700}.dashboard-team-control-stat strong{font-size:1.5rem;line-height:1}.dashboard-team-footnotes{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.dashboard-team-student-table-wrap{overflow-x:auto;border-radius:var(--radius-md);border:1px solid rgba(24,35,49,.12);background:#ffffffd6}.dashboard-team-student-table{width:100%;min-width:760px;border-collapse:collapse}.dashboard-team-student-table th,.dashboard-team-student-table td{padding:14px 16px;text-align:left;border-bottom:1px solid rgba(24,35,49,.08)}.dashboard-team-student-table th{color:var(--muted);font-size:.82rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;background:#1823310a}.dashboard-team-section__head{display:flex;justify-content:space-between;gap:20px;align-items:end}.dashboard-team-section__head .section-note{max-width:38rem}.team-card__head,.recent-entry-card__head{display:flex;justify-content:space-between;gap:16px;align-items:flex-start}.team-card__footer{color:var(--muted)}.adult-team-review__overview{gap:14px}.adult-team-review__stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.adult-team-review__stat-card{display:grid;gap:10px;min-height:116px;padding:18px 20px;border-radius:var(--radius-md);border:1px solid rgba(24,35,49,.12);background:#ffffffc2}.adult-team-review__stat-card span{color:var(--muted);font-weight:700}.adult-team-review__stat-card strong{margin-top:auto;font-size:clamp(1.4rem,3vw,2rem);line-height:1}.adult-team-review__toolbar{display:grid;gap:16px}.adult-team-review__toolbar label{display:grid;gap:8px;font-weight:700}.adult-team-review__toolbar input,.adult-team-review__toolbar select{width:100%;border:1px solid rgba(24,35,49,.14);border-radius:var(--radius-sm);background:#ffffffe6;padding:14px 16px;color:var(--ink)}.adult-team-review__toolbar input:focus,.adult-team-review__toolbar select:focus{outline:2px solid rgba(17,93,122,.18);border-color:var(--accent)}.notebook-review-panel{gap:20px}.notebook-review-toolbar{display:flex;justify-content:space-between;gap:16px;align-items:center;flex-wrap:wrap}.notebook-review-group-list,.notebook-review-entry-list{display:grid;gap:16px}.notebook-review-group{display:grid;gap:14px}.notebook-review-group h3,.notebook-review-calendar__month h3{margin:0;font-family:Fraunces,serif;font-size:clamp(1.35rem,2vw,1.9rem);letter-spacing:-.03em}.notebook-review-entry{border:1px solid rgba(24,35,49,.12);border-radius:calc(var(--radius-md) + 2px);background:#ffffffdb;overflow:hidden}.notebook-review-entry__summary{list-style:none;display:grid;grid-template-columns:minmax(140px,.18fr) minmax(0,1fr) minmax(140px,.18fr);gap:18px;padding:18px 20px;align-items:start;cursor:pointer}.notebook-review-entry__summary::-webkit-details-marker{display:none}.notebook-review-entry__time,.notebook-review-entry__author{color:var(--muted);font-weight:700}.notebook-review-entry__author{text-align:right}.notebook-review-entry__title{display:grid;gap:10px}.notebook-review-entry__title strong{font-size:1.15rem;line-height:1.2}.notebook-review-entry__body{display:grid;gap:18px;padding:0 20px 20px;border-top:1px solid rgba(24,35,49,.08)}.notebook-review-entry__body--split{grid-template-columns:minmax(260px,.8fr) minmax(0,1.2fr);align-items:start}.notebook-review-entry__copy{display:grid;gap:12px}.notebook-review-entry__copy p{margin:0;color:var(--muted);line-height:1.65}.notebook-review-preview{width:100%;border-radius:var(--radius-md);border:1px solid rgba(17,93,122,.12);background:#fffffff0;object-fit:contain;box-shadow:0 18px 32px #18233114}.notebook-review-preview--loading,.notebook-review-preview--fallback{min-height:280px;display:grid;place-items:center;padding:24px;text-align:center}.notebook-review-preview--loading p,.notebook-review-preview--fallback p{margin:0;color:var(--muted)}.notebook-review-calendar{display:grid;gap:18px}.notebook-review-calendar__months{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(320px,380px);gap:16px;overflow-x:auto;padding-bottom:8px}.notebook-review-calendar__month{display:grid;gap:14px;padding:18px;border-radius:var(--radius-md);border:1px solid rgba(24,35,49,.12);background:#fffc}.notebook-review-calendar__month-head,.notebook-review-calendar__selection{display:flex;justify-content:space-between;gap:12px;align-items:center}.notebook-review-calendar__selection{padding:16px 18px;border-radius:var(--radius-md);border:1px solid rgba(24,35,49,.12);background:#ffffffc2}.notebook-review-calendar__selection span{color:var(--muted);font-weight:700}.notebook-review-calendar__weekdays,.notebook-review-calendar__grid{display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:8px}.notebook-review-calendar__weekdays span{text-align:center;color:var(--muted);font-size:.78rem;font-weight:800}.notebook-review-calendar__day{min-height:58px;display:grid;place-items:center;gap:4px;border-radius:14px;border:1px solid rgba(24,35,49,.1);background:#ffffffe6;color:var(--ink);font-weight:700}.notebook-review-calendar__day strong{font-size:.82rem}.notebook-review-calendar__day.is-selected{background:#115d7a1f;border-color:#115d7a3d}.notebook-review-calendar__day--empty{color:var(--muted)}.notebook-review-calendar__day--blank{border:0;background:transparent}.notebook-review-rail-card{min-height:420px}.adult-team-review__list{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(320px,360px);gap:16px;overflow-x:auto;padding-bottom:8px;scroll-snap-type:x proximity}.adult-team-entry-card{align-content:start;background:#ffffffdb;min-height:340px;scroll-snap-align:start}.adult-team-entry-card--placeholder{background:linear-gradient(180deg,#fffffff0,#f6f9fdeb),#ffffffe6}.adult-team-entry-card__preview{width:100%;aspect-ratio:16 / 10;object-fit:cover;border-radius:var(--radius-sm);border:1px solid rgba(17,93,122,.12);background:#ffffffeb}.adult-team-entry-card__footer{display:flex;flex-wrap:wrap;gap:10px;color:var(--muted);font-size:.88rem;font-weight:700}.recent-entry-card{display:grid;gap:10px;padding:16px 18px;border:1px solid rgba(17,93,122,.12);border-radius:var(--radius-md);background:#ffffffd1}.recent-entry-card__head span{color:var(--muted);font-size:.92rem}.student-home-shell{min-height:100vh;background:radial-gradient(circle at top left,rgba(166,93,255,.18),transparent 26%),radial-gradient(circle at top right,rgba(255,133,59,.16),transparent 24%),linear-gradient(180deg,#fdf8ff,#fff6f1)}.student-home-main{width:min(1240px,calc(100vw - 32px));margin:0 auto;padding:32px 0 72px}.student-home-header{display:flex;justify-content:space-between;gap:28px;align-items:flex-start;padding:22px 0 26px;border-bottom:4px solid rgba(181,132,255,.45)}.student-home-brand{display:flex;gap:22px;align-items:center}.student-home-brandmark{position:relative;width:92px;height:92px;border-radius:28px;display:grid;place-items:center;background:linear-gradient(145deg,#9747ff,#ed4f9d 55%,#ff8b3d);box-shadow:0 24px 44px #aa52d238;transform:rotate(-4deg)}.student-home-brandmark span{font-size:2.8rem}.student-home-brandmark__spark{position:absolute;top:-10px;right:-8px;width:34px;height:34px;border-radius:999px;display:grid;place-items:center;background:#ffd335;color:#5a2a00;font-size:.9rem;box-shadow:0 12px 20px #ffba0047}.student-home-brand-copy{display:grid;gap:10px}.student-home-kicker{color:#5d4d86;font-size:1rem;font-weight:800}.student-home-brand-copy h1{margin:0;font-size:clamp(2rem,4.2vw,3.35rem);line-height:.95;font-weight:900;letter-spacing:-.06em;background:linear-gradient(90deg,#843dff,#df449b 48%,#ff7f33);-webkit-background-clip:text;background-clip:text;color:transparent}.student-home-brand-copy p{margin:0;color:#4d5968;font-size:1.05rem;font-weight:700}.student-home-meta,.student-home-actions,.student-entry-section__meta,.student-entry-card__badge-row{display:flex;flex-wrap:wrap;gap:10px}.student-home-chip{display:inline-flex;align-items:center;min-height:36px;padding:0 14px;border-radius:999px;border:1px solid rgba(162,116,255,.24);background:#ffffffc7;color:#5d4d86;font-size:.86rem;font-weight:800;box-shadow:0 10px 22px #bd9bff1f}.student-home-actions{align-items:center;justify-content:flex-end}.student-home-button{display:inline-flex;align-items:center;justify-content:center;min-height:58px;padding:0 24px;border-radius:18px;border:2px solid transparent;font-size:1rem;font-weight:800;text-decoration:none;cursor:pointer;transition:transform .15s ease,box-shadow .15s ease,border-color .15s ease}.student-home-button:hover{transform:translateY(-1px)}.student-home-button--ghost{border-color:#b888ff85;background:#ffffffd1;color:#29233c;box-shadow:0 10px 24px #ba96ff2e}.student-home-button--primary{background:linear-gradient(90deg,#9747ff,#ea4f9d 52%,#ff8a3d);color:#fff;box-shadow:0 18px 34px #d9579f47}.student-home-button--subtle{min-height:50px;padding:0 18px;border-color:#c4aee96b;background:#ffffff94;color:#5b4f73}.student-dialog-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:40;display:grid;place-items:center;padding:24px;background:#271a4342;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px)}.student-dialog{width:min(820px,calc(100vw - 32px));max-height:min(86vh,920px);overflow:auto;border-radius:30px;border:2px solid rgba(191,152,255,.44);background:#fffffff0;box-shadow:0 36px 68px #674c983d}.student-dialog__header{display:flex;justify-content:space-between;gap:18px;align-items:flex-start;padding:24px 28px 0}.student-dialog__header h3,.student-help-card h4{margin:0}.student-dialog__header p,.student-export-card p,.student-help-card p,.student-collaborator-row p,.student-dialog-empty{margin:0;color:#586373;line-height:1.6}.student-dialog__close{width:42px;height:42px;display:inline-flex;align-items:center;justify-content:center;border-radius:999px;border:1px solid rgba(162,116,255,.24);background:#ffffffd1;color:#5d4d86;font-size:1.5rem;cursor:pointer}.student-dialog__content{display:grid;gap:18px;padding:24px 28px 28px}.student-dialog--journey{width:min(720px,calc(100vw - 32px))}.save-journey{display:grid;gap:14px}.save-journey__status{display:grid;grid-template-columns:auto minmax(0,1fr);gap:14px;align-items:center;padding:16px;border-radius:22px;border:2px solid rgba(143,95,255,.2);background:linear-gradient(135deg,#f0f7fff5,#fff7f1f5),#ffffffeb}.save-journey__status strong,.save-journey__highlight h3,.save-journey-entry strong{color:#241c3a}.save-journey__status p,.save-journey__highlight p,.save-journey-entry p{margin:4px 0 0;color:#586373;line-height:1.45}.save-journey__spinner{position:relative;width:52px;height:52px;border-radius:16px;background:#fff;box-shadow:0 18px 34px #8f5fff2e;overflow:hidden}.save-journey__spinner span{position:absolute;width:16px;height:16px;border-radius:999px;background:#7d45ff;animation:journey-bounce 1.25s ease-in-out infinite}.save-journey__spinner span:nth-child(1){left:9px;top:18px;background:#4d88f8}.save-journey__spinner span:nth-child(2){left:18px;top:9px;background:#1bc289;animation-delay:.14s}.save-journey__spinner span:nth-child(3){right:9px;bottom:11px;background:#ff8a3d;animation-delay:.28s}.save-journey__steps{display:grid;grid-template-columns:max-content minmax(48px,1fr) max-content;gap:10px;align-items:center;color:#687386;font-size:.86rem;font-weight:900}.save-journey__steps div{height:4px;border-radius:999px;background:linear-gradient(90deg,#1bc289,#d9e2ec 52%,#d9e2ec)}.save-journey__steps div.is-active{background:linear-gradient(90deg,#1bc289,#4d88f8 58%,#ff8a3d)}.save-journey__steps span{white-space:nowrap}.save-journey__steps span.is-complete{color:#16855f}.save-journey__steps span.is-active{color:#115d7a}.save-journey__stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}.save-journey__stats article{display:grid;gap:6px;min-height:88px;padding:14px;border-radius:18px;border:1px solid rgba(17,93,122,.14);background:#ffffffc7}.save-journey__stats span{color:#687386;font-size:.82rem;font-weight:800}.save-journey__stats strong{align-self:end;color:#115d7a;font-size:1.78rem;line-height:1}.save-journey__highlight{display:grid;gap:8px;padding:16px;border-radius:22px;border:1px solid rgba(255,138,61,.2);background:linear-gradient(135deg,#fff8e8f5,#effaf6f0),#ffffffe6}.save-journey__highlight h3{margin:0;font-size:1.08rem}.save-journey__timeline{display:grid;gap:10px}.save-journey-entry{display:grid;grid-template-columns:auto minmax(0,1fr);gap:12px;align-items:start;padding:12px 14px;border-radius:16px;background:#ffffffb8;border:1px solid rgba(192,161,255,.22)}.save-journey-entry__marker{width:30px;height:30px;display:grid;place-items:center;border-radius:999px;background:#eef7fb;color:#115d7a;font-weight:900}.save-journey-entry strong{font-size:.96rem}.save-journey-entry p{font-size:.92rem}.student-dialog-grid,.student-help-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.student-export-card,.student-help-card{display:grid;gap:8px;min-height:150px;padding:20px;border-radius:24px;border:2px solid rgba(192,161,255,.32);background:linear-gradient(145deg,#f6eefff0,#fff4f9fa);text-align:left}.student-help-card--accent{border-color:#8f5fff57;background:linear-gradient(145deg,#f4ecfffa,#fff4f7fa)}.student-help-card__link{color:#7d45ff;font-weight:800;text-decoration:none}.student-help-card__link:hover{text-decoration:underline}.student-export-card{cursor:pointer;font:inherit;transition:transform .15s ease,box-shadow .15s ease,border-color .15s ease}.student-export-card:hover{transform:translateY(-2px);border-color:#8f5fff8a;box-shadow:0 24px 44px #bba0ff2e}.student-export-card__icon{font-size:2rem}.student-export-card strong{font-size:1.2rem}.student-export-card span,.student-info-row span,.student-dialog-subsection strong,.student-status-pill{font-weight:800}.student-export-progress{display:grid;gap:18px}.student-export-progress__bar{display:grid;grid-template-columns:42px minmax(0,1fr) 42px;gap:12px;align-items:center}.student-export-progress__bar span{width:42px;height:42px;display:grid;place-items:center;border-radius:999px;border:2px solid rgba(192,161,255,.34);background:#ffffffdb;color:#6b5f88;font-weight:900}.student-export-progress__bar span.is-active{border-color:#8f5fff8a;background:linear-gradient(135deg,#9046ff,#e04f9a);color:#fff}.student-export-progress__bar span.is-complete{border-color:#5ec59066;background:#d8f7e5f0;color:#14714d}.student-export-progress__line{height:6px;border-radius:999px;background:#d6c8f1cc}.student-export-progress__line.is-complete{background:linear-gradient(90deg,#9046ff,#e04f9a)}.student-export-progress__steps{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.student-export-step{display:grid;gap:8px;padding:18px 20px;border-radius:22px;border:2px solid rgba(192,161,255,.2);background:#ffffffd1}.student-export-step.is-active{border-color:#8f5fff6b;box-shadow:0 18px 30px #bd9bff29}.student-export-step.is-complete{border-color:#5ec59057;background:#f3fff8eb}.student-export-step strong,.student-export-progress__status strong{font-size:1rem}.student-export-step p,.student-export-progress__status p,.student-export-error{margin:0;color:#586373;line-height:1.6}.student-export-progress__status{padding:18px 20px;border-radius:22px;border:2px solid rgba(192,161,255,.24);background:#ffffffd6}.student-export-error{color:#9a2f51;font-weight:700}.student-info-list,.student-collaborators-stack{display:grid;gap:14px}.student-info-row,.student-collaborator-row{display:flex;justify-content:space-between;gap:18px;align-items:center;padding:16px 18px;border-radius:20px;border:1px solid rgba(192,161,255,.28);background:#ffffffdb}.student-info-row span{color:#71668e;font-size:.92rem}.student-info-row strong,.student-collaborator-row strong{color:#221d36;text-align:right}.student-collaborator-list,.student-presence-list{display:grid;gap:12px}.student-collaborator-row.is-blocked{border-color:#e96b9147;background:#fff6f9f0}.student-status-pill,.student-presence-pill{display:inline-flex;align-items:center;min-height:34px;padding:0 12px;border-radius:999px;border:1px solid rgba(197,171,255,.42);background:#ffffffd1;color:#5d4d86}.student-dialog-subsection{display:grid;gap:10px;padding-top:10px}.student-home-notice{margin-top:22px;padding:16px 18px;border-radius:18px;border:2px solid rgba(196,174,233,.34);background:#ffffffc7;box-shadow:0 18px 34px #bd9bff1f}.student-home-notice--error{color:#9a2f51;border-color:#dd4a7d4d}.student-home-notice--warning{color:#75473a;border-color:#ff9e6d52}.student-home-stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:28px;margin-top:40px}.student-stat-card{position:relative;display:flex;justify-content:space-between;gap:16px;overflow:hidden;min-height:188px;padding:28px;border-radius:26px;border:0;text-decoration:none;color:#fff;font:inherit;text-align:left;box-shadow:0 26px 44px #62579029;transition:transform .16s ease,box-shadow .16s ease}.student-stat-card:hover{transform:translateY(-4px);box-shadow:0 34px 56px #62579038}.student-stat-card--blue{background:linear-gradient(135deg,#5b9dff,#2b57f3)}.student-stat-card--purple{background:linear-gradient(135deg,#c275ff,#8f35ff)}.student-stat-card--sunset{background:linear-gradient(135deg,#ff9547,#ea5a87)}.student-stat-card__copy{position:relative;z-index:1;display:grid;align-content:start;gap:10px}.student-stat-card__copy span{font-size:1rem;font-weight:800;color:#ffffffd1}.student-stat-card__copy strong{font-size:clamp(2.6rem,5.2vw,3.8rem);line-height:.92;letter-spacing:-.06em}.student-stat-card__copy p{margin:0;font-size:1rem;font-weight:700;color:#ffffffd6}.student-stat-card__icon{position:relative;z-index:1;font-size:3rem;opacity:.48}.student-stat-card:after{content:"";position:absolute;inset:auto -12% -18% auto;width:146px;height:146px;border-radius:999px;background:#ffffff1f}.student-view-tabs{display:flex;gap:8px;margin-top:32px;padding:6px;border-radius:999px;background:#ffffffc7;border:1px solid rgba(190,160,255,.32);width:fit-content}.student-view-tab{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;background:transparent;border-radius:999px;padding:8px 18px;font-size:14px;font-weight:500;color:#4a4a44;cursor:pointer;transition:background .15s,color .15s}.student-view-tab:hover{background:#bea0ff1f}.student-view-tab.is-active{background:#172230;color:#fff;box-shadow:0 2px 8px #1722302e}.student-search-panel{margin-top:46px;padding:34px;border-radius:28px;border:2px solid rgba(190,160,255,.42);background:#ffffffd6;box-shadow:0 26px 44px #bd9bff29}.student-search-bar{display:flex;align-items:center;gap:16px;min-height:82px;padding:0 22px;border-radius:22px;border:2px solid rgba(197,171,255,.52);background:#fff}.student-search-bar__icon{font-size:1.8rem}.student-search-bar input{width:100%;border:0;background:transparent;font-size:1.15rem;color:#3b334b}.student-search-bar input:focus{outline:none}.student-entry-section{margin-top:52px}.student-home-footer{display:flex;flex-wrap:wrap;justify-content:space-between;gap:12px 20px;margin-top:44px;padding:0 6px;color:#6a6d7f;font-size:.9rem}.entry-editor-shell>.student-home-footer{width:min(1640px,calc(100vw - 36px));margin:0 auto 28px;padding:0}.student-home-footer__links{display:flex;flex-wrap:wrap;gap:14px}.student-home-footer a,.student-help-card a{color:#7d45ff;text-decoration:none;font-weight:700}.student-home-footer a:hover,.student-help-card a:hover{text-decoration:underline}.footer-link-button,.student-help-card__link{padding:0;border:0;background:transparent;color:#7d45ff;font:inherit;font-weight:700;cursor:pointer;text-align:left}.footer-link-button:hover,.student-help-card__link:hover{text-decoration:underline}.legal-shell{min-height:100vh;background:radial-gradient(circle at top left,rgba(166,93,255,.18),transparent 26%),radial-gradient(circle at top right,rgba(255,133,59,.16),transparent 24%),linear-gradient(180deg,#fdf8ff,#fff6f1)}.legal-main{width:min(1240px,calc(100vw - 32px));margin:0 auto;padding:32px 0 72px}.legal-hero{display:flex;justify-content:space-between;gap:28px;align-items:flex-start;padding:22px 0 26px;border-bottom:4px solid rgba(181,132,255,.45)}.legal-hero__copy{display:grid;gap:16px}.legal-badges{display:flex;flex-wrap:wrap;gap:12px}.legal-badge{display:inline-flex;align-items:center;min-height:36px;padding:0 14px;border-radius:999px;border:1px solid rgba(162,116,255,.24);background:#ffffffc7;box-shadow:0 10px 22px #bd9bff1f;color:#5d4d86;font-size:.9rem;font-weight:800}.legal-hero h1{margin:0;font-size:clamp(2.4rem,4.8vw,4.6rem);line-height:.95;letter-spacing:-.05em;font-weight:900;background:linear-gradient(90deg,#843dff,#df449b 48%,#ff7f33);-webkit-background-clip:text;background-clip:text;color:transparent}.legal-hero p,.legal-card p{margin:0;color:#4d5968;line-height:1.6}.legal-back{display:inline-flex;align-items:center;justify-content:center;min-height:58px;padding:0 24px;border-radius:18px;border:2px solid rgba(184,136,255,.52);background:#ffffffd1;box-shadow:0 10px 24px #ba96ff2e;color:#29233c;font:inherit;font-size:1rem;font-weight:800;cursor:pointer}.legal-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:26px;margin-top:34px}.legal-card{display:grid;align-content:start;gap:22px;min-height:280px;padding:26px 28px;border-radius:28px;border:2px solid rgba(192,161,255,.42);background:#ffffffe6;box-shadow:0 28px 46px #bf98ff29}.legal-card h2{margin:0;font-size:clamp(1.9rem,3.4vw,2.9rem);line-height:.98;letter-spacing:-.04em;font-weight:900;color:#1f2638}.student-entry-section__heading{display:flex;justify-content:space-between;gap:18px;align-items:flex-end;margin-bottom:26px}.student-entry-section__heading h2{margin:0 0 8px;font-size:clamp(2rem,4vw,3.3rem);line-height:.94;font-weight:900;letter-spacing:-.05em;background:linear-gradient(90deg,#7c40ff,#e34f97);-webkit-background-clip:text;background-clip:text;color:transparent}.student-entry-section__heading p,.student-entry-card__date{margin:0;color:#5f6877;font-size:1rem}.student-entry-section__meta{justify-content:flex-end;color:#6a6480;font-size:.9rem;font-weight:700}.student-entry-section__team-code-toggle,.student-entry-section__meta span{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;background:#ffffffc2;border:1px solid rgba(197,171,255,.42)}.student-entry-section__team-code-toggle{color:#2f2847;font:inherit;font-weight:800;cursor:pointer;transition:transform .16s ease,background .16s ease,color .16s ease,border-color .16s ease}.student-entry-section__team-code-toggle:hover{transform:translateY(-1px)}.student-entry-section__team-code-toggle.is-active{border-color:#1b2538c2;background:#1b2538;color:#fff}.student-team-code-panel{display:grid;gap:22px;margin-bottom:28px;padding:24px;border-radius:32px;border:2px solid rgba(187,160,255,.34);background:#fffbf6eb;box-shadow:0 28px 56px #b19bff29}.student-team-code-panel__head,.student-team-code-card__head,.student-team-code-card__title,.student-team-code-card__latest,.student-team-code-card__footer,.student-entry-code-panel__head,.student-entry-code-row,.student-entry-code-row__heading,.student-entry-code-row__actions{display:flex;align-items:flex-start;justify-content:space-between;gap:16px}.student-team-code-panel__head h3,.student-entry-code-panel__head h2{margin:6px 0 0;font-size:clamp(1.4rem,2.2vw,1.9rem);line-height:1.02;letter-spacing:-.04em}.student-team-code-panel__copy{margin:6px 0 0;color:#5c6774;font-size:.96rem;line-height:1.5;font-weight:500}.student-team-code-panel__close,.student-entry-code-panel__close,.student-team-code-card__action,.student-entry-code-row__link{display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:0 16px;border-radius:16px;border:1px solid rgba(176,167,204,.34);background:#ffffffe6;color:#243147;font:inherit;font-weight:800;cursor:pointer;transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease}.student-team-code-panel__close:hover,.student-entry-code-panel__close:hover,.student-team-code-card__action:hover,.student-entry-code-row__link:hover{transform:translateY(-1px);box-shadow:0 14px 28px #b397ff24}.student-team-code-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}.student-team-code-card{position:relative;display:grid;gap:18px;min-height:100%;padding:22px;border-radius:28px;border:2px solid rgba(201,184,229,.46);background:#ffffffe6;box-shadow:0 24px 40px #291f4a14}.student-team-code-card__title{justify-content:flex-start}.student-team-code-card__icon{width:48px;height:48px;display:inline-grid;place-items:center;border-radius:18px;background:#125d7914;font-size:1.2rem}.student-team-code-card__icon--autonomous{background:#4da35c1a}.student-team-code-card__icon--testing{background:#d97b2d1a}.student-team-code-card__title-row{display:flex;align-items:center;gap:10px}.student-team-code-card__title strong{font-size:1.1rem}.student-team-code-card__title p,.student-team-code-card__latest p,.student-team-code-history-popover__item small,.student-entry-code-panel__head p,.student-entry-code-row p{margin:0;color:#5c6774;line-height:1.5}.student-team-code-card__help-wrap{position:relative;display:inline-grid}.student-team-code-card__help{width:26px;height:26px;display:inline-grid;place-items:center;border-radius:999px;border:1px solid rgba(176,167,204,.34);background:#ffffffe6;color:#667288;font:inherit;font-size:.82rem;font-weight:900;cursor:pointer}.student-team-code-card__tooltip{position:absolute;left:50%;top:calc(100% + 10px);z-index:12;width:220px;padding:10px 12px;border-radius:14px;background:#1d2431;color:#fff;font-size:.82rem;line-height:1.45;box-shadow:0 16px 32px #0f141c3d;opacity:0;pointer-events:none;transform:translate(-50%) translateY(-4px);transition:opacity .14s ease,transform .14s ease}.student-team-code-card__tooltip:before{content:"";position:absolute;left:50%;top:-6px;width:12px;height:12px;background:#1d2431;transform:translate(-50%) rotate(45deg)}.student-team-code-card__help-wrap:hover .student-team-code-card__tooltip,.student-team-code-card__help-wrap:focus-within .student-team-code-card__tooltip{opacity:1;transform:translate(-50%) translateY(0)}.student-team-code-card__latest{align-items:center}.student-team-code-card__label{display:block;margin-bottom:8px;color:#667288;font-size:.85rem;font-weight:800}.student-team-code-card__latest strong{display:block;margin-bottom:6px;font-size:1.02rem;line-height:1.18}.student-team-code-card__empty{display:grid;place-items:center;min-height:122px;padding:20px;border-radius:24px;border:2px dashed rgba(201,184,229,.56);color:#5e6778;font-size:1rem;font-weight:700}.student-team-code-card__footer{position:relative;margin-top:auto}.student-team-code-card__history-toggle{width:100%;display:flex;align-items:center;justify-content:space-between;gap:14px;min-height:58px;padding:0 18px;border-radius:18px;border:1px solid rgba(201,184,229,.48);background:#f8f4ffcc;color:#125d79;font:inherit;font-weight:800;cursor:pointer}.student-team-code-card__history-toggle span:last-child{color:#5e6778}.student-team-code-card__history-toggle.is-active{background:#1d2431;color:#fff}.student-team-code-card__history-toggle.is-active span:last-child{color:#ffffffb8}.student-team-code-history-popover{position:absolute;left:0;bottom:calc(100% + 12px);z-index:10;width:min(420px,calc(100vw - 56px));padding:18px;border-radius:28px;background:#1d2431;color:#fff;box-shadow:0 28px 56px #0f141c47}.student-team-code-history-popover:after{content:"";position:absolute;left:32px;bottom:-12px;width:24px;height:24px;background:#1d2431;transform:rotate(45deg)}.student-team-code-history-popover__title{margin-bottom:14px;color:#69c3ff;font-size:.98rem;font-weight:900}.student-team-code-history-popover__list{display:grid;gap:12px;max-height:320px;overflow-y:auto}.student-team-code-history-popover__item{display:grid;gap:6px;width:100%;padding:16px 18px;border:0;border-radius:24px;background:#f4ecdf;color:#273246;text-align:left;font:inherit;font-weight:800;cursor:pointer}.student-team-code-history-popover__item span{line-height:1.35}.student-entry-grid{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(360px,31vw);gap:28px;overflow-x:auto;overflow-y:hidden;padding-bottom:12px;scroll-snap-type:x proximity;overscroll-behavior-x:contain}.student-entry-grid::-webkit-scrollbar{height:12px}.student-entry-grid::-webkit-scrollbar-thumb{border-radius:999px;background:#9046ff38}.student-entry-grid::-webkit-scrollbar-track{background:#ffffff85;border-radius:999px}.student-entry-card{overflow:hidden;min-width:0;border-radius:26px;border:3px solid rgba(187,160,255,.4);background:#ffffffe0;box-shadow:0 24px 44px #bba0ff29;scroll-snap-align:start;transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease}.student-entry-card.is-targeted{border-color:#115d7a9e;box-shadow:0 0 0 4px #115d7a1f,0 32px 54px #568bb433}.student-entry-card:hover{transform:translateY(-6px);border-color:#8f5fff8f;box-shadow:0 32px 54px #ad70f438}.student-entry-card__header{display:grid;gap:12px;padding:24px 24px 20px;background:linear-gradient(135deg,#f5e8fff0,#ffe7f3fa);border-bottom:2px solid rgba(187,160,255,.26)}.student-entry-card__badge-row{width:100%;justify-content:space-between;align-items:center}.student-entry-card__badge-left,.student-entry-card__actions{display:flex;align-items:center;gap:10px}.student-entry-card__badge-left{flex-wrap:wrap}.student-entry-card__actions{justify-content:flex-end}.student-entry-card__code-pill{display:inline-flex;align-items:center;gap:6px;min-height:34px;padding:0 12px;border-radius:999px;border:1px solid rgba(197,171,255,.42);background:#ffffffdb;color:#235f7c;font:inherit;font-size:.84rem;font-weight:900;cursor:pointer}.student-entry-card__code-pill.is-active{background:#245f7c1a;border-color:#115d7a61}.student-entry-card__emoji{font-size:1.5rem}.student-entry-card__badge{display:inline-flex;align-items:center;min-height:32px;padding:0 12px;border-radius:999px;background:linear-gradient(90deg,#9046ff,#df4f9b);color:#fff;font-size:.82rem;font-weight:800}.student-entry-card__action{width:34px;height:34px;display:inline-flex;align-items:center;justify-content:center;border-radius:999px;border:1px solid rgba(162,116,255,.24);background:#ffffffd1;color:#5d4d86;font:inherit;font-size:.95rem;cursor:pointer;box-shadow:0 10px 22px #bd9bff1f}.student-entry-card__action:hover{transform:translateY(-1px)}.student-entry-card h3{margin:0;font-size:1.55rem;line-height:1.05;letter-spacing:-.04em}.student-entry-card__preview{position:relative;display:grid;align-content:space-between;gap:18px;min-height:260px;padding:26px 24px;overflow:hidden;width:100%;border:0;text-align:left;font:inherit;cursor:pointer;text-decoration:none;background:linear-gradient(145deg,#ebf2ff,#efe6ff 52%,#ffe7f1)}.student-entry-card__preview-backdrop{position:absolute;inset:auto -18% -26% auto;width:180px;height:180px;border-radius:999px;background:#ffffff47;filter:blur(6px)}.student-entry-card__preview p,.student-empty-state p{position:relative;z-index:1;margin:0;color:#4d5666;line-height:1.65}.student-entry-card__preview span{position:relative;z-index:1;color:#7d45ff;font-weight:800}.student-entry-card__code-section{display:grid;gap:16px;padding:22px 24px 24px;border-top:2px solid rgba(187,160,255,.18);background:#fffffffa}.student-entry-card__code-heading{display:flex;justify-content:space-between;gap:12px;align-items:baseline}.student-entry-card__code-heading strong{font-size:1.05rem}.student-entry-card__code-heading span{color:#8c4c48;font-size:.88rem;line-height:1.4}.student-entry-card__code-list{display:grid;gap:14px}.student-entry-card__code-row{display:block}.student-entry-card__code-row.is-deleted{opacity:.78}.student-entry-card__code-meta{display:grid;gap:10px}.student-entry-card__code-lane-row,.student-entry-code-row__lane{display:flex;align-items:center}.student-entry-card__code-title{display:flex;align-items:flex-start;gap:12px}.student-entry-card__code-title strong{font-size:.98rem;line-height:1.3;color:#243147}.student-entry-card__code-info-row,.student-entry-code-row__detail{display:flex;justify-content:space-between;align-items:flex-start;gap:18px}.student-entry-card__code-meta p{margin:0;color:#5c6774;line-height:1.5;flex:1 1 auto;min-width:0}.student-entry-card__code-label{display:inline-flex;align-items:center;min-width:56px;color:#7a8391;font-size:.84rem;font-weight:800}.student-entry-card__code-actions{display:flex;align-items:center;gap:14px;flex-wrap:wrap;justify-content:flex-start}.student-entry-card__code-link{border:0;background:transparent;color:#243147;font:inherit;font-weight:800;text-decoration:underline;cursor:pointer}.student-entry-card__code-link--danger{color:#a34747}.student-entry-card__canvas-image{position:relative;z-index:1;display:block;width:100%;border-radius:18px;border:1px solid rgba(176,167,204,.22);background:#fff}.student-entry-card__canvas-loading,.student-entry-card__canvas-fallback{position:relative;z-index:1;display:grid;justify-items:center;gap:12px;min-height:180px;padding:22px;border-radius:20px;border:1px solid rgba(176,167,204,.18);background:#ffffff85}.student-entry-card__canvas-loading p,.student-entry-card__canvas-fallback p{text-align:center}.student-empty-state{display:grid;justify-items:center;gap:16px;padding:54px 24px;border-radius:30px;border:3px dashed rgba(187,160,255,.46);background:#ffffffc7;text-align:center;box-shadow:0 24px 40px #bd9bff24}.student-empty-state__icon{font-size:4.5rem}.student-empty-state h3{margin:0;font-size:clamp(2rem,4vw,2.8rem);line-height:1;letter-spacing:-.05em}.student-entry-detail{display:grid;gap:24px}.student-entry-detail__meta{display:flex;flex-wrap:wrap;gap:10px}.student-entry-detail__meta span{display:inline-flex;align-items:center;min-height:36px;padding:0 14px;border-radius:999px;border:1px solid rgba(197,171,255,.36);background:#ffffffd6;color:#5d5d78;font-size:.92rem;font-weight:800}.student-entry-detail__preview-shell,.student-entry-detail__notes,.student-entry-detail__text-card{border-radius:28px;border:2px solid rgba(192,161,255,.42);background:#ffffffe6;box-shadow:0 28px 46px #bf98ff29}.student-entry-detail__preview-shell,.student-entry-detail__text-card{padding:24px}.student-entry-detail__preview-image{display:block;width:100%;border-radius:22px;border:1px solid rgba(176,167,204,.24);background:#fff}.student-entry-detail__empty-preview,.student-entry-detail__text-card p{margin:0;color:#4f596a;line-height:1.7}.student-entry-detail__notes{padding:24px 28px}.student-entry-detail__notes p{margin:12px 0 0;color:#4f596a;line-height:1.75;white-space:pre-wrap}.student-entry-code-panel{display:grid;gap:18px;padding:24px 28px;border-radius:28px;border:2px solid rgba(192,161,255,.42);background:#ffffffeb;box-shadow:0 28px 46px #bf98ff29}.student-entry-code-panel__list{display:grid;gap:14px}.student-entry-code-row{padding:18px 20px;border-radius:22px;border:1px solid rgba(197,171,255,.34);background:linear-gradient(135deg,#f7f0ffb8,#fffffff0)}.student-entry-code-row.is-deleted{background:#f6f2f7e6}.student-entry-code-row__meta{display:grid;gap:10px}.student-entry-code-row__heading{justify-content:flex-start;align-items:flex-start}.student-entry-code-row__heading strong{font-size:1.02rem;line-height:1.3;color:#243147}.student-entry-code-badge{display:inline-flex;align-items:center;min-height:34px;padding:0 12px;border-radius:999px;background:#115d7a1a;color:#115d7a;font-size:.88rem;font-weight:900}.student-entry-code-badge--autonomous{background:#2d7a4f1a;color:#2d7a4f}.student-entry-code-badge--testing{background:#d97b2d1f;color:#b7651f}.student-entry-code-row__actions{align-items:center;flex:0 0 auto;justify-content:flex-end}.student-entry-code-row__link--danger{color:#a34747}.student-entry-code-row__deleted{display:inline-flex;align-items:center;min-height:34px;padding:0 12px;border-radius:999px;background:#24314714;color:#5a6678;font-size:.88rem;font-weight:900}.entry-editor-shell{min-height:100vh;background:radial-gradient(circle at top left,rgba(156,102,255,.16),transparent 26%),radial-gradient(circle at top right,rgba(255,145,61,.14),transparent 24%),linear-gradient(180deg,#fefaff,#fff7f1)}.entry-editor-header{position:sticky;top:0;z-index:20;display:flex;justify-content:space-between;gap:24px;align-items:center;padding:16px 32px;border-bottom:4px solid rgba(191,152,255,.42);background:#ffffffd6;-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);box-shadow:0 16px 32px #bf98ff24}.entry-editor-header__left,.entry-editor-brand,.entry-editor-header__actions,.entry-editor-utility-actions,.entry-workspace__header{display:flex;flex-wrap:wrap;gap:14px;align-items:center}.entry-editor-back,.entry-editor-action{display:inline-flex;align-items:center;justify-content:center;min-height:48px;padding:0 18px;border-radius:16px;border:2px solid transparent;background:transparent;font:inherit;font-weight:800;cursor:pointer;transition:transform .15s ease,box-shadow .15s ease,border-color .15s ease}.entry-editor-back:hover,.entry-editor-action:hover{transform:translateY(-1px)}.entry-editor-back{color:#2e2546}.entry-editor-brand__icon{font-size:1.8rem}.entry-editor-brand h1,.entry-preview-panel h3{margin:0}.entry-editor-brand h1{font-size:2rem;line-height:1;font-weight:900;letter-spacing:-.05em;background:linear-gradient(90deg,#863fff,#e34d9b);-webkit-background-clip:text;background-clip:text;color:transparent}.entry-editor-brand p,.entry-template-panel__intro p,.entry-editor-adventure span,.entry-workspace__header p,.entry-preview-panel p{margin:0;color:#596476}.entry-editor-action--ghost{border-color:#bd98ff80;background:#ffffffdb;color:#30274b}.entry-editor-action--ghost.is-active{border-color:#1b2538c2;background:#1b2538;color:#fff}.entry-editor-action--primary{background:linear-gradient(90deg,#9a48ff,#ee4d99);color:#fff;box-shadow:0 16px 28px #da5aaa47}.entry-editor-action:disabled{cursor:wait;opacity:.72}.entry-editor-main{width:min(1640px,calc(100vw - 36px));margin:0 auto;padding:30px 0 28px}.entry-template-panel,.entry-editor-brief,.entry-workspace,.entry-preview-panel{border-radius:28px;border:2px solid rgba(192,161,255,.42);background:#ffffffe0;box-shadow:0 28px 46px #bf98ff29}.entry-template-panel{padding:40px 36px 30px}.entry-template-panel__intro{display:grid;justify-items:center;gap:10px;text-align:center}.entry-template-panel__icon{font-size:3.3rem}.entry-template-panel__intro h2{margin:0;font-size:clamp(1.76rem,3.2vw,2.72rem);line-height:.94;font-weight:900;letter-spacing:-.06em;background:linear-gradient(90deg,#8e43ff,#de4d9f);-webkit-background-clip:text;background-clip:text;color:transparent}.entry-template-orbit{--orbit-radius: 248px;position:relative;min-height:624px;margin-top:28px}.entry-template-card{display:grid;justify-items:center;gap:8px;min-height:136px;padding:20px 16px;border:0;border-radius:22px;color:#fff;font:inherit;text-align:center;cursor:pointer;box-shadow:0 18px 34px #5a4a842e;transition:transform .16s ease,box-shadow .16s ease,outline-color .16s ease}.entry-template-card strong{font-size:1.05rem;line-height:1.1}.entry-template-card span:last-child{color:#ffffffdb;font-size:.94rem;font-weight:700}.entry-template-card__icon{font-size:2rem}.entry-template-card__step{display:inline-grid;place-items:center;width:34px;height:34px;border-radius:999px;background:#ffffff38;border:2px solid rgba(255,255,255,.35);font-size:.92rem;font-weight:900}.entry-template-card:hover,.entry-template-card:focus-visible{transform:translateY(-3px);box-shadow:0 24px 40px #5a4a843d}.entry-template-card--pink{background:linear-gradient(135deg,#bf70ff,#ee58a5)}.entry-template-card--blue{background:linear-gradient(135deg,#54adff,#11c2ea)}.entry-template-card--sunset{background:linear-gradient(135deg,#ff8b31,#ff6468)}.entry-template-card--green{background:linear-gradient(135deg,#07d77a,#10ccb8)}.entry-template-card--gold{background:linear-gradient(135deg,#ffc412,#ff9710)}.entry-template-card--violet{background:linear-gradient(135deg,#7b7ff8,#ac6fff)}.entry-template-card--orbit{width:142px;min-height:142px;border-radius:999px;padding:14px;gap:4px}.entry-template-card--orbit strong{font-size:.92rem}.entry-template-card--orbit span:last-child{font-size:.8rem;max-width:112px}.entry-template-card--blank{min-width:220px;min-height:152px;padding-inline:22px}.entry-template-orbit__ring{position:absolute;inset:50% auto auto 50%;width:528px;height:528px;border-radius:50%;transform:translate(-50%,-50%);border:14px solid rgba(94,221,92,.78);box-shadow:0 0 0 14px #ffffff80,inset 0 0 36px #60d26724}.entry-template-orbit__center{position:absolute;inset:50% auto auto 50%;width:220px;min-height:188px;padding:20px 18px;border:0;border-radius:28px;transform:translate(-50%,-50%);background:linear-gradient(135deg,#bf70ff,#ee58a5);box-shadow:0 20px 36px #ab7aff33;text-align:center;color:#fff;cursor:pointer;display:grid;justify-items:center;align-content:center;gap:8px;transition:transform .16s ease,box-shadow .16s ease}.entry-template-orbit__center h3,.entry-template-panel__blank h3{margin:8px 0 0;color:inherit;font-size:1.35rem;line-height:1.08}.entry-template-orbit__center p,.entry-template-panel__blank p{margin:12px 0 0}.entry-template-orbit__center p{color:#ffffffe0;font-size:.92rem;font-weight:700}.entry-template-orbit__center:hover,.entry-template-orbit__center:focus-visible{transform:translate(-50%,-50%) translateY(-3px);box-shadow:0 24px 40px #ab7aff47}.entry-template-orbit__center .entry-editor-kicker{color:#ffffffc7}.entry-template-orbit__item{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%) rotate(var(--orbit-angle)) translate(var(--orbit-radius)) rotate(calc(var(--orbit-angle) * -1))}.entry-template-panel__blank{display:flex;align-items:center;justify-content:space-between;gap:24px;margin-top:20px;padding:24px 28px;border-radius:24px;border:2px solid rgba(192,161,255,.28);background:linear-gradient(135deg,#fffffff2,#f8f0ffd1)}.entry-template-panel__blank--solo{margin-top:36px}.entry-editor-flow{display:grid;gap:24px}.entry-editor-brief,.entry-workspace,.entry-preview-panel{padding:28px}.entry-editor-kicker{color:#8c43ff;font-size:.82rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.entry-editor-brief__head{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:18px;align-items:start}.entry-editor-adventure{display:grid;gap:14px;font-weight:800;font-size:clamp(1.4rem,3vw,2rem);color:#1f2636}.entry-editor-adventure input{width:100%;border:2px solid rgba(197,171,255,.4);border-radius:22px;background:#fff;min-height:72px;padding:0 18px;color:#2f2844;font:inherit;font-size:1.1rem}.entry-editor-adventure input:focus,.entry-workspace__page textarea:focus{outline:none;border-color:#905bffa3;box-shadow:0 0 0 4px #ab7aff1f}.entry-editor-adventure__limit{font-size:.62rem;font-weight:700;color:#4f586cc7;letter-spacing:.01em}.entry-editor-guidance__chips{display:flex;flex-wrap:wrap;gap:10px}.entry-editor-guidance__chip{display:inline-flex;align-items:center;min-height:42px;padding:10px 14px;border-radius:16px;background:#fffffff5;border:1px solid rgba(185,150,255,.36);color:#394153;font-size:.95rem;font-weight:700}.entry-editor-guidance__chip--tool{background:#eaf6fff5;border-color:#68b4ff47}.entry-editor-pill-button,.entry-editor-tip,.entry-workspace__badge{display:inline-flex;align-items:center;min-height:46px;padding:0 16px;border-radius:18px;border:2px solid rgba(192,161,255,.42);background:#ffffffd6;color:#4b5570;font-size:1rem;font-weight:800}.entry-editor-pill-button{cursor:pointer;font:inherit;color:#362b57}.entry-workspace{display:grid;gap:20px}.entry-workspace__header{justify-content:space-between;gap:18px}.entry-workspace__title{margin:0 0 8px;font-size:clamp(1.9rem,4vw,2.6rem);line-height:1;font-weight:900;letter-spacing:-.05em;background:linear-gradient(90deg,#8a44ff,#de4d9a);-webkit-background-clip:text;background-clip:text;color:transparent}.entry-workspace__badge{color:#8a44ff}.entry-workspace__badge-wrap{position:relative}.entry-workspace__badge--button{cursor:pointer;font:inherit}.entry-workspace__badge--button.is-active{background:#faf3fff5;box-shadow:0 12px 24px #ab7aff1f}.entry-template-popout{position:absolute;top:calc(100% + 12px);right:0;z-index:30;display:grid;gap:14px;width:min(440px,calc(100vw - 72px));padding:20px;border-radius:24px;border:2px solid rgba(192,161,255,.28);background:linear-gradient(135deg,#f8f3fff5,#fffffffa);box-shadow:0 28px 46px #9c71ff2e}.entry-template-popout p{margin:0;color:#4f5768}.entry-template-popout__header{display:flex;align-items:start;justify-content:space-between;gap:12px}.entry-template-popout__title{display:grid;gap:6px}.entry-template-popout__title strong{color:#1f2636;font-size:1.18rem}.entry-template-popout__close{min-width:36px;height:36px;border-radius:12px;border:1px solid rgba(176,167,204,.32);background:#fff;color:#4b5570;font:inherit;cursor:pointer}.entry-workspace__tools{display:grid;grid-template-columns:84px minmax(0,1fr) 96px;gap:16px;align-items:start}.entry-workspace__tool-column{display:grid;align-content:start;gap:12px;padding:18px 12px;border-radius:24px;border:2px solid rgba(192,161,255,.28);background:#fffffff0;justify-items:center}.entry-workspace__tool-button{width:50px;height:50px;border-radius:14px;display:grid;place-items:center;border:1px solid rgba(192,161,255,.22);color:#362b57;background:#fff;font:inherit;cursor:pointer}.entry-workspace__tool-button svg{width:24px;height:24px;flex-shrink:0}.entry-workspace__tool-button.is-active{background:#161027;color:#fff;border-color:#161027}.entry-workspace__canvas-wrap{display:flex;flex-direction:column;gap:14px;min-width:0;overflow-x:auto}.entry-workspace__action-rail{display:grid;gap:12px;align-content:start;position:sticky;top:108px;justify-items:center}.entry-workspace__settings{display:grid;gap:10px;width:min(100%,1240px);min-width:980px;margin:0 auto;padding:12px 16px;border-radius:24px;border:2px solid rgba(192,161,255,.22);background:#fffffff5}.entry-workspace__settings-row,.entry-workspace__actions{display:flex;justify-content:space-between;flex-wrap:nowrap;gap:10px;align-items:center}.entry-workspace__settings-row--toolbar{min-width:0;justify-content:flex-start}.entry-workspace__toolbar-group{display:inline-flex;align-items:center;gap:10px;min-width:0;flex:0 0 auto}.entry-workspace__swatches{display:flex;flex-wrap:nowrap;gap:8px;align-items:center}.entry-workspace__color-dot{min-width:28px;width:28px;height:28px;border-radius:999px;padding:0;border:2px solid rgba(176,167,204,.28);box-shadow:inset 0 1px #fff9;cursor:pointer}.entry-workspace__color-field{display:inline-flex;align-items:center;gap:8px;min-height:36px;padding:0 8px 0 10px;border-radius:12px;border:1px solid rgba(176,167,204,.26);background:#fffffff5;color:#5a5273;font-size:.72rem;font-weight:900;letter-spacing:.06em;text-transform:uppercase}.entry-workspace__color-input{width:34px;height:24px;padding:0;border:none;border-radius:8px;background:transparent;cursor:pointer}.entry-workspace__color-input::-webkit-color-swatch-wrapper{padding:0}.entry-workspace__color-input::-webkit-color-swatch{border:1px solid rgba(23,34,48,.16);border-radius:8px}.entry-workspace__color-dot.is-selected{border-color:#171223;box-shadow:0 0 0 2px #1712231f}.entry-workspace__slider{display:flex;align-items:center;gap:10px;color:#41385f;font-size:.86rem;font-weight:800;flex:0 0 auto}.entry-workspace__slider input[type=range]{width:168px;accent-color:#171223}.entry-workspace__actions button,.entry-workspace__inline-controls select,.entry-richtext-popover__fill-custom input{min-height:34px;border-radius:12px;border:1px solid rgba(176,167,204,.32);background:#fff;color:#2f2844;font:inherit}.entry-workspace__actions button{min-width:42px;padding:0 10px;cursor:pointer}.entry-workspace__actions{margin-left:auto}.entry-workspace__inline-controls{display:flex;flex-wrap:nowrap;gap:10px;align-items:center}.entry-workspace__inline-controls label{display:inline-grid;gap:6px;font-size:.82rem;font-weight:800;color:#5a5273}.entry-workspace__inline-controls select,.entry-richtext-popover__fill-custom input{padding:0 12px}.entry-workspace__swatches--background .entry-workspace__color-dot{border-radius:12px}.entry-workspace__page{position:relative;min-height:680px;width:min(100%,1240px);min-width:980px;margin:0 auto;border-radius:26px;border:2px solid rgba(192,161,255,.22);overflow:hidden;background:#fff;box-shadow:inset 0 1px #fffc}.entry-workspace__canvas-host{min-height:680px}.entry-tool-panel{z-index:40;display:grid;gap:10px;padding:10px;border-radius:18px;border:2px solid rgba(218,199,255,.9);background:#fffffffc;box-shadow:0 18px 34px #6145a529;-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px)}.entry-tool-panel__label,.entry-richtext-popover__fill-header span{color:#6f42dd;font-size:.78rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.entry-tool-panel__swatches{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px}.entry-tool-panel__swatch{width:42px;height:42px;justify-self:center;border-radius:12px;border:2px solid rgba(176,167,204,.24);cursor:pointer;box-shadow:inset 0 1px #fff9}.entry-tool-panel__swatch.is-selected,.entry-tool-panel__shape-button.is-selected,.entry-richtext-popover__button.is-active,.entry-richtext-popover__fill-chip.is-selected,.entry-richtext-popover__fill-swatch.is-selected{border-color:#161027;box-shadow:0 0 0 2px #1610271a}.entry-tool-panel__shape-button.is-selected,.entry-richtext-popover__button.is-active,.entry-richtext-popover__fill-chip.is-selected{background:#8944ff14}.entry-tool-panel__shape-grid{display:grid;gap:10px}.entry-tool-panel--menu{gap:12px}.entry-tool-panel__menu-list{display:grid;gap:8px}.entry-tool-panel__menu-button{display:flex;align-items:center;justify-content:space-between;gap:10px;width:100%;min-height:42px;padding:0 12px;border-radius:14px;border:2px solid rgba(176,167,204,.22);background:#fff;color:#2f2844;font:inherit;font-size:.88rem;font-weight:800;cursor:pointer}.entry-tool-panel__menu-button.is-selected{border-color:#171223;background:#8944ff14}.entry-tool-panel__tag-selected{display:flex;flex-wrap:wrap;gap:8px}.entry-tool-panel__empty{color:#61587d;font-size:.86rem}.entry-tool-panel__search input{width:100%;min-height:42px;border-radius:14px;border:2px solid rgba(176,167,204,.22);background:#fff;color:#2f2844;font:inherit;padding:0 12px}.entry-tool-panel__shape-button{display:flex;align-items:center;gap:12px;width:100%;min-height:46px;padding:0 14px;border-radius:16px;border:2px solid rgba(176,167,204,.24);background:#fff;color:#2f2844;font:inherit;cursor:pointer}.entry-tool-panel__shape-button strong{font-size:.95rem}.entry-tool-panel__shape-icon{display:inline-block;width:18px;height:18px;flex:0 0 auto;color:#6f42dd}.entry-tool-panel__shape-icon--rect{border:2px solid currentColor;border-radius:4px}.entry-tool-panel__shape-icon--circle{border:2px solid currentColor;border-radius:999px}.entry-tool-panel__shape-icon--triangle{background:currentColor;clip-path:polygon(50% 0%,0% 100%,100% 100%)}.entry-tool-panel__shape-icon--line{height:2px;margin-block:auto;background:currentColor}.entry-richtext-bar,.entry-richtext-popover{position:fixed;z-index:45;display:flex;align-items:center;gap:10px;padding:8px;border-radius:999px;border:1px solid rgba(213,213,226,.92);background:#fffffffa;box-shadow:0 14px 30px #20183824;-webkit-backdrop-filter:blur(18px);backdrop-filter:blur(18px)}.entry-richtext-popover{display:grid;gap:10px;min-width:168px;padding:12px;border-radius:18px}.entry-richtext-popover:after{content:"";position:absolute;left:var(--entry-richtext-arrow-left, calc(50% - 9px) );bottom:-8px;width:16px;height:16px;border-right:1px solid rgba(213,213,226,.92);border-bottom:1px solid rgba(213,213,226,.92);background:#fffffffa;transform:rotate(45deg)}.entry-richtext-popover--color{width:238px}.entry-richtext-popover--format{width:246px}.entry-richtext-popover--size{width:88px;padding:0;overflow:hidden}.entry-richtext-popover--list{width:168px;padding:0;overflow:hidden}.entry-richtext-bar__button,.entry-richtext-popover__button,.entry-richtext-popover__fill-chip{border:0;background:transparent;color:#2f2844;font:inherit;cursor:pointer}.entry-richtext-bar__button{display:inline-flex;align-items:center;justify-content:center;min-width:42px;height:30px;padding:0 12px;border-radius:999px;font-size:.94rem;font-weight:800;transition:background-color .14s ease,color .14s ease}.entry-richtext-bar__button.is-active{background:#5ea3ff;color:#fff}.entry-richtext-bar__button--color{min-width:34px;width:34px;padding:0}.entry-richtext-bar__button--size{min-width:44px}.entry-richtext-bar__swatch{display:inline-block;width:28px;height:28px;border-radius:999px;border:2px solid #fff;box-shadow:0 0 0 1px #14141c2e}.entry-richtext-popover__row{display:flex;align-items:center;gap:8px}.entry-richtext-popover__row--compact{justify-content:flex-start}.entry-richtext-popover__button{display:inline-flex;align-items:center;justify-content:center;min-width:42px;width:42px;height:42px;border-radius:12px;background:#f4f5f8;font-size:1rem;font-weight:800;transition:background-color .14s ease,color .14s ease}.entry-richtext-popover__button--compact{min-width:44px}.entry-richtext-popover__button.is-active,.entry-richtext-popover__fill-chip.is-selected{background:#5ea3ff;color:#fff}.entry-richtext-popover__button--bold{font-weight:900}.entry-richtext-popover__button--italic{font-style:italic}.entry-richtext-popover__button--underline{text-decoration:underline}.entry-richtext-icon{position:relative;display:inline-block;width:18px;height:16px}.entry-richtext-icon:before,.entry-richtext-icon:after{content:"";position:absolute;left:0;right:0;height:2px;border-radius:999px;background:currentColor}.entry-richtext-icon--align-left:before{top:3px;width:100%}.entry-richtext-icon--align-left:after{top:9px;width:68%}.entry-richtext-icon--align-center:before{top:3px;width:100%;margin-inline:auto}.entry-richtext-icon--align-center:after{top:9px;width:68%;left:16%}.entry-richtext-icon--align-right:before{top:3px;width:100%}.entry-richtext-icon--align-right:after{top:9px;width:68%;left:auto}.entry-richtext-icon--list:before{top:3px;left:6px;right:0}.entry-richtext-icon--list:after{top:9px;left:6px;right:0}.entry-richtext-icon--list{background:radial-gradient(circle at 2px 4px,currentColor 0 1.5px,transparent 1.7px),radial-gradient(circle at 2px 10px,currentColor 0 1.5px,transparent 1.7px)}.entry-richtext-menu{display:grid;gap:0}.entry-richtext-menu__item{display:flex;align-items:center;gap:10px;width:100%;min-height:36px;padding:0 14px;border:0;background:transparent;color:#2f2844;font:inherit;font-size:.95rem;cursor:pointer;text-align:left}.entry-richtext-menu__item:hover{background:#f4f5f8}.entry-richtext-menu__item.is-active{background:#5ea3ff;color:#fff}.entry-richtext-menu__check{width:12px;font-size:.9rem;text-align:center}.entry-richtext-color{display:grid;gap:10px}.entry-richtext-color__hero{position:relative;display:grid;place-items:center;min-height:114px;border-radius:14px;border:2px solid rgba(213,213,226,.96);overflow:hidden;cursor:pointer}.entry-richtext-color__hero input{position:absolute;top:0;right:0;bottom:0;left:0;opacity:0;cursor:pointer}.entry-richtext-color__hero span{padding:8px 14px;border-radius:999px;background:#0000006b;color:#fff;font-size:.86rem;font-weight:700}.entry-richtext-color__label{color:#4d5464;font-size:.85rem;font-weight:700}.entry-richtext-color__grid{display:grid;grid-template-columns:repeat(8,minmax(0,1fr));gap:8px}.entry-richtext-color__swatch{width:24px;height:24px;border-radius:8px;border:2px solid rgba(213,213,226,.96);cursor:pointer}.entry-richtext-color__swatch.is-active{box-shadow:0 0 0 2px #5ea3ff}.entry-richtext-color__current{display:flex;align-items:center;gap:12px;padding-top:10px;border-top:1px solid rgba(213,213,226,.96);color:#667085;font-size:.88rem;font-weight:700}.entry-richtext-color__current-swatch{width:36px;height:36px;border-radius:12px;border:2px solid rgba(213,213,226,.96)}.entry-richtext-popover__divider{width:100%;height:1px;background:#d5d5e2f5}.entry-richtext-popover__row--fill{justify-content:space-between}.entry-richtext-popover__fill-chip{min-width:68px;height:38px;border-radius:12px;background:#f4f5f8;font-size:.92rem;font-weight:700}.entry-richtext-popover__color-field{display:inline-flex;align-items:center;gap:8px;min-height:38px;padding:0 12px;border-radius:12px;background:#f4f5f8;color:#4d5464;font-size:.8rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase}.entry-editor-metadata,.entry-editor-panel{display:grid;gap:14px;padding:22px 24px;border-radius:28px;border:2px solid rgba(192,161,255,.22);background:#fffffff0;box-shadow:0 18px 40px #825ccb14}.entry-editor-metadata__row{display:grid;grid-template-columns:260px minmax(0,1fr);gap:16px}.entry-editor-field{display:grid;gap:8px}.entry-editor-field span{color:#5a5273;font-size:.82rem;font-weight:800}.entry-editor-field input,.entry-editor-field select,.entry-editor-field textarea{min-height:48px;width:100%;border-radius:18px;border:2px solid rgba(192,161,255,.18);background:#fff;color:#2f2844;font:inherit;padding:0 14px}.entry-editor-field textarea{min-height:112px;padding-block:12px;resize:vertical}.entry-editor-field--tags{min-width:0}.entry-tag-editor{display:flex;flex-wrap:wrap;gap:8px;align-items:center;min-height:52px;padding:10px 12px;border-radius:18px;border:2px solid rgba(192,161,255,.18);background:#fff}.entry-tag-editor input{min-width:160px;flex:1 1 160px;min-height:32px;padding:0;border:none;border-radius:0;background:transparent}.entry-tag-chip,.entry-tag-suggestion{min-height:34px;padding:0 12px;border-radius:999px;border:1px solid rgba(192,161,255,.28);background:#f6f0ffe6;color:#5a5273;font:inherit;font-size:.82rem;font-weight:800;cursor:pointer}.entry-tag-chip{display:inline-flex;align-items:center;gap:6px}.entry-tag-suggestions{display:flex;flex-wrap:wrap;gap:8px}.entry-tag-suggestion.is-active{border-color:#171223;color:#171223;background:#fff4cce6}.entry-editor-action-cards,.entry-ai-result{display:grid;gap:16px}.entry-editor-action-cards{grid-template-columns:repeat(4,minmax(0,1fr))}.entry-ai-result{grid-template-columns:minmax(0,1fr)}.entry-editor-action-cards--embedded{margin-top:6px}.entry-editor-action-cards--rail{grid-template-columns:minmax(0,1fr);gap:12px;justify-items:center}.entry-editor-action-card{width:72px;min-height:72px;display:grid;justify-items:center;align-content:center;gap:4px;padding:8px 6px;border-radius:14px;border:1px solid rgba(192,161,255,.18);color:#fff;font:inherit;cursor:pointer;box-shadow:0 10px 18px #704bb41f}.entry-editor-action-card strong{display:none}.entry-editor-action-card__icon{font-size:1.25rem;line-height:1}.entry-editor-action-card__label{display:block;font-size:.58rem;font-weight:800;line-height:1.15;letter-spacing:.02em;text-align:center}.entry-editor-action-card--photo{background:linear-gradient(135deg,#4d88f8,#2d59e8)}.entry-editor-action-card--code{background:linear-gradient(135deg,#1bc289,#0cb68f)}.entry-editor-action-card--coach{background:linear-gradient(135deg,#8a44ff,#b33cf0)}.entry-editor-action-card--draft{background:linear-gradient(135deg,#ff8b3d,#ef5d87)}.entry-editor-action-card:disabled{cursor:not-allowed;opacity:.58}.entry-editor-action-card.is-active{box-shadow:0 0 0 3px #ffffffd9,0 12px 20px #704bb429}.entry-editor-panel__head,.entry-editor-panel__actions,.entry-code-card__head,.entry-code-card__file{display:flex;align-items:flex-start;justify-content:space-between;gap:14px}.entry-editor-panel__head h3,.entry-ai-result__card h4{margin:0}.entry-editor-panel__head p,.entry-code-card__head p,.entry-editor-panel__empty{margin:4px 0 0;color:#61587d}.entry-code-grid{display:grid;gap:16px;grid-template-columns:repeat(3,minmax(0,1fr))}.entry-code-card,.entry-ai-result__card{display:grid;gap:14px;padding:18px;border-radius:22px;border:2px solid rgba(192,161,255,.18);background:#ffffffeb}.entry-code-card__file span{display:block;margin-top:4px;color:#61587d;font-size:.85rem}.entry-ai-result__card ul{margin:0;padding-left:18px}.entry-ai-result__card p,.entry-ai-result__card li{color:#43395f;line-height:1.5}.entry-overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:70;display:grid;place-items:center;padding:32px;background:#120d2133;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px)}.entry-editor-panel--modal{width:min(100%,1820px);max-height:calc(100vh - 64px);overflow:auto;padding:26px}.entry-editor-panel--rail{padding:18px 20px}.entry-editor-panel--photo-alert{width:min(100%,720px)}.entry-editor-panel--confirm{width:min(100%,560px)}.entry-editor-panel__actions--end{justify-content:flex-end;align-items:center;flex-wrap:wrap}.entry-overlay__close{width:46px;height:46px;border-radius:999px;border:2px solid rgba(176,167,204,.22);background:#fff;color:#2f2844;font:inherit;font-size:1.8rem;line-height:1;cursor:pointer}.entry-editor-panel--code .entry-code-grid{grid-template-columns:repeat(3,minmax(0,1fr))}@media (max-width: 1200px){.entry-editor-action-cards,.entry-ai-result,.entry-code-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.entry-editor-metadata__row{grid-template-columns:1fr}.entry-workspace__tools{grid-template-columns:84px minmax(0,1fr)}.entry-workspace__action-rail{position:static;grid-column:1 / -1}.entry-editor-action-cards--rail{grid-template-columns:repeat(2,minmax(0,1fr));justify-items:stretch}}.nb-table-sep{position:absolute;z-index:12;background:transparent;touch-action:none}.nb-table-sep:before,.nb-table-sep:after{content:"";position:absolute;transition:opacity .12s ease,transform .12s ease,background .12s ease}.nb-table-sep:before{opacity:0;background:#115d7a3d}.nb-table-sep:after{opacity:.72;background:#115d7ae6;border-radius:999px;box-shadow:0 0 0 2px #fffdf6f5}.nb-table-sep.is-active:before,.nb-table-sep.is-active:after{opacity:1}.nb-table-sep--col{cursor:col-resize}.nb-table-sep--col:before{top:2px;bottom:2px;left:50%;width:2px;transform:translate(-50%)}.nb-table-sep--col:after{top:5px;left:50%;width:8px;height:8px;transform:translate(-50%)}.nb-table-sep--row{cursor:row-resize}.nb-table-sep--row:before{left:2px;right:2px;top:50%;height:2px;transform:translateY(-50%)}.nb-table-sep--row:after{left:5px;top:50%;width:8px;height:8px;transform:translateY(-50%)}.entry-workspace-page--blank{background:linear-gradient(180deg,#fff,#fbf8ff)}.entry-workspace-page--identify{background:linear-gradient(180deg,#f2f9ff,#fff)}.entry-workspace-page--brainstorm{background:linear-gradient(180deg,#f5efff,#fff)}.entry-workspace-page--select{background:linear-gradient(180deg,#eef0ff,#fff)}.entry-workspace-page--build{background:linear-gradient(180deg,#eef2ff,#fff)}.entry-workspace-page--test{background:linear-gradient(180deg,#fff8e8,#fff)}.entry-preview-panel{display:grid;gap:14px}.entry-preview-panel h3{font-size:1.9rem;line-height:1;letter-spacing:-.05em}.entry-preview-panel__page{display:grid;gap:12px;min-height:220px;padding:22px;border-radius:22px;background:linear-gradient(145deg,#eef4ff,#f4ebff 54%,#ffeef3)}.entry-preview-panel__page p{margin:0;color:#4f596a;line-height:1.6}.entry-preview-panel__page--image img{width:100%;border-radius:18px;border:1px solid rgba(176,167,204,.24)}.nb-canvas-paper canvas{display:block;width:100%;touch-action:none;-webkit-user-select:none;user-select:none}.nb-canvas-text-wrapper{position:absolute;z-index:10;display:inline-flex;flex-direction:column;pointer-events:auto;box-shadow:0 2px 10px #1722301f}.nb-canvas-text-wrapper--note{filter:drop-shadow(0 8px 12px rgba(94,74,19,.12))}.nb-canvas-text-handle{display:flex;align-items:center;gap:4px;padding:2px 7px;font-size:.7rem;font-weight:700;color:#1722308c;background:#f0eee4f5;border:1.5px dashed rgba(23,34,48,.3);border-bottom:none;border-radius:4px 4px 0 0;cursor:grab;-webkit-user-select:none;user-select:none;white-space:nowrap}.nb-canvas-text-handle--note{background:#f7e889f2;border-color:#7c5e1447;color:#5c4710c7}.nb-canvas-text-delete{margin-left:auto;padding:0 4px;font-size:.68rem;font-weight:700;color:#b42828bf;background:none;border:none;cursor:pointer;pointer-events:auto}.nb-canvas-text-input{font-family:Manrope,sans-serif;font-size:15px;color:#172230;background:#fffdf6eb;border:1.5px dashed rgba(23,34,48,.35);border-top:none;border-radius:0 0 4px 4px;padding:4px 6px;outline:none;resize:both;line-height:1.5;min-width:120px;min-height:28px;width:220px;pointer-events:auto;overflow:auto;white-space:pre-wrap;overflow-wrap:anywhere}.nb-canvas-text-input:empty:before{content:attr(data-placeholder);color:#17223061}.nb-canvas-photo-input{display:none}.nb-canvas-table-wrapper{position:absolute;z-index:110;display:inline-flex;flex-direction:column;align-items:flex-start;pointer-events:auto;-webkit-user-select:none;user-select:none;gap:0}.nb-canvas-table-handle{background:#fffaf0fa;border:1px solid rgba(23,34,48,.12);border-bottom:none;border-radius:10px 10px 0 0;padding:5px 9px;font-size:.7rem;font-weight:700;letter-spacing:.02em;color:#17223094;cursor:grab;display:flex;align-items:center;gap:8px;box-shadow:0 10px 22px #17223014}.nb-canvas-table-input{border-collapse:collapse;background:#fffdf6fa;border:1.5px dashed rgba(23,34,48,.28);font-family:Manrope,sans-serif;font-size:13px;color:#172230;width:max-content;table-layout:fixed;box-shadow:0 18px 36px #17223014}.nb-canvas-table-input td{border:1px solid rgba(23,34,48,.2);padding:4px 6px;min-width:60px;min-height:28px;vertical-align:top;outline:none;box-sizing:border-box;-webkit-user-select:text;user-select:text;white-space:normal;overflow-wrap:anywhere;overflow:hidden;line-height:1.25}.nb-canvas-table-controls{display:flex;flex-wrap:nowrap;gap:6px;padding:8px 10px;margin-top:10px;background:#fffaf0f5;border:1px solid rgba(23,34,48,.12);border-radius:999px;box-shadow:0 14px 26px #17223014}.nb-canvas-table-ctrl{min-width:44px;font-size:.74rem;font-weight:700;padding:6px 10px;border-radius:999px;background:#1722300f;border:1px solid rgba(23,34,48,.1);color:#172230;cursor:pointer}.mode-switch:hover,.primary-button:hover,.primary-link-button:hover,.secondary-button:hover,.secondary-link-button:hover{transform:translateY(-1px)}.primary-button:disabled,.secondary-button:disabled{cursor:wait;opacity:.72}@keyframes spin{to{transform:rotate(360deg)}}@keyframes journey-bounce{0%,to{transform:translateY(0) scale(.92)}50%{transform:translateY(12px) scale(1.08)}}@media (max-width: 960px){.hero-panel,.path-grid,.dashboard-grid,.dashboard-topbar,.dashboard-panel__intro--spread,.dashboard-team-section__head,.dashboard-policy-row,.dashboard-team-detail-grid,.dashboard-team-control-stats,.dashboard-team-footnotes,.dashboard-template-editor__row,.notebook-review-entry__summary,.notebook-review-entry__body--split,.adult-team-review__stats,.form-grid--double,.form-grid--triple,.snapshot-grid{grid-template-columns:minmax(0,1fr)}.dashboard-topbar{align-items:flex-start}.dashboard-team-section__head{display:grid;align-items:start}.dashboard-template-actions,.dashboard-admin-actions,.dashboard-admin-limits__actions{align-items:stretch}.dashboard-team-card__actions{justify-content:flex-start}.notebook-review-entry__author{text-align:left}.student-home-header,.student-home-brand,.student-entry-section__heading,.entry-editor-header,.entry-workspace__header,.entry-workspace__settings-row{flex-direction:column;align-items:flex-start}.entry-editor-brief__head{grid-template-columns:1fr}.student-home-stats,.entry-template-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.entry-template-orbit{--orbit-radius: 248px;min-height:560px}.entry-template-orbit__ring{width:452px;height:452px}.entry-template-card--orbit{width:128px;min-height:128px}.entry-template-orbit__center{width:196px;min-height:170px;padding:18px 16px}.entry-template-panel__blank{flex-direction:column;align-items:flex-start}.entry-template-popout{width:min(420px,calc(100vw - 72px))}.student-entry-grid{grid-auto-columns:minmax(340px,72vw)}.student-team-code-grid{grid-template-columns:minmax(0,1fr)}.student-team-code-card__latest,.student-entry-code-row,.student-entry-card__code-row,.student-entry-card__code-info-row,.student-entry-code-row__detail{flex-direction:column;align-items:stretch}.student-home-actions,.student-entry-section__meta,.entry-editor-utility-actions{justify-content:flex-start}.student-dialog-grid,.student-help-grid,.student-export-progress__steps,.legal-grid,.entry-workspace__tools{grid-template-columns:minmax(0,1fr)}.entry-workspace__tool-column{grid-template-columns:repeat(4,minmax(0,1fr));justify-items:stretch;align-content:stretch;padding:14px}.entry-workspace__tool-button{width:100%}.entry-tool-panel,.entry-richtext-popover{position:static!important;width:auto!important;margin-top:12px}}@media (max-width: 640px){.landing-main,.dashboard-shell{width:min(100vw - 20px,100%);padding-top:18px}.hero-panel,.path-card,.loading-panel,.dashboard-topbar,.dashboard-panel,.team-card{padding:20px}.status-card__grid,.mode-switcher,.dashboard-policy-row,.form-grid--double{grid-template-columns:minmax(0,1fr)}.dashboard-modal-backdrop{padding:12px}.dashboard-modal-card{width:min(100vw - 16px,100%);max-height:calc(100vh - 24px);padding:20px}.notebook-review-toolbar,.notebook-review-calendar__selection{display:grid;align-items:start}.notebook-review-calendar__months{grid-auto-columns:minmax(86vw,1fr)}.adult-team-review__list{grid-auto-columns:minmax(82vw,1fr)}.student-home-main{width:min(100vw - 20px,100%);padding-top:20px}.student-home-header{padding-bottom:20px}.team-form__submit{width:100%;justify-self:stretch}.student-home-brandmark{width:76px;height:76px;border-radius:24px}.student-home-actions,.student-entry-section__meta{width:100%}.student-team-code-panel,.student-entry-code-panel{padding:20px}.student-home-kicker{font-size:.92rem}.student-home-button,.student-home-button--subtle{width:100%}.student-home-footer{flex-direction:column;align-items:flex-start}.legal-main{width:min(100vw - 20px,100%);padding-top:20px}.legal-hero{padding:22px 20px}.legal-back{width:100%}.legal-card{min-height:0;padding:20px}.student-home-stats,.entry-template-grid{grid-template-columns:minmax(0,1fr);gap:20px}.entry-template-orbit{min-height:0;display:grid;grid-template-columns:minmax(0,1fr);gap:18px}.entry-template-orbit__ring{display:none}.entry-template-orbit__center,.entry-template-orbit__item{position:static;inset:auto;width:auto;transform:none}.entry-template-orbit__center{width:auto;min-height:0}.entry-template-orbit__center:hover,.entry-template-orbit__center:focus-visible{transform:none}.entry-workspace__badge-wrap{width:100%}.entry-template-popout{position:static;width:100%;margin-top:12px}.entry-template-card--orbit,.entry-template-card--blank{width:100%;min-height:148px;border-radius:26px}.student-entry-grid{grid-auto-columns:minmax(300px,86vw);gap:20px}.student-search-panel{padding:22px}.student-dialog-backdrop{padding:16px}.student-dialog,.student-dialog--journey{width:min(100vw - 16px,100%)}.student-dialog__header,.student-dialog__content{padding-left:20px;padding-right:20px}.save-journey__status,.save-journey-entry,.save-journey__stats,.save-journey__steps{grid-template-columns:minmax(0,1fr)}.save-journey__steps span{white-space:normal}.save-journey__stats article{min-height:0}.student-info-row,.student-collaborator-row,.student-entry-card__code-heading{display:grid}.student-team-code-panel__head,.student-entry-code-panel__head{flex-direction:column;align-items:stretch}.student-info-row strong,.student-collaborator-row strong{text-align:left}.student-search-bar{min-height:68px;padding:0 16px}.student-stat-card,.student-entry-card__header,.student-entry-card__preview,.entry-template-panel,.entry-editor-brief,.entry-workspace,.entry-preview-panel{padding-left:20px;padding-right:20px}.entry-editor-main{width:min(100vw - 20px,100%);padding-top:20px}.entry-editor-header{padding:14px 16px}.entry-editor-header__actions,.entry-editor-back,.entry-editor-action,.student-team-code-panel__close,.student-entry-code-panel__close,.student-team-code-card__action,.student-entry-code-row__link{width:100%}.student-entry-card__code-actions,.student-entry-code-row__actions{display:grid;width:100%;gap:10px}.entry-editor-pill-button,.entry-editor-tip,.entry-workspace__badge{width:100%;justify-content:center}.entry-workspace__settings{padding:16px}.entry-workspace__slider input[type=range]{width:100%}.entry-workspace__page,.entry-workspace__canvas-host{min-height:420px}}.public-share-card,.public-notebook-entry,.public-notebook-rail__card{display:grid;gap:16px}.public-share-card__controls,.public-share-card__field,.public-notebook-entry__pager{display:flex;flex-wrap:wrap;gap:12px;align-items:center}.public-share-card__field input{flex:1 1 320px}.public-share-card__message{color:var(--accent)}.public-notebook-shell{position:relative;z-index:1;width:min(1440px,calc(100vw - 32px));margin:0 auto;padding:28px 0 64px}.public-notebook-shell:before{content:"";position:fixed;top:0;right:0;bottom:0;left:0;z-index:-1;background:linear-gradient(90deg,rgba(17,93,122,.08) 1px,transparent 1px),linear-gradient(rgba(17,93,122,.07) 1px,transparent 1px),radial-gradient(circle at top left,rgba(251,191,36,.18),transparent 32rem),linear-gradient(135deg,#f8fbff,#fff8ed 54%,#f5fbff);background-size:28px 28px,28px 28px,auto,auto}.public-notebook-header{margin-bottom:20px}.public-notebook-layout{display:grid;grid-template-columns:300px minmax(0,1fr);gap:20px;align-items:start}.public-notebook-layout.is-rail-collapsed{grid-template-columns:minmax(0,1fr)}.public-notebook-layout.is-rail-collapsed .public-notebook-rail{display:none}.public-notebook-rail{position:sticky;top:24px}.public-notebook-rail__list{display:grid;gap:10px;max-height:calc(100vh - 240px);overflow:auto}.public-notebook-rail__item{width:100%;text-align:left;padding:14px 16px;border-radius:8px;border:1px solid var(--line);background:#ffffffdb;color:inherit;display:grid;gap:6px;cursor:pointer}.public-notebook-rail__item.is-active{border-color:#7c3aed80;background:linear-gradient(135deg,#7c3aed24,#0ea5e91f);box-shadow:inset 4px 0 #7c3aedbf}.public-notebook-rail__item strong,.public-notebook-entry__section h4{margin:0}.public-notebook-rail__item span{color:var(--muted);font-size:.88rem}.public-notebook-rail__item p,.public-notebook-entry__section p{margin:0;color:var(--muted);line-height:1.6}.public-notebook-main{min-width:0;display:grid;gap:16px}.public-notebook-entry{padding:28px;border:1px solid rgba(124,58,237,.2);border-radius:8px;background:linear-gradient(90deg,rgba(80,119,160,.08) 1px,transparent 1px),linear-gradient(rgba(80,119,160,.08) 1px,transparent 1px),#fbfdff;background-size:24px 24px;box-shadow:0 18px 42px #1e293b29}.public-notebook-entry--cover{min-height:620px;align-content:center}.public-notebook-cover{display:grid;gap:20px}.public-notebook-page-kicker{width:fit-content;padding:7px 12px;border:1px solid rgba(17,93,122,.24);border-radius:999px;background:#ffffffd1;color:var(--accent);font-weight:800;text-transform:uppercase;letter-spacing:0;font-size:.78rem}.public-notebook-cover h2,.public-notebook-page-title,.public-notebook-entry__heading h2{margin:0;color:var(--ink);font-family:var(--font-display);letter-spacing:0}.public-notebook-cover h2{max-width:860px;font-size:clamp(2.6rem,5vw,5.5rem);line-height:.95}.public-notebook-cover p{margin:0;color:var(--muted);font-size:1.15rem}.public-notebook-cover dl{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin:18px 0 0}.public-notebook-cover dl div{padding:18px;border:1px solid rgba(17,93,122,.18);border-radius:8px;background:#ffffffc7}.public-notebook-cover dt{color:var(--muted);font-size:.82rem;font-weight:800;text-transform:uppercase}.public-notebook-cover dd{margin:8px 0 0;color:var(--ink);font-weight:800}.public-notebook-page-title{font-size:clamp(2rem,3vw,3.2rem)}.public-notebook-index-table{display:grid;border:1px solid rgba(17,93,122,.22);border-radius:8px;overflow:hidden;background:#ffffffdb}.public-notebook-index-table__row{display:grid;grid-template-columns:180px minmax(0,1fr) 88px;gap:0;min-height:48px;border-top:1px solid rgba(17,93,122,.14)}.public-notebook-index-table__row:first-child{border-top:0}.public-notebook-index-table__row span,.public-notebook-index-table__row a{display:flex;align-items:center;padding:12px 14px;border-left:1px solid rgba(17,93,122,.14)}.public-notebook-index-table__row span:first-child{border-left:0}.public-notebook-index-table__head{background:#213047;color:#fff;font-weight:800}.public-notebook-index-table__row a{color:var(--accent);font-weight:800;text-decoration:none}.public-notebook-entry__heading{display:grid;gap:10px}.public-notebook-entry__heading h2{font-size:clamp(2rem,3.5vw,4rem);line-height:1}.public-notebook-entry__subhead{display:flex;justify-content:space-between;gap:14px;align-items:start}.public-notebook-entry__subhead p{margin:0;color:var(--muted);font-size:.95rem;font-weight:700;text-align:right;white-space:nowrap}.public-notebook-entry__canvas{width:100%;max-height:none;object-fit:contain;border-radius:8px;border:1px solid rgba(80,119,160,.24);background:#fff;box-shadow:0 14px 28px #0f172a24}.public-notebook-entry__section{display:grid;gap:8px;padding:16px;border-left:4px solid rgba(124,58,237,.55);background:#ffffffc7;border-radius:8px}.public-notebook-entry__pager{justify-content:center;padding:10px 0 0}.public-notebook-entry__pager span{min-width:96px;text-align:center;color:var(--muted);font-weight:800}@media (max-width: 960px){.public-notebook-layout{grid-template-columns:minmax(0,1fr)}.public-notebook-rail{position:static}.public-notebook-rail__list{max-height:none}.public-notebook-cover dl,.public-notebook-index-table__row{grid-template-columns:minmax(0,1fr)}.public-notebook-index-table__row span,.public-notebook-index-table__row a{border-left:0;border-top:1px solid rgba(17,93,122,.1)}.public-notebook-index-table__row span:first-child{border-top:0}.public-notebook-entry__subhead{display:grid}.public-notebook-entry__subhead p{text-align:left;white-space:normal}}
