:root {
  --bg: #ffffff;
  --surface: #f9f9f9;
  --surface-alt: #f5f6f8;
  --text: #101218;
  --muted: #6e7687;
  --line: rgba(16, 18, 24, 0.06);
  --blue: #0a7cff;
  --blue-deep: #0062f5;
  --orange: #f55d3c;
  --pink: #ff30ff;
  --cyan: #0bbfbf;
  --shadow-soft: 0 -4px 34px rgba(51, 160, 255, 0.2);
  --shadow-card: 0 20px 60px rgba(22, 33, 66, 0.08);
  --radius-xl: 60px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1170px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
}

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
}

.brand-mark-glyph {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-wordmark {
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.logo-wordmark-blue {
  color: #107cfa;
}

.logo-wordmark-orange {
  color: #f55d3c;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  color: #4e5564;
}

.desktop-nav a:hover,
.mobile-menu a:hover,
.social-links a:hover {
  color: var(--blue-deep);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.demo-button,
.primary-pill,
.light-pill,
.agent-button,
.follow-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.demo-button:hover,
.primary-pill:hover,
.light-pill:hover,
.agent-button:hover,
.follow-button:hover {
  transform: translateY(-1px);
}

.demo-button {
  min-width: 132px;
  height: 40px;
  padding: 0 20px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(18, 33, 73, 0.08);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.96);
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  padding: 0 16px 18px;
  border-top: 1px solid rgba(16, 18, 24, 0.06);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-shell {
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 252, 0.92)),
    linear-gradient(135deg, rgba(248, 210, 205, 0.28), rgba(173, 205, 255, 0.2));
  box-shadow: 0 24px 60px rgba(18, 33, 73, 0.12);
  backdrop-filter: blur(18px);
}

.mobile-menu-head {
  padding: 4px 4px 16px;
}

.mobile-menu-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu-head p {
  margin: 14px 0 0;
  color: #6e7687;
  font-size: 14px;
  line-height: 1.6;
}

.mobile-menu-links {
  display: grid;
  gap: 10px;
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 0 18px;
  border: 1px solid rgba(16, 18, 24, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: #2d3442;
  font-size: 19px;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(18, 33, 73, 0.05);
}

.mobile-menu-arrow {
  color: #8c96a8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.mobile-menu-foot {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.mobile-menu-cta,
.mobile-menu-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 600;
}

.mobile-menu-cta {
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff;
}

.mobile-menu-secondary {
  border: 1px solid rgba(16, 18, 24, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: #485061;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 980px;
  padding: 88px 0 80px;
  background: #f6f6f7;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(249, 212, 206, 0.32) 12%, rgba(171, 202, 255, 0.4) 58%, rgba(150, 231, 229, 0.46) 100%),
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0) 64%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  padding-top: 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 8px 18px;
  border: 1px solid #f5c1b5;
  border-radius: 999px;
  background: #fff5f2;
  color: var(--orange);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1161px;
  margin: 28px 0 0;
  font-size: clamp(48px, 8vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.hero .accent {
  color: var(--orange);
}

.hero-subtitle {
  margin: 34px 0 0;
  font-size: clamp(21px, 2vw, 24px);
  line-height: 1.5;
}

.hero-copy {
  max-width: 1161px;
  margin: 12px 0 0;
  color: #1a1f2b;
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 52px;
}

.primary-pill {
  min-width: 213px;
  height: 43px;
  padding: 0 28px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 500;
}

.play-badge {
  width: 36px;
  height: 36px;
}

.surface-section {
  position: relative;
  margin-top: -92px;
  padding: 143px 0 120px;
  background: var(--surface);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: var(--shadow-soft);
}

.section {
  padding: 120px 0;
}

.agents-section {
  background: #fff;
}

.how-section {
  background: #f8f9fd;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.section-heading-left {
  justify-items: start;
  text-align: left;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 40px);
  line-height: 1.2;
  color: #272b34;
}

.section-heading p {
  margin: 0;
  color: #79839a;
  font-size: 15.5px;
  line-height: 1.67;
}

.why-grid,
.agent-grid,
.stats-grid {
  display: grid;
  gap: 32px;
}

.why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 56px;
  gap: 24px;
}

.why-card {
  padding: 24px 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  background: var(--surface);
  text-align: center;
}

.feature-icon {
  width: 74px;
  height: 56px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
}

.feature-icon img {
  max-width: 74px;
  max-height: 56px;
}

.feature-icon-indigo img {
  width: 40px;
  height: 40px;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.why-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}

.agent-content h3,
.step h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.why-card p {
  margin: 24px 0 0;
  color: #79839a;
  font-size: 15.5px;
  line-height: 1.67;
}

.agents-section .section-heading {
  gap: 12px;
}

.agent-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 56px;
}

.agent-card {
  display: flex;
  flex-direction: column;
  min-height: 429px;
  padding: 24px 16px;
  border: 1px solid #e4e5e7;
  border-radius: 12px;
  background: #fff;
}

.agent-icon {
  width: 64px;
  height: 64px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 16px;
  overflow: hidden;
}

.agent-icon img {
  width: 64px;
  height: 64px;
  display: block;
  object-fit: contain;
}

.agent-icon-full {
  position: relative;
  z-index: 1;
}

.neon-cyan {
  box-shadow: 0 6px 16px -6px rgba(0, 223, 223, 0.32);
}

.neon-pink {
  box-shadow: 0 6px 16px -6px rgba(255, 51, 255, 0.48);
}

.neon-orange {
  box-shadow: 0 6px 16px -6px rgba(255, 133, 51, 0.48);
}

.agent-content {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.agent-content h3 {
  font-size: 18px;
  line-height: 1.33;
  letter-spacing: -0.01em;
}

.agent-role {
  margin: 0;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.agent-role.pink,
.agent-price.pink {
  color: var(--pink);
}

.agent-role.orange,
.agent-price.orange {
  color: #f5822f;
}

.agent-copy {
  margin: 10px 0 0;
  color: #79839a;
  font-size: 15px;
  line-height: 1.67;
}

.agent-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #efeff0;
}

.agent-price {
  color: var(--cyan);
  font-size: 24px;
  font-weight: 700;
  line-height: 20px;
}

.agent-meta {
  margin-top: 4px;
  color: #74767e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.agent-button {
  width: 100%;
  height: 65px;
  margin-top: 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #d7deff;
  font-size: 16px;
  font-weight: 600;
}

.agent-button.is-disabled {
  opacity: 0.72;
  cursor: not-allowed;
  pointer-events: none;
  filter: saturate(0.78);
}

.how-layout,
.enterprise-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  gap: 64px;
}

.how-visual {
  position: relative;
  min-height: 648px;
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.2px);
}

