:root {
  color-scheme: light;
  --cp-surface-base: #fefffc;
  --cp-surface-canvas: #f6f7f3;
  --cp-surface-subtle: #eef3ef;
  --cp-surface-selected: #e2f2e8;
  --cp-text-primary: #13241d;
  --cp-text-secondary: #607069;
  --cp-text-disabled: #9aa8a1;
  --cp-brand: #166b48;
  --cp-success: #2c7a57;
  --cp-success-surface: #e7f5ec;
  --cp-border: #e7ece8;
  --cp-control-border: #cfdad3;
  --cp-focus-ring: #166b48;
  --cp-radius-control: 10px;
  --cp-radius-card: 18px;
  --cp-content-width: 1296px;
  --cp-side-padding: 72px;
  color: var(--cp-text-primary);
  background: var(--cp-surface-base);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--cp-surface-base);
}

body,
button,
summary {
  font: inherit;
}

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

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

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

p,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

.mobile-copy {
  display: none;
}

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

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

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cp-focus-ring);
  outline-offset: 4px;
}

main:focus {
  outline: none;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 72px;
  padding: 0 var(--cp-side-padding);
  background: var(--cp-surface-base);
  border-bottom: 1px solid var(--cp-border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 650;
}

.brand-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 9px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--cp-text-secondary);
  font-size: 13px;
  font-weight: 500;
}

.desktop-nav > a:not(.button),
.footer-links a {
  transition: color 160ms ease;
}

.desktop-nav > a:not(.button):hover,
.footer-links a:hover {
  color: var(--cp-brand);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: var(--cp-radius-control);
  font-size: 12px;
  font-weight: 650;
  line-height: 16px;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

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

.button--primary {
  color: #fff;
  background: var(--cp-brand);
}

.button--primary:hover {
  background: #115e3f;
}

.button--secondary {
  color: var(--cp-text-primary);
  background: var(--cp-surface-base);
  border-color: var(--cp-control-border);
}

.button--secondary:hover {
  border-color: var(--cp-brand);
}

.button--header {
  color: #fff;
}

.button--disabled {
  color: var(--cp-text-disabled);
  background: var(--cp-border);
  cursor: not-allowed;
}

.mobile-menu {
  display: none;
}

.section-shell,
.hero__inner {
  width: min(var(--cp-content-width), calc(100% - (var(--cp-side-padding) * 2)));
  margin: 0 auto;
}

.hero {
  height: 680px;
  overflow: hidden;
  background: var(--cp-surface-canvas);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 600px minmax(0, 1fr);
  align-items: center;
  gap: 100px;
  height: 100%;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  height: auto;
  min-width: 0;
}

.hero h1 {
  width: 600px;
  color: var(--cp-text-primary);
  font-size: 58px;
  font-weight: 750;
  line-height: 66px;
  letter-spacing: -2.2px;
}

.hero__copy > p:not(.hero__release-note) {
  width: 560px;
  color: var(--cp-text-secondary);
  font-size: 18px;
  line-height: 30px;
}

.hero__actions {
  display: flex;
  gap: 12px;
}

.hero__release-note {
  width: 570px;
  color: var(--cp-text-secondary);
  font-size: 12px;
  line-height: 20px;
}

.hero__visual {
  position: relative;
  width: 596px;
  height: 397px;
}

.app-preview {
  width: 596px;
  height: 397px;
  overflow: hidden;
  background: var(--cp-surface-base);
  border: 1px solid var(--cp-border);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 46, 36, 0.12);
}

.app-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__pet {
  position: absolute;
  right: 512px;
  bottom: -39px;
  width: 168px;
  height: 168px;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 14px 14px rgba(13, 31, 46, 0.16));
}

.why-section {
  height: 930px;
  padding: 96px 0 84px;
  overflow: hidden;
  background: var(--cp-surface-base);
}

.section-intro {
  max-width: 900px;
}

.section-intro--wide {
  max-width: 850px;
  height: 120px;
  overflow: hidden;
}

.section-kicker {
  color: var(--cp-brand);
  font-size: 13px;
  font-weight: 650;
  line-height: 16px;
}

