:root {
  --bg: #f5f9f7;
  --surface: #ffffff;
  --surface-soft: #eef7f4;
  --surface-blue: #eef6ff;
  --surface-warm: #fff6e3;
  --text: #172033;
  --muted: #61708c;
  --line: #d9e4ef;
  --primary: #0f766e;
  --primary-strong: #0b5f59;
  --accent: #4f63d7;
  --coral: #f46f5d;
  --yellow: #f4c84b;
  --green: #16a36b;
  --pink: #d94f93;
  --shadow-soft: 0 18px 45px rgba(49, 75, 104, 0.14);
  --shadow-small: 0 10px 24px rgba(49, 75, 104, 0.1);
  --radius: 8px;
  --container: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "HarmonyOS Sans SC", "PingFang SC", "Noto Sans SC", "Microsoft YaHei",
    system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(79, 99, 215, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--text);
  color: #fff;
  padding: 10px 14px;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 0;
  right: 0;
  pointer-events: none;
}

.nav-shell {
  width: min(100% - 32px, 1248px);
  min-height: 72px;
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid rgba(217, 228, 239, 0.84);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 50px rgba(54, 74, 102, 0.12);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  color: var(--text);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), #34c6a1);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(15, 118, 110, 0.24);
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 19px;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius);
  color: #44536b;
  padding: 10px 14px;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-menu a:hover {
  background: var(--surface-soft);
  color: var(--primary-strong);
  transform: translateY(-1px);
}

.nav-menu .nav-cta {
  margin-left: 6px;
  background: var(--text);
  color: #fff;
  box-shadow: 0 10px 20px rgba(23, 32, 51, 0.18);
}

.nav-menu .nav-cta:hover {
  background: var(--primary-strong);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 86dvh;
  overflow: hidden;
  padding: 138px 0 84px;
  isolation: isolate;
}

.hero-bg,
.hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.hero-wash {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(245, 249, 247, 0.97) 0%, rgba(245, 249, 247, 0.9) 44%, rgba(245, 249, 247, 0.58) 100%),
    linear-gradient(180deg, rgba(245, 249, 247, 0.35) 0%, rgba(245, 249, 247, 0.96) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 52px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow,
.section-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 999px;
  background: rgba(238, 247, 244, 0.92);
  color: var(--primary-strong);
  padding: 8px 14px;
  margin: 0 0 18px;
  font-weight: 800;
  font-size: 13px;
}

.section-kicker {
  margin-bottom: 14px;
}

.section-kicker.pink {
  border-color: rgba(217, 79, 147, 0.18);
  background: #fff0f7;
  color: #ad2b70;
}

.hero h1 {
  margin: 0;
  font-size: 76px;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 620px;
  margin: 22px 0 0;
  color: #3c4a5f;
  font-size: 22px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 18px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 26px rgba(15, 118, 110, 0.22);
}

.btn-primary:hover {
  background: var(--primary-strong);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
}

.btn-secondary:hover {
  background: #fff;
  box-shadow: var(--shadow-small);
}

.btn.full {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.hero-metrics div {
  border: 1px solid rgba(217, 228, 239, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  padding: 16px;
}

.hero-metrics dt {
  color: var(--primary-strong);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
}

.hero-metrics dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.project-console,
.inbox-preview,
.assistant-card,
.price-card,
.comparison-card,
.feature-card,
.contact-form,
.tech-figure {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.project-console {
  padding: 22px;
  backdrop-filter: blur(16px);
}

.console-topbar {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background: #f46f5d;
}

.dot.amber {
  background: #f4c84b;
}

.dot.green {
  background: #28c58a;
}

.search-pill {
  min-height: 44px;
  margin-left: 10px;
  border-radius: var(--radius);
  background: #f0f5f8;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8090a8;
  padding: 0 14px;
}

.search-pill input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--muted);
}

.console-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  padding: 22px 0 18px;
}

.console-header h2 {
  margin: 8px 0 0;
  font-size: 26px;
  line-height: 1.22;
}

.status-chip,
.ticket-status,
.plan-pill,
.popular {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}

.status-chip {
  background: var(--surface-warm);
  color: #8a5a00;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  cursor: pointer;
}

