:root {
  color-scheme: light dark;
  --bg: #fffdf9;
  --surface: #ffffff;
  --surface-elevated: #fffaf6;
  --surface-muted: #f4eee8;
  --text: #111318;
  --muted: #5d6470;
  --soft: #8b929d;
  --line: #e6d8ce;
  --line-strong: #f05a3a;
  --orange: #ff4f31;
  --orange-strong: #df371e;
  --orange-soft: rgba(255, 79, 49, 0.10);
  --green: #26a35b;
  --blue: #357df0;
  --amber: #e49b12;
  --teal: #18a8a3;
  --shadow: 0 22px 54px rgba(72, 42, 22, 0.10);
  --shadow-soft: 0 14px 32px rgba(72, 42, 22, 0.07);
  --weight-heavy: 780;
  --weight-strong: 720;
  --weight-action: 680;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", "Courier New", monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #070b11;
    --surface: #10161f;
    --surface-elevated: #121b26;
    --surface-muted: #0c121a;
    --text: #f7fafc;
    --muted: #c6ccd5;
    --soft: #8b95a2;
    --line: #27323f;
    --line-strong: #f05a3a;
    --orange: #ff5738;
    --orange-strong: #ff6b4d;
    --orange-soft: rgba(255, 87, 56, 0.13);
    --green: #35ce74;
    --blue: #5a9cff;
    --amber: #ffb527;
    --teal: #23cac3;
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
    --shadow-soft: 0 18px 42px rgba(0, 0, 0, 0.28);
  }
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #070b11;
  --surface: #10161f;
  --surface-elevated: #121b26;
  --surface-muted: #0c121a;
  --text: #f7fafc;
  --muted: #c6ccd5;
  --soft: #8b95a2;
  --line: #27323f;
  --line-strong: #f05a3a;
  --orange: #ff5738;
  --orange-strong: #ff6b4d;
  --orange-soft: rgba(255, 87, 56, 0.13);
  --green: #35ce74;
  --blue: #5a9cff;
  --amber: #ffb527;
  --teal: #23cac3;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  --shadow-soft: 0 18px 42px rgba(0, 0, 0, 0.28);
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #fffdf9;
  --surface: #ffffff;
  --surface-elevated: #fffaf6;
  --surface-muted: #f4eee8;
  --text: #111318;
  --muted: #5d6470;
  --soft: #8b929d;
  --line: #e6d8ce;
  --line-strong: #f05a3a;
  --orange: #ff4f31;
  --orange-strong: #df371e;
  --orange-soft: rgba(255, 79, 49, 0.10);
  --green: #26a35b;
  --blue: #357df0;
  --amber: #e49b12;
  --teal: #18a8a3;
  --shadow: 0 22px 54px rgba(72, 42, 22, 0.10);
  --shadow-soft: 0 14px 32px rgba(72, 42, 22, 0.07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; }
svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-frame {
  width: min(1440px, calc(100% - 88px));
  margin-inline: auto;
}
.site-header {
  position: relative;
  z-index: 5;
  min-height: 88px;
  display: flex;
  align-items: center;
}
.nav-bar,
.nav-cluster,
.nav-links,
.footer-bar,
.footer-links,
.footer-mail,
.join-cta {
  display: flex;
  align-items: center;
}
.nav-bar {
  width: min(1120px, calc(100% - 88px));
  justify-content: flex-start;
  gap: 28px;
}
.brand,
.footer-brand {
  color: var(--orange);
  font-weight: var(--weight-heavy);
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
}
.brand { font-size: clamp(1.9rem, 2.3vw, 2.6rem); }
.footer-brand { font-size: 1.1rem; }
.nav-cluster {
  margin-left: auto;
  gap: clamp(28px, 3vw, 52px);
}
.nav-links { gap: clamp(28px, 2.8vw, 46px); }
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 620;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 99px;
  background: transparent;
}
.nav-link:hover::after,
.nav-link.is-active::after { background: var(--orange); }
.join-cta {
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 0.90rem;
  font-weight: var(--weight-action);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 14px 26px color-mix(in srgb, var(--orange) 22%, transparent);
}
.join-cta:hover {
  background: var(--orange-strong);
  border-color: var(--orange-strong);
  color: #fff;
}
.arrow { margin-left: 8px; font-size: 1.15em; }
.theme-toggle {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  color: var(--text);
  cursor: pointer;
}
.theme-toggle:hover {
  border-color: var(--orange);
  color: var(--orange-strong);
}
.theme-icon {
  width: 22px;
  height: 22px;
}
.theme-icon svg {
  display: block;
  width: 22px;
  height: 22px;
}
.theme-icon-sun { display: none; }
.theme-icon-moon { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .theme-icon-sun { display: block; }
  :root:not([data-theme]) .theme-icon-moon { display: none; }
}
:root[data-theme="dark"] .theme-icon-sun { display: block; }
:root[data-theme="dark"] .theme-icon-moon { display: none; }
:root[data-theme="light"] .theme-icon-sun { display: none; }
:root[data-theme="light"] .theme-icon-moon { display: block; }
.mobile-menu-link { display: none; }