.section-intro h2 {
  margin-top: 12px;
  color: var(--cp-text-primary);
  font-size: 40px;
  font-weight: 750;
  line-height: 50px;
  letter-spacing: -1.35px;
}

.section-intro > p:last-child {
  margin-top: 12px;
  color: var(--cp-text-secondary);
  font-size: 16px;
  line-height: 26px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.problem-grid article {
  height: 196px;
  padding: 24px;
  background: var(--cp-surface-subtle);
  border: 1px solid var(--cp-border);
  border-radius: 16px;
}

.problem-grid h3 {
  font-size: 18px;
  font-weight: 650;
  line-height: 26px;
}

.problem-grid p {
  margin-top: 14px;
  color: var(--cp-text-secondary);
  font-size: 14px;
  line-height: 23px;
}

.pillar-heading {
  height: 70px;
  margin-top: 48px;
}

.pillar-heading h3 {
  margin-top: 8px;
  font-size: 30px;
  font-weight: 750;
  line-height: 36px;
  letter-spacing: -0.7px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 220px;
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid var(--cp-border);
  border-radius: 18px;
}

.pillar-card {
  padding: 26px 22px;
  border-right: 1px solid var(--cp-border);
}

.pillar-card:last-child {
  border-right: 0;
}

.icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--cp-brand);
  background: var(--cp-surface-selected);
  border-radius: 12px;
  font-size: 18px;
  font-weight: 650;
}

.pillar-card h3 {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 650;
  line-height: 22px;
}

.pillar-card p {
  max-width: 276px;
  margin-top: 14px;
  color: var(--cp-text-secondary);
  font-size: 13px;
  line-height: 21px;
}

.continuity-section {
  height: 870px;
  padding: 96px 0 60px;
  overflow: hidden;
  background: var(--cp-surface-canvas);
}

.continuity-section .section-intro {
  height: 130px;
  overflow: hidden;
}

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

.scenario-card {
  height: 540px;
  padding: 32px;
  overflow: hidden;
  background: var(--cp-surface-base);
  border: 1px solid var(--cp-border);
  border-radius: 18px;
}

.scenario-card > h3 {
  max-width: 560px;
  margin-top: 16px;
  font-size: 24px;
  font-weight: 650;
  line-height: 36px;
  letter-spacing: -0.3px;
}

.scenario-label {
  color: var(--cp-brand);
  font-size: 13px;
  font-weight: 650;
  line-height: 18px;
}

.scenario-card > p:not(.scenario-note) {
  max-width: 560px;
  margin-top: 14px;
  color: var(--cp-text-secondary);
  font-size: 14px;
  line-height: 23px;
}

.personal-flow {
  display: grid;
  grid-template-columns: 166px 20px 166px 20px 166px;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.personal-flow > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 130px;
  background: var(--cp-surface-subtle);
  border: 1px solid var(--cp-border);
  border-radius: 14px;
}

.personal-flow > div.is-codepet {
  background: var(--cp-surface-selected);
}

.personal-flow strong {
  font-size: 16px;
  line-height: 19px;
}

.personal-flow div span {
  margin-top: 8px;
  color: var(--cp-text-secondary);
  font-size: 12px;
}

.flow-arrow {
  color: var(--cp-brand);
  font-size: 24px;
}

.scenario-note {
  margin-top: 22px;
  color: var(--cp-text-secondary);
  font-size: 12px;
  line-height: 20px;
}

.team-flow {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 0;
  padding: 20px;
  list-style: none;
  background: var(--cp-surface-subtle);
  border: 1px solid var(--cp-border);
  border-radius: 14px;
}

.team-flow li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 36px;
}

.team-flow li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: var(--cp-brand);
  background: var(--cp-surface-selected);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 650;
}

.team-flow div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.team-flow strong {
  font-size: 13px;
  line-height: 16px;
}

.team-flow small {
  color: var(--cp-text-secondary);
  font-size: 11px;
  line-height: 13px;
}

.platform-section {
  height: 570px;
  padding: 96px 0 74px;
  overflow: hidden;
  background: var(--cp-surface-base);
}

