.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}@keyframes asc-cardSlideUp{0%{opacity:0;transform:translateY(28px) scale(.97)}to{opacity:1;transform:translateY(0) scale(1)}}@keyframes asc-shimmer{0%{transform:translate(-100%) skew(-15deg)}to{transform:translate(220%) skew(-15deg)}}@keyframes asc-pulseRing{0%{box-shadow:0 26px 44px #ea5a8747,0 0 #ff954780}50%{box-shadow:0 34px 56px #ea5a8761,0 0 0 14px #ff954700}to{box-shadow:0 26px 44px #ea5a8747,0 0 #ff954700}}@keyframes asc-hoverBounce{0%,to{transform:translateY(-4px)}50%{transform:translateY(-8px)}}.asc-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:28px;width:100%;margin-top:40px}.asc-card{position:relative;display:flex;justify-content:space-between;gap:16px;overflow:hidden;min-height:188px;padding:28px;border-radius:26px;color:#fff;opacity:0}.asc-card.is-visible{opacity:1;animation:asc-cardSlideUp var(--asc-enter-dur, .5s) cubic-bezier(.22,.68,0,1.2) both}.asc-card.is-visible:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;width:60%;background:linear-gradient(90deg,transparent 0%,rgba(255,255,255,.18) 50%,transparent 100%);animation:asc-shimmer var(--asc-shimmer-dur, 1.4s) ease both;pointer-events:none}.asc-card__circle{position:absolute;inset:auto -12% -18% auto;width:146px;height:146px;border-radius:999px;background:#ffffff1f;pointer-events:none}.asc-card--blue{background:linear-gradient(135deg,#5b9dff,#2b57f3);box-shadow:0 26px 44px #5b9dff47}.asc-card--purple{background:linear-gradient(135deg,#c275ff,#8f35ff);box-shadow:0 26px 44px #8f35ff47}.asc-card--sunset{background:linear-gradient(135deg,#ff9547,#ea5a87);box-shadow:0 26px 44px #ea5a8747;cursor:pointer}.asc-card--sunset.is-visible.do-pulse{animation:asc-cardSlideUp var(--asc-enter-dur, .5s) cubic-bezier(.22,.68,0,1.2) both,asc-pulseRing 2s .8s ease-in-out infinite}.asc-card--sunset:hover{animation:asc-hoverBounce .6s ease-in-out infinite!important}.asc-card__copy{position:relative;z-index:1;display:grid;align-content:start;gap:10px}.asc-card__copy span{font-size:1rem;font-weight:800;opacity:.82}.asc-card__num{font-size:clamp(2.6rem,5.2vw,3.8rem);line-height:.92;letter-spacing:-.06em;font-weight:900;font-variant-numeric:tabular-nums}.asc-card__copy p{margin:0;font-size:1rem;font-weight:700;opacity:.84}.asc-card__icon{position:relative;z-index:1;font-size:3rem;opacity:.48;align-self:flex-start}.asc-card__badge{margin-top:2px}.flame-streak{display:flex;gap:2px}.flame-streak__pip{font-size:1.1rem;animation:flame-pip-in .4s cubic-bezier(.22,.68,0,1.4) both}.flame-streak__pip:nth-child(2){animation-delay:80ms}.flame-streak__pip:nth-child(3){animation-delay:.16s}@keyframes flame-pip-in{0%{opacity:0;transform:scale(0) translateY(6px)}to{opacity:1;transform:scale(1) translateY(0)}}.flame-streak--level-1 .flame-streak__pip{filter:brightness(.9)}.flame-streak--level-2 .flame-streak__pip{filter:brightness(1.05)}.flame-streak--level-3 .flame-streak__pip{filter:drop-shadow(0 0 4px rgba(255,160,30,.8));animation:flame-pip-in .4s cubic-bezier(.22,.68,0,1.4) both,flame-flicker 1.8s ease-in-out infinite}.flame-streak--level-3 .flame-streak__pip:nth-child(2){animation-delay:80ms,.3s}.flame-streak--level-3 .flame-streak__pip:nth-child(3){animation-delay:.16s,.6s}@keyframes flame-flicker{0%,to{transform:scale(1) translateY(0)}40%{transform:scale(1.15) translateY(-2px)}70%{transform:scale(.95) translateY(1px)}}@media (max-width: 720px){.asc-grid{grid-template-columns:1fr;gap:16px}}@media (prefers-reduced-motion: reduce){.asc-card,.asc-card.is-visible,.asc-card.is-visible:after,.asc-card--sunset.is-visible.do-pulse,.asc-card--sunset:hover{animation:none!important;opacity:1!important}}.confetti-root{position:fixed;top:0;left:0;right:0;height:0;pointer-events:none;z-index:9999;overflow:visible}.confetti-particle{position:absolute;top:-20px;border-radius:2px;animation:confetti-fall linear forwards}.confetti-particle--circle{border-radius:50%}@keyframes confetti-fall{0%{transform:translateY(0) translate(0) rotate(0);opacity:1}75%{opacity:1}to{transform:translateY(100vh) translate(var(--drift, 0px)) rotate(var(--rotate-end, 360deg));opacity:0}}@media (prefers-reduced-motion: reduce){.confetti-particle{animation:none!important;display:none}}.milestone-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;background:#00000080;display:flex;align-items:center;justify-content:center;z-index:8000;animation:milestone-fade-in .3s ease both}@keyframes milestone-fade-in{0%{opacity:0}to{opacity:1}}.milestone-card{position:relative;background:#fff;border-radius:28px;padding:48px 56px;text-align:center;animation:milestone-pop .5s cubic-bezier(.22,.68,0,1.4) both;max-width:420px;width:calc(100vw - 48px);overflow:hidden}@keyframes milestone-pop{0%{opacity:0;transform:scale(.7)}to{opacity:1;transform:scale(1)}}.milestone-backdrop--builder .milestone-card,.milestone-backdrop--veteran .milestone-card,.milestone-backdrop--legend .milestone-card{background:linear-gradient(145deg,#1a1a2e,#16213e);color:#fff}.milestone-card__emoji{font-size:4rem;line-height:1;animation:milestone-emoji-pop .6s .2s cubic-bezier(.22,.68,0,1.4) both}@keyframes milestone-emoji-pop{0%{opacity:0;transform:scale(0) rotate(-20deg)}to{opacity:1;transform:scale(1) rotate(0)}}.milestone-card__num{font-size:clamp(3.5rem,8vw,5rem);font-weight:900;letter-spacing:-.06em;line-height:1;margin-top:12px;background:linear-gradient(135deg,#ff9547,#ea5a87);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;animation:milestone-num-in .5s .35s cubic-bezier(.22,.68,0,1.2) both}@keyframes milestone-num-in{0%{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}.milestone-card__label{font-size:.85rem;font-weight:700;text-transform:uppercase;letter-spacing:.12em;opacity:.55;margin:4px 0 20px}.milestone-card__message{font-size:1.1rem;font-weight:600;line-height:1.5;margin:0 0 28px;animation:milestone-msg-in .5s .5s ease both}@keyframes milestone-msg-in{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}.milestone-card__dismiss{background:linear-gradient(135deg,#ff9547,#ea5a87);color:#fff;border:0;border-radius:999px;padding:12px 32px;font-size:1rem;font-weight:700;cursor:pointer;animation:milestone-msg-in .4s .65s ease both}.milestone-card__dismiss:hover{filter:brightness(1.1)}.milestone-card__stars{position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none}.milestone-star{position:absolute;font-size:1.1rem;color:#ffd93d;animation:milestone-star-pulse 2.2s calc(var(--i) * 275ms) ease-in-out infinite}.milestone-star:nth-child(1){top:10%;left:8%}.milestone-star:nth-child(2){top:10%;right:8%}.milestone-star:nth-child(3){top:42%;left:5%}.milestone-star:nth-child(4){top:42%;right:5%}.milestone-star:nth-child(5){bottom:12%;left:8%}.milestone-star:nth-child(6){bottom:12%;right:8%}.milestone-star:nth-child(7){top:72%;left:18%}.milestone-star:nth-child(8){top:72%;right:18%}@keyframes milestone-star-pulse{0%,to{transform:scale(1) rotate(0);opacity:.6}50%{transform:scale(1.5) rotate(180deg);opacity:1}}@media (prefers-reduced-motion: reduce){.milestone-backdrop,.milestone-card,.milestone-card__emoji,.milestone-card__num,.milestone-card__message,.milestone-card__dismiss,.milestone-star{animation:none!important;opacity:1!important;transform:none!important}}: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:0}.hero-topline{display:flex;align-items:flex-start;justify-content:flex-start;gap:24px;margin-bottom:34px}.hero-brand-lockup{display:inline-grid;align-items:center;justify-items:start;flex:0 0 auto;gap:24px;min-width:0;color:#0f2742;font-family:Fraunces,serif;font-size:clamp(3.8rem,7vw,5.8rem);font-weight:800;line-height:.88;transform:translateY(-10px)}.hero-brand-logo{display:block;width:147px;height:85px;object-fit:contain;object-position:left center}.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-topline .hero-badges{flex:1 1 auto;min-width:0;justify-content:flex-end}.hero-topline .hero-badge{max-width:260px}.hero-pills{max-width:100%;flex-wrap:nowrap;gap:8px;margin-top:26px}.hero-pills .hero-pill{flex:0 1 auto;max-width:none;white-space:nowrap}.hero-badge,.hero-pill,.adult-summary span,.team-card__meta span,.team-card__pills span,.criterion-trend-chip{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:.78rem;font-weight:700;line-height:1.25;max-width:100%;white-space:normal}.criterion-trend-chip{cursor:pointer;transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease}.criterion-trend-chip:hover,.criterion-trend-chip:focus-visible{border-color:#115d7a57;box-shadow:0 8px 22px #115d7a1f;transform:translateY(-1px)}.criterion-trend-chip--attention{border-color:#b5482b38;color:#8c3f2d}.hero-badge{color:var(--accent);background:#115d7a14}.hero-pill--blue{border-color:#1b597029;background:#cbd8dd;color:#1b5970}.hero-pill--amber{border-color:#cc6b1b29;background:#f4d8b5;color:#9d5319}.hero-pill--green{border-color:#1b597024;background:#c9d6cc;color:#1b5970}.hero-panel h1,.dashboard-topbar h1{margin:0;font-family:Fraunces,serif;line-height:1.04;letter-spacing:-.05em}.hero-panel h1{max-width:1200px;font-size:clamp(2.08rem,4.05vw,3.82rem);overflow-wrap:normal;margin-bottom:32px}.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);border:1px solid transparent}.feedback--error{border-color:#b448483d;background:#fff4f4eb}.feedback--success{color:#135243;border-color:#1e806033;background:#effcf6f5}.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}.ai-wait-game{width:min(100%,420px);display:grid;gap:12px;padding:14px;border-radius:18px;border:1px solid rgba(17,93,122,.16);background:#fff;box-shadow:0 12px 26px #115d7a1a;cursor:pointer;outline:none;-webkit-user-select:none;user-select:none}.ai-wait-game-popout{position:fixed;top:0;right:0;bottom:0;left:0;z-index:120;display:grid;place-items:center;padding:24px;background:#120d2157;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.ai-wait-game-popout__panel{width:min(100%,500px);display:grid;gap:14px;padding:18px;border-radius:22px;border:1px solid rgba(192,161,255,.28);background:#fffffffa;box-shadow:0 24px 80px #281c4b38}.ai-wait-game-popout__head{display:flex;justify-content:space-between;gap:16px;align-items:flex-start}.ai-wait-game-popout__head span{color:#7d57ee;font-size:.72rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.ai-wait-game-popout__head h3,.ai-wait-game-popout__head p{margin:0}.ai-wait-game-popout__head h3{margin-top:3px;color:#171223}.ai-wait-game-popout__head p{max-width:170px;color:#61587d;font-size:.86rem;line-height:1.35;text-align:right}.ai-wait-game:focus-visible{box-shadow:0 0 0 3px #4d88f838,0 12px 26px #115d7a1a}.ai-wait-game__header{display:flex;align-items:center;justify-content:space-between;gap:12px}.ai-wait-game__header strong,.ai-wait-game__header span{display:block}.ai-wait-game__header strong{color:#1f2540;font-size:.96rem}.ai-wait-game__header span{margin-top:2px;color:#5f687a;font-size:.82rem}.ai-wait-game__score{min-width:42px;height:42px;display:grid;place-items:center;border-radius:12px;background:#e8f7f1;color:#123d35;font-weight:900}.ai-wait-game__stage{position:relative;width:100%;aspect-ratio:360 / 190;overflow:hidden;border-radius:14px;background:linear-gradient(rgba(77,136,248,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(77,136,248,.12) 1px,transparent 1px),linear-gradient(180deg,#f7fbff,#eef7f9 58%,#dde8e8 58%,#c8d8d8);background-size:28px 28px,28px 28px,auto}.ai-wait-game__grid-line{position:absolute;height:2px;border-radius:999px;background:#4d88f847}.ai-wait-game__grid-line--one{left:20px;top:42px;width:110px}.ai-wait-game__grid-line--two{right:24px;top:76px;width:86px}.ai-wait-game__target{position:absolute;width:34px;height:34px;border-radius:999px;border:2px solid rgba(239,93,135,.42)}.ai-wait-game__target:before,.ai-wait-game__target:after{content:"";position:absolute;background:#ef5d876b}.ai-wait-game__target:before{left:50%;top:-7px;width:2px;height:44px;transform:translate(-50%)}.ai-wait-game__target:after{left:-7px;top:50%;width:44px;height:2px;transform:translateY(-50%)}.ai-wait-game__target--one{right:118px;top:24px}.ai-wait-game__target--two{left:142px;bottom:42px;transform:scale(.72)}.ai-wait-game__ground{position:absolute;inset-inline:0;bottom:0;height:22px;background:repeating-linear-gradient(90deg,rgba(23,18,35,.16) 0 10px,transparent 10px 20px),linear-gradient(180deg,#7f8796,#697382)}.ai-wait-game__robot{position:absolute;left:0;top:0;width:24px;height:24px;border-radius:7px;border:2px solid #22505b;background:linear-gradient(180deg,#f8fbff,#bed8e8);box-shadow:inset 0 -5px #22505b1f,0 4px 10px #4b50602e;transition:background .12s ease}.ai-wait-game__robot:before,.ai-wait-game__robot:after{content:"";position:absolute;bottom:-7px;width:9px;height:5px;border-radius:0 0 5px 5px;background:#22505b}.ai-wait-game__robot:before{left:2px}.ai-wait-game__robot:after{right:2px}.ai-wait-game__robot-eye{position:absolute;top:7px;width:4px;height:4px;border-radius:999px;background:#0f3840}.ai-wait-game__robot-eye--left{left:6px}.ai-wait-game__robot-eye--right{right:6px}.ai-wait-game__robot-antenna{position:absolute;left:50%;top:-9px;width:2px;height:8px;border-radius:999px;background:#22505b;transform:translate(-50%)}.ai-wait-game__robot-antenna:before{content:"";position:absolute;left:50%;top:-4px;width:6px;height:6px;border-radius:999px;background:#ef5d87;transform:translate(-50%)}.ai-wait-game__robot-boost{position:absolute;left:-10px;top:8px;width:10px;height:8px;border-radius:999px 0 0 999px;background:linear-gradient(90deg,#ffcf5a,#ff8b3d)}.ai-wait-game__robot.is-crashed{background:#b8bec8}.ai-wait-game__obstacle{position:absolute;left:var(--obstacle-x);top:0;width:42px;height:100%}.ai-wait-game__obstacle:before,.ai-wait-game__obstacle:after{content:"";position:absolute;left:0;width:42px;border-radius:9px;background:repeating-linear-gradient(45deg,#ffcf5ae6 0,#ffcf5ae6 7px,#171223e6 7px,#171223e6 14px),linear-gradient(90deg,#1bc289,#0fa978);box-shadow:inset -6px 0 #045b4224}.ai-wait-game__obstacle:before{top:0;height:var(--gap-y)}.ai-wait-game__obstacle:after{top:calc(var(--gap-y) + var(--gap-height));bottom:22px}.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 .hero-body{max-width:1280px;font-size:.88rem;line-height:1.7}.landing-main .hero-body span{display:block}.landing-main .hero-pills .hero-pill{padding:7px 10px;font-size:clamp(.62rem,1vw,.82rem)}.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-form-row{display:flex;flex-wrap:wrap;gap:16px 24px;align-items:end;margin-top:16px}.dashboard-form-row label{display:grid;gap:8px;font-weight:700}.dashboard-form-row input,.dashboard-form-row select,.dashboard-form-row textarea{min-height:44px;border:1px solid rgba(24,35,49,.18);border-radius:8px;background:#ffffffeb;padding:8px 10px;color:var(--ink);font:inherit}.dashboard-form-row textarea{width:min(520px,100%);min-height:76px;resize:vertical}.dashboard-form-row input:focus,.dashboard-form-row select:focus,.dashboard-form-row textarea:focus{outline:2px solid rgba(17,93,122,.18);border-color:var(--accent)}.dashboard-row-actions{display:flex;flex-wrap:nowrap;gap:8px;align-items:center;min-width:240px}.dashboard-row-actions textarea{width:min(240px,34vw);min-height:52px;padding:10px 12px;border:1px solid rgba(24,35,49,.18);border-radius:8px;font:inherit;resize:vertical}@media (max-width: 720px){.dashboard-row-actions{flex-wrap:wrap}}.dashboard-rubric-form,.rubric-editor-panel{display:grid;gap:16px}.dashboard-rubric-stack{display:grid;gap:20px}.dashboard-file-button{position:relative;overflow:hidden}.rubric-editor-advanced{border:1px solid rgba(24,35,49,.12);border-radius:var(--radius-md);background:#ffffffc7;padding:14px 16px}.rubric-editor-advanced summary{cursor:pointer;font-weight:800;color:var(--ink)}.rubric-editor-advanced label{display:grid;gap:8px;margin-top:14px}.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-card__rename{display:grid;gap:10px}.dashboard-team-card__rename label{display:grid;gap:8px;font-weight:700}.dashboard-team-card__rename input{width:min(420px,100%);border:1px solid rgba(24,35,49,.14);border-radius:var(--radius-sm);background:#ffffffe6;padding:14px 16px;color:var(--ink)}.dashboard-team-card__rename-actions{display:flex;gap:10px;flex-wrap:wrap}.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}.role-tag-list{display:flex;flex-wrap:wrap;gap:4px;align-items:center}.role-tag{display:inline-flex;align-items:center;gap:3px;padding:3px 9px;border-radius:999px;border:1px solid rgba(17,93,122,.18);background:#ffffffe6;color:var(--muted);font-size:.78rem;font-weight:700;white-space:nowrap}.role-tag-editor__add{background:none;border:1px dashed rgba(17,93,122,.3);border-radius:999px;padding:3px 9px;font-size:.78rem;color:var(--muted);cursor:pointer;white-space:nowrap}.role-tag-editor__add:hover{background:#115d7a0f}.role-tag-editor--open{position:relative}.role-tag-picker{display:flex;flex-wrap:wrap;gap:4px}.role-picker-panel{position:absolute;top:calc(100% + 4px);left:0;z-index:100;display:grid;gap:10px;padding:12px;border-radius:14px;border:1px solid rgba(17,93,122,.2);background:#fffffffc;box-shadow:0 8px 24px #115d7a1f;min-width:300px;max-width:400px}.role-picker-panel__label{color:var(--accent);font-size:.78rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.role-picker-panel__selected{display:flex;flex-wrap:wrap;gap:6px;min-height:30px}.role-picker-chip{display:inline-flex;align-items:center;gap:5px;min-height:28px;padding:0 10px;border-radius:999px;border:1px solid rgba(17,93,122,.25);background:#115d7a12;color:var(--accent);font:inherit;font-size:.8rem;font-weight:700;cursor:pointer}.role-picker-chip:hover{background:#115d7a21}.role-picker-panel__empty{color:var(--muted);font-size:.84rem;align-self:center}.role-picker-panel__search input{width:100%;min-height:38px;border-radius:10px;border:1px solid rgba(17,93,122,.2);background:#fff;color:var(--text);font:inherit;padding:0 10px;outline:none;box-sizing:border-box}.role-picker-panel__search input:focus{border-color:#115d7a80}.role-picker-panel__list{display:grid;gap:4px;max-height:240px;overflow-y:auto}.role-picker-panel__option{display:flex;align-items:center;width:100%;min-height:38px;padding:0 10px;border-radius:10px;border:1.5px solid rgba(17,93,122,.15);background:#fff;color:var(--text);font:inherit;font-size:.84rem;font-weight:700;cursor:pointer;text-align:left}.role-picker-panel__option.is-selected{border-color:#115d7a99;background:#115d7a0f}.role-picker-panel__actions{display:flex;gap:6px;justify-content:flex-end}.role-tag-option{display:inline-flex;align-items:center;gap:3px;padding:4px 10px;border-radius:999px;border:1px solid rgba(17,93,122,.18);background:#ffffffe6;color:var(--muted);font-size:.78rem;font-weight:600;cursor:pointer}.role-tag-option--selected{background:#115d7a1f;border-color:#115d7a66;color:var(--text)}.role-tag-editor__actions{display:flex;gap:6px}.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__stack{display:grid;gap:16px}.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)}.adult-team-review__expandable-card{border:1px solid rgba(24,35,49,.12);border-radius:calc(var(--radius-md) + 2px);background:#ffffffd1;overflow:hidden}.adult-team-review__expandable-summary{list-style:none;cursor:pointer;padding:18px 20px}.adult-team-review__expandable-summary::-webkit-details-marker{display:none}.adult-team-review__expandable-summary h3{margin:0}.adult-team-review__expandable-head{display:flex;justify-content:space-between;gap:16px;align-items:start}.adult-team-review__expandable-summary p{margin:8px 0 0;color:var(--muted)}.adult-team-review__expandable-body{display:grid;gap:16px;padding:0 20px 20px;border-top:1px solid rgba(24,35,49,.08)}.coach-help-button{width:32px;height:32px;flex:0 0 auto;display:inline-grid;place-items:center;border-radius:999px;border:1px solid rgba(176,167,204,.34);background:#ffffffeb;color:#667288;font:inherit;font-size:.92rem;font-weight:900;cursor:pointer}.coach-help-button:hover{background:#115d7a14;color:var(--accent)}.coach-help-dialog{display:grid;gap:16px}.coach-help-list{margin:0;padding-left:20px;color:#586373;line-height:1.6}.coach-help-list li+li{margin-top:8px}.notebook-review-panel{gap:20px}.notebook-review-panel__intro-actions{display:flex;align-items:start;gap:14px}.notebook-review-filter-banner{grid-column:1 / -1;display:flex;justify-content:space-between;align-items:center;gap:14px;padding:14px 16px;border-radius:var(--radius-md);border:1px solid rgba(17,93,122,.16);background:#e5f7f7ad;color:#244b5c;font-weight:700}.coach-inline-help{display:grid;gap:18px;padding:20px;border-radius:var(--radius-lg);border:1px solid rgba(191,152,255,.44);background:#ffffffeb;box-shadow:0 18px 40px #674c981f}.coach-inline-help__head{display:flex;justify-content:space-between;gap:16px;align-items:start}.coach-inline-help__head h3{margin:0 0 6px}.coach-inline-help__close{width:38px;height:38px;display:inline-grid;place-items:center;border-radius:999px;border:1px solid rgba(162,116,255,.24);background:#ffffffd1;color:#5d4d86;font-size:1.35rem;cursor:pointer}.coach-inline-help__grid{display:grid;gap:16px}.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}.entry-criterion-context{display:grid;gap:10px;padding:14px 16px;border-radius:var(--radius-md);border:1px solid rgba(17,93,122,.14);background:#e5f7f78a}.entry-criterion-context h4{margin:0;color:var(--ink)}.student-entry-focused-feedback{display:grid;gap:8px}.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}.criterion-entry-chips{display:grid;gap:8px;margin-top:4px}.rubric-reference-disclosure{border:1px solid rgba(17,93,122,.12);border-radius:var(--radius-md);background:#ffffffc7;overflow:hidden}.rubric-reference-disclosure__summary{list-style:none;cursor:pointer;display:flex;flex-wrap:wrap;justify-content:space-between;gap:10px 16px;padding:14px 16px;font-weight:800;color:#263241}.rubric-reference-disclosure__summary::-webkit-details-marker{display:none}.rubric-criteria-editor{display:grid;gap:16px}.rubric-criterion-card{display:grid;gap:16px;padding:22px;border-radius:var(--radius-md);border:1px solid rgba(24,35,49,.12);background:linear-gradient(180deg,#fffffff5,#fafcffeb),#ffffffe6;box-shadow:0 10px 26px #21394f0f}.rubric-criterion-card__head{display:flex;align-items:center;justify-content:space-between;gap:12px}.rubric-criterion-card__head p{margin:6px 0 0;color:var(--muted);font-size:.92rem;font-weight:700}.rubric-criterion-card__section{display:grid;gap:14px;padding:16px 18px 18px;border-radius:var(--radius-md);border:1px solid rgba(24,35,49,.08);background:#ffffffb8}.rubric-criterion-card__section-head{display:grid;gap:4px}.rubric-criterion-card__section-head strong{color:#263241;font-size:1rem}.rubric-criterion-card__section-head span{color:var(--muted);font-size:.9rem;line-height:1.45}.rubric-criterion-card label,.rubric-level-editor__grid label{display:grid;gap:8px;align-content:start}.rubric-criterion-card label>span,.rubric-level-editor__grid label>span{color:#334155;font-size:.92rem;font-weight:800}.rubric-criterion-card input,.rubric-criterion-card select,.rubric-criterion-card textarea{width:100%;border:1px solid rgba(24,35,49,.14);border-radius:14px;background:#fffffff5;padding:12px 14px;color:var(--ink);box-sizing:border-box}.rubric-criterion-card input:focus,.rubric-criterion-card select:focus,.rubric-criterion-card textarea:focus{outline:2px solid rgba(17,93,122,.16);border-color:#115d7a47}.rubric-level-editor{display:grid;gap:12px}.rubric-level-editor__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:14px}.rubric-criterion-card textarea{min-height:120px;resize:vertical}.rubric-reference-disclosure__summary span:last-child{color:var(--muted);font-weight:700}.rubric-reference-disclosure__body{display:grid;gap:10px;padding:0 16px 16px;border-top:1px solid rgba(24,35,49,.08)}.rubric-reference-disclosure__link{width:fit-content;display:inline-flex;align-items:center;padding:10px 14px;border-radius:999px;border:1px solid rgba(17,93,122,.16);background:#115d7a14;color:var(--accent);font-weight:800;text-decoration:none}.rubric-reference-disclosure__link:hover,.rubric-reference-disclosure__link:focus-visible{border-color:#115d7a4d;background:#115d7a1f}.criterion-entry-chips>span{color:var(--muted);font-size:.78rem;font-weight:800;text-transform:uppercase;letter-spacing:0}.criterion-entry-chip{width:100%;padding:10px 12px;border-radius:var(--radius-sm);border:1px solid rgba(17,93,122,.12);background:#ffffffdb;color:#263241;font:inherit;font-size:.88rem;font-weight:700;line-height:1.35;text-align:left;cursor:pointer}.criterion-entry-chip:hover,.criterion-entry-chip:focus-visible{border-color:#115d7a4d;background:#fff}.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;align-items:center;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__comment-action{margin-left:auto}.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{display:flex;align-items:center;justify-content:flex-end;gap:10px;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-draft-sections{display:grid;gap:12px}.entry-ai-draft-section{display:grid;gap:5px;padding:12px 14px;border-radius:14px;background:#f8fbff;border:1px solid rgba(77,136,248,.12)}.entry-ai-draft-section h5{margin:0;color:#2f2844;font-size:.86rem;font-weight:900}.entry-ai-result__card p,.entry-ai-draft-section p,.entry-ai-result__card li{color:#43395f;line-height:1.5}.entry-ai-draft-section p{margin:0}.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}.hero-topline{display:grid;gap:16px}.hero-topline .hero-badges{justify-content:flex-start}.hero-pills{flex-wrap:wrap}.hero-pills .hero-pill{white-space:normal}.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}.hero-brand-lockup{min-width:0;font-size:clamp(2.6rem,13vw,4.2rem)}.hero-brand-logo{width:120px;height:71px}.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}p.public-notebook-cover__name{margin:0;color:var(--ink);font-family:var(--font-display);font-size:clamp(2.2rem,4vw,3.2rem);font-weight:800;line-height:1.1;letter-spacing:0}.public-notebook-cover__header{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}.public-notebook-cover__meta-pills{display:flex;gap:8px;align-items:center}.public-notebook-info-pill{padding:5px 12px;border:1px solid rgba(17,93,122,.24);border-radius:999px;background:#ffffffd1;color:var(--muted);font-weight:700;font-size:.82rem;white-space:nowrap}.public-notebook-members-box{margin:18px 0 0;padding:18px;border:1px solid rgba(17,93,122,.18);border-radius:8px;background:#ffffffc7}.public-notebook-members-box__label{color:var(--muted);font-size:.82rem;font-weight:800;text-transform:uppercase;margin-bottom:12px}.public-notebook-members{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:8px}.public-notebook-member{display:flex;align-items:center;flex-wrap:wrap;gap:5px}.public-notebook-member__name{font-weight:700;color:var(--ink);margin-right:2px}.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}.image-story-panel{display:grid;gap:18px}.image-story-grid{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(520px,58vw);gap:14px;overflow-x:auto;overscroll-behavior-inline:contain;scroll-snap-type:inline proximity;padding:2px 2px 8px}.image-story-section-card{display:grid;gap:14px;padding:16px;border:1px solid rgba(17,93,122,.16);border-radius:8px;background:#ffffffc7}.image-story-section-card__head{display:flex;align-items:end;justify-content:space-between;gap:12px}.image-story-section-card__toggle{width:100%;border:0;padding:0;background:transparent;color:inherit;font:inherit;text-align:left;cursor:pointer}.image-story-section-card__toggle>span{color:var(--accent);font-weight:900}.image-story-section-card__head h3,.image-story-section-card__head p{margin:0}.image-story-section-card__head p{color:var(--muted);font-weight:800}.image-story-filters{display:grid;grid-template-columns:minmax(220px,1fr) minmax(160px,220px) minmax(160px,220px);gap:12px}.image-story-filters label{display:grid;gap:6px;color:var(--muted);font-size:.88rem;font-weight:900}.image-story-filters input,.image-story-filters select{width:100%;border:1px solid rgba(17,93,122,.22);border-radius:8px;padding:10px;font:inherit}.image-story-settings{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:14px;padding:14px;border:1px solid rgba(17,93,122,.16);border-radius:8px;background:#ffffffdb}.image-story-settings p{margin:4px 0 0;color:var(--muted)}.image-story-settings label{display:flex;align-items:center;gap:8px;font-weight:800}.image-story-settings select{border:1px solid rgba(17,93,122,.22);border-radius:8px;padding:8px 10px;font:inherit}.image-story-card{display:grid;gap:12px;padding:14px;border:1px solid rgba(17,93,122,.16);border-radius:8px;background:#ffffffdb;scroll-snap-align:start}.image-story-card__toggle{display:grid;grid-template-columns:112px minmax(0,1fr);gap:10px 14px;align-items:start;width:100%;border:0;padding:0;background:transparent;color:inherit;font:inherit;text-align:left;cursor:pointer}.image-story-card__thumb{width:112px;height:112px;object-fit:cover;border-radius:8px;border:1px solid rgba(15,23,42,.14);background:#f8fafc}.image-story-card__thumb--empty{display:grid;place-items:center;color:var(--muted);font-weight:800}.image-story-card__preview{grid-column:2;min-height:56px;margin:0;padding:10px;border-radius:8px;background:#115d7a0f;color:var(--text)}.image-story-card__body,.image-story-card__editor,.image-story-card__field,.image-story-timeline__item,.image-story-timeline__details{display:grid;gap:10px}.image-story-card__field span{color:var(--muted);font-size:.88rem;font-weight:900}.image-story-card__meta,.image-story-card__actions{display:flex;flex-wrap:wrap;gap:8px}.image-story-card__meta span,.image-story-timeline__item span,.public-image-story-page__meta span{color:var(--muted);font-size:.82rem;font-weight:800}.image-story-card__draft,.image-story-card__summary{margin:0;padding:10px;border-radius:8px;background:#115d7a0f}.image-story-card textarea,.image-story-card select{width:100%;border:1px solid rgba(17,93,122,.22);border-radius:8px;padding:10px;font:inherit}.image-story-card textarea[readonly]{color:var(--text);background:#f8fafccc}.image-story-card__draft--rejected{border:1px solid rgba(127,29,29,.22);background:#fee2e2b3}.image-story-card__actions button,.image-story-card__timeline-toggle{border:0;border-radius:8px;padding:9px 12px;background:#115d7a;color:#fff;font-weight:800;cursor:pointer}.image-story-card__actions button:nth-child(3){background:#7f1d1d}.image-story-card__timeline-toggle{justify-self:start;background:#166534}.image-story-timeline{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(560px,64vw);gap:14px;overflow-x:auto;overscroll-behavior-inline:contain;scroll-snap-type:inline proximity;padding:2px 2px 8px}.image-story-timeline__item{border-left:4px solid rgba(17,93,122,.5);padding:12px;background:#ffffffc7;border-radius:8px;scroll-snap-align:start}.image-story-timeline__toggle{display:grid;gap:8px;width:100%;border:0;padding:0;background:transparent;color:inherit;font:inherit;text-align:left;cursor:pointer}.image-story-timeline__item img,.image-story-timeline__empty{width:100%;height:clamp(280px,34vw,520px);object-fit:contain;border-radius:8px;border:1px solid rgba(15,23,42,.1);background:#fff}.image-story-timeline__empty{display:grid;place-items:center;color:var(--muted);font-weight:800}.public-image-story-page{gap:18px}.public-image-story-page__header{display:flex;align-items:end;justify-content:space-between;gap:16px}.public-image-story-page__controls{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:8px}.public-image-story-page__stage{overflow:hidden;border:1px solid rgba(17,93,122,.18);border-radius:8px;background:#ffffffb8}.public-image-story-page__track{display:flex;transition:transform .52s ease;will-change:transform}.public-image-story-page__body{display:grid;align-content:center;gap:16px}.public-image-story-page__card{display:grid;grid-template-columns:minmax(360px,1.25fr) minmax(280px,.75fr);gap:16px;flex:0 0 100%;min-width:100%;padding:18px;border-left:4px solid rgba(17,93,122,.5);background:#ffffffd1}.public-image-story-page__media{display:grid;min-height:clamp(320px,42vw,640px);place-items:center;overflow:hidden;border:1px solid rgba(15,23,42,.12);border-radius:8px;background:#fff}.public-image-story-page__image{width:100%;height:100%;max-height:640px;object-fit:contain}.public-image-story-page__meta,.public-image-story-page__tags{display:flex;flex-wrap:wrap;align-items:center;align-self:start;gap:8px}.public-image-story-page__meta span{display:inline-flex;width:auto;min-height:0;align-items:center;padding:3px 9px;border:1px solid rgba(17,93,122,.14);border-radius:999px;background:#ffffffc7;line-height:1.2}.public-image-story-page__tags span{display:inline-flex;width:auto;min-width:0;min-height:0;align-items:center;padding:4px 10px;border:1px solid rgba(17,93,122,.18);border-radius:999px;color:var(--muted);font-size:.82rem;font-weight:800;line-height:1.2}.public-image-story-page__body h3,.public-image-story-page__body p{margin:0}.public-image-story-page__body h3{font-size:clamp(1.8rem,3vw,3.2rem);line-height:1}.public-image-story-page__body p{font-size:clamp(1.05rem,1.5vw,1.35rem)}.public-image-story-page__filmstrip{display:grid;grid-auto-flow:column;grid-auto-columns:104px;gap:10px;overflow-x:auto;padding-bottom:4px}.public-image-story-page__step{position:relative;height:72px;overflow:hidden;border:2px solid rgba(17,93,122,.18);border-radius:8px;background:#fff;cursor:pointer}.public-image-story-page__step.is-active{border-color:var(--accent)}.public-image-story-page__step img{width:100%;height:100%;object-fit:cover}.public-image-story-page__step span{position:absolute;left:6px;bottom:5px;display:grid;min-width:22px;height:22px;place-items:center;border-radius:999px;background:#0f172ac7;color:#fff;font-size:.78rem;font-weight:900}.public-image-story-page__counter{margin:0;color:var(--muted);font-weight:800}.image-story-empty,.public-image-story{padding:16px;border:1px dashed rgba(17,93,122,.28);border-radius:8px;background:#ffffffbd}@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}.public-image-story-page__header{display:grid}.public-image-story-page__controls{justify-content:flex-start}.public-image-story-page__card{grid-template-columns:minmax(0,1fr)}.public-image-story-page__media{min-height:280px}.image-story-card{grid-template-columns:minmax(0,1fr)}.image-story-grid,.image-story-timeline{grid-auto-columns:minmax(280px,86vw)}.image-story-filters{grid-template-columns:minmax(0,1fr)}.image-story-card__thumb{width:100%;height:180px}.image-story-card__toggle{grid-template-columns:minmax(0,1fr)}.image-story-card__preview{grid-column:auto}}.asr-shell{display:flex;flex-direction:column;gap:20px}.asr-topbar{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;flex-wrap:wrap;border-radius:var(--radius-lg);padding:24px 28px}.asr-topbar__left{display:flex;align-items:flex-start;gap:16px;min-width:0}.asr-topbar__right{display:flex;align-items:center;gap:14px;flex-wrap:wrap;flex-shrink:0}.asr-back-btn{background:none;border:1px solid var(--line);border-radius:var(--radius-sm);color:var(--muted);font-size:.82rem;font-weight:600;padding:8px 14px;cursor:pointer;white-space:nowrap;flex-shrink:0}.asr-back-btn:hover{background:var(--accent-soft);color:var(--accent);border-color:var(--line-strong)}.asr-title{margin:0 0 4px;font-family:Fraunces,serif;font-size:clamp(1.4rem,2.5vw,1.9rem);font-weight:700;letter-spacing:-.03em;color:var(--ink)}.asr-subtitle{margin:0;font-size:.85rem;color:var(--muted)}.asr-export-btn{background:var(--accent);color:#fff;border:none;border-radius:var(--radius-sm);font-size:.82rem;font-weight:700;padding:10px 18px;cursor:pointer;white-space:nowrap}.asr-export-btn:hover{background:var(--accent-strong)}.asr-loading,.asr-error{border-radius:var(--radius-lg);padding:40px 28px;text-align:center;color:var(--muted);font-size:.9rem}.asr-error{color:var(--danger)}.asr-loading__spinner{width:32px;height:32px;border:3px solid var(--line);border-top-color:var(--accent);border-radius:50%;animation:asr-spin .8s linear infinite;margin:0 auto 16px}@keyframes asr-spin{to{transform:rotate(360deg)}}.asr-summary-row{display:grid;grid-template-columns:auto 1fr;gap:20px}.asr-summary-dial{display:flex;align-items:center;gap:28px;border-radius:var(--radius-lg);padding:28px 32px}.asr-dial{position:relative;width:140px;height:140px;flex-shrink:0}.asr-dial__svg{width:100%;height:100%}.asr-dial__inner{position:absolute;top:0;right:0;bottom:0;left:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px}.asr-dial__pct{font-size:1.8rem;font-weight:800;line-height:1;font-family:Fraunces,serif}.asr-dial__pct--empty{color:var(--muted)}.asr-dial__label{font-size:.68rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase}.asr-summary-dial__stats{display:flex;gap:24px;flex-wrap:wrap}.asr-stat{display:flex;flex-direction:column;gap:4px;min-width:48px}.asr-stat__val{font-size:1.6rem;font-weight:800;font-family:Fraunces,serif;line-height:1}.asr-stat__val--pass{color:var(--success)}.asr-stat__val--fail{color:var(--danger)}.asr-stat__val--err{color:var(--signal)}.asr-stat__label{font-size:.72rem;font-weight:600;color:var(--muted);text-transform:uppercase;letter-spacing:.04em}.asr-compliance-card{border-radius:var(--radius-lg);padding:24px 28px}.asr-compliance-list{list-style:none;margin:12px 0 0;padding:0;display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:8px 20px}.asr-compliance-item{display:flex;align-items:center;gap:10px;font-size:.84rem}.asr-compliance-letter{font-weight:800;font-size:.9rem;min-width:16px}.asr-compliance-label{color:var(--ink);font-weight:600}.asr-suite-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:14px}.asr-suite-card{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-md);padding:20px;cursor:pointer;text-align:left;display:flex;flex-direction:column;gap:6px;transition:border-color .15s,box-shadow .15s}.asr-suite-card:hover{border-color:var(--line-strong);box-shadow:0 6px 22px #18233117}.asr-suite-card--active{border-color:var(--accent);background:var(--accent-soft);box-shadow:0 6px 22px #115d7a1a}.asr-suite-card__name{font-weight:700;font-size:.9rem;color:var(--ink)}.asr-suite-card__endpoint{font-size:.72rem;color:var(--muted);font-family:monospace}.asr-suite-card__rate{font-size:1.5rem;font-weight:800;font-family:Fraunces,serif;line-height:1;margin-top:4px}.asr-suite-card__counts{display:flex;gap:8px;flex-wrap:wrap;margin-top:2px}.asr-suite-card__pass{font-size:.73rem;font-weight:700;color:var(--success)}.asr-suite-card__fail{font-size:.73rem;font-weight:700;color:var(--danger)}.asr-suite-card__err{font-size:.73rem;font-weight:700;color:var(--signal)}.asr-detail-panel{border-radius:var(--radius-lg);padding:24px 28px;display:flex;flex-direction:column;gap:20px}.asr-detail-header{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;flex-wrap:wrap}.asr-detail-endpoint{font-size:.8rem;font-family:monospace;color:var(--muted);margin-top:2px}.asr-category-group{border:1px solid var(--line);border-radius:var(--radius-sm);overflow:hidden}.asr-category-group__header{width:100%;display:flex;align-items:center;gap:12px;padding:12px 16px;background:var(--surface-strong);border:none;cursor:pointer;text-align:left}.asr-category-group__header:hover{background:var(--bg-strong)}.asr-category-group__counts{font-size:.78rem;font-weight:700;color:var(--muted);margin-left:auto}.asr-category-group__chevron{font-size:.65rem;color:var(--muted)}.asr-category-group__tests{display:flex;flex-direction:column;gap:0}.asr-category-badge{display:inline-flex;align-items:center;padding:3px 10px;border-radius:999px;border:1px solid;font-size:.72rem;font-weight:700;white-space:nowrap}.asr-test-list{display:flex;flex-direction:column;gap:8px}.asr-test-row{border:1px solid var(--line);border-radius:var(--radius-sm);overflow:hidden}.asr-test-row--pass{border-left:3px solid var(--success)}.asr-test-row--fail{border-left:3px solid var(--danger)}.asr-test-row--error{border-left:3px solid var(--signal)}.asr-test-row__header{width:100%;display:flex;align-items:center;gap:10px;padding:11px 14px;background:var(--surface-strong);border:none;cursor:pointer;text-align:left}.asr-test-row__header:hover{background:var(--bg-strong)}.asr-test-row__desc{flex:1;font-size:.84rem;font-weight:600;color:var(--ink);min-width:0}.asr-test-row__latency{font-size:.72rem;color:var(--muted);white-space:nowrap;flex-shrink:0}.asr-test-row__chevron{font-size:.6rem;color:var(--muted);flex-shrink:0}.asr-test-row__body{padding:12px 16px 14px;border-top:1px solid var(--line);background:#ffffff80}.asr-test-row__error-msg{font-size:.82rem;color:var(--danger);margin-bottom:10px}.asr-test-row__no-detail{font-size:.82rem;color:var(--muted);margin:0}.asr-status-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0}.asr-status-dot--pass{background:var(--success)}.asr-status-dot--fail{background:var(--danger)}.asr-status-dot--error{background:var(--signal)}.asr-assertions{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:6px}.asr-assertion{display:flex;align-items:flex-start;gap:8px;padding:6px 10px;border-radius:6px;background:#fff9}.asr-assertion--pass{background:#2d7a4f0f}.asr-assertion--fail{background:#b448480f}.asr-assertion__text{flex:1;font-size:.8rem;color:var(--ink);min-width:0}.asr-assertion__type{font-size:.7rem;font-family:monospace;color:var(--muted);background:var(--bg-strong);padding:1px 6px;border-radius:4px;white-space:nowrap;flex-shrink:0}.asr-empty-suite{padding:32px;text-align:center;color:var(--muted);font-size:.88rem}.asr-empty-suite code{background:var(--bg-strong);padding:2px 7px;border-radius:4px;font-size:.82rem}.dashboard-tab-pill--safety{border-color:#115d7a33;background:var(--accent-soft);color:var(--accent);font-weight:700}.dashboard-tab-pill--safety:hover{background:#115d7a24}.asr-footer{padding:8px 0 24px;text-align:center}.asr-footer a{color:var(--accent);text-decoration:underline}.asr-test-row__body{display:flex;flex-direction:column;gap:14px;padding:16px 18px 18px;border-top:1px solid var(--line);background:#ffffff80}.asr-detail-block{display:flex;flex-direction:column;gap:8px}.asr-detail-block--muted{color:var(--muted);font-size:.84rem;font-style:italic}.asr-detail-block--error{background:#b448480d;border:1px solid rgba(180,72,72,.15);border-radius:8px;padding:12px 14px}.asr-detail-block__label{font-size:.7rem;font-weight:800;letter-spacing:.07em;text-transform:uppercase;color:var(--muted)}.asr-context-pills{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:2px}.asr-context-pill{font-size:.72rem;color:var(--muted);background:var(--bg-strong);border:1px solid var(--line);border-radius:999px;padding:2px 10px;text-transform:capitalize}.asr-prompt-text{margin:0;padding:12px 14px;background:var(--surface-strong);border:1px solid var(--line);border-radius:8px;font-family:Manrope,sans-serif;font-size:.84rem;color:var(--ink);white-space:pre-wrap;word-break:break-word;line-height:1.6}.asr-error-text{margin:0;padding:10px 12px;background:#b448480f;border-radius:6px;font-size:.78rem;color:var(--danger);white-space:pre-wrap;word-break:break-word}.asr-response-section{display:flex;flex-direction:column;gap:5px;padding:10px 14px;background:var(--surface-strong);border:1px solid var(--line);border-radius:8px}.asr-response-section__heading{font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.06em;color:var(--accent)}.asr-response-section__text{margin:0;font-size:.84rem;color:var(--ink);line-height:1.55}.asr-response-quote{margin:0;padding:10px 14px;border-left:3px solid var(--accent-soft);font-size:.84rem;color:var(--ink);line-height:1.6;font-style:italic;background:#115d7a08;border-radius:0 6px 6px 0}.asr-response-list{margin:0;padding:0 0 0 18px;font-size:.84rem;color:var(--ink);line-height:1.7;display:flex;flex-direction:column;gap:3px}.asr-response-list--pass li::marker{color:var(--success)}.asr-response-blocked{font-size:.82rem;font-weight:700;color:var(--danger);padding:6px 10px;background:#b4484812;border-radius:6px}.asr-response-row{display:flex;align-items:center;gap:12px}.asr-response-row--field{padding:6px 0;border-bottom:1px solid var(--line);font-size:.84rem}.asr-response-row--field:last-child{border-bottom:none}.asr-field-key{min-width:130px;font-weight:700;color:var(--muted);font-size:.78rem}.asr-field-val{color:var(--ink);font-size:.84rem}.asr-response-score{display:flex;flex-direction:column;align-items:center;background:var(--surface-strong);border:1px solid var(--line);border-radius:10px;padding:10px 18px;min-width:70px}.asr-response-score__num{font-size:1.6rem;font-weight:800;font-family:Fraunces,serif;color:var(--ink);line-height:1}.asr-response-score__label{font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--muted)}.asr-response-level{font-size:1rem;font-weight:700;text-transform:capitalize}.asr-image-detail{display:flex;flex-direction:column;gap:14px}.asr-image-preview-wrap{display:flex;flex-direction:column;gap:8px}.asr-image-preview{max-height:240px;max-width:100%;width:auto;border-radius:10px;border:1px solid var(--line);object-fit:contain;background:var(--bg-strong)}.asr-image-preview--loading{width:180px;height:120px;animation:asr-shimmer 1.4s infinite linear;background:linear-gradient(90deg,var(--bg-strong) 25%,var(--line) 50%,var(--bg-strong) 75%);background-size:400% 100%}@keyframes asr-shimmer{0%{background-position:100% 0}to{background-position:-100% 0}}.asr-image-meta{display:flex;flex-wrap:wrap;gap:8px}.asr-image-meta span{font-size:.72rem;color:var(--muted);background:var(--bg-strong);border:1px solid var(--line);border-radius:999px;padding:2px 9px}.asr-image-response{display:flex;flex-direction:column;gap:0;border:1px solid var(--line);border-radius:8px;overflow:hidden}.asr-validation-badge{padding:10px 16px;font-size:.86rem;font-weight:800}.asr-validation-badge--pass{background:#2d7a4f14;color:var(--success)}.asr-validation-badge--fail{background:#b4484814;color:var(--danger)}.asr-assert-summary--pass{color:var(--success);font-weight:700}.asr-assert-summary--fail{color:var(--danger);font-weight:700}.asr-test-row__assert-count{font-size:.72rem;font-weight:700;white-space:nowrap;flex-shrink:0}.asr-test-row__assert-count--pass{color:var(--success)}.asr-test-row__assert-count--fail{color:var(--danger)}.asr-assertion-detail-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:6px}.asr-assertion-detail{border:1px solid var(--line);border-radius:8px;overflow:hidden}.asr-assertion-detail--pass{border-left:3px solid var(--success);background:#2d7a4f08}.asr-assertion-detail--fail{border-left:3px solid var(--danger);background:#b448480a}.asr-assertion-detail__header{display:flex;align-items:flex-start;gap:8px;padding:9px 12px;flex-wrap:wrap}.asr-assertion-detail__intent{flex:1;font-size:.82rem;color:var(--ink);font-weight:500;min-width:0}.asr-assertion-detail__expected{flex:1;font-size:.82rem;color:var(--muted);min-width:0;display:flex;align-items:baseline;gap:6px;flex-wrap:wrap}.asr-assertion-detail__value{font-family:monospace;font-size:.82rem;color:var(--ink);background:var(--bg-strong);padding:1px 6px;border-radius:4px;word-break:break-all}.asr-assertion-detail__reason{padding:6px 12px 8px;font-size:.78rem;color:var(--danger);border-top:1px solid rgba(180,72,72,.1);word-break:break-word}.asr-assertion-detail__code-wrap{border-top:1px solid var(--line);padding:6px 12px 8px}.asr-code-toggle{background:none;border:none;font-size:.72rem;color:var(--muted);cursor:pointer;padding:0;font-weight:600}.asr-code-toggle:hover{color:var(--accent)}.asr-assertion-code{margin:6px 0 0;padding:10px 12px;background:var(--bg-strong);border:1px solid var(--line);border-radius:6px;font-size:.75rem;color:var(--ink);white-space:pre-wrap;word-break:break-word;overflow-x:auto}.comments-panel{display:grid;gap:16px;padding:18px;border:1px solid var(--line);border-radius:8px;background:var(--surface)}.comments-panel--entry,.comments-panel--general{display:inline-grid;padding:0;border:0;background:transparent}.comments-launcher{border:1px solid var(--line);border-radius:999px;background:var(--surface);color:var(--ink);cursor:pointer;font-weight:800;padding:8px 14px}.comments-panel__head{display:flex;justify-content:space-between;gap:16px;align-items:flex-start}.comments-panel__head h3{margin:0}.comments-panel__head p{margin:4px 0 0;color:var(--muted)}.comments-panel__filters{display:flex;gap:8px}.comments-panel__filters button,.comments-panel__actions>button,.comments-popout__actions button,.comments-popout__entry{border:1px solid var(--line);border-radius:6px;background:var(--surface);color:var(--ink);cursor:pointer;font-weight:700;padding:8px 12px}.comments-panel__actions{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:8px}.comments-panel__filters button.is-active{background:var(--ink);border-color:var(--ink);color:var(--surface)}.comments-panel__composer{display:grid;gap:10px}.comments-panel__composer label,.comments-thread__reply{display:grid;gap:6px;color:var(--muted);font-size:.86rem;font-weight:700}.comments-panel textarea{width:100%;resize:vertical;border:1px solid var(--line);border-radius:6px;padding:10px 12px;color:var(--ink);background:var(--surface);font:inherit}.comments-panel__list{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:10px}.comments-thread-card{border:1px solid var(--line);border-radius:8px;background:var(--surface);display:flex;flex-direction:column;justify-content:space-between;min-height:108px;gap:8px;text-align:left;color:var(--ink);cursor:pointer;padding:14px}.comments-thread-card.is-unread{border-color:var(--accent);box-shadow:inset 4px 0 0 var(--accent)}.comments-thread-card span,.comments-thread-card small{color:var(--muted);font-size:.82rem;font-weight:700}.comments-popout{position:fixed;right:24px;bottom:24px;z-index:80;width:min(420px,calc(100vw - 32px));min-width:300px;max-width:680px;height:min(560px,calc(100vh - 48px));min-height:360px;resize:both;overflow:auto;display:grid;grid-template-rows:auto auto 1fr auto auto;gap:10px;padding:16px;border:1px solid var(--line);border-radius:10px;background:var(--surface);box-shadow:0 24px 80px #11182738}.comments-popout__head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;padding-bottom:4px}.comments-popout__head div{display:grid;gap:2px}.comments-popout__head span{color:var(--muted);font-size:.8rem;font-weight:700}.comments-popout__head button{width:32px;height:32px;border:1px solid var(--line);border-radius:999px;background:var(--surface);cursor:pointer;font-size:1.2rem;font-weight:900}.comments-popout__messages{min-height:96px;overflow-y:auto;display:flex;flex-direction:column;gap:10px;padding-right:4px}.comments-popout__messages--empty{justify-content:flex-start;color:var(--muted);padding-top:8px}.comments-popout--composer{height:auto;min-height:0;grid-template-rows:auto auto auto auto;align-content:start}.comments-popout--composer .comments-popout__messages{min-height:0;padding-top:0}.comments-popout--composer .comments-popout__messages p{margin:0}.comments-popout--composer textarea{min-height:140px}.comments-bubble{align-self:flex-start;max-width:88%;border:1px solid var(--line);border-radius:12px 12px 12px 4px;padding:10px 12px;background:var(--bg)}.comments-bubble.is-mine{align-self:flex-end;border-radius:12px 12px 4px;background:var(--bg-strong)}.comments-bubble div{display:flex;justify-content:space-between;gap:10px;color:var(--muted);font-size:.8rem}.comments-bubble p{margin:6px 0 0}.comments-popout textarea{width:100%;resize:vertical;border:1px solid var(--line);border-radius:8px;padding:10px 12px;font:inherit}.comments-popout textarea:disabled{background:var(--bg);color:var(--muted);cursor:not-allowed}.comments-popout__actions{display:flex;flex-wrap:wrap;gap:8px}.comments-popout__actions button:disabled{opacity:.45;cursor:not-allowed}@media (max-width: 700px){.comments-panel__head,.comments-panel__actions{flex-direction:column}.comments-popout{right:12px;bottom:12px;width:calc(100vw - 24px)}}.asr-raw-toggle{background:none;border:1px solid var(--line);border-radius:6px;font-size:.75rem;color:var(--muted);cursor:pointer;padding:4px 10px;font-weight:600;align-self:flex-start}.asr-raw-toggle:hover{border-color:var(--accent);color:var(--accent)}.asr-raw-json{margin:6px 0 0;padding:10px 12px;background:var(--bg-strong);border:1px solid var(--line);border-radius:6px;font-size:.73rem;color:var(--ink);white-space:pre-wrap;word-break:break-word;overflow-x:auto;max-height:400px;overflow-y:auto}@media print{.asr-back-btn,.asr-export-btn,.asr-suite-card,.asr-suite-grid,.asr-test-row__chevron,.asr-category-group__chevron{display:none!important}.asr-topbar{box-shadow:none;border:1px solid #ccc}.asr-test-row__body{display:block!important}.asr-category-group__tests{display:flex!important}body{background:#fff}}@media (max-width: 700px){.asr-summary-row{grid-template-columns:1fr}.asr-summary-dial{flex-direction:column;align-items:flex-start}.asr-topbar{flex-direction:column}.asr-topbar__right{width:100%}}
