@font-face {
  font-family: "Alibaba PuHuiTi";
  src: url("/static/static/plug/font/Alibaba-PuHuiTi-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --oaim-blue: #246bfe;
  --oaim-blue-strong: #1554d1;
  --oaim-ink: #101828;
  --oaim-slate: #475467;
  --oaim-paper: #f7f9fc;
  --oaim-line: #dfe5ee;
  --oaim-mint: #12b76a;
  --ink-soft: #344054;
  --muted: #667085;
  --muted-light: #98a2b3;
  --surface: #ffffff;
  --line-strong: #cfd6e1;
  --cyan: #20b8d5;
  --amber: #f79009;
  --night: #101828;
  --night-soft: #1d2939;
  --radius: 10px;
  --shadow-soft: 0 18px 48px rgba(16, 24, 40, .08);
  --shadow-stage: 0 26px 64px rgba(16, 24, 40, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--oaim-ink);
  background: var(--oaim-paper);
  font-family: "Alibaba PuHuiTi", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

.site-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(228, 231, 236, .9);
  background: rgba(247, 249, 252, .94);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-lockup img {
  width: 34px;
  height: 34px;
  display: block;
  border-radius: 9px;
}

.brand-name {
  color: var(--oaim-ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.brand-subtitle {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a,
.header-link {
  min-height: 38px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 7px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a:hover,
.header-link:hover {
  color: var(--oaim-blue);
  background: #edf3ff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.header-link.primary-link {
  padding-inline: 15px;
  color: #fff;
  background: var(--oaim-blue);
}

.header-link.primary-link:hover {
  color: #fff;
  background: var(--oaim-blue-strong);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--oaim-line);
  border-radius: 8px;
  color: var(--oaim-ink);
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 17px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: currentColor;
  content: "";
}

.hero {
  padding: 94px 0 92px;
  border-bottom: 1px solid var(--oaim-line);
  background: var(--oaim-paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
  gap: 76px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--oaim-blue);
  font-size: 12px;
  line-height: 18px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--oaim-ink);
  font-size: 68px;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 570px;
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.8;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  min-height: 46px;
  padding: 11px 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--oaim-ink);
  background: var(--surface);
  font-size: 14px;
  line-height: 22px;
  font-weight: 800;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: #aeb9c8;
  transform: translateY(-1px);
}

.button.primary {
  border-color: var(--oaim-blue);
  color: #fff;
  background: var(--oaim-blue);
}

.button.primary:hover {
  border-color: var(--oaim-blue-strong);
  background: var(--oaim-blue-strong);
}

.button.dark {
  border-color: rgba(255, 255, 255, .24);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.button.dark:hover {
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .14);
}

.hero-links {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.text-link {
  color: var(--ink-soft);
  text-decoration: underline;
  text-decoration-color: #c5ceda;
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--oaim-blue);
  text-decoration-color: var(--oaim-blue);
}

.hero-proof {
  margin: 44px 0 0;
  padding: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  border-top: 1px solid var(--oaim-line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof span::before {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--oaim-mint);
  content: "";
}

.hero-stage {
  position: relative;
  min-height: 560px;
  padding: 24px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--night);
  box-shadow: var(--shadow-stage);
}

.hero-stage::before {
  position: absolute;
  inset: 0;
  background: rgba(36, 107, 254, .08);
  content: "";
  pointer-events: none;
}

.stage-topline {
  position: relative;
  z-index: 1;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #cdd5df;
  font-size: 12px;
  font-weight: 750;
}

.stage-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #32d583;
  box-shadow: 0 0 0 4px rgba(50, 213, 131, .13);
}

.stage-dots {
  display: inline-flex;
  gap: 5px;
}

.stage-dots i {
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background: #667085;
}

.stage-dots i:first-child {
  background: #fdb022;
}

.stage-window {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: #f2f4f7;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .22);
}

.stage-window img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: contain;
  object-position: top center;
  background: #f2f4f7;
}

.stage-phone {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 22px;
  width: 144px;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 16px;
  background: #0b1220;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .28);
}

.stage-phone img {
  width: 100%;
  aspect-ratio: 390 / 844;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
}

.stage-note {
  position: absolute;
  z-index: 3;
  left: 24px;
  bottom: 26px;
  max-width: 240px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  color: #d0d5dd;
  background: rgba(29, 41, 57, .94);
  font-size: 12px;
  line-height: 1.55;
}

.stage-note strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 13px;
}