.section-intro--platform {
  max-width: 970px;
  height: 150px;
  overflow: hidden;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.platform-grid article {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 148px;
  padding: 20px;
  overflow: hidden;
  background: var(--cp-surface-subtle);
  border: 1px solid var(--cp-border);
  border-radius: 14px;
}

.platform-grid img {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  object-fit: contain;
  border-radius: 12px;
}

.platform-grid h3 {
  font-size: 17px;
  font-weight: 650;
  line-height: 24px;
}

.privacy-section {
  height: 650px;
  padding: 88px 0;
  overflow: hidden;
  background: var(--cp-surface-canvas);
}

.privacy-layout {
  position: relative;
  display: grid;
  grid-template-columns: 430px 720px;
  align-items: center;
  justify-content: space-between;
  height: 474px;
}

.privacy-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  height: 400px;
  background: var(--cp-surface-selected);
  border: 1px solid var(--cp-border);
  border-radius: 28px;
}

.privacy-visual > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 132px;
  color: var(--cp-success);
  background: var(--cp-surface-base);
  border: 2px solid var(--cp-success);
  border-radius: 50%;
  font-size: 52px;
  font-weight: 650;
}

.privacy-visual strong {
  font-size: 16px;
  line-height: 19px;
}

.privacy-visual p {
  color: var(--cp-text-secondary);
  font-size: 14px;
  line-height: 17px;
}

.privacy-copy h2 {
  max-width: 700px;
  margin-top: 20px;
  font-size: 38px;
  font-weight: 750;
  line-height: 48px;
  letter-spacing: -1.2px;
}

.privacy-copy {
  align-self: start;
  height: 440px;
  margin-top: 17px;
  overflow: hidden;
}

.privacy-copy > p:not(.section-kicker) {
  max-width: 690px;
  margin-top: 20px;
  color: var(--cp-text-secondary);
  font-size: 15px;
  line-height: 25px;
}

.privacy-copy ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-copy li {
  position: relative;
  padding-left: 23px;
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
}

.privacy-copy li::before {
  position: absolute;
  left: 0;
  color: var(--cp-success);
  font-weight: 700;
  content: "✓";
}

.release-section {
  min-height: 1064px;
  padding: 96px 0 0;
  background: var(--cp-surface-base);
}

.release-heading {
  height: 126px;
  overflow: hidden;
  text-align: center;
}

.release-heading h2 {
  margin-top: 12px;
  font-size: 38px;
  font-weight: 750;
  line-height: 48px;
  letter-spacing: -1px;
}

