:root {
  color-scheme: light;
  --ink: #18151d;
  --muted: #706979;
  --purple: #3f0e40;
  --purple-deep: #2b082d;
  --purple-soft: #f3ebf4;
  --orange: #d4551e;
  --orange-dark: #ad3e10;
  --cream: #f4f1eb;
  --paper: #fff;
  --line: #ded8d0;
  --green: #347457;
  --shadow: 0 24px 70px rgba(35, 20, 37, .12);
  --sans: Inter, Pretendard, "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font: inherit;
}

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

button {
  margin: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--purple);
  transform: translateY(-160%);
  transition: transform .15s ease;
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(74, 55, 75, .1);
  background: rgba(255, 255, 255, .91);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1240px, calc(100% - 48px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

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

.brand img {
  display: block;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(50, 23, 53, .12);
}

.brand span,
.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .02em;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.site-footer nav a {
  color: #625b68;
  font-size: 13px;
  font-weight: 650;
  transition: color .15s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--orange);
}

.button {
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 760;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.button:hover:not(:disabled):not(.is-disabled) {
  transform: translateY(-1px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(212, 85, 30, .28);
  outline-offset: 3px;
}

.button-compact {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 13px;
}

.button-outline {
  border-color: #d8d1d9;
  color: var(--purple);
  background: #fff;
}

.button-outline:hover {
  border-color: var(--purple);
  background: var(--purple-soft);
}

.button-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(212, 85, 30, .22);
}

.button-primary:hover:not(:disabled) {
  background: var(--orange-dark);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background:
    linear-gradient(118deg, #fbfaf8 0%, #f6f0f3 51%, #f3edf5 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(63, 14, 64, .09) .7px, transparent .7px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to right, #000, transparent 58%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.hero-glow-one {
  width: 500px;
  height: 500px;
  right: -250px;
  top: -190px;
  background: rgba(212, 85, 30, .09);
}

.hero-glow-two {
  width: 330px;
  height: 330px;
  left: -210px;
  bottom: -190px;
  background: rgba(63, 14, 64, .09);
}

.hero-grid {
  position: relative;
  min-height: 690px;
  padding: 74px 0 68px;
  display: grid;
  grid-template-columns: minmax(380px, .86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 19px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
}

.eyebrow.light {
  color: #efbda7;
}

.eyebrow.light span {
  background: #ef8b60;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -.065em;
}

.hero-copy h1 em {
  color: var(--purple);
  font-style: normal;
}

.hero-lead {
  max-width: 560px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
  letter-spacing: -.015em;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 750;
}

.text-link span {
  color: var(--orange);
}

.hero-points {
  margin: 31px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 19px;
  list-style: none;
}

.hero-points li {
  color: #5d5662;
  font-size: 11px;
  font-weight: 650;
}

.hero-points span {
  margin-right: 5px;
  color: var(--green);
}

.product-scene {
  position: relative;
  min-width: 0;
  padding: 36px 0 45px;
}

.scene-window {
  overflow: hidden;
  border: 1px solid rgba(73, 47, 75, .14);
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 34px 80px rgba(42, 20, 45, .17);
}

.scene-topbar {
  min-height: 60px;
  padding: 0 18px;
  border-bottom: 1px solid #ece7ed;
  display: flex;
  align-items: center;
  gap: 10px;
}

.scene-logo {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #fff;
}

.scene-logo img {
  display: block;
  border-radius: 8px;
}

.scene-title {
  color: #39313d;
  font-size: 12px;
  font-weight: 760;
}

.scene-status {
  margin-left: auto;
  padding: 6px 9px;
  border: 1px solid #dbe8df;
  border-radius: 999px;
  color: var(--green);
  background: #f3faf6;
  font-size: 9px;
  font-weight: 750;
}

.scene-status i {
  width: 6px;
  height: 6px;
  margin-right: 4px;
  display: inline-block;
  border-radius: 50%;
  background: #4a936d;
}

.scene-body {
  min-height: 390px;
  display: grid;
  grid-template-columns: 138px 1fr;
}

.scene-sidebar {
  padding: 22px 12px;
  border-right: 1px solid #eee9ef;
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: #faf8fa;
}

.scene-sidebar-label {
  margin: 0 7px 7px;
  color: #a39ca5;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.scene-channel {
  padding: 9px 10px;
  border-radius: 8px;
  color: #77707b;
  font-size: 9px;
  font-weight: 650;
}

.scene-channel b {
  margin-right: 5px;
  color: #a49ca6;
}

.scene-channel.active {
  color: var(--purple);
  background: #eee4ef;
}

.scene-channel.active b {
  color: var(--orange);
}

.scene-thread {
  padding: 31px 26px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.scene-message {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
}

.scene-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  font-size: 10px;
  font-weight: 850;
}

.user-avatar {
  background: #56505d;
}

.agent-avatar {
  background: var(--orange);
}

.scene-message b {
  display: block;
  color: #3b343f;
  font-size: 10px;
  line-height: 1.5;
}

.scene-message p {
  margin: 7px 0 0;
  color: #8b838f;
  font-size: 9px;
  line-height: 1.6;
}

.agent-message {
  padding: 17px;
  border: 1px solid #eadfe9;
  border-radius: 14px;
  background: #fcf9fc;
}

.agent-label {
  margin-bottom: 5px;
  display: block;
  color: var(--orange);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.scene-file-row {
  margin-top: 14px;
  padding: 10px;
  border: 1px solid #e4dee4;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 8px;
  background: #fff;
}

.file-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--purple);
  background: var(--purple-soft);
  font-size: 9px;
  font-weight: 850;
}

.scene-file-row strong,
.scene-file-row small {
  display: block;
}

.scene-file-row strong {
  color: #4b434e;
  font-size: 8px;
}

.scene-file-row small {
  margin-top: 3px;
  color: #aaa3ac;
  font-size: 7px;
}

.file-ready {
  color: var(--green);
  font-size: 7px;
  font-weight: 800;
}

.scene-card {
  position: absolute;
  min-width: 152px;
  padding: 12px 14px;
  border: 1px solid rgba(72, 46, 75, .12);
  border-radius: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  box-shadow: 0 17px 42px rgba(47, 24, 49, .15);
}

.scene-card-agent {
  right: -22px;
  top: 14px;
}

.scene-card-skill {
  left: -29px;
  bottom: 18px;
}

.mini-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 9px;
  color: #fff;
  background: var(--orange);
  font-size: 10px;
  font-weight: 850;
}

.skill-icon {
  background: var(--purple);
}

.scene-card small,
.scene-card strong {
  display: block;
}

.scene-card small {
  color: #9a929d;
  font-size: 7px;
}

.scene-card strong {
  margin-top: 3px;
  color: #3e3641;
  font-size: 9px;
}

.trust-strip {
  border-top: 1px solid #e7e1e6;
  border-bottom: 1px solid #e7e1e6;
  background: #fff;
}

.trust-grid {
  min-height: 105px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.trust-grid p {
  margin: 0;
  padding: 6px 40px;
  border-right: 1px solid #e8e2e7;
  text-align: center;
}

.trust-grid p:last-child {
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--purple);
  font-size: 13px;
}

.trust-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
}

