@charset "utf-8";:root, [data-theme="light"] { --color-bg: #f7f6f2; --color-surface: #f9f8f5; --color-surface-2: #fbfbf9; --color-surface-offset: #f3f0ec; --color-border: #d4d1ca; --color-divider: #dcd9d5; --color-text: #28251d; --color-text-muted: #7a7974; --color-text-faint: #bab9b4; --color-primary: #01696f; --color-primary-hover: #0c4e54; --color-primary-highlight: #cedcd8; --color-error: #a12c7b; --color-success: #437a22; --color-success-highlight: #d4dfcc; --shadow-sm: 0 1px 2px oklch(0.2 0.01 80/0.06); --shadow-md: 0 4px 12px oklch(0.2 0.01 80/0.08); --radius-sm: 0.375rem; --radius-md: 0.5rem; --radius-lg: 0.75rem; --radius-xl: 1rem; --radius-full: 9999px; --transition: 180ms cubic-bezier(0.16,1,0.3,1); --font-body: 'Inter',sans-serif; --font-display: 'Sora',sans-serif; --text-xs: clamp(0.75rem,0.7rem + 0.25vw,0.875rem); --text-sm: clamp(0.875rem,0.8rem + 0.35vw,1rem); --text-base: clamp(1rem,0.95rem + 0.25vw,1.125rem); --text-lg: clamp(1.125rem,1rem + 0.75vw,1.5rem); --text-xl: clamp(1.5rem,1.2rem + 1.25vw,2.25rem); --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem; --space-4: 1rem; --space-5: 1.25rem; --space-6: 1.5rem; --space-8: 2rem; --space-10: 2.5rem; --space-12: 3rem; --space-16: 4rem; --content-default: 860px; } [data-theme="dark"] { --color-bg: #171614; --color-surface: #1c1b19; --color-surface-2: #201f1d; --color-surface-offset: #1d1c1a; --color-border: #393836; --color-divider: #262523; --color-text: #cdccca; --color-text-muted: #797876; --color-text-faint: #5a5957; --color-primary: #4f98a3; --color-primary-hover: #227f8b; --color-primary-highlight: #313b3b; --color-error: #d163a7; --color-success: #6daa45; --color-success-highlight: #3a4435; --shadow-sm: 0 1px 2px oklch(0 0 0/0.2); --shadow-md: 0 4px 12px oklch(0 0 0/0.3); } *, ::before, ::after { box-sizing: border-box; margin: 0px; padding: 0px; } html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; } body { min-height: 100dvh; font-family: var(--font-body); font-size: var(--text-base); color: var(--color-text); background: var(--color-bg); line-height: 1.6; } input, button, select, textarea { font: inherit; color: inherit; } button { cursor: pointer; background: none; border-width: medium; border-style: none; border-color: currentcolor; border-image: initial; } a, button, [role="button"], input, textarea, select { transition: color var(--transition),background var(--transition),border-color var(--transition),box-shadow var(--transition); } :focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); } h1, h2, h3, h4 { text-wrap: balance; line-height: 1.2; font-family: var(--font-display); } p, li { text-wrap: pretty; } .wrapper { max-width: var(--content-default); margin-inline: auto; padding-inline: var(--space-6); } header { background: var(--color-surface); border-bottom: 1px solid var(--color-divider); padding: var(--space-4) 0; position: sticky; top: 0px; z-index: 10; box-shadow: var(--shadow-sm); } .header-inner { display: flex; align-items: center; justify-content: space-between; } .logo { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; color: var(--color-text); } .logo-text { font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); letter-spacing: -0.02em; } .logo-text span { color: var(--color-primary); } .theme-toggle { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-full); color: var(--color-text-muted); } .theme-toggle:hover { background: var(--color-surface-offset); color: var(--color-text); } .hero { padding: clamp(var(--space-12),6vw,var(--space-16)) 0 var(--space-10); } .hero-label { display: inline-block; font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-primary); background: var(--color-primary-highlight); padding: var(--space-1) var(--space-3); border-radius: var(--radius-full); margin-bottom: var(--space-4); } .hero h1 { font-size: var(--text-xl); font-weight: 700; letter-spacing: -0.025em; margin-bottom: var(--space-4); max-width: 28ch; } .hero p { font-size: var(--text-base); color: var(--color-text-muted); max-width: 58ch; line-height: 1.7; margin-bottom: var(--space-2); } .hero-note { font-size: var(--text-xs); color: var(--color-text-faint); margin-top: var(--space-3); } .progress-bar { display: flex; gap: var(--space-2); margin-bottom: var(--space-8); flex-wrap: wrap; } .step-pill { display: flex; align-items: center; gap: var(--space-2); font-size: var(--text-xs); font-weight: 500; color: var(--color-text-faint); padding: var(--space-1) var(--space-3); border-radius: var(--radius-full); background: var(--color-surface-offset); border: 1px solid transparent; transition: all var(--transition); } .step-pill.active { color: var(--color-primary); background: var(--color-primary-highlight); font-weight: 600; } .step-pill.done { color: var(--color-success); background: var(--color-success-highlight); } .step-num { width: 18px; height: 18px; border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; } .step-pill.active .step-num, .step-pill.done .step-num { background: currentcolor; color: var(--color-bg); } .step-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-8); margin-bottom: var(--space-6); display: none; box-shadow: var(--shadow-sm); } .step-card.visible { display: block; animation: 0.25s ease 0s 1 normal none running fadeIn; } @keyframes fadeIn { 0% { opacity: 0; transform: translateY(6px); } 100% { opacity: 1; transform: translateY(0px); } } .step-heading { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--space-2); display: flex; align-items: center; gap: var(--space-3); } .step-heading-num { width: 28px; height: 28px; border-radius: var(--radius-full); background: var(--color-primary-highlight); color: var(--color-primary); display: flex; align-items: center; justify-content: center; font-size: var(--text-xs); font-weight: 700; flex-shrink: 0; } .step-desc { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: var(--space-6); max-width: 60ch; } .field-group { display: flex; flex-direction: column; gap: var(--space-5); margin-bottom: var(--space-6); } .field { display: flex; flex-direction: column; gap: var(--space-2); } .field label { font-size: var(--text-sm); font-weight: 600; } .field .hint { font-size: var(--text-xs); color: var(--color-text-faint); } input[type="text"], input[type="email"], input[type="number"], select, textarea { width: 100%; padding: var(--space-3) var(--space-4); background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-md); font-size: var(--text-sm); } input:focus, select:focus, textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h/0.15); } select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%237a7974' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right var(--space-3) center; padding-right: var(--space-10); } .service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr)); gap: var(--space-4); margin-bottom: var(--space-6); } .service-item { display: flex; align-items: flex-start; gap: var(--space-3); padding: var(--space-4); background: var(--color-surface-2); border: 1px solid var(--color-divider); border-radius: var(--radius-lg); cursor: pointer; transition: all var(--transition); } .service-item:hover { border-color: var(--color-primary); box-shadow: var(--shadow-md); } .service-item.selected { border-color: var(--color-primary); background: var(--color-primary-highlight); } .service-check { width: 20px; height: 20px; border-radius: var(--radius-sm); border: 1.5px solid var(--color-border); background: var(--color-bg); flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; transition: all var(--transition); } .service-item.selected .service-check { background: var(--color-primary); border-color: var(--color-primary); } .service-check svg { display: none; } .service-item.selected .service-check svg { display: block; } .service-label { font-size: var(--text-sm); font-weight: 600; margin-bottom: 2px; } .service-sub { font-size: var(--text-xs); color: var(--color-text-muted); } .details-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr)); gap: var(--space-4); } .detail-row { display: flex; flex-direction: column; gap: var(--space-2); } .detail-row label { font-size: var(--text-xs); font-weight: 600; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; } .btn { display: inline-flex; align-items: center; gap: var(--space-2); padding: var(--space-3) var(--space-6); border-radius: var(--radius-md); font-size: var(--text-sm); font-weight: 600; border-width: medium; border-style: none; border-color: currentcolor; border-image: initial; cursor: pointer; transition: all var(--transition); } .btn-primary { background: var(--color-primary); color: rgb(255, 255, 255); } .btn-primary:hover { background: var(--color-primary-hover); } .btn-ghost { background: transparent; color: var(--color-text-muted); border: 1px solid var(--color-border); } .btn-ghost:hover { background: var(--color-surface-offset); color: var(--color-text); } .btn-row { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-6); } .summary-table { width: 100%; border-collapse: collapse; margin-bottom: var(--space-6); font-size: var(--text-sm); } .summary-table th { text-align: left; font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-muted); padding: var(--space-2) var(--space-3); border-bottom: 1px solid var(--color-divider); } .summary-table td { padding: var(--space-3); border-bottom: 1px solid var(--color-divider); vertical-align: top; font-variant-numeric: tabular-nums; } .summary-table .total-row td { font-weight: 700; border-top: 2px solid var(--color-border); font-size: var(--text-base); } .cost-tag { font-size: var(--text-xs); color: var(--color-text-faint); font-weight: 400; margin-left: var(--space-1); } .callout { background: var(--color-primary-highlight); border: 1px solid oklch(from var(--color-primary) l c h/0.2); border-radius: var(--radius-lg); padding: var(--space-5) var(--space-6); margin-bottom: var(--space-6); display: flex; gap: var(--space-4); align-items: flex-start; } .callout-icon { flex-shrink: 0; color: var(--color-primary); margin-top: 2px; } .callout-text { font-size: var(--text-sm); line-height: 1.6; } .callout-text strong { font-weight: 600; color: var(--color-primary); } .success-screen { display: none; text-align: center; padding: var(--space-12) var(--space-8); } .success-screen.visible { display: block; } .success-icon { width: 64px; height: 64px; border-radius: var(--radius-full); background: var(--color-success-highlight); color: var(--color-success); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-6); } .success-screen h2 { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--space-3); } .success-screen p { color: var(--color-text-muted); font-size: var(--text-sm); max-width: 44ch; margin: 0px auto; } footer { margin-top: var(--space-16); padding: var(--space-8) 0; border-top: 1px solid var(--color-divider); } .footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-4); } .footer-note { font-size: var(--text-xs); color: var(--color-text-faint); } .dev-badge { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 1px 6px; border-radius: var(--radius-full); background: oklch(from var(--color-primary) l c h/0.15); color: var(--color-primary); margin-left: 6px; vertical-align: middle; } @media (max-width: 600px) { .step-card { padding: var(--space-5); } .hero { padding: var(--space-8) 0 var(--space-6); } .btn-row { flex-direction: column; } .btn { justify-content: center; } .footer-inner { flex-direction: column; text-align: center; } }