.release-heading > p:last-child {
  margin-top: 12px;
  color: var(--cp-text-secondary);
  font-size: 15px;
  line-height: 24px;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.release-card {
  height: 230px;
  padding: 26px;
  background: var(--cp-surface-subtle);
  border: 1px solid var(--cp-border);
  border-radius: 18px;
}

.release-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.release-card__top > span:first-child {
  color: var(--cp-brand);
  font-size: 13px;
  font-weight: 650;
}

.release-availability {
  color: var(--cp-brand);
  font-size: 12px;
  font-weight: 650;
  line-height: 18px;
}

.release-card h3 {
  margin-top: 14px;
  font-size: 22px;
  font-weight: 650;
  line-height: 30px;
}

.release-card > p {
  margin-top: 14px;
  color: var(--cp-text-secondary);
  font-size: 13px;
  line-height: 21px;
}

.release-card > .button {
  margin-top: 14px;
}

.faq {
  height: 320px;
  overflow: hidden;
  margin-top: 42px;
}

.faq > h2 {
  font-size: 26px;
  font-weight: 750;
  line-height: 31px;
}

.faq article {
  min-height: 88px;
  padding: 18px 0;
  border-bottom: 1px solid var(--cp-border);
}

.faq h3 {
  font-size: 15px;
  font-weight: 650;
  line-height: 18px;
}

.faq p {
  margin-top: 8px;
  color: var(--cp-text-secondary);
  font-size: 13px;
  line-height: 21px;
}

.site-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 166px;
  margin-top: 42px;
  padding: 24px 28px;
  background: var(--cp-surface-subtle);
  border-radius: 18px 18px 0 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.footer-brand strong {
  font-size: 15px;
  line-height: 18px;
}

.footer-brand > span,
.footer-brand > a {
  color: var(--cp-text-secondary);
  font-size: 12px;
  line-height: 17px;
}

.footer-security-record {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-security-record img {
  width: 18px;
  height: 20px;
  object-fit: contain;
}

.footer-brand .footer-email {
  color: var(--cp-brand);
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--cp-text-secondary);
  font-size: 12px;
  font-weight: 500;
}

@media (min-width: 981px) {
  .footer-brand .footer-links {
    position: absolute;
    top: 76px;
    right: 28px;
  }
}

@media (min-width: 981px) and (max-width: 1439px) {
  :root {
    --cp-side-padding: 48px;
  }

  .hero {
    height: auto;
    min-height: 640px;
    overflow: visible;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 40px;
    min-height: 640px;
    height: auto;
    padding: 64px 0;
  }

  .hero__copy {
    gap: 20px;
    height: auto;
  }

  .hero h1 {
    width: 100%;
    font-size: clamp(44px, 4.3vw, 54px);
    line-height: 1.12;
    letter-spacing: -1.8px;
  }

  .hero__copy > p:not(.hero__release-note) {
    width: 100%;
    font-size: 16px;
    line-height: 26px;
  }

  .hero__release-note {
    width: 100%;
  }

  .hero__visual,
  .app-preview {
    width: 100%;
    height: auto;
  }

  .app-preview {
    aspect-ratio: 3 / 2;
  }

  .hero__pet {
    right: auto;
    bottom: -26px;
    left: -64px;
    width: 136px;
    height: 136px;
  }

  .why-section,
  .continuity-section,
  .platform-section,
  .privacy-section {
    height: auto;
    overflow: visible;
  }

  .why-section,
  .continuity-section,
  .platform-section,
  .privacy-section {
    padding: 80px 0;
  }

  .section-intro--wide,
  .continuity-section .section-intro,
  .section-intro--platform {
    height: auto;
    overflow: visible;
  }

  .section-intro h2 {
    font-size: 36px;
    line-height: 45px;
  }

  .problem-grid article {
    height: auto;
    min-height: 210px;
  }

  .pillar-heading {
    height: auto;
  }

  .pillar-grid {
    height: auto;
    overflow: visible;
  }

  .pillar-card {
    min-height: 230px;
  }

  .scenario-card {
    height: auto;
    min-height: 520px;
  }

  .personal-flow {
    grid-template-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr);
  }

  .platform-grid article {
    height: auto;
    min-height: 148px;
  }

  .privacy-layout {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: 56px;
    height: auto;
  }

  .privacy-visual {
    height: 360px;
  }

  .privacy-copy {
    height: auto;
    overflow: visible;
  }

  .release-section {
    min-height: 0;
    padding-top: 80px;
  }

  .release-heading,
  .faq {
    height: auto;
    overflow: visible;
  }
}

