:root {
  color-scheme: light;
  --ink: #18212b;
  --muted: #5b6673;
  --line: #d9e0e8;
  --canvas: #f5f7fa;
  --paper: #ffffff;
  --blue: #2878e4;
  --blue-dark: #155bbb;
  --green: #26b56c;
  --yellow: #f1ad22;
  --red: #ec5d59;
  --focus: #0e6de6;
  --shadow: 0 12px 30px rgba(37, 57, 77, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: 0;
}

a {
  color: var(--blue-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--blue);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 9px 12px;
  color: #fff;
  background: var(--ink);
  border-radius: 4px;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid rgba(217, 224, 232, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 48px));
  min-height: 68px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  display: block;
  width: 31px;
  height: 31px;
  border: 1px solid #e1e6eb;
  border-radius: 8px;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  white-space: nowrap;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--blue-dark);
}

.site-nav a:hover {
  color: var(--blue-dark);
}

.home-main {
  width: min(800px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 56px;
}

.app-identity {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  margin-bottom: 48px;
}

.app-icon {
  display: block;
  width: 104px;
  height: 104px;
  border: 1px solid #dfe4eb;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
  letter-spacing: 0;
}

h1 {
  font-size: 36px;
  line-height: 1.18;
}

h2 {
  font-size: 22px;
  line-height: 1.34;
}

h3 {
  font-size: 17px;
  line-height: 1.45;
}

.identity-copy {
  margin: 11px 0 0;
  color: var(--muted);
}

.identity-meta {
  margin: 10px 0 0;
  color: #778391;
  font-size: 14px;
}

.document-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.document-link {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 16px;
  min-height: 104px;
  padding: 20px 24px;
  color: inherit;
  text-decoration: none;
}

.document-link + .document-link {
  border-top: 1px solid var(--line);
}

.document-link:hover {
  color: inherit;
  background: #f9fbfe;
}

.document-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 7px;
  background: #eaf3ff;
  color: var(--blue-dark);
  font-size: 21px;
  font-weight: 800;
}

.document-link:nth-child(2) .document-symbol {
  background: #ecf9f1;
  color: #15834a;
}

.document-link h2 {
  font-size: 18px;
}

.document-link p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.arrow {
  color: #7d8996;
  font-size: 22px;
}

.home-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-main {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0 64px;
}

.legal-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 52px;
  padding: 6px 0 32px;
}

.legal-title h1 {
  font-size: 34px;
}

.legal-title p {
  margin: 14px 0 0;
  color: var(--muted);
}

.document-facts {
  align-self: end;
  margin: 0;
  padding: 16px 18px;
  border-left: 3px solid var(--blue);
  background: #edf5ff;
}

.document-facts div + div {
  margin-top: 7px;
}

.document-facts dt,
.document-facts dd {
  display: inline;
  margin: 0;
  font-size: 14px;
}

.document-facts dt {
  color: #526474;
}

.document-facts dd {
  margin-left: 8px;
  color: #1f4163;
  font-weight: 650;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 780px);
  justify-content: space-between;
  gap: 56px;
  align-items: start;
}

.contents {
  position: sticky;
  top: 96px;
  padding: 16px 0 16px 16px;
  border-left: 1px solid var(--line);
}

.contents-title {
  margin: 0 0 8px;
  color: #778391;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.5;
}

.contents a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
}

.contents a:hover {
  color: var(--blue-dark);
}