.blob-a {
  top: 0;
  left: 131px;
  width: 139px;
  height: 149px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 190, 225, 0.55), rgba(255, 255, 255, 0));
}

.blob-b {
  left: 126px;
  bottom: 123px;
  width: 185px;
  height: 195px;
  background: radial-gradient(circle at 50% 50%, rgba(169, 214, 255, 0.5), rgba(255, 255, 255, 0));
}

.mock-card,
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  box-shadow: 0 26px 60px rgba(18, 33, 73, 0.14);
  backdrop-filter: blur(16px);
}

.market-card {
  top: 8px;
  left: 169px;
  width: 350px;
  padding: 30px;
}

.mini-window-bar {
  width: 116px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #dce7ff, #f4f6fc);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.market-square {
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.8);
}

.market-square.cyan {
  background: linear-gradient(145deg, rgba(0, 223, 223, 0.5), rgba(255, 255, 255, 0.85));
}

.market-square.pink {
  background: linear-gradient(145deg, rgba(255, 51, 255, 0.42), rgba(255, 255, 255, 0.85));
}

.market-square.orange {
  background: linear-gradient(145deg, rgba(255, 153, 74, 0.46), rgba(255, 255, 255, 0.9));
}

.market-square.blue {
  background: linear-gradient(145deg, rgba(31, 150, 255, 0.42), rgba(255, 255, 255, 0.9));
}

.mock-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  font-size: 15px;
  color: #5b6372;
}

.tiny-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  height: 37px;
  padding: 0 18px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.tiny-button.wide {
  min-width: 100%;
}

.subscribe-card {
  left: 0;
  bottom: 42px;
  width: 230px;
  padding: 22px;
}

.connect-card {
  top: 132px;
  right: 50px;
  width: 166px;
  padding: 22px 20px;
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  margin-bottom: 14px;
}

.avatar-orange {
  background: linear-gradient(145deg, rgba(255, 153, 74, 0.45), rgba(255, 255, 255, 0.9));
}

.floating-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 10px;
}

.social-dots {
  display: flex;
  gap: 8px;
}

.social-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #b9bfcb;
}

.how-copy {
  padding-top: 4px;
}

.how-copy .section-heading {
  gap: 12px;
}