.section {
  padding: 118px 0;
}

.section-heading {
  max-width: 610px;
}

.section-heading.centered {
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(36px, 4.4vw, 55px);
  line-height: 1.12;
  letter-spacing: -.055em;
}

.section-heading > p:last-child {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 355px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid #e4dee4;
  border-radius: 20px;
  background: #fbfaf9;
}

.feature-card-wide {
  min-height: 330px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 50px;
}

.feature-number {
  display: block;
  color: var(--orange);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
}

.feature-card h3 {
  max-width: 440px;
  margin: 22px 0 0;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -.035em;
}

.feature-card p {
  max-width: 450px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.feature-symbol {
  width: 64px;
  height: 64px;
  margin-top: 53px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
  box-shadow: 0 17px 35px rgba(48, 19, 49, .13);
}

.agent-symbol {
  background: var(--orange);
}

.folder-symbol {
  background: var(--purple);
}

.channel-visual {
  position: relative;
  min-height: 180px;
  padding: 24px;
  border: 1px solid #e7dfe7;
  border-radius: 17px;
  background: #fff;
}

.channel-pill {
  margin-right: 6px;
  padding: 7px 10px;
  border-radius: 8px;
  display: inline-block;
  color: #8a818c;
  background: #f3f0f3;
  font-size: 8px;
  font-weight: 700;
}

.channel-pill.active {
  color: var(--purple);
  background: var(--purple-soft);
}

.channel-line {
  height: 1px;
  margin: 28px 0 19px;
  background: #ede8ed;
}

.channel-result {
  padding: 12px;
  border: 1px solid #e8e1e7;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 9px;
}

.channel-result i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.channel-result span {
  color: #635b66;
  font-size: 9px;
  font-weight: 650;
}

.channel-result b {
  color: var(--green);
  font-size: 8px;
}

.how-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--purple);
}