.legal-article {
  padding: 44px 54px 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.legal-section + .legal-section {
  margin-top: 42px;
}

.legal-section h2 {
  margin-bottom: 14px;
}

.legal-section h3 {
  margin: 21px 0 8px;
}

.legal-section p {
  margin: 10px 0;
}

.legal-section ul {
  margin: 12px 0;
  padding-left: 22px;
}

.legal-section li + li {
  margin-top: 7px;
}

.notice {
  margin: 20px 0;
  padding: 16px 18px;
  border-left: 3px solid var(--yellow);
  background: #fff9e9;
  color: #5d4c1a;
}

.notice strong {
  color: #4e3d09;
}

.legal-section .compact-list {
  margin-top: 8px;
}

.site-footer {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0 34px;
  border-top: 1px solid var(--line);
  color: #778391;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

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

.footer-nav a {
  color: #5f6d7a;
}

.not-found {
  width: min(640px, calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0;
}

.not-found p {
  color: var(--muted);
}

@media (max-width: 760px) {
  .header-inner,
  .legal-main,
  .site-footer,
  .home-main {
    width: min(100% - 32px, 680px);
  }

  .header-inner {
    min-height: 62px;
    gap: 12px;
  }

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

  .site-nav {
    gap: 15px;
    font-size: 13px;
  }

  .home-main {
    padding: 48px 0 40px;
  }

  .app-identity {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 18px;
    margin-bottom: 34px;
  }

  .app-icon {
    width: 76px;
    height: 76px;
    border-radius: 15px;
  }

  h1,
  .legal-title h1 {
    font-size: 29px;
  }

  .document-link {
    grid-template-columns: 38px minmax(0, 1fr) 16px;
    gap: 13px;
    min-height: 92px;
    padding: 17px;
  }

  .document-symbol {
    width: 38px;
    height: 38px;
  }

  .legal-main {
    padding-top: 31px;
  }

  .legal-intro {
    display: block;
    padding-bottom: 24px;
  }

  .document-facts {
    margin-top: 22px;
  }

  .legal-layout {
    display: block;
  }

  .contents {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
    margin: 0 0 20px;
    padding: 13px 0 13px 14px;
  }

  .contents-title {
    grid-column: 1 / -1;
  }

  .legal-article {
    padding: 31px 22px 36px;
  }

  .legal-section + .legal-section {
    margin-top: 34px;
  }

  .footer-inner {
    display: block;
  }

  .footer-nav {
    margin-top: 10px;
  }
}

@media (max-width: 420px) {
  .brand span {
    display: none;
  }

  .site-nav {
    gap: 13px;
  }

  .contents {
    display: block;
  }
}

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

/* Product home */
body.product-home {
  background: #f4f7f8;
}

.product-home .site-header {
  position: absolute;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  backdrop-filter: none;
}

.product-home .brand,
.product-home .site-nav a {
  color: #ffffff;
}

.product-home .site-nav a:hover,
.product-home .site-nav a:focus-visible {
  color: #ffffff;
}

.product-home .brand-mark {
  border-color: rgba(255, 255, 255, 0.38);
}

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

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  color: #ffffff;
  background: #7f93a2;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(21, 42, 55, 0.28);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100% - 64px));
  margin-left: max(32px, calc((100% - 1180px) / 2));
  padding-top: 185px;
}

.hero-kicker,
.hero-detail,
.eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.hero h1 {
  margin-top: 17px;
  color: #ffffff;
  font-size: 64px;
  line-height: 1;
}

.hero-lede {
  max-width: 390px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 33px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.button-light {
  color: #1a3544;
  background: #ffffff;
}

.button-light:hover {
  color: #102b3c;
  background: #eef6f7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #175f9f;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.text-link:hover {
  color: #0e4a81;
}

.text-link-light {
  color: #ffffff;
}

.text-link-light:hover {
  color: #ffffff;
}

.hero-screen {
  position: absolute;
  z-index: 1;
  right: max(8%, calc((100% - 1180px) / 2));
  bottom: -90px;
  width: 420px;
  height: 760px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(19, 36, 47, 0.34);
}

.hero-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.hero-detail {
  position: absolute;
  z-index: 2;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.48);
  color: rgba(255, 255, 255, 0.75);
}

.hero-detail-top {
  top: 138px;
  left: max(32px, calc((100% - 1180px) / 2));
  width: 230px;
}

.hero-detail-bottom {
  bottom: 38px;
  left: max(32px, calc((100% - 1180px) / 2));
  width: 230px;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: 100px;
  padding-top: 136px;
  padding-bottom: 136px;
}

.section-intro .eyebrow,
.gallery-heading .eyebrow,
.legal-band-copy .eyebrow,
.recap-copy .eyebrow,
.date-copy .eyebrow,
.video-copy .eyebrow {
  color: #1970b9;
}

.section-intro h2,
.recap-copy h2,
.date-copy h2,
.video-copy h2,
.gallery-heading h2,
.legal-band-copy h2,
.contact-copy h2 {
  margin-top: 13px;
  font-size: 42px;
  line-height: 1.14;
}

.section-intro > p:last-child,
.recap-copy > p:not(.eyebrow),
.date-copy > p:not(.eyebrow),
.video-copy > p:not(.eyebrow),
.legal-band-copy > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
  margin: 21px 0 0;
  color: #536877;
  font-size: 17px;
}

.memory-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-self: end;
}

