:root {
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  background: #faf8f5;
}

.agent-marketing-home {
  --ink: #1c1c1e;
  --muted: #696370;
  --soft: #8e8895;
  --purple: #5d4d83;
  --purple-light: #b49ccc;
  --purple-pale: #d7bff7;
  --paper: #faf8f5;
  --paper-card: #fcfbf9;
  --night: #11101a;
  --night-card: rgba(33, 28, 45, 0.93);
  --night-text: #f2ebfb;
  --night-muted: #c7bfd0;
  --line: rgba(93, 77, 131, 0.16);
  --night-line: rgba(192, 173, 221, 0.2);
  --max: 1240px;
  --header-height: 64px;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Merriweather Sans", "PingFang SC", "Microsoft YaHei", system-ui,
    -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

.agent-marketing-home,
.agent-marketing-home * {
  box-sizing: border-box;
}

.agent-marketing-home a {
  color: inherit;
}

.agent-marketing-home img {
  display: block;
  max-width: 100%;
}

.agent-marketing-home button {
  font: inherit;
}

.agent-marketing-home .skip-link {
  position: fixed;
  top: -64px;
  left: 16px;
  z-index: 100;
  padding: 9px 14px;
  border-radius: 8px;
  background: #fff;
  color: #17111f;
}

.agent-marketing-home .skip-link:focus {
  top: 12px;
}

.agent-marketing-home .container {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
}

.agent-marketing-home .header-inner {
  width: 100%;
  max-width: 1320px;
  height: var(--header-height);
  margin: 0 auto;
  padding: 0 32px;
}

.agent-marketing-home .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  height: calc(var(--header-height) + 1px);
  border-bottom: 1px solid transparent;
  background: transparent;
  color: #eee7f7;
  backdrop-filter: saturate(140%) blur(14px);
  transition:
    background-color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.agent-marketing-home .site-header.is-section-nav {
  border-bottom-color: rgba(192, 173, 221, 0.16);
  background: rgba(17, 16, 26, 0.92);
  box-shadow: 0 7px 25px rgba(20, 14, 31, 0.22);
}

.agent-marketing-home .header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.agent-marketing-home .brand-lockup {
  display: inline-flex;
  justify-self: start;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.agent-marketing-home .official-logo {
  width: auto;
  height: 22px;
  filter: brightness(0) invert(1);
}

.agent-marketing-home .brand-product {
  padding-left: 13px;
  border-left: 1px solid rgba(192, 173, 221, 0.25);
  color: #c5b9d4;
  font-size: 14px;
}

.agent-marketing-home .official-nav,
.agent-marketing-home .section-nav {
  display: flex;
  justify-self: center;
  align-items: center;
  gap: 28px;
}

.agent-marketing-home .section-nav {
  display: none;
}

.agent-marketing-home .site-header.is-section-nav .official-nav {
  display: none;
}

.agent-marketing-home .site-header.is-section-nav .section-nav {
  display: flex;
}

.agent-marketing-home .official-nav a,
.agent-marketing-home .section-nav a {
  position: relative;
  padding: 10px 0;
  color: #c5b9d4;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.agent-marketing-home .official-nav a::after,
.agent-marketing-home .section-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.agent-marketing-home .official-nav a:hover,
.agent-marketing-home .official-nav a:focus-visible,
.agent-marketing-home .official-nav a[aria-current="page"],
.agent-marketing-home .section-nav a:hover,
.agent-marketing-home .section-nav a:focus-visible,
.agent-marketing-home .section-nav a[aria-current="location"] {
  color: #fff;
}

.agent-marketing-home .official-nav a:hover::after,
.agent-marketing-home .official-nav a:focus-visible::after,
.agent-marketing-home .official-nav a[aria-current="page"]::after,
.agent-marketing-home .section-nav a:hover::after,
.agent-marketing-home .section-nav a:focus-visible::after,
.agent-marketing-home .section-nav a[aria-current="location"]::after {
  transform: scaleX(1);
}

.agent-marketing-home .header-actions {
  display: none;
  justify-self: end;
  flex: 0 0 auto;
  align-items: center;
}

.agent-marketing-home .site-header.is-section-nav .header-actions {
  display: flex;
}

.agent-marketing-home .button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 25px;
  border: 1px solid rgba(180, 156, 204, 0.45);
  border-radius: 999px;
  background: #272031;
  color: #f2ebfb;
  box-shadow: 0 6px 22px rgba(9, 6, 15, 0.14);
  cursor: pointer;
  font-weight: 650;
  font-size: 14px;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    opacity 0.2s ease;
}

.agent-marketing-home .button:hover {
  border-color: rgba(215, 191, 247, 0.72);
  background: #31273e;
  transform: translateY(-2px);
}

.agent-marketing-home .button span[aria-hidden] {
  display: inline-block;
  transition: transform 0.18s ease;
}

.agent-marketing-home .button:hover span[aria-hidden],
.agent-marketing-home .button:focus-visible span[aria-hidden] {
  transform: translateX(3px);
}

.agent-marketing-home .header-try {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
}

.agent-marketing-home .header-try.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.agent-marketing-home .technical-dark {
  --section-ink: var(--night-text);
  --section-muted: var(--night-muted);
  background-color: var(--night);
  background-image:
    linear-gradient(rgba(17, 16, 26, 0.45), rgba(17, 16, 26, 0.62)),
    url("/assets/marketing/agent-product/agent-product-f71f1bc8f6b7.png");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: var(--section-ink);
}

.agent-marketing-home .hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 76px 0 82px;
  border-bottom: 1px solid rgba(192, 173, 221, 0.14);
}

.agent-marketing-home .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse at var(--hero-x, 79%) var(--hero-y, 3%),
    rgba(136, 112, 193, 0.1),
    transparent 65%
  );
}

