:root {
  --wo-accent: #10b981;
  --wo-accent-2: #047857;
  --wo-bg: #f0fdf4;
  --wo-bg-2: #ecfdf5;
  --wo-surface: #ffffff;
  --wo-text: #064e3b;
  --wo-text-2: #047857;
  --wo-text-inv: #ecfdf5;
  --wo-border: rgba(6, 78, 59, 0.12);
  --wo-radius: 16px;
  --wo-font-display: "Sora", system-ui, sans-serif;
  --wo-font-body: "IBM Plex Sans", system-ui, sans-serif;
  --wo-shadow: 0 16px 40px rgba(6, 78, 59, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.wo-site {
  margin: 0; min-height: 100vh;
  font-family: var(--wo-font-body); font-size: 16px; line-height: 1.55;
  color: var(--wo-text); background: var(--wo-bg);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.wo-wrap { width: min(1120px, 92vw); margin: 0 auto; }

.wo-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--wo-border);
}
.wo-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 68px; }
.wo-brand { display: flex; align-items: center; gap: 12px; font-family: var(--wo-font-display); font-weight: 600; }
.wo-brand-mark {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #34d399, #059669);
  color: #fff; font-size: 0.8rem; font-weight: 700;
}
.wo-brand-text strong { display: block; font-size: 1.25rem; letter-spacing: -.03em; color: var(--wo-text); }
.wo-brand-text span { font-size: 0.72rem; color: var(--wo-text-2); font-weight: 500; }
.wo-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.wo-nav a { padding: 8px 14px; border-radius: 10px; font-size: 0.88rem; font-weight: 600; color: var(--wo-text-2); }
.wo-nav a:hover { background: var(--wo-bg-2); color: var(--wo-text); }
.wo-nav a.wo-nav-cta { background: var(--wo-accent); color: #fff; }
.wo-menu-toggle { display: none; width: 40px; height: 40px; border: 1px solid var(--wo-border); border-radius: 10px; background: #fff; cursor: pointer; }
.wo-menu-toggle span { display: block; width: 16px; height: 2px; margin: 4px auto; background: var(--wo-text); }

.wo-hero {
  position: relative; min-height: min(85vh, 720px); display: flex; align-items: center; overflow: hidden;
  color: var(--wo-text);
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(16, 185, 129, 0.12), transparent 55%),
    radial-gradient(600px 360px at 5% 90%, rgba(52, 211, 153, 0.15), transparent 50%),
    linear-gradient(175deg, #ecfdf5 0%, #f0fdf4 40%, #d1fae5 100%);
}
.wo-hero-visual {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: min(440px, 48vw); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(16,185,129,.25), transparent 65%);
  border-radius: 50%; animation: wo-drift 16s ease-in-out infinite;
}
.wo-hero-inner { position: relative; z-index: 2; padding: 64px 0 80px; }
.wo-hero-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--wo-accent-2); margin: 0 0 1rem; animation: wo-fade-up .7s ease both; }
.wo-hero h1 { font-family: var(--wo-font-display); font-size: clamp(2.6rem, 7vw, 4rem); font-weight: 600; line-height: 1.05; letter-spacing: -.04em; margin: 0 0 1rem; color: var(--wo-text); animation: wo-fade-up .8s .1s ease both; }
.wo-hero-lead { font-size: 1.05rem; color: var(--wo-text-2); max-width: 42ch; margin: 0 0 2rem; animation: wo-fade-up .8s .2s ease both; }
.wo-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; animation: wo-fade-up .8s .3s ease both; }
.wo-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 20px; border-radius: 12px; font-family: var(--wo-font-display); font-weight: 600; font-size: 0.92rem; border: 1px solid transparent; cursor: pointer; transition: transform .15s; }
.wo-btn:hover { transform: translateY(-1px); }
.wo-btn-primary { background: var(--wo-accent); color: #fff; box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3); }
.wo-btn-ghost { background: #fff; color: var(--wo-text); border-color: var(--wo-border); }

.wo-features { padding: 48px 0; background: #fff; border-bottom: 1px solid var(--wo-border); }
.wo-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.wo-feature { padding: 18px; border-radius: var(--wo-radius); border: 1px solid var(--wo-border); background: var(--wo-bg); }
.wo-feature strong { display: block; font-family: var(--wo-font-display); font-size: 0.95rem; margin-bottom: 4px; }
.wo-feature span { font-size: 0.85rem; color: var(--wo-text-2); }

.wo-section { padding: 48px 0; }
.wo-section h2 { font-family: var(--wo-font-display); font-size: 1.4rem; margin: 0 0 1rem; }
.wo-announce { padding: 16px 18px; border-radius: var(--wo-radius); border: 1px solid var(--wo-border); background: #fff; margin-bottom: 10px; box-shadow: var(--wo-shadow); }
.wo-announce strong { display: block; margin-bottom: 4px; color: var(--wo-text); }
.wo-announce p { margin: 0; color: var(--wo-text-2); font-size: 0.9rem; }

.wo-page-hero { padding: 40px 0 28px; background: linear-gradient(180deg, #d1fae5, var(--wo-bg)); }
.wo-page-hero h1 { font-family: var(--wo-font-display); font-size: clamp(1.6rem, 4vw, 2.2rem); margin: 0 0 .5rem; }
.wo-card { background: #fff; border: 1px solid var(--wo-border); border-radius: var(--wo-radius); padding: 22px; margin-bottom: 18px; box-shadow: var(--wo-shadow); }
.wo-form label { display: grid; gap: 6px; font-size: 0.82rem; font-weight: 600; color: var(--wo-text-2); margin-bottom: 12px; }
.wo-form input, .wo-form textarea { border: 1px solid var(--wo-border); border-radius: 10px; padding: 11px 13px; background: #fff; color: var(--wo-text); }
.wo-form input:focus { outline: 2px solid rgba(16,185,129,.25); border-color: var(--wo-accent); }
.wo-alert-err { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; padding: 12px; border-radius: 10px; margin-bottom: 14px; }

.wo-timeline { position: relative; padding-left: 22px; }
.wo-timeline::before { content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 2px; background: var(--wo-accent); opacity: .4; }
.wo-timeline-item { position: relative; padding: 0 0 20px 18px; animation: wo-fade-up .6s ease both; }
.wo-timeline-item::before { content: ""; position: absolute; left: -20px; top: 5px; width: 10px; height: 10px; border-radius: 50%; background: var(--wo-accent); }
.wo-timeline-item time { font-size: 0.78rem; color: var(--wo-text-2); }
.wo-timeline-item h3 { margin: 4px 0 4px; font-family: var(--wo-font-display); font-size: 0.98rem; }
.wo-status { display: inline-block; padding: 3px 9px; border-radius: 999px; font-size: 0.72rem; font-weight: 700; background: #d1fae5; color: var(--wo-accent-2); }

.wo-footer { margin-top: auto; padding: 36px 0; background: var(--wo-text); color: #ecfdf5; }
.wo-footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; align-items: center; }
.wo-footer small { color: #6ee7b7; font-size: 0.84rem; }

.wo-theme-picker { position: fixed; bottom: 18px; right: 18px; z-index: 60; display: flex; gap: 6px; padding: 8px; background: #fff; border-radius: 999px; border: 1px solid var(--wo-border); box-shadow: var(--wo-shadow); }
.wo-theme-picker a { width: 26px; height: 26px; border-radius: 50%; font-size: 0; }
.wo-theme-picker a.wo-t-forge { background: linear-gradient(135deg, #14b8a6, #0b68f7); }
.wo-theme-picker a.wo-t-circuit { background: linear-gradient(135deg, #f59e0b, #78350f); }
.wo-theme-picker a.wo-t-bay { background: linear-gradient(135deg, #10b981, #047857); }
.wo-theme-picker a.active { outline: 2px solid var(--wo-text); outline-offset: 2px; }

body.wo-login-page {
  min-height: 100vh; margin: 0; display: grid; place-items: center; padding: 24px;
  background: linear-gradient(165deg, #ecfdf5, #d1fae5);
  font-family: var(--wo-font-body); color: var(--wo-text);
}
.wo-login-shell { width: min(960px, 100%); display: grid; gap: 28px; align-items: center; }
@media (min-width: 860px) { .wo-login-shell { grid-template-columns: 1fr 380px; } }
.wo-login-hero h1 { font-family: var(--wo-font-display); font-size: clamp(2.2rem, 5vw, 3rem); margin: 0 0 .5rem; }
.wo-login-card { background: #fff; border: 1px solid var(--wo-border); border-radius: 18px; padding: 26px; box-shadow: var(--wo-shadow); }
.wo-login-card label { display: grid; gap: 6px; font-size: 12px; font-weight: 600; color: var(--wo-text-2); margin-bottom: 12px; }
.wo-login-card input { border: 1px solid var(--wo-border); border-radius: 10px; padding: 11px 12px; }
.wo-login-demo { margin-top: 14px; padding: 12px; border-radius: 10px; background: var(--wo-bg); font-size: 12px; color: var(--wo-text-2); line-height: 1.55; }

@keyframes wo-fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes wo-drift { 0%, 100% { transform: translateY(-50%); } 50% { transform: translateY(-52%) translateX(8px); } }

@media (max-width: 860px) {
  .wo-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; background: #fff; padding: 12px; border-bottom: 1px solid var(--wo-border); }
  body.wo-nav-open .wo-nav { display: flex; }
  .wo-menu-toggle { display: grid; place-content: center; }
  .wo-features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) { .wo-features-grid { grid-template-columns: 1fr; } }
