:root {
  --ink: #181818;
  --muted: #6f7180;
  --line: #e7e7ec;
  --soft: #f7f7fb;
  --lavender: #eff1ff;
  --coral: #ff493f;
  --coral-dark: #df342d;
  --green: #0f9f79;
  --violet: #6557ca;
  --blue: #405bd8;
  --shadow: 0 18px 44px rgba(28, 24, 48, 0.12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input, textarea, select { font: inherit; letter-spacing: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
.skip-link { position: fixed; left: 14px; top: -60px; z-index: 200; padding: 10px 14px; background: #fff; border: 1px solid var(--line); }
.skip-link:focus { top: 14px; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 104px 0; }
.section-tight { padding: 72px 0; }
.section-soft { background: var(--soft); }
.section-lavender { background: var(--lavender); }
.center { text-align: center; }
.muted { color: var(--muted); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: 62px; line-height: 1.02; margin-bottom: 24px; font-weight: 850; }
h2 { font-size: 42px; line-height: 1.12; margin-bottom: 18px; font-weight: 820; }
h3 { font-size: 21px; line-height: 1.28; margin-bottom: 10px; }
.display-accent { color: var(--coral); }
.section-copy { max-width: 720px; color: var(--muted); font-size: 19px; }
.section-copy.center { margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: 72px;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid rgba(231,231,236,0.85);
  backdrop-filter: blur(16px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-size: 23px; font-weight: 850; }
.brand img { width: 34px; height: 34px; }
.desktop-nav { display: flex; align-items: center; gap: 26px; }
.desktop-nav a { text-decoration: none; color: #595b68; font-size: 14px; font-weight: 650; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--coral-dark); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.text-button { font-weight: 750; text-decoration: none; }
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}
.menu-button span, .menu-button::before, .menu-button::after { position: absolute; width: 19px; height: 2px; left: 11px; background: var(--ink); content: ""; transition: 180ms ease; }
.menu-button span { top: 19px; }
.menu-button::before { top: 13px; }
.menu-button::after { top: 25px; }
.mobile-nav { display: none; position: fixed; inset: 72px 0 auto; z-index: 79; background: #fff; border-bottom: 1px solid var(--line); padding: 22px 20px 28px; box-shadow: var(--shadow); }
.mobile-nav.open { display: grid; gap: 6px; }
.mobile-nav a { padding: 12px; text-decoration: none; font-weight: 700; border-radius: 6px; }
.mobile-nav a:hover { background: var(--soft); }

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 19px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: #fff; background: var(--coral); box-shadow: 0 10px 24px rgba(255,73,63,0.25); }
.btn-primary:hover { background: var(--coral-dark); }
.btn-dark { color: #fff; background: var(--ink); }
.btn-secondary { color: var(--ink); background: #fff; border-color: #cfd0d9; }
.btn-small { min-height: 40px; padding: 8px 15px; font-size: 14px; }
.btn-block { width: 100%; }
.link-arrow { color: var(--coral-dark); font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.hero {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 82% 24%, rgba(113,126,255,0.20), transparent 32%),
    radial-gradient(circle at 20% 72%, rgba(255,110,105,0.16), transparent 34%),
    linear-gradient(135deg, #fff 20%, #f7f7ff 100%);
}
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: var(--line); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr); gap: 62px; align-items: center; }
.hero-copy { padding: 66px 0; }
.hero-copy p { max-width: 630px; font-size: 19px; color: #555866; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0 24px; }
.micro-proof { display: flex; gap: 18px; flex-wrap: wrap; color: #636573; font-size: 13px; font-weight: 650; }
.micro-proof span::before { content: "\2713"; color: var(--green); font-weight: 900; margin-right: 6px; }
.price-note { color: var(--ink) !important; font-weight: 750; }
.live-work-card {
  position: relative;
  border: 1px solid rgba(212,212,224,0.9);
  border-radius: 8px;
  background: rgba(255,255,255,0.90);
  box-shadow: var(--shadow);
  padding: 26px;
  min-height: 440px;
}
.live-work-card::before { content: ""; position: absolute; inset: -10px 18px auto; height: 24px; border-radius: 8px; background: rgba(255,255,255,0.55); z-index: -1; }
.live-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.assistant-chip { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.assistant-avatar { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: #fff; background: var(--coral); box-shadow: 0 0 0 7px rgba(255,73,63,.09); }
.live-dot { display: inline-flex; align-items: center; gap: 7px; color: var(--green); font-size: 13px; font-weight: 800; }
.live-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 1.8s infinite; }
.goal-block { padding: 24px 0; }
.goal-block small { color: var(--muted); font-weight: 750; }
.goal-block h3 { margin: 5px 0 13px; font-size: 24px; }
.progress { height: 8px; overflow: hidden; background: #eeeef4; border-radius: 4px; }
.progress span { display: block; height: 100%; width: 62%; background: linear-gradient(90deg, var(--coral), #ff9d64); animation: work-progress 5s ease-in-out infinite alternate; }
.progress-copy { display: flex; justify-content: space-between; margin-top: 8px; color: var(--muted); font-size: 12px; }
.work-list { display: grid; gap: 10px; }
.work-item { display: grid; grid-template-columns: 30px 1fr auto; gap: 10px; align-items: center; border: 1px solid var(--line); border-radius: 7px; padding: 12px; background: #fff; }
.work-item i { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; font-style: normal; color: #fff; background: var(--violet); }
.work-item:nth-child(2) i { background: var(--green); }
.work-item:nth-child(3) i { background: var(--blue); }
.work-item strong { display: block; font-size: 13px; }
.work-item small { color: var(--muted); }
.status-pill { color: var(--green); background: #e9faf4; padding: 4px 7px; border-radius: 5px; font-size: 11px; font-weight: 800; }
.action-strip { margin-top: 20px; padding: 11px 14px; border-left: 3px solid var(--coral); background: #fff7f6; font-size: 13px; color: #5f5050; }

.metric-band { border-bottom: 1px solid var(--line); }
.metric-inner { min-height: 92px; display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--muted); text-align: center; }
.metric-inner strong { color: var(--ink); font-size: 22px; }

.problem-grid, .step-grid, .department-grid, .capability-grid, .blog-grid { display: grid; gap: 18px; }
.problem-grid { grid-template-columns: repeat(3, 1fr); margin-top: 44px; }
.problem-card { min-height: 250px; padding: 28px; border-top: 3px solid var(--coral); background: #fff; }
.problem-card:nth-child(2) { border-color: var(--violet); }
.problem-card:nth-child(3) { border-color: var(--green); }
.problem-card small { color: var(--muted); font-weight: 800; text-transform: uppercase; }
.problem-card h3 { margin-top: 44px; font-size: 25px; }
.step-grid { grid-template-columns: repeat(3, 1fr); margin-top: 48px; }
.step { padding: 24px 0 0; border-top: 1px solid #cfd0d9; }
.step-number { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 23px; border: 1px solid var(--ink); border-radius: 50%; font-weight: 850; }

.app-frame { border: 1px solid #dcdce7; border-radius: 8px; background: #f7f6fb; box-shadow: var(--shadow); overflow: hidden; }
.app-topbar { height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; background: #fff; border-bottom: 1px solid #e1e0e8; }
.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 8px; height: 8px; border-radius: 50%; background: #d5d4dd; }
.org-workspace { min-height: 570px; display: grid; grid-template-columns: 180px 1fr 220px; }
.app-sidebar, .assistant-panel { padding: 20px; background: rgba(255,255,255,.74); }
.app-sidebar { border-right: 1px solid #e2e1e8; }
.assistant-panel { border-left: 1px solid #e2e1e8; }
.app-sidebar span { display: block; padding: 9px 10px; margin-bottom: 5px; color: #757686; font-size: 13px; }
.app-sidebar .active { color: var(--coral-dark); background: #fff0ef; border-radius: 6px; font-weight: 800; }
.org-canvas { padding: 28px 24px 36px; text-align: center; }
.owner-node, .ava-node { margin-inline: auto; }
.owner-node { width: 160px; }
.node-avatar { display: grid; place-items: center; width: 42px; height: 42px; margin: 0 auto 8px; border-radius: 50%; background: #232338; color: #fff; font-weight: 850; }
.ava-node { margin-top: 28px; }
.ava-node .node-avatar { background: var(--coral); box-shadow: 0 0 0 8px rgba(255,73,63,.10); }
.connector { width: 1px; height: 28px; margin: 0 auto; background: #d5d4dd; }
.department-buttons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; padding-top: 24px; border-top: 1px solid #d5d4dd; }
.department-button { min-height: 45px; padding: 8px; color: #858693; border: 1px solid #dddde5; border-radius: 7px; background: #efeff4; font-size: 12px; font-weight: 800; cursor: pointer; }
.department-button.active { color: #fff; border-color: var(--violet); background: var(--violet); }
.department-button[data-tone="green"].active { border-color: var(--green); background: var(--green); }
.department-button[data-tone="blue"].active { border-color: var(--blue); background: var(--blue); }
.staff-result { min-height: 58px; margin-top: 18px; color: var(--muted); font-size: 13px; }
.staff-pill { display: inline-flex; align-items: center; gap: 7px; padding: 9px 12px; border-radius: 7px; color: var(--ink); background: #fff; box-shadow: 0 8px 18px rgba(31,29,51,.09); font-weight: 750; }
.assistant-orb { width: 120px; height: 120px; margin: 35px auto; border-radius: 45% 55% 48% 52%; background: repeating-radial-gradient(circle at 35% 40%, rgba(255,73,63,.86) 0 2px, transparent 2px 6px); animation: morph 7s ease-in-out infinite; }
.assistant-message { margin-top: 210px; padding: 11px; border: 1px solid var(--line); border-radius: 7px; color: var(--muted); background: #fff; font-size: 12px; }

.department-grid { grid-template-columns: repeat(2, 1fr); margin-top: 44px; }
.department-card, .capability-card, .blog-card { border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.department-card { padding: 26px; position: relative; overflow: hidden; }
.department-card::after { content: attr(data-number); position: absolute; right: 18px; top: 14px; color: #dedee7; font-size: 42px; font-weight: 850; }
.department-card p { max-width: 530px; margin-bottom: 0; color: var(--muted); }
.department-card button { margin-top: 18px; border: 0; padding: 0; color: var(--coral-dark); background: none; font-weight: 800; cursor: pointer; }
.role-list { display: none; margin: 16px 0 0; padding-top: 16px; border-top: 1px solid var(--line); color: #4f5260; font-size: 14px; }
.department-card.open .role-list { display: block; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 40px 28px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: 46px; line-height: 1; }
.stat span { color: var(--muted); }
.ledger { display: grid; grid-template-columns: .75fr 1.25fr; gap: 34px; margin-top: 52px; }
.ledger-summary { background: var(--ink); color: #fff; border-radius: 8px; padding: 30px; }
.ledger-summary strong { display: block; font-size: 40px; }
.ledger-summary p { color: #b9bac4; }
.ledger-table { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.ledger-row { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.ledger-row:last-child { border-bottom: 0; }
.ledger-row small { display: block; color: var(--muted); }

.difference-list { margin-top: 50px; }
.difference-row { display: grid; grid-template-columns: 72px .85fr 1.15fr; gap: 32px; padding: 34px 0; border-top: 1px solid var(--line); }
.difference-row > strong { color: var(--coral); font-size: 28px; }
.difference-row p { color: var(--muted); margin-bottom: 0; }
.principle-band { padding: 76px 0; background: var(--ink); color: #fff; }
.principle-band .section-copy { color: #bdbdc7; }
.principle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 34px; background: #41414a; border: 1px solid #41414a; }
.principle { background: var(--ink); padding: 26px; }
.principle strong { display: block; margin-bottom: 7px; font-size: 19px; }
.principle span { color: #bdbdc7; }

.pricing-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; }
.price-card { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.price-card.featured { border: 2px solid var(--coral); box-shadow: 0 18px 42px rgba(255,73,63,.12); }
.price-card .price { font-size: 48px; line-height: 1; font-weight: 850; }
.price-card .price small { color: var(--muted); font-size: 15px; font-weight: 650; }
.price-card ul, .check-list { padding: 0; list-style: none; }
.price-card li, .check-list li { position: relative; padding-left: 23px; margin: 11px 0; }
.price-card li::before, .check-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--coral); font-weight: 900; }
.price-card .btn { margin-top: 14px; }
.pricing-hero, .page-hero { position: relative; overflow: hidden; padding: 94px 0 82px; text-align: center; background: radial-gradient(circle at 20% 70%, rgba(255,94,88,.15), transparent 28%), radial-gradient(circle at 80% 20%, rgba(95,105,255,.18), transparent 30%), #f7f7ff; }
.page-hero h1, .pricing-hero h1 { max-width: 980px; margin-inline: auto; }
.page-hero p, .pricing-hero p { max-width: 720px; margin-inline: auto; color: var(--muted); font-size: 19px; }
.seat-banner { max-width: 760px; margin: -34px auto 48px; padding: 20px; position: relative; z-index: 3; text-align: center; border: 1px solid #dfe0ed; border-radius: 8px; background: #fff; box-shadow: var(--shadow); }
.seat-banner strong { color: var(--coral-dark); }
.launch-card { max-width: 520px; margin: 0 auto; }
.power-box { margin-top: 54px; padding: 28px; border: 1px solid #dfe0ed; border-radius: 8px; background: var(--lavender); }
.power-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 20px; }
.power-item { display: block; padding: 20px 12px; text-align: center; text-decoration: none; border: 1px solid #d7d9e6; border-radius: 7px; background: #fff; }
.power-item strong { display: block; font-size: 24px; }
.power-item span { color: var(--coral-dark); font-weight: 800; }

.capability-grid { grid-template-columns: repeat(3, 1fr); margin-top: 44px; }
.capability-card { padding: 25px; }
.capability-icon { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 30px; border-radius: 7px; background: #fff0ef; color: var(--coral-dark); font-weight: 900; }
.feature-showcase { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 50px; }
.feature-console { padding: 22px; }
.chat-line { max-width: 84%; margin: 12px 0; padding: 13px 15px; border-radius: 7px; background: #fff; box-shadow: 0 8px 18px rgba(33,31,53,.08); }
.chat-line.reply { margin-left: auto; background: #fff0ef; }
.mini-plan { margin-top: 22px; border: 1px solid var(--line); border-radius: 7px; background: #fff; }
.mini-plan div { display: flex; justify-content: space-between; padding: 12px 15px; border-bottom: 1px solid var(--line); font-size: 13px; }
.mini-plan div:last-child { border-bottom: 0; }

.team-hero { text-align: left; }
.team-hero .container { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
.team-map { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.team-map span { min-height: 68px; display: grid; place-items: center; padding: 10px; text-align: center; border: 1px solid #d9dae4; border-radius: 7px; background: rgba(255,255,255,.78); font-size: 12px; font-weight: 800; }
.team-map span:nth-child(2n) { color: #fff; background: var(--violet); }
.team-map span:nth-child(3n) { color: #fff; background: var(--green); }

.faq-list { max-width: 840px; margin: 40px auto 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: grid; grid-template-columns: 1fr 24px; gap: 16px; align-items: center; padding: 22px 0; text-align: left; border: 0; background: transparent; color: var(--ink); font-weight: 800; cursor: pointer; }
.faq-question span:last-child { font-size: 20px; transition: transform 180ms ease; }
.faq-question[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 40px 22px 0; color: var(--muted); }
.faq-answer.open { display: block; }

.cta { padding: 92px 0; text-align: center; background: var(--lavender); }
.cta h2 { max-width: 760px; margin-inline: auto; }
.site-footer { padding: 62px 0 28px; color: #adadb7; background: #181818; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 42px; }
.site-footer .brand { color: #fff; }
.footer-column strong { display: block; margin-bottom: 14px; color: #fff; }
.footer-column a { display: block; width: fit-content; margin: 8px 0; color: #adadb7; text-decoration: none; }
.footer-column a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 22px; border-top: 1px solid #34343a; font-size: 13px; }

.legal { padding: 80px 0 110px; }
.legal-head { margin-bottom: 48px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.legal-head h1 { font-size: 48px; }
.legal article h2 { margin-top: 38px; font-size: 24px; }
.legal article h3 { margin-top: 24px; font-size: 18px; }
.legal article p, .legal article li { color: #4f515d; }
.legal article li { margin: 7px 0; }
.legal article a { color: var(--coral-dark); }
.legal-callout { padding: 18px; border-left: 3px solid var(--coral); background: #fff5f4; }

.auth-page { min-height: 100vh; display: grid; place-items: center; padding: 50px 20px; background: radial-gradient(circle at 18% 50%, rgba(255,102,97,.18), transparent 34%), radial-gradient(circle at 80% 30%, rgba(92,106,255,.22), transparent 36%), #f8f8ff; }
.auth-wrap { width: min(100%, 480px); text-align: center; }
.auth-wrap .brand { margin-bottom: 20px; }
.auth-card { padding: 28px; text-align: left; border: 1px solid #dddde8; border-radius: 8px; background: rgba(255,255,255,.91); box-shadow: var(--shadow); }
.form-row { margin-bottom: 17px; }
.form-row label { display: block; margin-bottom: 6px; font-weight: 750; }
.form-row input, .form-row textarea, .form-row select { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid #cfd0db; border-radius: 7px; background: #fff; }
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: 2px solid rgba(255,73,63,.25); border-color: var(--coral); }
.form-status { min-height: 24px; margin: 13px 0 0; color: var(--green); font-size: 13px; }
.form-split { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.separator { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--muted); font-size: 13px; }
.separator::before, .separator::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.google-button { width: 100%; color: var(--ink); background: #fff; border-color: #d8d9e1; }
.google-icon { width: 18px; height: 18px; flex: 0 0 18px; }
.auth-foot { margin-top: 22px; color: var(--muted); }
.auth-links { display: flex; justify-content: center; gap: 18px; margin-top: 24px; font-size: 13px; }
.auth-links a { color: var(--muted); }

.google-popup { min-height: 100vh; display: grid; place-items: center; padding: 18px; background: #f6f7f9; font-family: Arial, sans-serif; }
.google-popup-card { width: min(100%, 430px); padding: 30px; border: 1px solid #dadce0; border-radius: 8px; background: #fff; box-shadow: 0 8px 28px rgba(60,64,67,.18); }
.google-wordmark { display: flex; align-items: center; gap: 10px; color: #3c4043; font-size: 24px; font-weight: 600; }
.google-wordmark .google-icon { width: 26px; height: 26px; flex-basis: 26px; }
.google-popup-card h1 { margin-top: 22px; font-size: 26px; }
.google-popup-card p { color: #5f6368; }
.google-popup-action { width: 100%; margin-top: 18px; }
.google-popup-close { margin-top: 12px; width: 100%; border: 0; background: transparent; color: #1a73e8; cursor: pointer; }

.blog-grid { grid-template-columns: repeat(3, 1fr); margin-top: 42px; }
.blog-card { display: flex; flex-direction: column; overflow: hidden; text-decoration: none; }
.blog-visual { min-height: 150px; padding: 20px; display: flex; align-items: flex-end; background: var(--lavender); border-bottom: 1px solid var(--line); }
.blog-card:nth-child(3n+2) .blog-visual { background: #fff0ef; }
.blog-card:nth-child(3n) .blog-visual { background: #e9faf4; }
.blog-visual span { font-size: 42px; font-weight: 850; color: rgba(24,24,24,.14); }
.blog-body { padding: 22px; }
.blog-body small { color: var(--coral-dark); font-weight: 800; }
.blog-body h2 { margin: 12px 0; font-size: 22px; }
.blog-body p { color: var(--muted); }
.article-hero { padding: 86px 0 46px; }
.article-hero h1 { max-width: 900px; font-size: 52px; }
.article-meta { color: var(--muted); }
.article-body { padding-bottom: 100px; }
.article-body h2 { margin-top: 42px; font-size: 28px; }
.article-body p, .article-body li { color: #444651; font-size: 18px; }
.article-note { margin: 34px 0; padding: 23px; border-left: 3px solid var(--coral); background: #fff5f4; }

.changelog-month { display: grid; grid-template-columns: 160px 1fr; gap: 40px; padding: 44px 0; border-top: 1px solid var(--line); }
.changelog-month h2 { font-size: 18px; color: var(--coral-dark); }
.change-item { margin-bottom: 28px; }
.change-item time { color: var(--muted); font-size: 13px; }

.partner-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.term-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 36px 0 50px; }
.term-card { padding: 22px; border-top: 3px solid var(--coral); background: var(--soft); }
.term-card strong { display: block; font-size: 30px; }

.cookie-banner { position: fixed; left: 50%; bottom: 20px; z-index: 100; width: min(calc(100% - 32px), 610px); transform: translateX(-50%); display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 18px; border: 1px solid #d9d9df; border-radius: 8px; background: #fff; box-shadow: var(--shadow); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; font-size: 13px; }
.cookie-actions { display: flex; gap: 8px; }

.scroll-reveal { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 650ms ease; }
.scroll-reveal.is-revealed { opacity: 1; transform: none; }

@keyframes pulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(15,159,121,.25); } 50% { opacity: .7; box-shadow: 0 0 0 7px rgba(15,159,121,0); } }
@keyframes work-progress { from { width: 48%; } to { width: 82%; } }
@keyframes morph { 0%,100% { border-radius: 45% 55% 48% 52%; transform: rotate(0); } 50% { border-radius: 58% 42% 55% 45%; transform: rotate(8deg); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .scroll-reveal { opacity: 1; transform: none; }
}

@media (max-width: 1040px) {
  h1 { font-size: 52px; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .header-actions .text-button { display: none; }
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; padding-bottom: 72px; }
  .hero-copy { padding: 80px 0 42px; }
  .live-work-card { max-width: 720px; }
  .org-workspace { grid-template-columns: 150px 1fr; }
  .assistant-panel { display: none; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container, .narrow { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 76px 0; }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .section-copy { font-size: 17px; }
  .site-header { height: 64px; }
  .mobile-nav { inset: 64px 0 auto; }
  .brand { font-size: 20px; }
  .header-actions .btn { display: none; }
  .hero-inner { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { padding-top: 62px; }
  .live-work-card { min-height: 0; padding: 18px; }
  .work-item { grid-template-columns: 30px 1fr; }
  .status-pill { grid-column: 2; width: fit-content; }
  .problem-grid, .step-grid, .department-grid, .pricing-pair, .capability-grid, .blog-grid, .principle-grid, .partner-layout { grid-template-columns: 1fr; }
  .problem-card { min-height: 210px; }
  .feature-showcase, .team-hero .container, .ledger { grid-template-columns: 1fr; }
  .org-workspace { grid-template-columns: 1fr; }
  .app-sidebar { display: none; }
  .org-canvas { padding-inline: 12px; }
  .department-buttons { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .difference-row { grid-template-columns: 48px 1fr; gap: 16px; }
  .difference-row p { grid-column: 2; }
  .power-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .legal-head h1 { font-size: 40px; }
  .article-hero h1 { font-size: 40px; }
  .changelog-month { grid-template-columns: 1fr; gap: 8px; }
  .term-cards { grid-template-columns: 1fr; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: flex-end; }
}

@media (max-width: 420px) {
  h1 { font-size: 37px; }
  .hero-actions .btn { width: 100%; }
  .micro-proof { display: grid; gap: 7px; }
  .department-buttons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .power-grid { grid-template-columns: 1fr; }
}