.agent-marketing-home .hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 58px;
  align-items: center;
}

.agent-marketing-home .eyebrow,
.agent-marketing-home .kicker {
  margin: 0 0 18px;
  color: #c0addd;
  font:
    650 12px/1.4 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.agent-marketing-home h1,
.agent-marketing-home h2 {
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-weight: 500;
  letter-spacing: 0;
}

.agent-marketing-home h3 {
  margin: 0;
  letter-spacing: -0.015em;
}

.agent-marketing-home .hero h1 {
  max-width: 650px;
  color: #f6f0fc;
  font-size: clamp(45px, 4.2vw, 62px);
  line-height: 1.4;
}

.agent-marketing-home .hero h1 span {
  color: #c0addd;
}

.agent-marketing-home .hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #c7bfd0;
  font-size: 17px;
  line-height: 1.85;
}

.agent-marketing-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.agent-marketing-home .hero .button {
  min-height: 50px;
  padding: 0 30px;
  background: #faf8f5;
  color: #5d4d83;
}

.agent-marketing-home .hero-note {
  max-width: 650px;
  margin: 16px 0 0;
  color: #b8acc5;
  font-size: 13px;
}

.agent-marketing-home .technical-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(160, 139, 190, 0.24);
  border-radius: 18px;
  background: rgba(21, 17, 31, 0.45);
}

.agent-marketing-home .diagram-open {
  display: block;
}

.agent-marketing-home .diagram-open img {
  width: 100%;
  height: auto;
}

.agent-marketing-home .section {
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}

.agent-marketing-home .section-head {
  margin-bottom: 40px;
}

.agent-marketing-home .section h2 {
  color: var(--ink);
  font-size: clamp(34px, 3.7vw, 48px);
  line-height: 1.4;
}

.agent-marketing-home .technical-dark .section h2,
.agent-marketing-home .technical-dark h2 {
  color: var(--night-text);
}

.agent-marketing-home .section-intro {
  max-width: 850px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.agent-marketing-home .technical-dark .section-intro {
  color: var(--night-muted);
}

.agent-marketing-home #capabilities {
  padding: 84px 0 94px;
}

.agent-marketing-home #capabilities .section-head {
  margin-bottom: 36px;
}

.agent-marketing-home #capabilities .kicker {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.08em;
}

.agent-marketing-home #capabilities h2 {
  font-size: 40px;
  font-weight: 650;
  line-height: 1.4;
}

.agent-marketing-home .difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.agent-marketing-home .difference {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--night-line);
  border-radius: 18px;
  background: var(--night-card);
}

.agent-marketing-home .difference::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 11px;
  left: 24px;
  height: 1px;
  background: #b29acb;
  opacity: 0.68;
  transform: scaleX(0.12);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.agent-marketing-home .difference:hover::after {
  transform: scaleX(1);
}

.agent-marketing-home .difference .number {
  display: block;
  margin-bottom: 8px;
  color: #b49ccc;
  font:
    11px/normal ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.03em;
}

.agent-marketing-home .capability-visual {
  height: 132px;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  margin-bottom: 12px;
}