.memory-principles article {
  min-height: 232px;
  padding: 18px 0 0;
  border-top: 2px solid #9cc8d8;
}

.principle-number {
  display: block;
  color: #2472aa;
  font-size: 14px;
  font-weight: 750;
}

.memory-principles h3 {
  margin-top: 38px;
  font-size: 19px;
}

.memory-principles p {
  margin: 10px 0 0;
  color: #5c6e7a;
  font-size: 15px;
  line-height: 1.65;
}

.recap-stage {
  overflow: hidden;
  background: #eaf1f2;
}

.recap-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 90px;
  min-height: 805px;
  align-items: center;
}

.recap-copy {
  padding: 90px 0;
}

.feature-list {
  margin: 35px 0 0;
}

.feature-list div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid #bfd0d5;
}

.feature-list div:last-child {
  border-bottom: 1px solid #bfd0d5;
}

.feature-list dt {
  color: #1c3d53;
  font-size: 15px;
  font-weight: 750;
}

.feature-list dd {
  margin: 0;
  color: #60717d;
  font-size: 14px;
}

.recap-screens {
  position: relative;
  min-height: 760px;
}

.screen {
  overflow: hidden;
  border: 1px solid rgba(29, 57, 73, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 52px rgba(43, 68, 82, 0.18);
}

.screen img,
.video-screen img,
.gallery-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-recap-main {
  position: absolute;
  top: 20px;
  right: 55px;
  width: 360px;
  height: 670px;
  transform: rotate(3deg);
}

.screen-recap-detail {
  position: absolute;
  bottom: 24px;
  left: 15px;
  width: 265px;
  height: 500px;
  transform: rotate(-5deg);
}

.date-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 108px;
  min-height: 845px;
  align-items: center;
}

.date-visual {
  position: relative;
  min-height: 680px;
}

.screen-date-main {
  position: absolute;
  top: 0;
  left: 15px;
  width: 330px;
  height: 648px;
  transform: rotate(-3deg);
}

.screen-date-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 300px;
  height: 555px;
  transform: rotate(4deg);
}

.date-copy .text-link {
  margin-top: 31px;
}

.video-stage {
  overflow: hidden;
  color: #ffffff;
  background: #293f3c;
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
  min-height: 775px;
  align-items: center;
}

.video-copy .eyebrow {
  color: #a8d5c6;
}

.video-copy h2 {
  color: #ffffff;
}

.video-copy > p:not(.eyebrow) {
  color: #d0dfda;
}

.video-screen {
  justify-self: end;
  width: 370px;
  height: 700px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 32px 70px rgba(10, 25, 23, 0.35);
  transform: rotate(3deg);
}

.gallery-section {
  padding-top: 136px;
  padding-bottom: 136px;
}

.gallery-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  margin-bottom: 54px;
}

.gallery-heading h2 {
  max-width: 560px;
  margin-top: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 92px;
  gap: 18px;
}

.gallery-image {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #dfe8ea;
}

.gallery-image-wide {
  grid-column: span 5;
  grid-row: span 7;
}

.gallery-image:nth-child(2) {
  grid-column: span 4;
  grid-row: span 5;
}

.gallery-image:nth-child(3) {
  grid-column: span 3;
  grid-row: span 5;
}

.gallery-note {
  display: flex;
  grid-column: span 7;
  grid-row: span 2;
  align-items: center;
  padding: 25px 35px;
  border-top: 3px solid #efb55b;
  background: #fff2d9;
}

.gallery-note p {
  max-width: 560px;
  margin: 0;
  color: #5e4824;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.45;
}

.legal-band {
  border-top: 1px solid #d8e1e4;
  border-bottom: 1px solid #d8e1e4;
  background: #ffffff;
}

.legal-band-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 108px;
  padding-top: 112px;
  padding-bottom: 112px;
}

.legal-documents {
  align-self: center;
  border-top: 1px solid #d6e0e3;
}