.section {
  padding: 108px 0;
  border-bottom: 1px solid var(--oaim-line);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin: 0 0 14px;
  color: var(--oaim-ink);
  font-size: 42px;
  line-height: 1.16;
  letter-spacing: 0;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.workflow {
  background: var(--surface);
}

.workflow-list {
  position: relative;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  list-style: none;
}

.workflow-list::before {
  position: absolute;
  top: 20px;
  left: 48px;
  right: 48px;
  height: 2px;
  background: #dbe4f0;
  content: "";
}

.workflow-item {
  position: relative;
  padding: 64px 24px 0 0;
}

.step-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #b9ccff;
  border-radius: 50%;
  background: #fff;
  color: var(--oaim-blue);
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
  box-shadow: 0 0 0 6px #f4f7ff;
}

.workflow-item h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.35;
}

.workflow-item p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.workflow-tags {
  max-width: 340px;
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.workflow-tags span {
  min-height: 28px;
  padding: 4px 9px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #dbe4f0;
  border-radius: 7px;
  color: #475467;
  background: #f8fafc;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
}

.products {
  background: var(--oaim-paper);
}

.product-tabs {
  margin-bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tab {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  color: var(--ink-soft);
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.product-tab[aria-selected="true"] {
  border-color: var(--oaim-ink);
  color: #fff;
  background: var(--oaim-ink);
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: 46px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--oaim-line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.product-copy .eyebrow {
  margin-bottom: 12px;
}

.product-copy h3 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: 0;
}

.product-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.product-points {
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.product-points li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.product-points li::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--oaim-blue);
  content: "";
}

.product-shot {
  min-width: 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid var(--oaim-line);
  border-radius: 10px;
  background: #eef2f6;
}

.product-shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: contain;
  object-position: top center;
  border-radius: 6px;
  background: #f2f4f7;
}

.widget-section {
  color: #fff;
  background: var(--night);
}

.widget-section .section-heading h2,
.widget-section .section-heading p {
  color: #fff;
}

.widget-section .section-heading p {
  color: #b7c2d0;
}

.widget-layout {
  display: grid;
  grid-template-columns: minmax(270px, .75fr) minmax(0, 1.25fr);
  gap: 54px;
  align-items: center;
}

.widget-copy h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 30px;
  line-height: 1.25;
}

.widget-copy p {
  margin: 0 0 26px;
  color: #b7c2d0;
  font-size: 15px;
  line-height: 1.8;
}

.widget-meta {
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.widget-meta li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: #b7c2d0;
  font-size: 13px;
}

.widget-meta strong {
  color: #fff;
  font-weight: 750;
}

.widget-demo-frame {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  background: #1d2939;
}

.demo-browser-bar {
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px 10px;
  color: #98a2b3;
  font-size: 11px;
}

.demo-browser-bar i {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: #667085;
}

.demo-browser-bar i:first-child {
  background: #f04438;
}

.demo-browser-bar i:nth-child(2) {
  background: #fdb022;
}

.demo-browser-bar i:nth-child(3) {
  background: #32d583;
}

.demo-browser-url {
  margin-left: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-app {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, .6fr);
  min-height: 390px;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f7fa;
}

.demo-chat {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.demo-chat-head {
  min-height: 54px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--oaim-ink);
  background: #fff;
  border-bottom: 1px solid #e7edf5;
  font-size: 14px;
  font-weight: 800;
}

.demo-avatar {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #fff;
  background: var(--oaim-blue);
  font-size: 13px;
  font-weight: 850;
}

