:root {
  color-scheme: light;
  --ink: #101522;
  --ink-soft: #3f4a5f;
  --muted: #687386;
  --line: #e1e7ef;
  --paper: #ffffff;
  --mist: #f6f9fc;
  --warm: #fff6e7;
  --gold: #f2b34b;
  --gold-dark: #b87519;
  --blue: #2463eb;
  --blue-soft: #eaf1ff;
  --teal: #159e85;
  --teal-soft: #e8f7f4;
  --rose: #f15d7f;
  --shadow: 0 18px 50px rgba(21, 32, 55, 0.16);
  --content: min(1160px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    "PingFang SC",
    "Microsoft YaHei",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 calc((100vw - var(--content)) / 2);
  color: #ffffff;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 rgba(16, 21, 34, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  background: #07133b;
  box-shadow: 0 10px 22px rgba(7, 19, 59, 0.3);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-size: 20px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled .site-nav {
  background: rgba(246, 249, 252, 0.96);
  border-color: rgba(16, 21, 34, 0.08);
}

.site-nav a {
  min-width: 86px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.site-header.is-scrolled .site-nav a {
  color: var(--ink-soft);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: #ffffff;
  outline: none;
}

.header-action,
.primary-action,
.secondary-action,
.open-button,
.copy-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0;
}

.header-action {
  padding: 0 18px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.site-header.is-scrolled .header-action {
  background: var(--ink);
  color: #ffffff;
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 13, 24, 0.86) 0%, rgba(8, 13, 24, 0.64) 42%, rgba(8, 13, 24, 0.12) 100%),
    linear-gradient(180deg, rgba(7, 10, 18, 0.22) 0%, rgba(7, 10, 18, 0.68) 100%);
}

.hero-inner {
  width: var(--content);
  margin: 0 auto;
  padding: 116px 0 74px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.78fr);
  align-items: center;
  gap: 52px;
  min-width: 0;
}

.hero-copy {
  max-width: 680px;
  min-width: 0;
}

.eyebrow,
.section-kicker,
.screen-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: 68px;
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 22px;
  line-height: 1.75;
}