.legal-document {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 28px;
  gap: 18px;
  align-items: center;
  min-height: 118px;
  color: #1e3443;
  text-decoration: none;
  border-bottom: 1px solid #d6e0e3;
}

.legal-document:hover {
  color: #145d9b;
}

.legal-document-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 7px;
  color: #1461a2;
  background: #e7f1fb;
  font-size: 20px;
  font-weight: 800;
}

.legal-document-mark-green {
  color: #167149;
  background: #e6f5ed;
}

.legal-document strong,
.legal-document small {
  display: block;
}

.legal-document strong {
  font-size: 18px;
}

.legal-document small {
  margin-top: 3px;
  color: #61737e;
  font-size: 14px;
  line-height: 1.5;
}

.contact-band {
  color: #ffffff;
  background: #263d39;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.83fr) minmax(0, 1.17fr);
  gap: 108px;
  padding-top: 118px;
  padding-bottom: 118px;
}

.eyebrow-light {
  color: #abd9c8;
}

.contact-copy h2 {
  color: #ffffff;
}

.contact-copy > p:not(.eyebrow) {
  color: #d4e3de;
}

.contact-side-note {
  padding-top: 24px;
  border-top: 1px solid rgba(214, 232, 223, 0.28);
  font-size: 14px !important;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 34px;
  border-radius: 8px;
  background: #f8fbfb;
  color: #1d3541;
}

.form-row {
  min-width: 0;
}

.form-row:nth-child(3),
.form-row:nth-child(4),
.form-submit-row {
  grid-column: 1 / -1;
}

.form-row label {
  display: block;
  margin-bottom: 7px;
  color: #3e5967;
  font-size: 13px;
  font-weight: 750;
}

.form-row label span {
  color: #738793;
  font-weight: 500;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid #c8d5d9;
  border-radius: 5px;
  background: #ffffff;
  color: #1c3440;
  font: inherit;
  font-size: 16px;
  line-height: 1.45;
}

.form-row input,
.form-row select {
  height: 46px;
  padding: 0 12px;
}

.form-row textarea {
  min-height: 126px;
  padding: 11px 12px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #1874b4;
  outline: 3px solid rgba(47, 132, 197, 0.2);
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 4px;
}

.button-contact {
  flex: 0 0 auto;
  color: #ffffff;
  background: #1c806a;
}

.button-contact:hover:not(:disabled) {
  background: #116b58;
}

.button-contact:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #4e6a72;
  font-size: 14px;
  line-height: 1.45;
}

.form-status[data-state="error"] {
  color: #ad3434;
}

.form-status[data-state="success"] {
  color: #23735e;
}

.home-footer {
  width: 100%;
  padding: 0;
  border-top: 1px solid rgba(200, 218, 211, 0.22);
  color: #d5e2de;
  background: #263d39;
}

.home-footer .footer-inner {
  width: min(1180px, calc(100% - 64px));
  min-height: 92px;
  align-items: center;
}

.footer-brand {
  color: #ffffff;
  font-weight: 750;
}

.footer-date {
  margin-left: 16px;
  color: #b8cbc5;
}

.home-footer .footer-nav a {
  color: #d5e2de;
}

.home-footer .footer-nav a:hover {
  color: #ffffff;
}

html.has-js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 480ms ease, transform 480ms ease;
}

html.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .section-shell,
  .home-footer .footer-inner {
    width: min(100% - 48px, 780px);
  }

  .hero {
    min-height: 740px;
  }

  .hero-copy {
    padding-top: 160px;
  }

  .hero-screen {
    right: 5%;
    width: 340px;
    height: 640px;
  }

  .hero-detail-top {
    display: none;
  }

  .intro-section,
  .recap-grid,
  .date-stage,
  .video-grid,
  .legal-band-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .intro-section,
  .date-stage,
  .legal-band-inner,
  .contact-grid {
    min-height: auto;
  }

  .memory-principles {
    max-width: 700px;
  }

  .recap-grid {
    padding-top: 78px;
    padding-bottom: 68px;
  }

  .recap-copy {
    max-width: 600px;
    padding: 0;
  }

  .recap-screens {
    max-width: 610px;
    width: 100%;
    margin: 0 auto;
  }

  .date-stage {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .date-copy {
    max-width: 590px;
  }

  .video-grid {
    padding-top: 88px;
  }

  .video-screen {
    justify-self: start;
    margin-left: 34px;
  }

  .gallery-grid {
    grid-auto-rows: 72px;
  }

  .legal-band-inner,
  .contact-grid {
    padding-top: 88px;
    padding-bottom: 88px;
  }
}