.agent-marketing-home .capability-art {
  width: 132px;
  height: 132px;
  display: block;
  background-image: url("/assets/marketing/agent-product/agent-product-a9f78f2e2904.png");
  background-position: var(--cx) var(--cy);
  background-size: 300% 300%;
  mix-blend-mode: screen;
}

.agent-marketing-home .capability-visual h3 {
  max-width: 10em;
  color: #f2ebfb;
  font-size: 21px;
  line-height: 1.55;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.agent-marketing-home .capability-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease;
}

.agent-marketing-home .title-arrow {
  display: inline-block;
  margin-left: 8px;
  color: #b49ccc;
  font: 400 16px/1 sans-serif;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.agent-marketing-home .difference:hover .capability-title-link,
.agent-marketing-home .capability-title-link:focus-visible {
  color: #d7bff7;
}

.agent-marketing-home .capability-title-link:hover .title-arrow,
.agent-marketing-home .capability-title-link:focus-visible .title-arrow {
  color: #f0e3ff;
  transform: translate(2px, -2px);
}

.agent-marketing-home .difference > p {
  min-height: 64px;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(192, 173, 221, 0.16);
  color: #c7bfd0;
  font-size: 13px;
  line-height: 1.8;
}

.agent-marketing-home #architecture,
.agent-marketing-home #sandbox,
.agent-marketing-home #skills,
.agent-marketing-home #kol-agent {
  background: #faf8f5;
}

.agent-marketing-home .architecture-map {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fcfbf9;
  box-shadow: 0 16px 45px rgba(81, 68, 100, 0.06);
}

.agent-marketing-home .architecture-map figcaption {
  padding: 16px 24px;
  border-top: 1px solid #e1d9e8;
  background: #f5f2ee;
  color: #6c6179;
  font:
    11px/1.7 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
}

.agent-marketing-home .sandbox-overview {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: center;
}

.agent-marketing-home .sandbox-overview h2 {
  max-width: 620px;
}

.agent-marketing-home .sandbox-overview h2 span {
  display: block;
}

.agent-marketing-home .sandbox-lead {
  max-width: 590px;
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.agent-marketing-home .sandbox-spec,
.agent-marketing-home .schedule-context {
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper-card);
  box-shadow: 0 18px 60px rgba(81, 68, 100, 0.08);
}

.agent-marketing-home .sandbox-status {
  color: #3d7a5f;
  font:
    10px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agent-marketing-home .sandbox-spec h3,
.agent-marketing-home .schedule-context h3 {
  margin: 14px 0 20px;
  font-size: 20px;
}

.agent-marketing-home .software-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.agent-marketing-home .software-list span {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f5f2ee;
  color: var(--muted);
  font:
    11px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
}

.agent-marketing-home .sandbox-spec > p {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 12px;
}

.agent-marketing-home .memory-layout,
.agent-marketing-home .kol-package {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: start;
}

.agent-marketing-home .tree,
.agent-marketing-home .kol-tree {
  overflow: hidden;
  border: 1px solid rgba(192, 173, 221, 0.2);
  border-radius: 18px;
  background: #211c2d;
  box-shadow: 0 18px 60px rgba(9, 6, 15, 0.15);
}

.agent-marketing-home .panel-bar {
  min-height: 45px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 17px;
  border-bottom: 1px solid rgba(192, 173, 221, 0.16);
  color: #b9a9cb;
  font:
    12px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
}

.agent-marketing-home .tree pre,
.agent-marketing-home .kol-tree pre {
  margin: 0;
  padding: 25px 27px;
  overflow: auto;
  color: #cfc6d9;
  font:
    13px/1.78 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
}

.agent-marketing-home .tree .hl,
.agent-marketing-home .kol-tree .hl {
  color: #cbb5e8;
  font-weight: 700;
}

.agent-marketing-home .memory-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 23px;
}

.agent-marketing-home .memory-point {
  padding: 19px 0;
  border-top: 1px solid rgba(192, 173, 221, 0.16);
}

.agent-marketing-home .memory-point h3 {
  color: #f2ebfb;
  font-size: 16px;
}

.agent-marketing-home .memory-point p {
  margin: 6px 0 0;
  color: #c7bfd0;
  font-size: 13px;
}

.agent-marketing-home .quote-rule {
  margin: 28px 0 0;
  padding: 22px 24px;
  border-left: 3px solid #b49ccc;
  background: rgba(36, 30, 49, 0.86);
  color: #d7bff7;
  font-size: 17px;
  font-weight: 650;
}