.ticket-list {
  display: grid;
  gap: 12px;
}

.ticket-card,
.message-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px;
  background: #fff;
}

.ticket-card.active,
.message-row.highlighted {
  border-color: rgba(79, 99, 215, 0.34);
  background: #f5f7ff;
}

.ticket-card h3,
.message-row h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.ticket-card small {
  color: #92a0b4;
  font-weight: 600;
}

.ticket-card p,
.message-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
}

.avatar.mint,
.feature-icon.mint {
  background: #1bb99a;
}

.avatar.blue,
.feature-icon.blue {
  background: #4e8ff7;
}

.avatar.coral,
.feature-icon.coral {
  background: var(--coral);
}

.avatar.yellow,
.feature-icon.yellow {
  background: var(--yellow);
  color: #3c2c00;
}

.feature-icon.violet {
  background: #7467f0;
}

.feature-icon.green {
  background: #24b47e;
}

.ticket-status {
  background: #fff4df;
  color: #9b6200;
  white-space: nowrap;
}

.ticket-status.teal {
  background: #e8f8f5;
  color: var(--primary-strong);
}

.ticket-status.green {
  background: #e9f9ef;
  color: #16794d;
}

.ai-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  border-radius: var(--radius);
  background: #eef7f4;
  padding: 14px;
  color: #315464;
}

.ai-note p {
  margin: 0;
  font-weight: 700;
}

.ai-badge {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
}

.proof-strip {
  background: #fff;
  border-block: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.proof-grid div {
  min-height: 110px;
  display: grid;
  align-content: center;
  gap: 4px;
  background: #fff;
  padding: 22px;
}

.proof-grid strong {
  color: var(--primary-strong);
  font-size: 28px;
  line-height: 1.15;
}

.proof-grid span {
  color: var(--muted);
}

.section {
  padding: 104px 0;
}

.band,
.ai-section {
  background: #f1f6f8;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2,
.channel-copy h2,
.ai-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.16;
  letter-spacing: 0;
}

.section-heading p,
.channel-copy p,
.ai-copy p,
.contact-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  min-height: 250px;
  padding: 30px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 20px 48px rgba(49, 75, 104, 0.16);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: var(--radius);
  color: #fff;
  margin-bottom: 24px;
}

.feature-card h3 {
  margin: 0;
  font-size: 23px;
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.channel-grid,
.ai-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 64px;
}

.channel-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.channel-item {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  padding: 14px;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.channel-item:hover,
.channel-item.active {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, 0.34);
  background: var(--surface-soft);
}

.channel-item strong,
.channel-item small {
  display: block;
}

.channel-item small {
  color: var(--muted);
  line-height: 1.35;
}

.channel-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: var(--surface-blue);
  color: var(--accent);
}

.inbox-preview {
  padding: 24px;
}

.inbox-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
}

.stacked-avatars {
  display: flex;
}

.stacked-avatars span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: -7px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.stacked-avatars span:first-child {
  margin-left: 0;
}

.stacked-avatars span:nth-child(2) {
  background: var(--primary);
}

.stacked-avatars span:nth-child(3) {
  background: var(--green);
}

.stacked-avatars span:nth-child(4) {
  background: var(--coral);
}

.message-row + .message-row {
  margin-top: 12px;
}

.message-row time {
  color: #8d9bb0;
  font-size: 12px;
  white-space: nowrap;
}

.tech-figure {
  overflow: hidden;
  margin: 0;
  background: #101827;
}

.tech-figure img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
}

.tech-figure figcaption {
  color: #dbe8ff;
  padding: 16px 18px;
  font-size: 14px;
}

.assistant-card {
  margin-top: 28px;
  padding: 20px;
  box-shadow: var(--shadow-small);
}

.assistant-head {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.assistant-head strong,
.assistant-head small {
  display: block;
}

.assistant-head small {
  color: var(--green);
}

.chat-bubble {
  width: fit-content;
  max-width: 82%;
  border-radius: var(--radius);
  padding: 13px 15px;
  margin-bottom: 12px;
}

.chat-bubble.user {
  margin-left: auto;
  background: var(--accent);
  color: #fff;
}

.chat-bubble.bot {
  background: #eff4f8;
  color: #27354b;
}

.assistant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.assistant-actions button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  padding: 9px 12px;
  cursor: pointer;
}