.steps {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
}

.step-icon {
  width: 60px;
  min-height: 155px;
  display: grid;
  place-items: center;
  align-self: stretch;
  padding: 18px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.12);
}

.step-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  align-self: start;
}

.step-tag {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef4ff;
  color: #6288ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.step h3 {
  margin-top: 0;
  font-size: 20px;
  line-height: 1.2;
}

.step p {
  margin: 10px 0 0;
  color: #79839a;
  font-size: 15.5px;
  line-height: 1.67;
}

.enterprise-section {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  color: #fff;
  background: linear-gradient(90deg, #1f7ff0 0%, #1e7cf2 52%, #1b79ef 100%);
}

.enterprise-section .container {
  width: min(calc(100% - 32px), 1210px);
}

.enterprise-layout {
  grid-template-columns: 556px 590px;
  align-items: center;
  gap: 64px;
}

.enterprise-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 86% 38%, rgba(255, 255, 255, 0.13) 0 24%, rgba(255, 255, 255, 0) 24.5%),
    radial-gradient(circle at 86% 38%, rgba(255, 255, 255, 0.08) 0 38%, rgba(255, 255, 255, 0) 38.5%);
  pointer-events: none;
}

.enterprise-section::after {
  content: "";
  position: absolute;
  top: -16px;
  right: -349px;
  width: 1186px;
  height: 1186px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0) 0 33%, rgba(255, 255, 255, 0.12) 33.1% 50%, rgba(255, 255, 255, 0) 50.1%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04) 62%, rgba(255, 255, 255, 0) 62.1%);
  pointer-events: none;
}

.enterprise-copy,
.enterprise-panel {
  position: relative;
  z-index: 1;
}

.enterprise-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.enterprise-copy h2 {
  margin: 16px 0 0;
  font-size: 50px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.enterprise-copy p {
  margin: 18px 0 0;
  max-width: 556px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.8;
}

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

.enterprise-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
}

.list-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.list-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.light-pill {
  min-width: 279px;
  height: 48px;
  margin-top: 27px;
  padding: 0 40px;
  background: #fff;
  color: #0062f5;
  font-size: 16px;
  font-weight: 700;
  box-shadow: none;
}

.enterprise-panel {
  position: relative;
  width: 590px;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(180deg, rgba(74, 125, 245, 0.56), rgba(54, 111, 239, 0.7));
  box-shadow: 0 24px 34px #1650ce;
}

.status-chip,
.security-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  z-index: 2;
  box-shadow: 0 14px 28px rgba(18, 33, 73, 0.18);
  white-space: nowrap;
}

.status-chip {
  position: absolute;
  top: -42px;
  right: -53px;
  width: 260px;
  background: #31d44a;
  color: #fff;
}

.security-chip {
  position: absolute;
  bottom: -34px;
  left: -119px;
  width: 240px;
  background: #ff7a47;
  color: #fff;
}

.panel-image {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.06);
}

.panel-image img {
  width: 100%;
  height: 275px;
  object-fit: cover;
}

.stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
  margin-top: 20px;
}

.stat-box {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 12px;
  align-items: center;
  min-height: 91px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.2);
}

.stat-box.pink,
.stat-box.lime,
.stat-box.violet {
  background: rgba(255, 255, 255, 0.2);
}

.stat-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.stat-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.stat-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.stat-copy strong {
  display: block;
  font-size: 24px;
  line-height: 32px;
}

.stat-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 15px;
}

.stat-box .stat-icon {
  background: #80f6ff;
}

.stat-box.pink .stat-icon {
  background: #fbd4ff;
}

.stat-box.lime .stat-icon {
  background: #faffd7;
}

.stat-box.violet .stat-icon {
  background: #ffe2cd;
}

.brand-section {
  position: relative;
  overflow: hidden;
  padding: 78px 0 70px;
  background: #fcfcfd;
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 24, 34, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 24, 34, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.2));
}

.brand-orbs {
  display: none;
}

.brand-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.brand-coin {
  width: 82px;
  height: 82px;
  margin-bottom: 32px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-coin-logo {
  width: 82px;
  height: 82px;
  display: block;
}

.brand-content h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.2;
}

.brand-content p {
  max-width: 900px;
  margin: 18px 0 0;
  color: #4a5262;
  font-size: 15px;
  line-height: 1.7;
}