.agent-marketing-home .fin-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
  align-items: center;
}

.agent-marketing-home .fin-copy > p:not(.kicker) {
  color: #c7bfd0;
}

.agent-marketing-home .fin-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.agent-marketing-home .fin-fact {
  padding: 13px 0;
  border-top: 1px solid rgba(192, 173, 221, 0.16);
}

.agent-marketing-home .fin-fact strong {
  display: block;
  color: #f2ebfb;
  font-size: 14px;
}

.agent-marketing-home .fin-fact span {
  color: #b8acc5;
  font-size: 12px;
}

.agent-marketing-home .terminal {
  overflow: hidden;
  border: 1px solid rgba(183, 150, 226, 0.44);
  border-radius: 18px;
  background: #211c2d;
  color: #e8e4eb;
  box-shadow:
    0 0 0 1px rgba(158, 124, 204, 0.1),
    0 0 26px rgba(158, 124, 204, 0.13),
    0 14px 55px rgba(81, 68, 100, 0.18);
}

.agent-marketing-home .terminal pre {
  margin: 0;
  padding: 24px 26px 28px;
  overflow-x: auto;
  font:
    13px/1.75 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
}

.agent-marketing-home .terminal .prompt {
  color: #bdaae7;
}

.agent-marketing-home .terminal .comment {
  color: #b7adbf;
}

.agent-marketing-home .skill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.agent-marketing-home .skill-card {
  position: relative;
  min-height: 210px;
  padding: 27px 24px 27px 103px;
  border: 1px solid rgba(93, 77, 131, 0.16);
  border-radius: 18px;
  background: #fcfbf9;
}

.agent-marketing-home .tech-pixel {
  position: absolute;
  top: 53px;
  left: 15px;
  width: 80px;
  height: 80px;
  background-image: url("/assets/marketing/agent-product/agent-product-b00d316b8443.png");
  background-position: var(--x) var(--y);
  background-size: 300% 300%;
}

.agent-marketing-home .skill-card .type,
.agent-marketing-home .package-label {
  color: var(--purple);
  font:
    650 10px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agent-marketing-home .skill-card h3 {
  margin: 16px 0 10px;
  overflow-wrap: anywhere;
  font-size: 18px;
  line-height: 1.5;
}

.agent-marketing-home .skill-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.agent-marketing-home .kol-tree {
  border-color: var(--line);
  background: #fcfbf9;
}

.agent-marketing-home .kol-tree .panel-bar {
  border-color: var(--line);
  color: var(--soft);
}

.agent-marketing-home .kol-tree pre {
  color: #4b4653;
}

.agent-marketing-home .kol-tree .hl {
  color: var(--purple);
}

.agent-marketing-home .kol-points {
  border-top: 1px solid var(--line);
}

.agent-marketing-home .kol-point {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.agent-marketing-home .kol-point > span {
  color: #8870c1;
  font:
    11px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
}

.agent-marketing-home .kol-point h3 {
  font-size: 16px;
}

.agent-marketing-home .kol-point p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.agent-marketing-home .schedule-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.agent-marketing-home .schedule-rail {
  position: relative;
}

.agent-marketing-home .schedule-rail::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 116px;
  border-left: 1px solid rgba(192, 173, 221, 0.25);
}

.agent-marketing-home .schedule-item {
  display: grid;
  grid-template-columns: 98px 12px 1fr;
  gap: 14px;
  padding: 7px 0 28px;
}

.agent-marketing-home .schedule-item:last-child {
  padding-bottom: 0;
}

.agent-marketing-home .schedule-item time {
  padding-top: 3px;
  color: #b5a8c3;
  font:
    10px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  text-align: right;
}

.agent-marketing-home .schedule-dot {
  position: relative;
  z-index: 1;
  width: 9px;
  height: 9px;
  margin-top: 6px;
  border: 2px solid #211c2d;
  border-radius: 50%;
  background: #8870c1;
  box-shadow: 0 0 0 1px rgba(192, 173, 221, 0.25);
}

.agent-marketing-home .schedule-item h3 {
  color: #f2ebfb;
  font-size: 17px;
}

.agent-marketing-home .schedule-item p {
  margin: 6px 0 8px;
  color: #c7bfd0;
  font-size: 14px;
}

.agent-marketing-home .schedule-item code {
  color: #d7bff7;
  font:
    12px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
}

.agent-marketing-home .schedule-context {
  border-color: rgba(192, 173, 221, 0.2);
  background: #211c2d;
  color: #f2ebfb;
}

.agent-marketing-home .schedule-context .sandbox-status {
  color: #bba6d5;
}

.agent-marketing-home .schedule-context h3 {
  color: #f2ebfb;
}

.agent-marketing-home .schedule-context p {
  margin: 0;
  color: #c7bfd0;
  font-size: 14px;
}

.agent-marketing-home .schedule-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-top: 23px;
  padding-top: 18px;
  border-top: 1px solid rgba(192, 173, 221, 0.16);
}