.hero {
  position: relative;
  display: grid;
  width: min(1120px, calc(100% - 88px));
  grid-template-columns: max-content minmax(0, 650px);
  justify-content: center;
  gap: clamp(28px, 3vw, 48px);
  align-items: center;
  padding: clamp(26px, 4vw, 58px) 0 0;
}
.hero::after {
  display: none;
}
.bee-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.bee-art {
  margin: 0;
  color: var(--text);
  font-family: var(--mono);
  font-size: clamp(6.8px, 0.65vw, 10.4px);
  line-height: 1.02;
  letter-spacing: -0.08em;
  white-space: pre;
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
}
.section-eyebrow {
  margin: 0 0 12px;
  color: var(--orange-strong);
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: var(--weight-heavy);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.hero h1 {
  width: min(100%, 650px);
  margin: 0;
  color: var(--text);
  font-size: clamp(2.3rem, 3.45vw, 4.55rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: var(--weight-heavy);
}
.hero h1 span { color: var(--orange); white-space: nowrap; }
.orange-rule {
  width: 112px;
  height: 3px;
  margin: 22px 0 22px;
  border-radius: 99px;
  background: var(--orange);
}
.hero-kicker {
  max-width: 650px;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.25rem, 1.72vw, 1.86rem);
  line-height: 1.36;
  font-weight: 560;
}
.hero-support {
  max-width: 660px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  line-height: 1.62;
}
.agent-invite {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  width: min(650px, 100%);
  margin: 28px 0 0;
  padding: 15px 20px;
  border: 1px solid color-mix(in srgb, var(--orange) 78%, var(--line));
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  box-shadow: var(--shadow-soft);
}
.invite-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--orange) 55%, var(--line));
  color: var(--orange);
  background: var(--orange-soft);
}
.invite-icon-mask {
  display: block;
  width: 28px;
  height: 28px;
  background: currentColor;
  -webkit-mask-image: url("assets/icons/robot-510167.svg");
  mask-image: url("assets/icons/robot-510167.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.agent-invite p {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.02rem, 1.24vw, 1.28rem);
  line-height: 1.42;
  font-weight: 520;
}
.agent-invite strong { color: var(--orange-strong); font-weight: var(--weight-heavy); }
.agent-invite a { text-underline-offset: 0.16em; }

.society-section,
.layer-section,
.outcome-section {
  margin-top: clamp(26px, 4vw, 58px);
}
.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.62fr);
  gap: clamp(22px, 4vw, 62px);
  align-items: end;
  margin-bottom: 22px;
}
.section-header h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 3vw, 3.18rem);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: var(--weight-heavy);
}
.section-header h2 span {
  color: var(--orange);
  white-space: nowrap;
}
.section-header p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  line-height: 1.58;
}
.benefit-grid,
.layer-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}
.benefit-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.layer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.benefit-card,
.layer-card {
  min-width: 0;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 24px 28px;
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  text-align: center;
}
.api-feature-icon,
.contact-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: color-mix(in srgb, currentColor 11%, var(--surface));
}
.benefit-icon,
.layer-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: var(--orange);
}
.benefit-icon svg,
.benefit-icon-mask,
.layer-icon-mask {
  width: 50px;
  height: 50px;
}
.benefit-icon-mask,
.layer-icon-mask {
  display: block;
  background: currentColor;
  -webkit-mask-image: var(--card-icon-url);
  mask-image: var(--card-icon-url);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.icon-collaboration { --card-icon-url: url("assets/icons/businessman.svg"); }
.icon-bubbles { --card-icon-url: url("assets/icons/bubbles.svg"); }
.icon-diploma-certificate { --card-icon-url: url("assets/icons/diploma-certificate.svg"); }
.icon-business-finance { --card-icon-url: url("assets/icons/graph-chart-3.svg"); }
.icon-team-robots { --card-icon-url: url("assets/icons/chat-conversation.svg"); }
.icon-checklist { --card-icon-url: url("assets/icons/checklist.svg"); }
.icon-id-card { --card-icon-url: url("assets/icons/id-card.svg"); }
.icon-trophy { --card-icon-url: url("assets/icons/trophy.svg"); }
.icon-orange { color: var(--orange); }
.icon-green { color: var(--green); }
.icon-blue { color: var(--blue); }
.icon-amber { color: var(--amber); }
.icon-teal { color: var(--teal); }
.benefit-card h3,
.layer-card h3 {
  margin: 18px 0 10px;
  color: var(--text);
  font-size: clamp(1.02rem, 1.1vw, 1.16rem);
  line-height: 1.22;
  font-weight: var(--weight-strong);
}
.benefit-card p,
.layer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}
.layer-header {
  display: block;
  text-align: center;
}
.outcome-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: center;
  margin-bottom: clamp(34px, 6vw, 78px);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid color-mix(in srgb, var(--green) 38%, var(--line));
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: var(--shadow-soft);
}
.outcome-section h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.82rem, 2.4vw, 2.62rem);
  line-height: 1.08;
  font-weight: var(--weight-heavy);
}
.outcome-section > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.24vw, 1.25rem);
  line-height: 1.58;
}