.how-section::before,
.how-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .045);
}

.how-section::before {
  width: 480px;
  height: 480px;
  top: -310px;
  right: -100px;
}

.how-section::after {
  width: 320px;
  height: 320px;
  bottom: -230px;
  left: -80px;
}

.how-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 100px;
}

.how-section .section-heading > p:last-child {
  color: rgba(255, 255, 255, .67);
}

.button-light {
  margin-top: 29px;
  color: var(--purple);
  background: #fff;
}

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

.flow-list li {
  min-height: 105px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 15px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, .07);
}

.flow-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--purple);
  background: #fff;
  font-size: 12px;
  font-weight: 850;
}

.flow-list strong {
  font-size: 14px;
}

.flow-list p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .6);
  font-size: 11px;
  line-height: 1.6;
}

.flow-tag {
  padding: 6px 8px;
  border-radius: 999px;
  color: #efc5b3;
  background: rgba(212, 85, 30, .2);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .05em;
}

.pricing-section {
  background: var(--cream);
}

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

.price-card {
  position: relative;
  padding: 34px 30px 29px;
  border: 1px solid #ddd6cf;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.price-card.featured {
  border: 2px solid var(--purple);
  box-shadow: 0 24px 55px rgba(63, 14, 64, .12);
}

.featured-label {
  position: absolute;
  top: -14px;
  right: 22px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--purple);
  font-size: 9px;
  font-weight: 800;
}

.plan-name {
  color: var(--purple);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -.02em;
}