.follow-button {
  min-width: 155px;
  height: 44px;
  margin-top: 30px;
  padding: 0 24px;
  background: linear-gradient(90deg, #0a7cff 0%, #0a7cff 100%);
  color: #fff;
  box-shadow:
    0 1px 3px rgba(10, 124, 255, 0.24),
    0 2px 6px rgba(10, 124, 255, 0.24),
    0 4px 8px rgba(10, 124, 255, 0.12),
    0 16px 32px -8px rgba(10, 124, 255, 0.48);
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.social-links a {
  display: inline-flex;
  width: 28px;
  height: 28px;
}

.social-links img {
  width: 28px;
  height: 28px;
}

.copyright-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 16px;
  text-align: center;
  color: #fff;
  background: var(--orange);
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-block;
  }

  .hero {
    min-height: auto;
    padding-bottom: 140px;
  }

  .why-grid,
  .agent-grid,
  .how-layout,
  .enterprise-layout {
    grid-template-columns: 1fr;
  }

  .how-layout,
  .enterprise-layout {
    gap: 48px;
  }

  .enterprise-section .container {
    width: min(calc(100% - 32px), 1170px);
  }

  .how-visual {
    order: 2;
    min-height: 540px;
  }

  .how-copy {
    order: 1;
  }

  .enterprise-panel {
    width: 100%;
  }

  .status-chip {
    right: 0;
  }

  .security-chip {
    left: 0;
  }
}

@media (max-width: 768px) {
  .nav {
    min-height: 72px;
  }

  .brand {
    gap: 10.5px;
  }

  .brand-mark {
    width: 31.5px;
    height: 31.5px;
  }

  .logo-wordmark {
    font-size: 21px;
  }

  .demo-button {
    display: none;
  }

  .hero {
    padding: 48px 0 110px;
  }

  .hero-content {
    padding-top: 22px;
  }

  .eyebrow {
    font-size: 12px;
    padding: 7px 14px;
  }

  .hero h1 {
    max-width: 14ch;
    margin-top: 22px;
    font-size: 48px;
    line-height: 1.08;
    letter-spacing: -0.05em;
  }

  .hero-subtitle {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.56;
  }

  .hero-copy {
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
  }

  .primary-pill {
    width: 100%;
    min-width: 0;
  }

  .surface-section {
    margin-top: -48px;
    padding: 84px 0 72px;
    border-radius: 28px 28px 0 0;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .enterprise-copy h2,
  .brand-content h2 {
    font-size: 34px;
  }

  .section-heading p,
  .why-card p,
  .agent-copy,
  .step p,
  .enterprise-copy p,
  .brand-content p {
    font-size: 14px;
  }

  .why-grid,
  .agent-grid {
    gap: 16px;
    margin-top: 36px;
  }

  .agent-card {
    min-height: auto;
  }

  .how-visual {
    min-height: 440px;
  }

  .market-card {
    top: 14px;
    left: 50%;
    width: min(290px, calc(100vw - 96px));
    transform: translateX(-35%);
    padding: 20px;
  }

  .subscribe-card {
    left: 10px;
    bottom: 8px;
    width: 166px;
    padding: 18px;
  }

  .connect-card {
    top: 88px;
    right: 6px;
    width: 136px;
    padding: 18px;
  }

  .floating-title {
    font-size: 20px;
  }

  .step {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .step-icon {
    width: 44px;
    min-height: 132px;
    padding: 14px 10px;
    border-radius: 22px;
  }

  .step-icon img {
    width: 20px;
    height: 20px;
  }

  .enterprise-section,
  .brand-section {
    padding: 72px 0;
  }

  .enterprise-section {
    padding-bottom: 96px;
  }

  .enterprise-panel {
    padding: 18px;
    margin-top: 18px;
  }

  .status-chip {
    top: -30px;
    right: 12px;
    width: auto;
    max-width: calc(100% - 24px);
    height: 44px;
    padding: 0 14px;
    font-size: 13px;
  }

  .security-chip {
    bottom: -30px;
    left: 12px;
    width: auto;
    max-width: calc(100% - 24px);
    height: 44px;
    padding: 0 14px;
    font-size: 13px;
  }

  .panel-image img {
    height: 180px;
  }

  .stats-grid {
    gap: 10px;
  }

  .stat-box {
    grid-template-columns: 28px 1fr;
    min-height: 58px;
    padding: 10px 12px;
  }

  .stat-icon {
    width: 28px;
    height: 28px;
  }

  .stat-icon img {
    width: 18px;
    height: 18px;
  }

  .copyright-bar {
    min-height: 68px;
    font-size: 13px;
    line-height: 1.5;
  }
}