.hero-note {
  max-width: 620px;
  margin: 18px 0 0;
  padding: 14px 18px;
  border-left: 4px solid var(--gold);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-action {
  padding: 0 24px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

.secondary-action {
  padding: 0 22px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.primary-action:hover,
.primary-action:focus-visible,
.secondary-action:hover,
.secondary-action:focus-visible,
.header-action:hover,
.open-button:hover,
.open-button:focus-visible,
.header-action:focus-visible,
.copy-button:hover,
.copy-button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.proof-strip {
  margin: 42px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.proof-strip div {
  padding: 22px 24px 22px 0;
}

.proof-strip div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-strip dt {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
}

.proof-strip dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.hero-visual {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audit-poster {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.audit-poster img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-poster {
  width: min(430px, 100%);
  transform: rotate(2deg);
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.9);
  border-radius: 34px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-main {
  right: 36px;
  top: 0;
  width: min(360px, 38vw);
  aspect-ratio: 375 / 812;
}

.phone-side {
  left: 0;
  bottom: 14px;
  width: min(250px, 26vw);
  aspect-ratio: 750 / 1624;
  transform: rotate(-5deg);
  border-width: 8px;
}

.hero-next {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
}

.section {
  padding: 92px 0;
  scroll-margin-top: 82px;
}

.section-heading {
  width: var(--content);
  margin: 0 auto 42px;
  max-width: 760px;
  text-align: center;
  min-width: 0;
}

.section-heading.compact {
  margin-bottom: 26px;
}

.section-heading h2,
.partner-copy h2,
.try-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:last-child,
.partner-copy > p,
.try-panel p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-intro {
  background: linear-gradient(180deg, #ffffff 0%, var(--mist) 100%);
}

.screen-lab {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
  min-width: 0;
}

.screen-preview {
  justify-self: center;
  width: min(360px, 100%);
  padding: 12px;
  border-radius: 32px;
  background: #111827;
  box-shadow: var(--shadow);
}

.screen-preview img {
  width: 100%;
  aspect-ratio: 375 / 812;
  object-fit: cover;
  border-radius: 24px;
  background: var(--warm);
}

.screen-copy {
  min-width: 0;
}

.tab-list {
  display: inline-grid;
  grid-template-columns: repeat(4, minmax(74px, 1fr));
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
}

.tab-button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}

.tab-button.is-active {
  background: var(--ink);
  color: #ffffff;
}

.tab-button:focus-visible {
  outline: 3px solid rgba(36, 99, 235, 0.24);
  outline-offset: 2px;
}

.screen-text {
  margin-top: 34px;
  max-width: 580px;
}

.screen-text h3 {
  margin: 0;
  color: var(--ink);
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: 0;
}

.screen-text p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-service {
  background: #ffffff;
}

.feature-grid,
.trust-grid,
.scene-grid {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  gap: 16px;
  min-width: 0;
}

.feature-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compliance-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.trust-card {
  min-height: 236px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.feature-card:nth-child(1) {
  background: linear-gradient(180deg, #ffffff 0%, var(--blue-soft) 100%);
}

.feature-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff 0%, var(--warm) 100%);
}

.feature-card:nth-child(3) {
  background: linear-gradient(180deg, #ffffff 0%, var(--teal-soft) 100%);
}

.feature-card:nth-child(4) {
  background: linear-gradient(180deg, #ffffff 0%, #fff0f4 100%);
}

.feature-card:nth-child(5) {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5ff 100%);
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 30px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.feature-card h3,
.trust-card h3,
.flow-list h3 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.feature-card p,
.trust-card p,
.flow-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.section-flow {
  background: var(--ink);
  color: #ffffff;
}

.section-scenes {
  background: var(--mist);
}

.section-poster {
  width: min(460px, var(--content));
  margin: 0 auto 34px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(16, 21, 34, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(21, 32, 55, 0.12);
}

.section-poster img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

.scene-card {
  min-height: 238px;
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.scene-card img {
  width: 124px;
  aspect-ratio: 375 / 812;
  object-fit: cover;
  border-radius: 18px;
  background: #111827;
  box-shadow: 0 12px 26px rgba(21, 32, 55, 0.14);
}

.scene-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.scene-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section-flow .section-heading h2 {
  color: #ffffff;
}

.flow-layout {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.flow-poster {
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.flow-layout .flow-list {
  width: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flow-list {
  width: var(--content);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: item;
  min-width: 0;
}

.flow-list li {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.flow-step {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: #241502;
  font-weight: 900;
}

.flow-list h3 {
  color: #ffffff;
}

.flow-list p {
  color: rgba(255, 255, 255, 0.72);
}

.section-partner {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
  gap: 52px;
  align-items: center;
}

.partner-copy {
  max-width: 680px;
}

.partner-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.partner-list li {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 16px 12px 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-soft);
  background: #ffffff;
}

.partner-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px var(--teal-soft);
}

.partner-image {
  justify-self: center;
  width: min(340px, 100%);
  padding: 12px;
  border-radius: 32px;
  background: #111827;
  box-shadow: var(--shadow);
}

.partner-image img {
  width: 100%;
  aspect-ratio: 750 / 1624;
  object-fit: cover;
  border-radius: 24px;
}

.section-trust {
  background: var(--mist);
}

.compliance-layout {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.compliance-layout .compliance-grid {
  width: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-card {
  min-height: 200px;
  background: #ffffff;
}

.trust-card:nth-child(1) {
  border-top: 5px solid var(--blue);
}

.trust-card:nth-child(2) {
  border-top: 5px solid var(--gold);
}

.trust-card:nth-child(3) {
  border-top: 5px solid var(--teal);
}

.trust-card:nth-child(4) {
  border-top: 5px solid var(--rose);
}

.section-try {
  background:
    linear-gradient(90deg, rgba(36, 99, 235, 0.08), rgba(21, 158, 133, 0.08)),
    #ffffff;
}

.try-panel {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: 36px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(21, 32, 55, 0.08);
  min-width: 0;
}

.search-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 68px;
  padding: 10px 10px 10px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.search-box span {
  min-width: 0;
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.search-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.open-button,
.copy-button {
  flex: 0 0 auto;
  min-width: 94px;
  border: 0;
  background: var(--ink);
  color: #ffffff;
}

.open-button {
  background: var(--blue);
}

.site-footer {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: var(--content);
  margin: 0 auto;
  color: var(--muted);
}

.footer-brand {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 22px;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
  outline: none;
}

@media (max-width: 1040px) {
  :root {
    --content: min(100vw - 36px, 920px);
  }

  .site-header {
    height: 68px;
  }

  .site-nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 104px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .phone-main {
    right: 8%;
    width: min(320px, 48vw);
  }

  .phone-side {
    left: 10%;
    width: min(220px, 34vw);
  }

  .feature-grid,
  .trust-grid,
  .compliance-grid,
  .scene-grid,
  .flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-partner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --content: calc(100vw - 28px);
  }

  .site-header {
    height: 64px;
  }

  .brand-name {
    font-size: 18px;
  }

  .header-action {
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 13, 24, 0.86) 0%, rgba(8, 13, 24, 0.56) 54%, rgba(8, 13, 24, 0.84) 100%),
      rgba(8, 13, 24, 0.18);
  }

  .hero-inner {
    padding: 94px 0 72px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.16;
    word-break: break-all;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-note {
    padding: 12px 14px;
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .primary-action,
  .secondary-action {
    flex: 1 1 150px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .proof-strip div,
  .proof-strip div + div {
    padding: 14px 0;
    border-left: 0;
  }

  .proof-strip div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .proof-strip dt {
    font-size: 20px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-poster {
    width: min(300px, 84vw);
    transform: none;
  }

  .phone {
    border-width: 7px;
    border-radius: 28px;
  }

  .phone-main {
    right: 0;
    width: min(255px, 68vw);
  }

  .phone-side {
    left: 0;
    bottom: 4px;
    width: min(178px, 48vw);
  }

  .hero-next {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .section-heading h2,
  .partner-copy h2,
  .try-panel h2 {
    font-size: 36px;
  }

  .screen-lab {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .screen-preview {
    width: min(250px, 82vw);
    padding: 8px;
    border-radius: 24px;
  }

  .screen-preview img {
    border-radius: 18px;
  }

  .tab-list {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tab-button {
    min-width: 0;
    padding: 0 6px;
  }

  .screen-text h3 {
    font-size: 30px;
  }

  .feature-grid,
  .scene-grid,
  .trust-grid,
  .compliance-grid,
  .flow-list,
  .flow-layout,
  .compliance-layout,
  .try-panel {
    grid-template-columns: 1fr;
  }

  .flow-layout,
  .compliance-layout {
    gap: 24px;
  }

  .flow-layout .flow-list,
  .compliance-layout .compliance-grid {
    grid-template-columns: 1fr;
  }

  .section-poster,
  .flow-poster,
  .compliance-poster {
    justify-self: center;
    width: min(300px, 86vw);
    border-radius: 22px;
  }

  .feature-card,
  .scene-card,
  .trust-card,
  .flow-list li {
    min-height: auto;
  }

  .scene-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .scene-card img {
    width: 96px;
    border-radius: 14px;
  }

  .try-panel {
    padding: 26px;
  }

  .search-box {
    align-items: stretch;
    flex-direction: column;
    padding: 18px;
  }

  .search-actions {
    width: 100%;
  }

  .open-button,
  .copy-button {
    flex: 1 1 0;
    width: 100%;
  }

  .site-footer {
    min-height: auto;
    padding: 34px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero-actions {
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    flex: 0 0 auto;
    width: 100%;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-visual {
    min-height: 365px;
  }

  .hero-poster {
    width: min(280px, 84vw);
  }

  .section-poster,
  .flow-poster,
  .compliance-poster {
    width: min(280px, 86vw);
  }

  .phone-main {
    width: 236px;
  }

  .phone-side {
    width: 148px;
  }

  .section-heading h2,
  .partner-copy h2,
  .try-panel h2 {
    font-size: 32px;
  }

  .scene-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .scene-card img {
    width: 82px;
  }
}