.price-head p {
  min-height: 42px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.price {
  min-height: 67px;
  margin: 27px 0 25px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.price strong {
  font-size: 43px;
  line-height: 1;
  letter-spacing: -.055em;
}

.price sup {
  position: relative;
  top: -13px;
  margin-right: 2px;
  font-size: 18px;
}

.price span {
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
}

.custom-price strong {
  font-size: 35px;
}

.price-card ul {
  min-height: 142px;
  margin: 0 0 24px;
  padding: 22px 0 0;
  border-top: 1px solid #ece7e3;
  display: grid;
  align-content: start;
  gap: 14px;
  list-style: none;
}

.price-card li {
  color: #554e58;
  font-size: 12px;
  font-weight: 650;
}

.price-card li span {
  margin-right: 8px;
  color: var(--green);
}

.button-plan {
  width: 100%;
  margin-top: auto;
  border-color: #d8d0d8;
  color: var(--purple);
  background: #fff;
}

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

.button:disabled,
.button.is-disabled {
  border-color: #ddd8d3;
  color: #989197;
  background: #eeeae6;
  box-shadow: none;
  cursor: not-allowed;
}

.action-note {
  min-height: 30px;
  margin: 10px 3px 0;
  color: #938b94;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.action-note.is-error {
  color: #b43d2a;
  font-weight: 650;
}

.pricing-note {
  margin: 24px 0 0;
  color: #8b8389;
  font-size: 10px;
  text-align: center;
}

.download-section {
  background: #fff;
}

.download-intro {
  margin-bottom: 47px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: end;
  gap: 70px;
}

.download-intro > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.download-card {
  min-height: 255px;
  padding: 28px;
  border: 1px solid #e2dce2;
  border-radius: 19px;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 19px;
  background: #fbfaf9;
}

.platform-mark {
  width: 62px;
  height: 62px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.mac-mark {
  background: var(--purple);
}

.windows-mark {
  background: #285ab7;
}

.download-copy {
  min-width: 0;
}

.download-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.download-title-row h3 {
  margin: 0;
  font-size: 21px;
}

.release-status {
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
}

.release-status.pending {
  color: #8b6b32;
  background: #fff2d8;
}

.release-status.available {
  color: var(--green);
  background: #e8f3ed;
}

.release-status.unavailable,
.release-status.error {
  color: #8e5550;
  background: #f8e8e6;
}

.download-copy > p {
  min-height: 38px;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.release-meta {
  margin: 18px 0 0;
  display: flex;
  gap: 23px;
}

.release-meta div {
  min-width: 70px;
}

.release-meta dt {
  color: #a097a2;
  font-size: 8px;
}

.release-meta dd {
  margin: 4px 0 0;
  color: #514953;
  font-size: 9px;
  font-weight: 750;
}

.download-action {
  min-height: 43px;
  margin-top: 19px;
  grid-column: 1 / -1;
  border-color: var(--purple);
  color: #fff;
  background: var(--purple);
  font-size: 12px;
}

.release-noscript {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  color: #795147;
  background: #f8ece8;
  font-size: 11px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--purple-deep);
}

.final-cta::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -130px;
  bottom: -290px;
  border-radius: 50%;
  background: rgba(212, 85, 30, .18);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 52px);
  line-height: 1.12;
  letter-spacing: -.055em;
}

.button-large {
  min-width: 190px;
  min-height: 54px;
  margin: 0;
}

.site-footer {
  border-top: 1px solid #e6e0e5;
  background: #fff;
}

.footer-inner {
  min-height: 130px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-brand strong {
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  gap: 22px;
}

.footer-inner > p {
  margin: 0;
  color: #9b939d;
  font-size: 10px;
  text-align: right;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: .88fr 1.12fr;
    gap: 35px;
  }

  .scene-card-agent {
    right: -8px;
  }

  .scene-card-skill {
    left: -8px;
  }

  .how-grid {
    gap: 55px;
  }
}

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

  .header-inner > .button {
    margin-left: auto;
  }

  .hero-grid {
    padding-top: 70px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

  .product-scene {
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .feature-card-wide,
  .how-grid,
  .download-intro {
    grid-template-columns: 1fr;
  }

  .feature-card-wide {
    gap: 32px;
  }

  .how-grid {
    gap: 50px;
  }

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

  .price-card {
    min-height: 0;
  }

  .price-head p,
  .price-card ul,
  .action-note {
    min-height: 0;
  }

  .download-intro {
    gap: 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner > p {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 700px) {
  .page-shell,
  .header-inner {
    width: min(100% - 32px, 1180px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand small {
    display: none;
  }

  .hero-grid {
    min-height: 0;
    padding: 58px 0 50px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .text-link {
    justify-content: center;
  }

  .product-scene {
    padding: 25px 0 55px;
  }

  .scene-body {
    min-height: 350px;
    grid-template-columns: 1fr;
  }

  .scene-sidebar {
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid #eee9ef;
    flex-flow: row wrap;
  }

  .scene-sidebar-label {
    width: 100%;
  }

  .scene-thread {
    padding: 23px 18px;
  }

  .scene-card-agent {
    display: none;
  }

  .scene-card-skill {
    left: 12px;
    bottom: 12px;
  }

  .trust-grid {
    padding: 20px 0;
    grid-template-columns: 1fr;
  }

  .trust-grid p {
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid #eee8ed;
  }

  .trust-grid p:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 85px 0;
  }

  .section-heading.centered {
    margin-bottom: 38px;
    text-align: left;
  }

  .section-heading.centered .eyebrow {
    justify-content: flex-start;
  }

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

  .feature-card {
    min-height: 310px;
    padding: 27px;
  }

  .feature-card-wide {
    min-height: 0;
  }

  .channel-visual {
    padding: 16px;
  }

  .channel-pill {
    margin-bottom: 6px;
  }

  .flow-list li {
    grid-template-columns: 34px 1fr;
  }

  .flow-tag {
    grid-column: 2;
    justify-self: start;
  }

  .download-card {
    grid-template-columns: 52px 1fr;
    padding: 22px;
  }

  .platform-mark {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 11px;
  }

  .final-cta-inner {
    min-height: 350px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }

  .button-large {
    width: 100%;
  }

  .footer-inner {
    padding: 35px 0;
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  .header-inner > .button {
    min-height: 38px;
    padding: 0 14px;
  }

  .brand strong {
    font-size: 15px;
  }

  .hero-points {
    display: grid;
  }

  .scene-message {
    grid-template-columns: 30px 1fr;
  }

  .scene-avatar {
    width: 30px;
    height: 30px;
  }

  .scene-file-row {
    grid-template-columns: 26px 1fr;
  }

  .file-ready {
    grid-column: 2;
  }

  .feature-card h3 {
    font-size: 22px;
  }

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

  .download-copy,
  .download-action {
    grid-column: 1;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