.agent-marketing-home .schedule-flow span {
  color: #d7bff7;
  font:
    10px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
}

.agent-marketing-home .schedule-flow i {
  color: #b49ccc;
  font-style: normal;
}

.agent-marketing-home .site-footer {
  padding: 42px 0 34px;
  background: #11101a;
  color: #eee7f7;
}

.agent-marketing-home .footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1.55fr) repeat(3, minmax(140px, 1fr));
  gap: 44px;
  padding-bottom: 36px;
}

.agent-marketing-home .footer-brand img {
  width: 148px;
  height: auto;
  filter: grayscale(1) brightness(0) invert(1);
}

.agent-marketing-home .footer-brand p {
  max-width: 390px;
  margin: 20px 0 0;
  color: #bfb2cb;
  font-size: 13px;
  line-height: 1.75;
}

.agent-marketing-home .footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.agent-marketing-home .footer-column h2 {
  margin: 0 0 5px;
  color: #f2ebfb;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agent-marketing-home .footer-column a {
  color: #bfb2cb;
  font-size: 12px;
  text-decoration: none;
}

.agent-marketing-home .footer-column a:hover,
.agent-marketing-home .footer-column a:focus-visible {
  color: #fff;
}

.agent-marketing-home .footer-trust {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 12px 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(192, 173, 221, 0.16);
}

.agent-marketing-home .trust-title {
  display: block;
  color: #f2ebfb;
  font-size: 13px;
  font-weight: 650;
}

.agent-marketing-home .trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
}

.agent-marketing-home .trust-links a {
  color: #bfb2cb;
  font-size: 12px;
  text-decoration: none;
}

.agent-marketing-home .trust-links a:hover,
.agent-marketing-home .trust-links a:focus-visible {
  color: #fff;
}

.agent-marketing-home .copyright {
  margin: 0;
  color: #aa9cb7;
  font-size: 12px;
  text-align: right;
}

.agent-marketing-home .diagram-dialog {
  width: min(1500px, 96vw);
  max-width: none;
  padding: 12px;
  border: 1px solid #8870c1;
  border-radius: 14px;
  background: #15111f;
  color: #eee5f7;
}

.agent-marketing-home .diagram-dialog::backdrop {
  background: rgba(8, 5, 13, 0.75);
  backdrop-filter: blur(8px);
}

.agent-marketing-home .diagram-dialog-toolbar {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding-bottom: 10px;
  background: inherit;
}

.agent-marketing-home .diagram-dialog button {
  padding: 8px 14px;
  border: 1px solid rgba(192, 173, 221, 0.28);
  border-radius: 999px;
  background: #30253f;
  color: #eee5f7;
  cursor: pointer;
}

.agent-marketing-home .diagram-scroller {
  max-height: 80vh;
  overflow: auto;
}

.agent-marketing-home .diagram-dialog img {
  width: 100%;
  max-width: none;
}

.agent-marketing-home a:focus-visible,
.agent-marketing-home button:focus-visible {
  outline: 2px solid #b49ccc;
  outline-offset: 4px;
}

.agent-marketing-home ::selection {
  background: #bda6d6;
  color: #17111f;
}