.demo-chat-state {
  margin-left: auto;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.demo-messages {
  flex: 1;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-message {
  max-width: 76%;
  padding: 10px 12px;
  border-radius: 9px;
  color: #344054;
  background: #fff;
  box-shadow: 0 5px 15px rgba(16, 24, 40, .06);
  font-size: 13px;
  line-height: 1.5;
}

.demo-message.mine {
  align-self: flex-end;
  color: #fff;
  background: var(--oaim-blue);
}

.demo-quick-replies {
  padding: 10px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  border-top: 1px solid #e4e7ec;
  background: #fff;
}

.demo-quick-replies span {
  padding: 5px 8px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  color: #334155;
  font-size: 11px;
  white-space: nowrap;
}

.demo-compose {
  min-height: 54px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #e4e7ec;
  background: #fff;
}

.demo-compose-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  color: #667085;
  font-weight: 800;
}

.demo-compose-placeholder {
  flex: 1;
  color: #98a2b3;
  font-size: 12px;
}

.demo-send {
  padding: 7px 10px;
  border-radius: 8px;
  color: #fff;
  background: var(--oaim-blue);
  font-size: 11px;
  font-weight: 800;
}

.demo-context {
  padding: 16px;
  border-left: 1px solid #e4e7ec;
  background: #fff;
}

.demo-context h4 {
  margin: 0 0 16px;
  color: #101828;
  font-size: 13px;
}

.context-row {
  margin-bottom: 14px;
}

.context-row span {
  display: block;
  margin-bottom: 4px;
  color: #98a2b3;
  font-size: 10px;
}

.context-row strong {
  display: block;
  overflow: hidden;
  color: #344054;
  font-size: 12px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.capabilities {
  background: var(--surface);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 72px;
  border-top: 1px solid var(--oaim-line);
}

.capability-item {
  min-height: 128px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--oaim-line);
}

.capability-index {
  color: var(--oaim-blue);
  font-size: 13px;
  font-weight: 850;
}

.capability-item h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.35;
}

.capability-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.developer-band {
  color: #fff;
  background: #162033;
}

.developer-grid {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 58px;
  align-items: center;
}

.developer-band h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0;
}

.developer-band p {
  margin: 0 0 24px;
  color: #b7c2d0;
  font-size: 15px;
  line-height: 1.8;
}

.developer-steps {
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.developer-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d0d5dd;
  font-size: 14px;
}

.developer-steps b {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
}

.code-window {
  position: relative;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  background: #0b1220;
}

.code-window-top {
  min-height: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #98a2b3;
  font-size: 11px;
}

.code-window-top i {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: #667085;
}

.code-window-top i:first-child {
  background: #f04438;
}

.code-window-top i:nth-child(2) {
  background: #fdb022;
}

.code-window-top i:nth-child(3) {
  background: #32d583;
}

.code-window pre {
  margin: 18px 0 0;
  overflow-x: auto;
  color: #d0d5dd;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.75;
  white-space: pre-wrap;
}

.code-key {
  color: #7cc4ff;
}

.code-string {
  color: #9fe870;
}

.copy-code {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  color: #e4e7ec;
  background: rgba(255, 255, 255, .06);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.copy-code:hover {
  background: rgba(255, 255, 255, .14);
}

.downloads {
  background: var(--oaim-paper);
}

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

.download-item {
  min-height: 238px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--oaim-line);
  border-radius: 10px;
  background: var(--surface);
}

.download-label {
  margin-bottom: 24px;
  color: var(--oaim-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.download-item h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.35;
}

.download-item p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.download-item .button-row {
  margin-top: auto;
}

.trust-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  color: var(--muted);
  font-size: 12px;
}

.final-cta {
  padding: 92px 0;
  color: #fff;
  background: var(--oaim-blue);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.final-cta h2 {
  max-width: 650px;
  margin: 0 0 10px;
  color: #fff;
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: 0;
}

.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
}