@media (min-width: 981px) and (max-width: 1199px) {
  .scenario-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 980px) {
  :root {
    --cp-side-padding: 24px;
  }

  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    height: 64px;
    padding: 0 20px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--cp-radius-control);
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span,
  .mobile-menu summary span::after {
    width: 14px;
    height: 2px;
    background: var(--cp-text-primary);
    border-radius: 2px;
    transition: transform 160ms ease;
  }

  .mobile-menu summary span::after {
    display: block;
    content: "";
    transform: rotate(90deg);
  }

  .mobile-menu[open] summary span {
    transform: rotate(45deg);
  }

  .mobile-menu nav {
    position: absolute;
    top: 50px;
    right: 0;
    display: flex;
    flex-direction: column;
    width: 180px;
    padding: 10px;
    background: var(--cp-surface-base);
    border: 1px solid var(--cp-border);
    border-radius: 14px;
    box-shadow: 0 16px 32px rgba(0, 46, 36, 0.12);
  }

  .mobile-menu nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    color: var(--cp-text-secondary);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
  }

  .mobile-menu nav a:hover {
    color: var(--cp-brand);
    background: var(--cp-surface-selected);
  }

  .section-shell,
  .hero__inner {
    width: calc(100% - 48px);
  }

  .desktop-copy {
    display: none;
  }

  .mobile-copy {
    display: inline;
  }

  .hero {
    height: 760px;
  }

  .hero__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    padding: 48px 0 0;
  }

  .hero__copy {
    display: flex;
    height: auto;
  }

  .hero h1 {
    order: 1;
    width: 100%;
    font-size: 42px;
    line-height: 49px;
    letter-spacing: -1.8px;
  }

  .hero h1 br {
    display: none;
  }

  .hero__copy > p:not(.hero__release-note) {
    order: 2;
    width: 100%;
    font-size: 16px;
    line-height: 26px;
  }

  .hero__actions {
    order: 3;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    height: 96px;
    flex: 0 0 96px;
  }

  .hero__release-note {
    order: 4;
    width: 100%;
    font-size: 11px;
    line-height: 18px;
  }

  .hero__visual {
    order: 5;
    width: 100%;
    height: auto;
  }

  .app-preview {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    box-shadow: 0 14px 28px rgba(0, 46, 36, 0.1);
  }

  .hero__pet {
    right: auto;
    bottom: -7px;
    left: 16px;
    width: 124px;
    height: 124px;
    filter: drop-shadow(0 10px 12px rgba(13, 31, 46, 0.16));
  }

  .why-section,
  .continuity-section,
  .platform-section,
  .privacy-section {
    height: auto;
    overflow: visible;
  }

  .why-section {
    height: 1050px;
    padding: 64px 0;
    overflow: hidden;
  }

  .section-intro {
    max-width: none;
  }

  .section-intro--wide,
  .continuity-section .section-intro,
  .section-intro--platform {
    height: auto;
    overflow: visible;
  }

  .section-intro h2 {
    margin-top: 28px;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -1px;
  }

  .section-intro > p:last-child {
    margin-top: 28px;
    font-size: 15px;
    line-height: 24px;
  }

  .section-kicker {
    font-size: 12px;
  }

  .problem-grid,
  .pillar-heading {
    display: none;
  }

  .pillar-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: auto;
    margin-top: 28px;
    overflow: visible;
    border: 0;
    border-radius: 0;
  }

  .pillar-card {
    display: flex;
    gap: 16px;
    min-height: 177px;
    padding: 22px 20px;
    background: var(--cp-surface-subtle);
    border: 1px solid var(--cp-border);
    border-radius: 16px;
  }

  .pillar-card:last-child {
    border-right: 1px solid var(--cp-border);
  }

  .pillar-card h3 {
    margin-top: 0;
  }

  .pillar-card p {
    margin-top: 9px;
  }

  .icon-tile {
    flex: 0 0 42px;
  }

  .continuity-section {
    height: 1230px;
    padding: 64px 0;
    overflow: hidden;
  }

  .scenario-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 28px;
  }

  .scenario-card {
    height: auto;
    min-height: 420px;
    padding: 24px 20px;
  }

  .scenario-card:first-child {
    height: 420px;
    min-height: 420px;
    overflow: hidden;
  }

  .scenario-card > h3 {
    margin-top: 16px;
    font-size: 22px;
    line-height: 30px;
  }

  .scenario-card > p:not(.scenario-note) {
    margin-top: 16px;
    font-size: 13px;
    line-height: 21px;
  }

  .personal-flow {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .personal-flow > div {
    display: grid;
    grid-template-columns: 30px 1fr 1fr;
    justify-items: start;
    height: 50px;
    padding: 0 14px;
    border-radius: 10px;
  }

  .personal-flow > div::before {
    color: var(--cp-brand);
    font-size: 12px;
    font-weight: 650;
  }

  .personal-flow > div:nth-of-type(1)::before {
    content: "1";
  }

  .personal-flow > div:nth-of-type(2)::before {
    content: "2";
  }

  .personal-flow > div:nth-of-type(3)::before {
    content: "3";
  }

  .personal-flow strong {
    font-size: 13px;
  }

  .personal-flow div span {
    margin-top: 0;
    font-size: 11px;
  }

  .flow-arrow,
  .scenario-note {
    display: none;
  }

  .team-flow {
    margin-top: 20px;
  }

  .platform-section {
    height: auto;
    min-height: 0;
    padding: 64px 0;
    overflow: visible;
  }

  .section-intro--platform h2 {
    margin-top: 24px;
  }

  .section-intro--platform > p:last-child {
    margin-top: 24px;
  }

  .platform-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .platform-grid article {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 80px;
    padding: 16px;
    border-radius: 13px;
  }

  .platform-grid img {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .platform-grid h3 {
    font-size: 15px;
    line-height: 18px;
  }

  .privacy-section {
    height: 900px;
    padding: 64px 0;
    overflow: hidden;
  }

  .privacy-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    height: auto;
  }

  .privacy-visual {
    height: 220px;
    border-radius: 22px;
    transform: none;
  }

  .privacy-visual > span {
    width: 88px;
    height: 88px;
    font-size: 36px;
  }

  .privacy-visual strong {
    font-size: 14px;
  }

  .privacy-visual p {
    font-size: 12px;
  }

  .privacy-copy h2 {
    margin-top: 24px;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: -0.8px;
  }

  .privacy-copy {
    height: auto;
    margin-top: 0;
    overflow: visible;
  }

  .privacy-copy > p:not(.section-kicker) {
    margin-top: 24px;
    font-size: 14px;
    line-height: 23px;
  }

  .privacy-copy ul {
    gap: 12px;
    margin-top: 24px;
  }

  .privacy-copy li {
    min-height: 44px;
    font-size: 12px;
    line-height: 19px;
  }

  .release-section {
    height: 1539px;
    min-height: 1539px;
    padding-top: 64px;
    overflow: hidden;
  }

  .release-heading {
    height: auto;
    overflow: visible;
    text-align: left;
  }

  .release-heading h2 {
    margin-top: 24px;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: -0.8px;
  }

  .release-heading > p:last-child {
    margin-top: 24px;
    font-size: 14px;
    line-height: 23px;
  }

  .release-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
  }

  .release-card {
    height: 260px;
    padding: 22px 20px;
    border-radius: 16px;
  }

  .release-card h3 {
    font-size: 20px;
    line-height: 28px;
  }

  .release-card > p {
    font-size: 12px;
    line-height: 20px;
  }

  .faq {
    height: auto;
    overflow: visible;
    margin-top: 24px;
  }

  .faq > h2 {
    font-size: 24px;
  }

  .faq article {
    min-height: 108px;
    margin-top: 24px;
    padding: 16px 0;
  }

  .faq h3 {
    font-size: 14px;
  }

  .faq p {
    margin-top: 7px;
    font-size: 12px;
    line-height: 19px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    height: 201px;
    min-height: 201px;
    margin: 24px 0 48px;
    padding: 22px 20px;
    border-radius: 16px;
  }

  .footer-links {
    gap: 18px;
    font-size: 11px;
  }

  .footer-brand {
    gap: 0;
  }

  .footer-brand > span {
    margin-top: 14px;
  }

  .footer-brand .footer-links,
  .footer-brand .footer-icp-record {
    margin-top: 14px;
  }

  .footer-brand .footer-security-record,
  .footer-brand .footer-email {
    margin-top: 7px;
  }
}

.error-page {
  display: grid;
  min-height: 100vh;
  margin: 0;
  padding: 24px;
  place-items: center;
  background:
    radial-gradient(circle at 12% 10%, rgba(199, 232, 217, 0.48), transparent 34%),
    var(--cp-surface-canvas);
  color: var(--cp-text-primary);
}

.error-page__card {
  display: flex;
  width: min(100%, 560px);
  padding: 48px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--cp-border);
  border-radius: 28px;
  background: var(--cp-surface-base);
  box-shadow: 0 24px 64px rgba(21, 52, 42, 0.12);
}

.error-page__code {
  margin: 28px 0 0;
  color: var(--cp-brand);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.error-page h1 {
  margin: 10px 0 0;
  font-size: clamp(30px, 6vw, 44px);
  line-height: 1.15;
}

.error-page main > p:not(.error-page__code) {
  margin: 18px 0 0;
  color: var(--cp-text-secondary);
  line-height: 1.7;
}

.error-page .button {
  margin-top: 28px;
}

@media (max-width: 520px) {
  .error-page__card {
    padding: 32px 24px;
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