@media (max-width: 1100px) {
  .agent-marketing-home .official-nav,
  .agent-marketing-home .section-nav {
    gap: 18px;
  }

  .agent-marketing-home .hero-grid {
    grid-template-columns: 1fr;
  }

  .agent-marketing-home .hero-copy {
    max-width: 800px;
  }

  .agent-marketing-home .difference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agent-marketing-home .skill-grid {
    grid-template-columns: 1fr;
  }

  .agent-marketing-home .skill-card {
    min-height: 145px;
    padding-left: 132px;
  }

  .agent-marketing-home .tech-pixel {
    top: 21px;
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 860px) {
  .agent-marketing-home {
    --header-height: 110px;
  }

  .agent-marketing-home .site-header {
    height: var(--header-height);
  }

  .agent-marketing-home .header-inner {
    height: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-content: center;
    gap: 4px 20px;
  }

  .agent-marketing-home .brand-lockup {
    grid-column: 1;
    grid-row: 1;
  }

  .agent-marketing-home .official-nav,
  .agent-marketing-home .section-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-content: space-between;
  }

  .agent-marketing-home .official-nav a,
  .agent-marketing-home .section-nav a {
    padding: 4px 0 7px;
    font-size: 13px;
  }

  .agent-marketing-home .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .agent-marketing-home .hero {
    min-height: 100svh;
  }

  .agent-marketing-home .memory-layout,
  .agent-marketing-home .kol-package,
  .agent-marketing-home .sandbox-overview,
  .agent-marketing-home .fin-grid,
  .agent-marketing-home .schedule-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .agent-marketing-home .footer-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 24px;
  }

  .agent-marketing-home .footer-brand {
    grid-column: 1 / -1;
  }

  .agent-marketing-home .footer-trust {
    grid-template-columns: 1fr;
  }

  .agent-marketing-home .copyright {
    text-align: left;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 104px;
  }

  .agent-marketing-home {
    --header-height: 104px;
  }

  .agent-marketing-home .container {
    width: calc(100% - 36px);
  }

  .agent-marketing-home .header-inner {
    width: 100%;
    max-width: none;
    padding-right: 18px;
    padding-left: 18px;
  }

  .agent-marketing-home .official-logo {
    width: auto;
    height: 22px;
  }

  .agent-marketing-home .brand-product {
    display: none;
  }

  .agent-marketing-home .header-try {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .agent-marketing-home .official-nav,
  .agent-marketing-home .section-nav {
    gap: 12px;
  }

  .agent-marketing-home .official-nav a,
  .agent-marketing-home .section-nav a {
    font-size: 12px;
  }

  .agent-marketing-home .technical-dark {
    background-attachment: scroll;
  }

  .agent-marketing-home .hero {
    min-height: auto;
    padding: 52px 0 58px;
  }

  .agent-marketing-home .hero h1 {
    font-size: 36px;
    line-height: 1.42;
  }

  .agent-marketing-home .hero-lead {
    font-size: 15px;
  }

  .agent-marketing-home .hero .technical-figure {
    overflow-x: auto;
  }

  .agent-marketing-home .hero .diagram-open {
    min-width: 720px;
  }

  .agent-marketing-home .section {
    padding: 58px 0;
  }

  .agent-marketing-home .section h2 {
    font-size: 31px;
  }

  .agent-marketing-home #capabilities {
    padding: 58px 0 64px;
  }

  .agent-marketing-home .difference-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .agent-marketing-home .difference {
    min-height: 0;
    padding: 24px;
  }

  .agent-marketing-home .capability-visual {
    grid-template-columns: 118px minmax(0, 1fr);
    min-height: 118px;
    gap: 15px;
  }

  .agent-marketing-home .capability-art {
    width: 118px;
    height: 118px;
  }

  .agent-marketing-home .capability-visual h3 {
    font-size: 20px;
  }

  .agent-marketing-home .difference > p {
    min-height: 0;
  }

  .agent-marketing-home .memory-points,
  .agent-marketing-home .fin-facts {
    grid-template-columns: 1fr;
  }

  .agent-marketing-home .tree pre,
  .agent-marketing-home .kol-tree pre {
    padding: 20px 16px;
    font-size: 11px;
  }

  .agent-marketing-home .skill-card {
    padding: 23px 20px 23px 108px;
  }

  .agent-marketing-home .tech-pixel {
    top: 34px;
    left: 11px;
    width: 87px;
    height: 87px;
  }

  .agent-marketing-home .schedule-item {
    grid-template-columns: 67px 10px 1fr;
    gap: 9px;
  }

  .agent-marketing-home .schedule-rail::before {
    left: 80px;
  }

  .agent-marketing-home .footer-top {
    grid-template-columns: 1fr;
  }

  .agent-marketing-home .footer-brand {
    grid-column: auto;
  }

  .agent-marketing-home .footer-column {
    gap: 8px;
  }

  .agent-marketing-home .copyright {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .agent-marketing-home,
  .agent-marketing-home *,
  .agent-marketing-home *::before,
  .agent-marketing-home *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .agent-marketing-home .technical-dark {
    background-attachment: scroll;
  }
}