.site-footer {
  padding: 28px 0 34px;
  color: var(--muted);
  background: var(--oaim-paper);
  font-size: 12px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a:hover {
  color: var(--oaim-blue);
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: 42px;
  }

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

  .site-shell {
    width: min(100% - 36px, 1240px);
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 68px;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.is-open .main-nav {
    position: absolute;
    top: 68px;
    right: 18px;
    left: 18px;
    padding: 10px 10px 76px;
    display: grid;
    gap: 3px;
    border: 1px solid var(--oaim-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

  .site-header.is-open .main-nav a {
    min-height: 42px;
  }

  .site-header.is-open .header-actions {
    position: absolute;
    top: 304px;
    right: 28px;
    left: 28px;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .site-header.is-open .header-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding: 64px 0 72px;
  }

  .hero-grid,
  .product-panel,
  .widget-layout,
  .developer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 720px;
    font-size: 52px;
  }

  .hero-stage {
    min-height: 500px;
  }

  .workflow-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .workflow-list::before {
    top: 0;
    bottom: 0;
    left: 20px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .workflow-item {
    min-height: 0;
    padding: 0 0 30px 58px;
  }

  .workflow-item:last-child {
    padding-bottom: 0;
  }

  .step-number {
    left: 0;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 0 5px #fff;
  }

  .workflow-tags {
    max-width: none;
  }

  .download-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .site-shell {
    width: calc(100% - 28px);
  }

  .brand-subtitle {
    display: none;
  }

  .hero {
    padding: 50px 0 58px;
  }

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

  .hero-lead {
    font-size: 16px;
    line-height: 1.75;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    gap: 12px;
  }

  .hero-stage {
    min-height: 400px;
    padding: 14px;
  }

  .stage-window {
    margin-top: 14px;
  }

  .stage-phone {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 14px 0 0 auto;
    width: min(148px, 42%);
  }

  .stage-note {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    margin-top: 12px;
  }

  .site-header.is-open .header-actions {
    position: absolute;
    top: 304px;
    right: 28px;
    left: 28px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header.is-open .header-actions .header-link {
    min-height: 40px;
    display: inline-flex;
    justify-content: center;
  }

  .site-header.is-open .header-actions .primary-link {
    color: #fff;
  }

  .site-header.is-open .header-actions .header-link:not(.primary-link) {
    color: var(--oaim-ink);
    border: 1px solid var(--oaim-line);
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2,
  .developer-band h2,
  .final-cta h2 {
    font-size: 32px;
  }

  .product-panel {
    padding: 16px;
    gap: 26px;
  }

  .product-copy h3,
  .widget-copy h3 {
    font-size: 26px;
  }

  .demo-app {
    grid-template-columns: 1fr;
  }

  .demo-context {
    display: none;
  }

  .widget-demo-frame {
    padding: 9px;
  }

  .developer-band .code-window pre {
    font-size: 11px;
  }

  .download-item {
    min-height: 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ===== v4 增强层 ===== */

body {
  background: #f8fafc;
}

.site-header {
  background: rgba(255, 255, 255, .92);
}

.header-menu {
  display: contents;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(36, 107, 254, .28), transparent);
  content: "";
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 96px;
  background: linear-gradient(180deg, #fff 0%, #f5f8ff 100%);
}

.hero-grid {
  gap: 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--oaim-blue);
}

.hero h1 {
  max-width: 590px;
  font-size: 64px;
}

.hero-lead {
  max-width: 560px;
}

.button {
  cursor: pointer;
}

.button:focus-visible,
.main-nav a:focus-visible,
.header-link:focus-visible,
.product-tab:focus-visible,
.menu-toggle:focus-visible,
.copy-code:focus-visible {
  outline: 3px solid rgba(36, 107, 254, .32);
  outline-offset: 3px;
}

.button:active {
  transform: scale(.97);
  transition: transform 80ms ease;
}

.button:disabled {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}

input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(36, 107, 254, .2);
  outline-offset: 2px;
}

input:disabled,
textarea:disabled {
  opacity: .5;
  background: #f5f5f5;
  cursor: not-allowed;
}

.button[data-widget-open]::before {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .18);
  content: "";
}

.hero-stage {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
}

.hero-stage::after {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 3;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  color: #d0d5dd;
  background: rgba(16, 24, 40, .72);
  font-size: 11px;
  font-weight: 700;
  content: "同一条会话，三个工作界面";
}

.section-heading h2,
.final-cta h2 {
  letter-spacing: 0;
}

.workflow {
  background: #fff;
}

.workflow-item,
.capability-item,
.download-item {
  border-color: var(--oaim-line);
  border-radius: 8px;
}

.workflow-item:hover,
.capability-item:hover,
.download-item:hover {
  border-color: rgba(36, 107, 254, .35);
}

.product-tabs {
  padding-bottom: 2px;
}

.product-tab[aria-selected="true"] {
  color: var(--oaim-blue);
}

.product-panel {
  border-color: var(--oaim-line);
  border-radius: 10px;
  background: #fff;
}

.widget-section {
  position: relative;
  overflow: hidden;
}

.widget-section::before {
  position: absolute;
  top: 0;
  right: 8%;
  width: 1px;
  height: 100%;
  background: rgba(36, 107, 254, .12);
  content: "";
}

.widget-copy .button-row {
  margin-top: 26px;
}

.widget-disclosure {
  max-width: 440px;
  margin: 14px 0 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.6;
}

.widget-disclosure a {
  color: var(--oaim-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.widget-demo-frame {
  border-color: #dbe5f5;
  box-shadow: 0 18px 46px rgba(16, 24, 40, .1);
}

.developer-band {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.download-item .button-row {
  align-items: stretch;
}

.download-item .button {
  min-height: 42px;
}

.download-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.application-section {
  padding: 92px 0;
  background: #fff;
}

.application-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(440px, 1.18fr);
  gap: 64px;
  align-items: start;
}

.application-copy h2 {
  max-width: 480px;
  margin: 0 0 16px;
  color: var(--oaim-ink);
  font-size: 38px;
  line-height: 1.22;
}

.application-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0;
  color: var(--oaim-slate);
}

.application-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.application-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 22px;
  color: var(--oaim-slate);
  font-size: 14px;
}

.application-list li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--oaim-mint);
  content: "";
}

.application-form {
  padding: 28px;
  border: 1px solid var(--oaim-line);
  border-radius: 10px;
  background: #f9fbff;
  box-shadow: 0 16px 36px rgba(16, 24, 40, .06);
}

.application-form h3 {
  margin: 0 0 4px;
  color: var(--oaim-ink);
  font-size: 20px;
}

.application-form-intro {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
}

.application-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.application-field {
  display: grid;
  gap: 7px;
}

.application-field--wide {
  grid-column: 1 / -1;
}

.application-field label {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

.application-field input,
.application-field textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid #cfd8e6;
  border-radius: 7px;
  color: var(--oaim-ink);
  background: #fff;
  font: inherit;
  font-size: 14px;
}

.application-field textarea {
  min-height: 92px;
  resize: vertical;
}

.application-field input:focus,
.application-field textarea:focus {
  border-color: var(--oaim-blue);
  outline: 3px solid rgba(36, 107, 254, .13);
}

.application-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.application-consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--oaim-blue);
}