.site-footer {
  min-height: 70px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
}
.footer-bar {
  justify-content: space-between;
  gap: 18px;
}
.footer-links {
  justify-content: center;
  gap: clamp(14px, 3vw, 40px);
  color: var(--text);
  font-size: 0.82rem;
}
.footer-links a,
.footer-mail { text-decoration: none; white-space: nowrap; }
.footer-links span { color: var(--soft); }
.footer-mail {
  justify-content: flex-end;
  gap: 11px;
  color: var(--text);
  font-size: 0.82rem;
}
.footer-mail svg { width: 22px; height: 22px; color: var(--orange); }

.api-main { padding: 6px 0 0; }
.api-shell,
.legal-shell {
  width: min(850px, calc(100% - 104px));
  margin: 0 auto;
}
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 18px 0 18px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-strong);
  font-size: 0.82rem;
  font-weight: 560;
}
.api-shell h1,
.legal-shell h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.9rem, 6.3vw, 4.45rem);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: var(--weight-heavy);
}
.last-updated {
  margin: 13px 0 15px;
  color: var(--soft);
  font-size: 0.88rem;
}
.api-intro,
.legal-intro {
  max-width: 620px;
  margin: 0 0 32px;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.64;
}
.legal-intro { margin: 13px 0 32px; }
.api-card,
.contact-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 97%, transparent);
  box-shadow: var(--shadow-soft);
}
.api-card {
  min-height: 318px;
  display: grid;
  grid-template-columns: 212px minmax(0, 1fr);
  gap: 25px;
  align-items: center;
  padding: 34px 38px;
}
.api-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 235px;
}
.dot-ring {
  width: 164px;
  height: 164px;
  border-radius: 50%;
  background-image: radial-gradient(var(--orange) 1.1px, transparent 1.4px);
  background-size: 14px 14px;
  mask-image: radial-gradient(circle, transparent 38%, black 39%, black 70%, transparent 71%);
  opacity: 0.76;
}
.brace-mark {
  position: absolute;
  top: 71px;
  color: var(--orange);
  font-size: 4.4rem;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.api-badge {
  position: absolute;
  bottom: 16px;
  padding: 11px 34px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-strong);
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
}
.api-card-copy h2 {
  margin: 0 0 13px;
  color: var(--text);
  font-size: clamp(1.65rem, 3.2vw, 2.12rem);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: var(--weight-strong);
}
.api-card-copy > p {
  margin: 0 0 27px;
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.56;
}
.api-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 23px 28px;
}
.api-feature {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
}
.api-feature-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  color: var(--orange);
}
.api-feature h3 {
  margin: 0 0 5px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.18;
  font-weight: 700;
}
.api-feature p {
  margin: 0;
  color: var(--text);
  font-size: 0.80rem;
  line-height: 1.52;
}
.contact-card {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 94px 1px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 27px 30px;
}
.contact-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto;
  border-radius: 50%;
  color: var(--orange);
}
.contact-divider { width: 1px; height: 70px; background: var(--line); }
.contact-copy h2 {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.22;
}
.contact-copy p {
  margin: 0;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.52;
}
.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 45px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--orange-strong);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}
.contact-button svg { width: 22px; height: 22px; color: var(--orange); }
.check-back {
  margin: 27px 0 28px;
  color: var(--text);
  text-align: center;
  font-size: 0.92rem;
}
.check-back span { color: var(--orange); font-size: 1.15em; }
.legal-main { padding: 18px 0 0; }
.legal-card { padding: 34px 40px; }
.legal-card h2 {
  margin: 30px 0 10px;
  color: var(--text);
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: var(--weight-strong);
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card p,
.legal-card li { color: var(--text); }
.legal-card a { color: var(--orange-strong); }
.notice {
  margin: 0 0 24px;
  padding: 14px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--orange-soft);
}

