:root { color-scheme: light dark; --page: #eef1ec; --surface: #f8faf6; --surface-soft: rgba(248, 250, 246, .8); --ink: #122c28; --muted: #5e716b; --line: rgba(18, 44, 40, .15); --forest: #103a34; --forest-soft: #dbe8dd; --accent: #bd644b; --accent-deep: #944b3a; --radius: 18px; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
* { box-sizing: border-box; } body { margin: 0; min-height: 100vh; background: var(--page); color: var(--ink); } body::before { content: ""; position: fixed; inset: 0; pointer-events: none; opacity: .18; background-image: radial-gradient(rgba(16, 58, 52, .18) .6px, transparent .6px); background-size: 5px 5px; } button, textarea { font: inherit; } button { cursor: pointer; } a { color: inherit; text-decoration: none; } .app-frame { width: min(1440px, calc(100% - 40px)); min-height: 100vh; margin: auto; position: relative; }
.app-header { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); } .brand { display: inline-flex; align-items: center; gap: 10px; } .brand-mark { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; color: #f3f8f1; background: var(--forest); font-family: Georgia, serif; font-size: 22px; } .brand strong, .brand small { display: block; } .brand strong { font-size: 15px; letter-spacing: -.03em; } .brand small { margin-top: 2px; color: var(--muted); font-size: 10px; } .header-tools { display: flex; align-items: center; gap: 18px; } .mode-label, .header-link { color: var(--muted); font-size: 12px; } .mode-label { display: inline-flex; align-items: center; gap: 7px; } .status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); } .status-dot.live { background: #4c9a76; } .avatar { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; color: var(--forest); background: var(--forest-soft); font-size: 12px; font-weight: 900; }
.app-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 72px; padding: 62px 4vw 100px; } .sidebar { display: flex; flex-direction: column; min-height: 640px; } .side-label, .eyebrow, .card-kicker { color: var(--accent-deep); font-size: 10px; font-weight: 900; letter-spacing: .17em; } .side-label { margin: 4px 0 22px; } .side-nav { display: grid; gap: 7px; } .nav-item { display: grid; grid-template-columns: 28px 1fr; align-items: center; gap: 8px; padding: 12px 10px; border: 0; border-left: 2px solid transparent; color: var(--muted); background: transparent; text-align: left; font-weight: 800; } .nav-item span { color: var(--accent-deep); font-size: 10px; } .nav-item.active { border-left-color: var(--accent); color: var(--ink); background: rgba(189, 100, 75, .08); } .sidebar-note { margin-top: auto; padding: 18px 0 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; line-height: 1.55; } .sidebar-note p { margin: 0 0 12px; } .sidebar-note a { color: var(--accent-deep); font-weight: 800; }
.content { min-width: 0; max-width: 990px; } .view { display: none; } .view.active { display: block; } .welcome { max-width: 620px; margin-bottom: 48px; } .eyebrow { margin: 0 0 14px; line-height: 1.4; } h1, h2, h3, p { margin-top: 0; } h1, h2, h3 { letter-spacing: -.05em; } h1, h2 { font-family: Georgia, serif; font-weight: 500; } h1 { margin-bottom: 15px; font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: .96; } h2 { margin-bottom: 14px; font-size: clamp(2rem, 4vw, 3.35rem); line-height: .98; } h3 { margin-bottom: 9px; font-size: 21px; } .lede { max-width: 580px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.6; } .today-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 14px; margin-bottom: 86px; } .hero-card, .noticed-card, .action-card, .timeline article, .talk-card, .plan-card, .honesty-note, .care-route { border: 1px solid var(--line); border-radius: var(--radius); } .hero-card { display: flex; justify-content: space-between; gap: 20px; min-height: 300px; padding: 31px; color: #eef7ef; background: var(--forest); overflow: hidden; } .hero-card h2 { max-width: 450px; } .hero-card p:not(.card-kicker), .noticed-card p, .plan-card > p, .care-route span, .talk-card span { color: var(--muted); line-height: 1.6; } .hero-card p:not(.card-kicker) { max-width: 450px; color: rgba(238, 247, 239, .76); } .card-kicker { margin-bottom: 18px; } .hero-card .card-kicker { color: #f0a385; } .primary, .quiet, .text-button { border: 0; font-size: 13px; font-weight: 900; } .primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 0 16px; border-radius: 999px; color: #f5f8f3; background: var(--accent-deep); } .primary:hover { background: var(--accent); } .hero-card .primary { margin-top: 17px; background: #f1c4ae; color: #17352f; } .hero-card .primary:hover { background: #f5d9ca; } .noticed-card { min-height: 300px; padding: 28px; background: var(--surface-soft); } .noticed-card h3 { max-width: 230px; } .noticed-card p { max-width: 250px; } .text-button { display: inline-flex; align-items: center; gap: 5px; padding: 0; color: var(--accent-deep); background: transparent; } .text-button:hover { color: var(--accent); } .card-mark { position: relative; flex: 0 0 120px; align-self: end; width: 120px; height: 120px; } .card-mark span { position: absolute; border: 1px solid rgba(241, 196, 174, .52); border-radius: 50%; } .card-mark span:nth-child(1) { inset: 0; } .card-mark span:nth-child(2) { inset: 18px; } .card-mark span:nth-child(3) { inset: 36px; background: #f1c4ae; }
.section-title { margin-bottom: 22px; } .section-title h2 { font-size: 2.25rem; } .action-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; } .action-card { position: relative; min-height: 178px; padding: 22px; border: 1px solid var(--line); background: transparent; color: var(--ink); text-align: left; } .action-card:hover, .talk-card:hover { border-color: var(--accent); transform: translateY(-2px); } .action-number { display: block; margin-bottom: 30px; color: var(--accent-deep); font-size: 10px; font-weight: 900; } .action-card strong, .action-card small { display: block; } .action-card strong { margin-bottom: 8px; font-size: 16px; } .action-card small { max-width: 210px; color: var(--muted); line-height: 1.45; } .action-arrow { position: absolute; right: 20px; top: 19px; color: var(--accent-deep); font-size: 18px; }
.view-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 48px; } .view-heading > div { max-width: 680px; } .timeline { border-top: 1px solid var(--line); } .timeline article { display: grid; grid-template-columns: 115px 1fr auto; gap: 20px; align-items: start; padding: 23px 0; border-width: 1px 0 0; border-radius: 0; } .timeline article > span, .timeline article b { color: var(--accent-deep); font-size: 12px; } .timeline article p { margin: 0; color: var(--muted); } .timeline article b { font-weight: 800; } .talk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; } .talk-card { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; min-height: 160px; padding: 24px; border: 1px solid var(--line); color: var(--ink); background: transparent; text-align: left; transition: transform .2s ease, border-color .2s ease; } .talk-card strong { font-size: 17px; } .talk-card span { max-width: 310px; } .talk-card b { position: absolute; right: 22px; top: 21px; color: var(--accent-deep); } .honesty-note { display: flex; gap: 18px; margin-top: 28px; padding: 18px 20px; color: var(--muted); background: rgba(189, 100, 75, .08); font-size: 13px; line-height: 1.5; } .honesty-note strong { flex: 0 0 auto; color: var(--accent-deep); } .plan-card { max-width: 680px; padding: 30px; background: var(--forest); color: #eef7ef; } .plan-card .card-kicker { color: #f0a385; } .plan-card p:not(.card-kicker) { color: rgba(238, 247, 239, .76); } .plan-progress { display: flex; gap: 6px; margin-bottom: 36px; } .plan-progress span { width: 52px; height: 4px; border-radius: 999px; background: rgba(238, 247, 239, .26); } .plan-progress .progress-done { background: #f1c4ae; } .plan-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 19px; margin-top: 24px; } .plan-card .primary { background: #f1c4ae; color: #17352f; } .plan-card .text-button { color: #f1c4ae; } .care-route { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; max-width: 680px; margin-top: 16px; padding: 18px 20px; font-size: 13px; } .care-route a { color: var(--accent-deep); font-weight: 900; }
dialog { width: min(520px, calc(100% - 28px)); padding: 0; border: 0; border-radius: var(--radius); color: var(--ink); background: var(--surface); box-shadow: 0 24px 80px rgba(0,0,0,.3); } dialog::backdrop { background: rgba(11, 32, 28, .5); } .capture-form { position: relative; padding: 30px; } .dialog-close { position: absolute; top: 18px; right: 18px; width: 30px; height: 30px; border: 0; border-radius: 50%; color: var(--accent-deep); background: rgba(189,100,75,.1); font-size: 21px; } .capture-form h2 { padding-right: 30px; } .capture-form label { display: block; margin-top: 25px; color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; } textarea { display: block; width: 100%; margin-top: 8px; padding: 13px; border: 1px solid var(--line); border-radius: 11px; resize: vertical; color: var(--ink); background: var(--page); outline: none; } textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(189,100,75,.15); } .capture-actions { display: flex; justify-content: flex-end; gap: 15px; margin-top: 22px; } .quiet { padding: 0 12px; color: var(--accent-deep); background: transparent; } .toast { position: fixed; right: 24px; bottom: 24px; max-width: 320px; padding: 13px 16px; border-radius: 12px; color: #f4f8f1; background: var(--forest); box-shadow: 0 12px 30px rgba(0,0,0,.2); opacity: 0; transform: translateY(10px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; } .toast.show { opacity: 1; transform: none; }
@media (prefers-color-scheme: dark) { :root { --page: #102522; --surface: #17352f; --surface-soft: rgba(23,53,47,.78); --ink: #edf4ed; --muted: #aac0b7; --line: rgba(224,240,230,.18); --forest: #d7e6da; --forest-soft: #25483f; --accent: #e08a6c; --accent-deep: #f0a385; } .brand-mark, .hero-card, .plan-card { color: #102522; } .hero-card p:not(.card-kicker), .plan-card p:not(.card-kicker) { color: rgba(16,37,34,.72); } .hero-card .card-kicker, .plan-card .card-kicker { color: #944b3a; } .hero-card .primary, .plan-card .primary { color: #17352f; } }
@media (max-width: 900px) { .app-layout { grid-template-columns: 1fr; gap: 35px; padding: 48px 0 80px; } .sidebar { min-height: auto; } .sidebar-note { display: none; } .side-nav { display: flex; gap: 5px; border-bottom: 1px solid var(--line); } .nav-item { border-left: 0; border-bottom: 2px solid transparent; padding: 11px 8px; } .nav-item.active { border-bottom-color: var(--accent); background: transparent; } .today-grid { grid-template-columns: 1fr; } .hero-card, .noticed-card { min-height: auto; } }
@media (max-width: 620px) { .app-frame { width: min(100% - 28px, 520px); } .app-header { height: auto; padding: 16px 0; align-items: flex-start; } .header-tools { gap: 10px; flex-wrap: wrap; justify-content: flex-end; } .header-link { display: none; } .action-grid, .talk-grid { grid-template-columns: 1fr; } .hero-card { padding: 24px; } .card-mark { display: none; } .view-heading { align-items: start; flex-direction: column; } .timeline article { grid-template-columns: 1fr; gap: 6px; } .timeline article b { display: none; } .care-route { grid-template-columns: 1fr; gap: 9px; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; } }