.benefit-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #35445b;
  font-weight: 700;
}

.benefit-list svg,
.price-card li svg {
  color: var(--green);
  flex: 0 0 auto;
}

.pricing-toggle {
  display: inline-flex;
  gap: 4px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 4px;
}

.toggle-option {
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  padding: 9px 16px;
  cursor: pointer;
  font-weight: 800;
}

.toggle-option.active {
  background: var(--primary);
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.price-card.featured {
  border-color: rgba(15, 118, 110, 0.45);
  box-shadow: 0 24px 58px rgba(15, 118, 110, 0.16);
}

.popular {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ddf8ee;
  color: #08734f;
}

.plan-pill {
  background: #f0f5ff;
  color: var(--accent);
}

.plan-pill.green {
  background: #ddf8ee;
  color: #08734f;
}

.plan-pill.coral {
  background: #fff0ed;
  color: #b44231;
}

.price-head h3 {
  margin: 16px 0 0;
  font-size: 28px;
}

.price-head p {
  min-height: 58px;
  margin: 8px 0 0;
  color: var(--muted);
}

.price {
  color: var(--text);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.1;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #324057;
}

.price-card .btn {
  margin-top: auto;
}

.comparison-card {
  margin-top: 28px;
  overflow-x: auto;
  box-shadow: var(--shadow-small);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

caption {
  text-align: left;
  padding: 20px 22px 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 16px 22px;
  text-align: left;
  vertical-align: top;
}

thead th {
  color: var(--muted);
  font-size: 14px;
}

tbody th {
  color: var(--text);
  width: 20%;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.contact-band {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.09), rgba(79, 99, 215, 0.08)),
    #f8fbfa;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-cards a {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  padding: 12px 16px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fcfd;
  color: var(--text);
  padding: 13px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(15, 118, 110, 0.55);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
  outline: 0;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--primary-strong);
  font-weight: 800;
}

.form-message.error {
  color: #b44231;
}

.site-footer {
  background: #172033;
  color: #d8e2f1;
  padding: 58px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand,
.footer-brand .brand-text small {
  color: #fff;
}

.footer-grid p {
  max-width: 420px;
  color: #aab7ca;
  margin: 18px 0 0;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-grid nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  color: #c3ccda;
  padding: 9px 12px;
}

.footer-grid nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 38px;
  padding-top: 22px;
  color: #9da9bb;
  font-size: 14px;
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes content-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: content-rise 520ms ease both;
}

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 160ms;
}

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .channel-grid,
  .ai-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 60px;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card.featured {
    grid-row: span 1;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 10px;
  }

  .nav-shell {
    width: min(100% - 20px, 1248px);
    align-items: center;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 10px;
    right: 10px;
    display: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
    padding: 8px;
  }

  .nav-menu.is-open {
    display: grid;
  }

  .nav-menu a,
  .nav-menu .nav-cta {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .hero {
    padding-top: 112px;
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-metrics,
  .proof-grid,
  .feature-grid,
  .pricing-grid,
  .channel-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .channel-copy h2,
  .ai-copy h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .proof-grid {
    background: #fff;
  }

  .proof-grid div {
    min-height: 90px;
    border-bottom: 1px solid var(--line);
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-grid nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .brand-text small {
    display: none;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-actions,
  .assistant-actions {
    display: grid;
  }

  .hero-actions .btn,
  .assistant-actions button {
    width: 100%;
  }

  .project-console,
  .inbox-preview,
  .contact-form,
  .price-card,
  .feature-card {
    padding: 20px;
  }

  .console-topbar {
    grid-template-columns: auto auto auto;
  }

  .search-pill {
    grid-column: 1 / -1;
    margin-left: 0;
  }

  .console-header,
  .ticket-card,
  .message-row {
    grid-template-columns: 1fr;
  }

  .ticket-status,
  .message-row time {
    justify-self: start;
  }

  .section-heading h2,
  .channel-copy h2,
  .ai-copy h2,
  .contact-copy h2 {
    font-size: 30px;
  }

  .price {
    font-size: 32px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