@media (max-width: 1180px) {
  .site-frame { width: min(100% - 56px, 1060px); }
  .nav-bar,
  .hero { width: min(100% - 56px, 1060px); }
  .hero {
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 30px;
  }
  .benefit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .layer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .site-frame,
  .api-shell,
  .legal-shell { width: min(100% - 36px, 720px); }
  .site-header {
    min-height: 66px;
    border-bottom: 1px solid var(--line);
  }
  .nav-bar {
    min-height: 66px;
    justify-content: space-between;
    gap: 16px;
  }
  .brand { font-size: 1.7rem; }
  .theme-toggle {
    width: 36px;
    height: 36px;
    margin-left: auto;
  }
  .nav-cluster { display: none; }
  .mobile-menu-link {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    color: var(--text);
    text-decoration: none;
  }
  .mobile-menu-link::before,
  .mobile-menu-link::after,
  .mobile-menu-link span {
    content: "";
    position: absolute;
    right: 4px;
    width: 24px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
  }
  .mobile-menu-link::before { top: 10px; }
  .mobile-menu-link span { top: 17px; }
  .mobile-menu-link::after { top: 24px; }
  .hero {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    width: min(100% - 36px, 720px);
    min-height: 0;
    padding: 26px 0 24px;
    gap: 20px;
  }
  .hero::after { display: none; }
  .hero-copy { max-width: none; }
  .hero h1 {
    font-size: clamp(1.55rem, 6.4vw, 2.85rem);
    line-height: 1.03;
  }
  .hero-kicker {
    font-size: clamp(1rem, 4vw, 1.25rem);
    line-height: 1.42;
  }
  .hero-support {
    font-size: clamp(0.94rem, 3.5vw, 1.02rem);
    line-height: 1.52;
  }
  .orange-rule {
    width: 82px;
    margin: 14px 0 14px;
  }
  .agent-invite {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    margin-top: 18px;
    padding: 12px 13px;
  }
  .invite-icon {
    width: 44px;
    height: 44px;
  }
  .invite-icon-mask {
    width: 24px;
    height: 24px;
  }
  .agent-invite p {
    font-size: clamp(0.92rem, 3.8vw, 1.02rem);
    line-height: 1.36;
  }
  .bee-panel {
    display: none;
  }
  .section-header,
  .outcome-section,
  .api-card,
  .contact-card {
    grid-template-columns: 1fr;
  }
  .section-header {
    gap: 8px;
    margin-bottom: 14px;
  }
  .section-header h2 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }
  .society-section,
  .layer-section,
  .outcome-section {
    margin-top: 20px;
  }
  .benefit-grid,
  .layer-grid,
  .api-feature-grid {
    grid-template-columns: 1fr;
  }
  .benefit-card,
  .layer-card {
    min-height: 0;
    padding: 18px 16px;
  }
  .benefit-icon,
  .layer-icon {
    width: 58px;
    height: 58px;
  }
  .benefit-icon svg,
  .benefit-icon-mask,
  .layer-icon-mask {
    width: 38px;
    height: 38px;
  }
  .benefit-card h3,
  .layer-card h3 {
    margin: 10px 0 5px;
    font-size: clamp(0.98rem, 4vw, 1.08rem);
  }
  .benefit-card p,
  .layer-card p {
    font-size: clamp(0.86rem, 3.6vw, 0.94rem);
    line-height: 1.38;
  }
  .outcome-section {
    padding: 20px;
    margin-bottom: 22px;
  }
  .contact-divider { display: none; }
  .site-footer {
    min-height: auto;
    display: block;
    margin-top: 11px;
    padding: 0 0 18px;
  }
  .footer-bar { display: block; }
  .footer-brand { display: none; }
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    justify-content: flex-start;
    font-size: 0.96rem;
  }
  .footer-links span { display: none; }
  .footer-links a,
  .footer-mail {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 39px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    text-decoration: none;
  }
  .footer-links a::after,
  .footer-mail::after {
    content: ">";
    margin-left: auto;
    color: var(--muted);
    font-weight: var(--weight-action);
  }
  .footer-mail {
    justify-content: flex-start;
    gap: 0;
    font-size: 0.96rem;
  }
  .footer-mail svg {
    flex: 0 0 36px;
    width: 21px;
    height: 21px;
  }
}

@media (max-width: 430px) {
  .site-frame,
  .api-shell,
  .legal-shell { width: min(100% - 24px, 390px); }
  .section-eyebrow { font-size: 0.68rem; }
  .hero { padding-top: 18px; }
  .hero h1 { font-size: clamp(1.35rem, 7.35vw, 1.8rem); }
  .hero-support { display: none; }
  .agent-invite { align-items: start; }
  .bee-art { font-size: clamp(3px, 1.12vw, 4.1px); }
  .benefit-card,
  .layer-card,
  .outcome-section { border-radius: 8px; }
  .api-card,
  .contact-card,
  .legal-card { padding: 22px; }
}