.application-consent a {
  color: var(--oaim-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.application-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.application-status.is-success { color: #067647; }
.application-status.is-error { color: #b42318; }
.application-form [data-application-submit][aria-busy="true"] { opacity: .64; cursor: wait; }
.application-honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

@media (max-width: 1080px) {
  .hero h1 { font-size: 56px; }
  .application-layout { gap: 42px; }
}

@media (max-width: 900px) {
  .header-menu {
    display: none;
  }

  .site-header.is-open .header-menu {
    position: absolute;
    top: 68px;
    right: 14px;
    left: 14px;
    z-index: 3;
    display: block;
    max-height: calc(100vh - 82px);
    max-height: calc(100dvh - 82px - env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid var(--oaim-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

  .site-header.is-open .main-nav {
    position: static;
    padding: 10px;
    display: grid;
    gap: 3px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .site-header.is-open .header-actions {
    position: static;
    z-index: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px 10px 12px;
    border: 0;
    border-top: 1px solid var(--oaim-line);
    border-radius: 0;
    background: #fff;
    box-shadow: none;
  }

  .site-header.is-open .header-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero { padding: 72px 0 70px; }
  .hero h1 { font-size: 50px; }
  .application-layout { grid-template-columns: 1fr; }
  .application-copy h2 { max-width: 620px; }
}

@media (max-width: 600px) {
  .hero { padding: 52px 0 58px; }
  .hero::before { display: none; }
  .hero h1 { font-size: 40px; }
  .hero-stage::after { right: 14px; bottom: 12px; }
  .widget-disclosure { font-size: 12px; }
  .application-section { padding: 64px 0; }
  .application-copy h2 { font-size: 30px; }
  .application-form { padding: 20px; }
  .application-form-grid { grid-template-columns: 1fr; }
  .application-field--wide { grid-column: auto; }
}

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

@media (max-width: 320px) {
  body {
    min-width: 0;
  }
}

/* Direction 2 + 3: quiet navigation with a clear current location. */
body.docs-page .main-nav a[href="/sdk/"],
body.privacy-site .main-nav a[href="/privacy/"] {
  color: var(--oaim-blue);
  background: #edf3ff;
}

/* ===== UI 设计师精炼增强 v4.1 ===== */

/* 暗色按钮 hover 增强 */
.button.dark:hover {
  border-color: rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .22);
  transform: translateY(-1px);
}

/* 产品 Tab 切换过渡 */
.product-tab {
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

/* 产品面板 hover 增强 */
.product-panel:hover {
  border-color: rgba(36, 107, 254, .22);
  box-shadow: 0 20px 48px rgba(16, 24, 40, .12);
}

/* 卡片 hover 增强 */
.download-item {
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.download-item:hover {
  border-color: rgba(36, 107, 254, .35);
  box-shadow: 0 12px 32px rgba(16, 24, 40, .08);
  transform: translateY(-2px);
}

/* workflow 步骤过渡 */
.workflow-item {
  transition: border-color 200ms ease;
}

/* 代码语法高亮 */
.code-window .code-tag { color: #7cc4ff; }
.code-window .code-attr { color: #c4b5fd; }
.code-window .code-val { color: #9fe870; }

/* 移动端 Hero 标题收紧 */
@media (max-width: 600px) {
  .hero h1 { font-size: 36px; line-height: 1.14; }
  .hero-lead { font-size: 15px; }
}

/* 下载按钮 hover 增强 */
.download-item .button:hover {
  transform: translateY(-1px);
}

/* 申请表单提交按钮 hover */
.application-form .button.primary:hover {
  box-shadow: 0 4px 14px rgba(36, 107, 254, .28);
}

/* 按钮 active 点击反馈 */
.button:active {
  transform: scale(.97);
  transition: transform 80ms ease;
}

/* 输入框过渡 */
.application-field input,
.application-field textarea {
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

/* stage-note 过渡 */
.stage-note {
  transition: opacity 300ms ease;
}

/* 产品截图 hover 微放大 */
.product-shot {
  transition: transform 300ms ease;
}

.product-panel:hover .product-shot {
  transform: scale(1.02);
}

/* hero-proof 圆点动画 */
.hero-proof span::before {
  animation: proof-pulse 3s ease-in-out infinite;
}

@keyframes proof-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(18, 183, 106, .3); }
  50% { box-shadow: 0 0 0 4px rgba(18, 183, 106, .08); }
}
/* ===== UI 设计师精炼增强 v4.1 ===== */

.button.dark:hover {
  border-color: rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .22);
  transform: translateY(-1px);
}

.product-tab {
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.product-panel:hover {
  border-color: rgba(36, 107, 254, .22);
  box-shadow: 0 20px 48px rgba(16, 24, 40, .12);
}

.download-item {
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.download-item:hover {
  border-color: rgba(36, 107, 254, .35);
  box-shadow: 0 12px 32px rgba(16, 24, 40, .08);
  transform: translateY(-2px);
}

.workflow-item {
  transition: border-color 200ms ease;
}

.code-window .code-tag { color: #7cc4ff; }
.code-window .code-attr { color: #c4b5fd; }
.code-window .code-val { color: #9fe870; }

@media (max-width: 600px) {
  .hero h1 { font-size: 36px; line-height: 1.14; }
  .hero-lead { font-size: 15px; }
}

.download-item .button:hover {
  transform: translateY(-1px);
}

.application-form .button.primary:hover {
  box-shadow: 0 4px 14px rgba(36, 107, 254, .28);
}

.button:active {
  transform: scale(.97);
  transition: transform 80ms ease;
}

.application-field input,
.application-field textarea {
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.stage-note {
  transition: opacity 300ms ease;
}

.product-shot {
  transition: transform 300ms ease;
}

.product-panel:hover .product-shot {
  transform: scale(1.02);
}

.hero-proof span::before {
  animation: proof-pulse 3s ease-in-out infinite;
}

@keyframes proof-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(18, 183, 106, .3); }
  50% { box-shadow: 0 0 0 4px rgba(18, 183, 106, .08); }
}


/* ===== 重构：3 屏结构 ===== */

.hero-new {
  padding: 80px 0 0;
  background: linear-gradient(180deg, #fff 0%, #f5f8ff 100%);
  border-bottom: 1px solid var(--oaim-line);
}

.hero-grid-new {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  min-height: 520px;
}

.hero-copy-new {
  max-width: 520px;
}

.hero-copy-new h1 {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--oaim-ink);
}

.hero-copy-new p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--oaim-slate);
  margin: 0 0 32px;
}

.hero-widget-new {
  background: #fff;
  border: 1px solid var(--oaim-line);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(16, 24, 40, .1);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
}

.widget-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--oaim-line);
  background: #fafbfc;
}

.widget-chrome i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e4e7ec;
}

.widget-chrome i:nth-child(1) { background: #f04438; }
.widget-chrome i:nth-child(2) { background: #fdb022; }
.widget-chrome i:nth-child(3) { background: #32d583; }

.widget-chrome span {
  margin-left: 8px;
  font-size: 12px;
  color: var(--oaim-slate);
}

.widget-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: var(--oaim-slate);
  font-size: 14px;
  text-align: center;
}

.widget-body p {
  margin: 0 0 16px;
}

.widget-body .btn-open-widget {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--oaim-blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 200ms ease;
}

.widget-body .btn-open-widget:hover {
  background: var(--oaim-blue-strong);
}

.highlights-section {
  padding: 100px 0;
  background: #fff;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.highlight-card {
  padding: 32px;
  border: 1px solid var(--oaim-line);
  border-radius: 12px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.highlight-card:hover {
  border-color: rgba(36, 107, 254, .3);
  box-shadow: 0 8px 32px rgba(16, 24, 40, .06);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(36, 107, 254, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.highlight-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--oaim-ink);
}

.highlight-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--oaim-slate);
  margin: 0 0 20px;
}

.highlight-card a {
  color: var(--oaim-blue);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: color 200ms ease;
}

.highlight-card a:hover {
  color: var(--oaim-blue-strong);
}

.code-section {
  background: #f8f9fb;
  border: 1px solid var(--oaim-line);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}

.code-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--oaim-ink);
}

.code-section p {
  font-size: 14px;
  color: var(--oaim-slate);
  margin: 0 0 32px;
}

.code-window-new {
  background: #0b1220;
  border-radius: 8px;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.code-window-new pre {
  margin: 0;
  color: #d0d5dd;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  line-height: 1.75;
  overflow-x: auto;
}

.code-window-new .tag { color: #7cc4ff; }
.code-window-new .attr { color: #c4b5fd; }
.code-window-new .val { color: #9fe870; }

.convert-section {
  padding: 100px 0;
  background: var(--oaim-paper);
}

.convert-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 60px;
  align-items: start;
}

.convert-info h2 {
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--oaim-ink);
  line-height: 1.2;
}

.convert-info > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--oaim-slate);
  margin: 0 0 32px;
}

.convert-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.convert-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--oaim-ink);
}

.convert-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--oaim-mint);
  flex-shrink: 0;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.download-card {
  padding: 20px;
  border: 1px solid var(--oaim-line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  transition: border-color 200ms ease;
}

.download-card:hover {
  border-color: rgba(36, 107, 254, .3);
}

.download-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--oaim-ink);
}

.download-card p {
  font-size: 12px;
  color: var(--oaim-slate);
  margin: 0 0 12px;
}

.download-card a {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid var(--oaim-line);
  border-radius: 6px;
  color: var(--oaim-blue);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.download-card a:hover {
  background: rgba(36, 107, 254, .06);
}

@media (max-width: 1024px) {
  .hero-grid-new {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .hero-widget-new {
    min-height: 380px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .convert-grid {
    grid-template-columns: 1fr;
  }

  .downloads-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-new {
    padding: 60px 0 0;
  }

  .hero-copy-new h1 {
    font-size: 36px;
  }

  .hero-copy-new p {
    font-size: 16px;
  }

  .highlight-card {
    padding: 24px;
  }

  .code-section {
    padding: 32px 20px;
  }

  .convert-section {
    padding: 60px 0;
  }

  .convert-info h2 {
    font-size: 28px;
  }
}