@media (max-width: 640px) {
  .section-shell,
  .home-footer .footer-inner {
    width: min(100% - 32px, 520px);
  }

  .product-home .brand span,
  .product-home .site-nav a:first-child {
    display: none;
  }

  body:not(.product-home) .brand span {
    display: none;
  }

  .product-home .site-nav {
    gap: 16px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-copy {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding-top: 142px;
  }

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

  .hero-lede {
    max-width: 270px;
    font-size: 18px;
  }

  .hero-actions {
    gap: 17px;
    margin-top: 26px;
  }

  .hero-screen {
    right: -60px;
    bottom: -115px;
    width: 290px;
    height: 552px;
  }

  .hero-detail-bottom {
    bottom: 28px;
    left: 16px;
    width: 142px;
    font-size: 11px;
  }

  .intro-section,
  .gallery-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .section-intro h2,
  .recap-copy h2,
  .date-copy h2,
  .video-copy h2,
  .gallery-heading h2,
  .legal-band-copy h2,
  .contact-copy h2 {
    font-size: 32px;
  }

  .section-intro > p:last-child,
  .recap-copy > p:not(.eyebrow),
  .date-copy > p:not(.eyebrow),
  .video-copy > p:not(.eyebrow),
  .legal-band-copy > p:not(.eyebrow),
  .contact-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .memory-principles {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .memory-principles article {
    min-height: 0;
    padding: 17px 0 22px;
  }

  .memory-principles h3 {
    margin-top: 22px;
  }

  .recap-grid,
  .date-stage,
  .video-grid {
    gap: 43px;
  }

  .recap-grid {
    min-height: 810px;
    padding-top: 82px;
  }

  .feature-list div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .recap-screens {
    min-height: 515px;
  }

  .screen-recap-main {
    top: 0;
    right: 2px;
    width: 220px;
    height: 430px;
  }

  .screen-recap-detail {
    bottom: 0;
    left: 0;
    width: 170px;
    height: 330px;
  }

  .date-stage {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .date-visual {
    min-height: 475px;
  }

  .screen-date-main {
    left: 0;
    width: 205px;
    height: 423px;
  }

  .screen-date-detail {
    width: 184px;
    height: 344px;
  }

  .video-grid {
    min-height: 760px;
    padding-top: 82px;
  }

  .video-screen {
    width: 250px;
    height: 500px;
    margin-left: 20px;
  }

  .gallery-heading {
    display: block;
    margin-bottom: 34px;
  }

  .gallery-heading h2 {
    margin-top: 13px;
  }

  .gallery-grid {
    grid-auto-rows: 54px;
    gap: 10px;
  }

  .gallery-image-wide {
    grid-column: span 7;
    grid-row: span 7;
  }

  .gallery-image:nth-child(2) {
    grid-column: span 5;
    grid-row: span 4;
  }

  .gallery-image:nth-child(3) {
    grid-column: span 5;
    grid-row: span 3;
  }

  .gallery-note {
    grid-column: span 12;
    grid-row: span 3;
    padding: 20px;
  }

  .gallery-note p {
    font-size: 17px;
  }

  .legal-band-inner,
  .contact-grid {
    gap: 46px;
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .legal-document {
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    gap: 13px;
    min-height: 112px;
  }

  .legal-document-mark {
    width: 40px;
    height: 40px;
  }

  .legal-document small {
    font-size: 13px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 23px;
  }

  .form-row:nth-child(3),
  .form-row:nth-child(4),
  .form-submit-row {
    grid-column: auto;
  }

  .form-submit-row {
    display: block;
  }

  .form-status {
    margin-top: 12px;
  }

  .home-footer .footer-inner {
    display: block;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .footer-date {
    display: block;
    margin: 5px 0 0;
  }

  .home-footer .footer-nav {
    flex-wrap: wrap;
    margin-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.has-js .reveal,
  html.has-js .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
