:root {
  --blue:#4285f4;
  --red:#ea4335;
  --yellow:#fbbc04;
  --green:#34a853;
  --ink:#202b43;
  --muted:#626d7d;
  --line:#e2e7ef;
  --blue-soft:#edf4ff;
  --surface:#f7f9fc;
  --font:"Noto Sans JP","Yu Gothic UI","Hiragino Kaku Gothic ProN","Meiryo",sans-serif
}

* {
  box-sizing:border-box
}

html {
  scroll-behavior:smooth
}

body {
  margin:0;
  background:#fff;
  color:var(--ink);
  font-family:var(--font);
  font-size:16px;
  -webkit-font-smoothing:antialiased
}

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

button {
  font:inherit;
  color:inherit;
  cursor:pointer
}

button:disabled {
  opacity:.35;
  cursor:default
}

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

button:focus-visible,a:focus-visible {
  outline:3px solid #185abc;
  outline-offset:5px
}

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

button {
  border:0
}

em {
  font-style:normal;
  color:#2768d2
}

.wrap {
  width:min(1280px,calc(100% - 112px));
  margin-inline:auto
}

.color-rule,.slide-color-rule {
  height:4px;
  background:linear-gradient(to right,var(--blue) 0 25%,var(--red) 25% 50%,var(--yellow) 50% 75%,var(--green) 75%)
}

.skip-link {
  position:fixed;
  top:-100px;
  left:16px;
  z-index:20;
  background:var(--ink);
  color:white;
  padding:16px
}

.skip-link:focus {
  top:12px
}

.site-header {
  height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px
}

.wordmark {
  font-size:23px;
  letter-spacing:-.8px;
  font-weight:650;
  display:flex;
  align-items:center;
  gap:5px
}

.wordmark>span:first-child {
  font-weight:400;
  color:#666d79
}

.brand-divider {
  height:22px;
  width:1px;
  background:var(--line);
  margin:0 13px
}

.wordmark small {
  font-size:13px;
  letter-spacing:.05em;
  font-weight:500;
  color:var(--muted)
}

.site-header nav {
  display:flex;
  flex-wrap:wrap;
  gap:32px;
  align-items:center;
  font-size:14px
}

.quiet-button {
  background:transparent;
  padding:12px 0
}

.site-header nav span {
  margin-left:8px;
  color:var(--muted)
}

.hero {
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:72px;
  padding-top:56px;
  padding-bottom:70px;
  align-items:center
}

.eyebrow {
  font-size:11px;
  font-weight:650;
  letter-spacing:.15em;
  color:var(--muted);
  display:flex;
  align-items:center;
  gap:11px
}

.tiny-rule {
  width:24px;
  height:2px;
  background:var(--blue)
}

.hero h1 {
  font-size:clamp(36px,4.1vw,58px);
  line-height:1.4;
  letter-spacing:-.045em;
  font-weight:750;
  margin-top:22px;
  white-space:nowrap
}

.hero h1 em {
  color:#3479df
}

.hero-description {
  font-size:17px;
  line-height:1.9;
  color:var(--muted);
  margin-top:23px
}

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

.primary-button {
  padding:18px 24px;
  border-radius:8px;
  background:#246ad4;
  color:white;
  font-size:14px;
  font-weight:600;
  box-shadow:0 4px 10px #246ad418;
  transition:background .2s,transform .2s
}

.primary-button:hover {
  background:#195abd;
  transform:translateY(-2px)
}

.play-icon {
  font-size:11px;
  margin-right:9px
}

.time-label {
  font-size:12px;
  color:var(--muted);
  white-space:nowrap
}

.hero-diagram {
  padding:26px 28px 20px;
  border-radius:24px;
  background:#f8fafd;
  border:1px solid #edf0f5;
  position:relative
}

.diagram-heading {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-bottom:24px;
  font-size:14px;
  font-weight:600
}

.diagram-index {
  font-size:10px;
  letter-spacing:.1em;
  color:#7a8493
}

.hero-step {
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  background:#fff;
  padding:19px 21px;
  border:1px solid var(--line);
  border-radius:13px;
  box-shadow:0 3px 8px #20375603;
  position:relative
}

.hero-step:before {
  content:"";
  position:absolute;
  left:-1px;
  top:24px;
  bottom:24px;
  width:3px;
  background:var(--blue);
  border-radius:3px
}

.step-green:before {
  background:var(--green)
}

.step-yellow:before {
  background:var(--yellow)
}

.hero-step-label {
  display:grid;
  grid-template-columns:23px 1fr;
  gap:7px
}

.hero-step-label>span {
  font-size:11px;
  color:var(--muted);
  padding-top:5px
}

.hero-step-label strong {
  font-size:21px;
  font-weight:650;
  letter-spacing:-.05em
}

.hero-step-label small {
  grid-column:2;
  font-size:11px;
  white-space:nowrap;
  color:var(--muted)
}

.hero-services {
  display:flex;
  gap:12px;
  align-items:center
}

.hero-services .service img {
  width:29px;
  height:29px
}

.hero-services .service {
  gap:0
}

.step-connector {
  height:43px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 20px 0 44px;
  color:#7f8997;
  font-size:10px
}

.step-connector>span:last-child {
  font-size:22px;
  color:#a9bad0
}

.diagram-footnote {
  padding:21px 0 0;
  text-align:center;
  font-size:11px;
  letter-spacing:.06em;
  color:var(--muted)
}

.gallery-section {
  background:#f7f9fc;
  border-top:1px solid #edf0f5;
  border-bottom:1px solid #edf0f5;
  padding:40px 0 20px;
  scroll-margin-top:22px;
  overflow:hidden
}

.gallery-heading {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px
}

.gallery-heading h2 {
  font-size:26px;
  letter-spacing:-.035em;
  display:flex;
  align-items:center;
  gap:19px;
  margin-top:11px
}

.gallery-heading .eyebrow {
  font-size:10px
}

.count-pill {
  border:1px solid #dce2ec;
  border-radius:5px;
  font-size:9px;
  color:#677388;
  letter-spacing:.06em;
  padding:5px 8px;
  white-space:nowrap
}

.chapter-bar {
  display:flex;
  gap:30px;
  margin-top:26px;
  margin-bottom:23px
}

.chapter-button {
  background:transparent;
  display:flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  color:var(--muted);
  padding:8px 0;
  white-space:nowrap;
  position:relative
}

.chapter-button.is-current {
  color:var(--ink)
}

.chapter-button.is-current:after {
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-4px;
  height:2px;
  background:var(--ink);
  border-radius:3px
}

.chapter-button small {
  font-size:10px;
  color:#87909d;
  margin-left:3px
}

.chapter-dot {
  display:inline-block;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--blue);
  flex-shrink:0
}

.chapter-dot.green {
  background:var(--green)
}

.chapter-dot.yellow {
  background:var(--yellow)
}

.chapter-dot.red {
  background:var(--red)
}

.gallery-track {
  list-style:none;
  display:flex;
  gap:22px;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:none;
  scroll-padding-inline:max(56px,calc((100vw - 1280px)/2));
  padding:8px max(56px,calc((100vw - 1280px)/2)) 18px;
  margin:0;
  scrollbar-width:none;
  touch-action:pan-x pan-y;
  overscroll-behavior-x:contain;
  cursor:grab
}

.gallery-track::-webkit-scrollbar {
  display:none
}

.gallery-track.is-dragging {
  cursor:grabbing;
  scroll-snap-type:none;
  user-select:none;
  scroll-behavior:auto
}

.gallery-card {
  flex:0 0 clamp(480px,54vw,780px);
  min-width:0;
  scroll-snap-align:start;
  position:relative
}

.preview {
  width:100%;
  aspect-ratio:16/9;
  position:relative;
  border:1px solid #dce3ee;
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 4px 12px #25395704;
  transition:border-color .2s,box-shadow .2s
}

.preview .slide {
  transform:scale(var(--preview-scale,.3));
  transform-origin:top left
}

.gallery-card:hover .preview {
  border-color:#93bafa;
  box-shadow:0 8px 22px #2863b710
}

.card-open {
  background:transparent;
  text-align:left;
  display:block;
  width:100%;
  padding:15px 1px 8px;
  line-height:1.6;
  cursor:inherit
}

.card-open:after {
  position:absolute;
  content:"";
  inset:0
}

.card-meta {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:10px;
  color:var(--muted);
  margin-bottom:6px;
  letter-spacing:.03em
}

.card-number {
  font-weight:700;
  color:#2b72d5;
  font-size:12px
}

.card-title {
  font-size:14px;
  font-weight:600;
  display:block;
  overflow-wrap:anywhere
}

.card-open:focus-visible {
  outline-offset:3px;
  border-radius:6px
}

.gallery-bottom {
  display:flex;
  justify-content:flex-end;
  align-items:center;
  font-size:11px;
  color:var(--muted);
  margin-top:17px
}

.gallery-position {
  font-size:15px;
  font-variant-numeric:tabular-nums;
  color:var(--ink)
}

.gallery-position span {
  color:#8a95a6;
  font-size:11px;
  margin-left:4px
}

.page-note {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  padding-top:37px;
  padding-bottom:37px
}

.page-note strong {
  font-size:15px;
  font-weight:600
}

.page-note p {
  color:var(--muted);
  font-size:12px;
  margin-top:9px
}

.page-note a {
  font-size:12px;
  white-space:nowrap;
  color:#3f6cae
}

.site-footer {
  border-top:1px solid var(--line);
  padding:20px 0 28px;
  color:#6e7989;
  font-size:10px;
  display:flex;
  justify-content:space-between;
  gap:20px
}

.noscript-notice {
  position:fixed;
  bottom:0;
  padding:24px;
  background:#fff3cd;
  width:100%;
  text-align:center
}

/* A single 1280 × 720 slide is moved between the preview slot and the stage. */
.slide {
  width:1280px;
  height:720px;
  position:relative;
  background:#fff;
  overflow:hidden;
  color:var(--ink);
  font-family:var(--font);
  font-size:24px;
  line-height:1.5;
  text-align:left;
  flex-shrink:0
}

.slide-color-rule {
  height:6px;
  position:absolute;
  top:0;
  left:0;
  right:0
}

.slide-header {
  padding:42px 62px 0
}

.slide-kicker {
  font-size:15px;
  font-weight:650;
  color:#426da9;
  letter-spacing:.09em;
  margin-bottom:13px
}

.slide-kicker span {
  color:#c1cbd8;
  margin:0 13px
}

.slide-header h2 {
  font-size:38px;
  line-height:1.45;
  letter-spacing:-.025em;
  font-weight:720;
  white-space:nowrap
}

.slide-description {
  font-size:21px;
  color:var(--muted);
  margin-top:11px
}

.slide-body {
  padding:24px 62px 0
}

.slide h3 {
  font-size:26px;
  line-height:1.4;
  font-weight:650
}

.slide p {
  line-height:1.6
}

.slide-footer {
  position:absolute;
  bottom:24px;
  left:62px;
  right:62px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:22px;
  font-size:15px;
  color:#637085;
  line-height:1.5
}

.slide-footer>span:first-child {
  max-width:1060px
}

.slide-footer>span:last-child {
  white-space:nowrap;
  font-size:14px;
  font-weight:600;
  letter-spacing:.04em
}

.service {
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  flex-shrink:0;
  vertical-align:middle;
  font-size:16px;
  font-weight:500;
  color:#586579;
  line-height:1.3
}

.service img {
  width:48px;
  height:48px;
  object-fit:contain;
  flex-shrink:0
}

.service-fallback {
  font-size:16px;
  letter-spacing:0;
  color:var(--ink);
  font-weight:600;
  min-width:44px;
  padding:8px
}

.service-row {
  display:flex;
  gap:24px;
  align-items:center
}

.service-row .service {
  min-width:53px
}

.blue-text {
  color:#286bce
}

.green-text {
  color:#268446
}

.red-text {
  color:#c4473c
}

.blue-surface {
  background:var(--blue-soft)!important;
  border-color:#d5e3fa!important
}

.muted {
  color:var(--muted)
}

.takeaway {
  margin-top:24px;
  display:flex;
  align-items:center;
  gap:15px;
  font-size:23px;
  font-weight:600;
  letter-spacing:-.015em
}

.takeaway-line {
  width:28px;
  height:3px;
  background:var(--blue);
  flex-shrink:0
}

.tags {
  display:flex;
  gap:12px;
  flex-wrap:wrap
}

.tag {
  font-size:19px;
  background:#f1f5fa;
  border:1px solid #e2e8f1;
  border-radius:6px;
  padding:7px 17px;
  color:#58667a
}

.section-number {
  font-size:15px;
  letter-spacing:.08em;
  font-weight:650
}

.cover-layout {
  display:grid;
  grid-template-columns:1.18fr .85fr;
  align-items:center;
  gap:48px;
  height:622px
}

.slide-cover .slide-body {
  padding-top:17px
}

.slide .eyebrow {
  font-size:15px;
  letter-spacing:.13em;
  color:#63758d
}

.cover-layout h2 {
  font-size:51px;
  line-height:1.42;
  letter-spacing:-.035em;
  margin:28px 0 21px
}

.cover-subtitle {
  font-size:24px;
  color:var(--muted)
}

.cover-layout .service-row {
  margin-top:34px;
  gap:20px
}

.cover-layout .service-row img {
  width:38px;
  height:38px
}

.cover-layout .service-row .service {
  font-size:13px;
  min-width:45px
}

.cover-diagram {
  padding:30px;
  background:#f7f9fd;
  border-radius:26px
}

.cover-step {
  display:flex;
  align-items:center;
  gap:20px;
  padding:22px 18px;
  border:1px solid var(--line);
  border-radius:14px;
  background:white
}

.cover-step .service {
  min-width:65px;
  font-size:13px
}

.cover-step img {
  height:48px;
  width:48px
}

.cover-step small {
  font-size:15px;
  color:var(--muted)
}

.cover-step h3 {
  font-size:24px;
  white-space:nowrap;
  margin-top:4px
}

.cover-number {
  font-size:15px;
  color:#96a6ba;
  align-self:flex-start;
  margin-left:auto
}

.cover-link {
  height:38px;
  color:#b1c1d8;
  font-size:29px;
  text-align:center
}

.value-hub {
  height:342px;
  position:relative;
  display:flex;
  justify-content:space-between
}

.value-hub svg {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  fill:none;
  stroke:#d5e1f3;
  stroke-width:2
}

.hub-center {
  position:absolute;
  width:270px;
  height:230px;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  background:#f3f7fe;
  border:1px solid #d9e6fc;
  border-radius:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:9px
}

.hub-center small {
  font-size:16px;
  color:#5f779a
}

.hub-center strong {
  font-size:32px;
  line-height:1.25;
  text-align:center
}

.hub-center .service-row {
  gap:13px;
  margin-top:8px
}

.hub-center .service {
  font-size:11px;
  gap:3px;
  min-width:38px
}

.hub-center .service img {
  width:28px;
  height:28px
}

.hub-column {
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  z-index:1;
  width:353px
}

.hub-value {
  display:flex;
  gap:20px;
  align-items:center;
  border:1px solid #dfe6ef;
  background:white;
  padding:18px 23px;
  border-radius:14px;
  height:98px
}

.value-number {
  font-size:25px;
  font-weight:500
}

.hub-value h3 {
  font-size:25px
}

.hub-value p {
  font-size:17px;
  color:var(--muted);
  margin-top:4px
}

.ecosystem-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px 24px
}

.ecosystem-group {
  border:1px solid var(--line);
  border-radius:15px;
  padding:17px 24px;
  position:relative;
  min-height:178px
}

.ecosystem-group h3 {
  font-size:25px;
  margin:5px 0 14px
}

.ecosystem-group .service-row {
  position:absolute;
  right:24px;
  top:67px;
  gap:16px
}

.ecosystem-group .service {
  font-size:12px;
  min-width:42px
}

.ecosystem-group img {
  width:34px;
  height:34px
}

.ecosystem-group>p {
  font-size:17px;
  color:var(--muted);
  margin-top:43px
}

.ai-foundation {
  margin-top:19px;
  display:flex;
  align-items:center;
  gap:24px;
  border-top:2px solid #d9e5f8;
  padding:18px 23px;
  background:#f5f8fd;
  border-radius:0 0 12px 12px
}

.ai-foundation .service {
  flex-direction:row;
  gap:12px;
  font-size:18px
}

.ai-foundation img {
  width:30px;
  height:30px
}

.ai-foundation strong {
  font-size:21px
}

.ai-foundation>span:last-child {
  font-size:19px;
  color:var(--muted);
  margin-left:auto
}

.comparison-table {
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden
}

.comparison-heading,.comparison-row {
  display:grid;
  grid-template-columns:1fr 70px 1.35fr;
  align-items:center
}

.comparison-heading {
  background:#f4f7fb;
  font-size:17px;
  color:#728098;
  font-weight:650;
  height:48px;
  padding:0 26px
}

.comparison-heading>span:last-child {
  color:#2164cd
}

.comparison-heading small {
  font-size:15px;
  margin-left:15px;
  font-weight:400
}

.comparison-row {
  font-size:24px;
  padding:12px 26px;
  border-top:1px solid #e7ecf3;
  min-height:57px
}

.comparison-row>span:first-child {
  color:#6c7889
}

.comparison-arrow {
  color:#93afda;
  text-align:center;
  font-size:22px
}

.comparison-after {
  display:flex;
  align-items:center;
  gap:18px;
  font-weight:550
}

.comparison-after .service img {
  width:30px;
  height:30px
}

.drive-map {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-top:13px
}

.drive-side {
  display:flex;
  flex-direction:column;
  gap:19px;
  width:348px
}

.info-card {
  padding:21px 25px;
  border-radius:15px;
  border:1px solid var(--line);
  background:#f9fafc
}

.info-card small {
  font-size:17px;
  color:var(--muted)
}

.info-card h3 {
  margin:5px 0
}

.info-card p {
  font-size:18px;
  color:var(--muted)
}

.map-arrow {
  font-size:34px;
  color:#b5c5dd
}

.drive-center {
  border:1px solid #d8e5fa;
  border-radius:26px;
  background:#f0f6ff;
  width:300px;
  height:290px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:17px
}

.drive-center .service {
  font-size:26px;
  font-weight:650
}

.drive-center .service img {
  width:80px;
  height:80px
}

.drive-center strong {
  font-size:22px
}

.access-label {
  font-size:17px;
  color:#47709f
}

.benefit-strip {
  display:flex;
  justify-content:center;
  gap:0;
  background:#f5f8fc;
  border-radius:12px;
  margin-top:25px;
  padding:23px 0;
  font-size:22px
}

.benefit-strip>span {
  padding:0 38px;
  border-left:1px solid #d5dfef
}

.benefit-strip>span:first-child {
  border-left:0
}

.collaboration-layout {
  display:grid;
  grid-template-columns:730px 1fr;
  gap:35px
}

.document-mock {
  border:1px solid #dfe6ef;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 12px 24px #1d3e6e08;
  height:417px
}

.mock-top {
  height:59px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 17px;
  background:#f7f9fc;
  font-size:20px
}

.mock-top .service img {
  width:29px;
  height:29px
}

.avatars {
  display:flex;
  margin-left:auto;
  padding-right:5px
}

.avatars>span {
  width:30px;
  height:30px;
  border-radius:50%;
  border:2px solid white;
  background:#e2edfd;
  color:#3279d8;
  text-align:center;
  font-size:13px;
  line-height:27px;
  margin-left:-5px
}

.avatars>span:nth-child(2) {
  background:#e2f1e7;
  color:#238442
}

.avatars>span:nth-child(3) {
  background:#fce8e6;
  color:#c74638
}

.shared-chip {
  background:#dce9fc;
  color:#2968b9;
  font-size:14px;
  padding:7px 13px;
  border-radius:20px
}

.mock-menu {
  height:37px;
  font-size:14px;
  padding:7px 18px;
  border-top:1px solid #eef1f6;
  border-bottom:1px solid #e4eaf3;
  background:#fafbfd;
  color:#6f7b8b
}

.document-content {
  position:relative;
  padding:29px 40px
}

.document-kicker {
  font-size:11px;
  color:#667a99;
  letter-spacing:.13em
}

.document-content h3 {
  font-size:27px;
  margin-top:9px
}

.document-content p {
  font-size:17px;
  margin-top:12px;
  color:#758297
}

.highlight-text {
  font-size:18px;
  background:#e7f4e8;
  padding:3px 0;
  margin-top:18px;
  display:inline-block;
  position:relative;
  color:#49624d;
  border-right:2px solid #34a853
}

.editor-cursor {
  position:absolute;
  right:-38px;
  top:-20px;
  font-size:12px;
  background:#34a853;
  color:#fff;
  padding:2px 8px;
  border-radius:3px
}

.document-lines {
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:20px
}

.document-lines span {
  height:6px;
  background:#edf0f5;
  width:63%;
  border-radius:6px
}

.document-lines span:nth-child(2) {
  width:45%
}

.comment-bubble {
  position:absolute;
  right:15px;
  bottom:5px;
  width:273px;
  display:flex;
  gap:10px;
  background:white;
  box-shadow:0 5px 20px #193e6b12;
  border:1px solid #dce5f1;
  border-radius:10px;
  padding:14px
}

.comment-bubble strong {
  font-size:13px
}

.comment-bubble p {
  font-size:15px;
  margin-top:7px;
  color:var(--muted)
}

.avatar-small {
  font-size:12px;
  flex-shrink:0;
  background:#fce8e6;
  color:#bd463b;
  width:25px;
  height:25px;
  border-radius:50%;
  line-height:25px;
  text-align:center
}

.collaboration-aside {
  padding:7px 0
}

.collaboration-aside .service-row {
  margin-bottom:26px;
  gap:30px
}

.numbered-point {
  display:flex;
  gap:18px;
  margin-top:22px
}

.numbered-point b {
  font-size:17px;
  font-weight:500;
  color:#3675c9
}

.numbered-point h3 {
  font-size:25px
}

.numbered-point p {
  font-size:17px;
  color:var(--muted);
  margin-top:4px
}

.flow {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:22px;
  margin-top:21px
}

.flow-node {
  background:#f9fbfe;
  border:1px solid #dde5f1;
  border-radius:15px;
  min-width:0;
  position:relative;
  text-align:center;
  padding:23px 10px 21px;
  min-height:248px
}

.flow-node:not(:last-child):after {
  content:"→";
  position:absolute;
  right:-21px;
  top:50%;
  font-size:26px;
  color:#93aed4;
  transform:translateY(-50%)
}

.node-index {
  position:absolute;
  top:13px;
  left:15px;
  color:#7c8fa9;
  font-size:12px;
  letter-spacing:.04em
}

.flow-node .service {
  margin:17px 0 14px;
  font-size:16px;
  gap:9px
}

.flow-node .service img {
  width:48px;
  height:48px
}

.flow-node h3 {
  font-size:25px;
  margin-bottom:10px
}

.flow-node p {
  font-size:20px;
  color:var(--muted);
  line-height:1.55
}

.flow-symbol {
  display:block;
  font-size:40px;
  color:#418b57;
  height:87px;
  padding-top:22px;
  margin-bottom:16px
}

.six-flow {
  grid-template-columns:repeat(6,1fr);
  gap:20px
}

.six-flow .flow-node {
  padding:23px 6px 20px;
  min-height:270px
}

.six-flow h3 {
  font-size:23px
}

.six-flow .flow-node p {
  font-size:18px
}

.meeting-ribbon {
  margin-top:27px;
  background:var(--blue-soft);
  border-radius:14px;
  padding:22px 26px
}

.meeting-ribbon strong {
  font-size:24px;
  color:#3569aa
}

.meeting-ribbon p {
  font-size:19px;
  color:#667992;
  margin-top:6px
}

.portal-layout {
  display:grid;
  grid-template-columns:238px 1fr 238px;
  gap:29px;
  align-items:center;
  margin-top:10px
}

.portal-spokes {
  display:flex;
  flex-direction:column;
  gap:30px
}

.portal-link {
  padding:18px 12px;
  background:#f8fafc;
  border:1px solid var(--line);
  border-radius:13px;
  text-align:center;
  position:relative
}

.portal-spokes:first-child .portal-link:after {
  content:"";
  position:absolute;
  right:-30px;
  top:50%;
  width:29px;
  height:2px;
  background:#ccdcef
}

.portal-spokes:last-child .portal-link:after {
  content:"";
  position:absolute;
  left:-30px;
  top:50%;
  width:29px;
  height:2px;
  background:#ccdcef
}

.small-label {
  font-size:15px;
  color:#5275a5
}

.portal-link h3 {
  font-size:23px;
  margin-top:9px
}

.portal-link p {
  font-size:17px;
  color:var(--muted);
  margin-top:5px
}

.portal-mock {
  border:1px solid #cfddef;
  border-radius:17px;
  overflow:hidden;
  box-shadow:0 12px 24px #193e6b09
}

.browser-bar {
  height:31px;
  display:flex;
  gap:6px;
  align-items:center;
  background:#edf2f9;
  padding:0 14px;
  font-size:10px;
  color:#71849e
}

.browser-bar i {
  width:6px;
  height:6px;
  border-radius:50%;
  background:#c2cde0
}

.browser-bar span {
  margin:auto
}

.portal-header {
  display:flex;
  align-items:center;
  gap:10px;
  padding:16px;
  font-size:15px;
  border-bottom:1px solid #e6edf5
}

.portal-header .service img {
  width:24px;
  height:24px
}

.portal-header>span:last-child {
  font-size:10px;
  color:#8190a4;
  margin-left:auto
}

.portal-welcome {
  padding:23px 22px;
  background:#f0f6ff
}

.portal-welcome small {
  font-size:10px;
  letter-spacing:.12em;
  color:#4c7eb9
}

.portal-welcome h3 {
  font-size:26px;
  margin-top:8px;
  white-space:nowrap
}

.portal-tiles {
  padding:20px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:13px
}

.portal-tiles>div {
  border:1px solid #dfe6f1;
  border-radius:9px;
  padding:13px;
  display:flex;
  align-items:center;
  gap:11px;
  font-size:16px
}

.portal-tiles .service {
  font-size:10px;
  gap:3px
}

.portal-tiles img {
  width:28px;
  height:28px
}

.flow-group-labels {
  display:flex;
  font-size:18px;
  gap:20px;
  margin-top:5px
}

.flow-group-labels>span {
  width:40%;
  color:#347552;
  padding-bottom:8px;
  border-bottom:2px solid #bcdcc6
}

.flow-group-labels>span:last-child {
  flex:1;
  color:#5177b0;
  border-color:#cbdcf6
}

.slide-forms .flow {
  margin-top:13px
}

.slide-forms .flow-node {
  min-height:225px;
  padding-bottom:14px
}

.slide-forms .flow-node .service {
  margin-bottom:9px
}

.slide-forms .tags {
  margin-top:21px;
  justify-content:center
}

.slide-forms .takeaway {
  font-size:22px;
  margin-top:20px
}

.automation-layout {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px
}

.automation-before,.automation-after {
  padding:25px 29px;
  border:1px solid var(--line);
  border-radius:18px;
  min-height:339px
}

.automation-before {
  background:#f8f9fb
}

.automation-before>.section-number {
  color:#7d8898
}

.automation-layout h3 {
  font-size:27px;
  margin-top:10px;
  letter-spacing:-.025em
}

.manual-task {
  display:flex;
  align-items:center;
  gap:17px;
  margin-top:19px;
  font-size:23px;
  color:#6e7a8e
}

.manual-task span {
  font-size:15px;
  color:#9aa5b4;
  border:1px solid #dfe5ed;
  border-radius:50%;
  width:29px;
  height:29px;
  line-height:27px;
  text-align:center
}

.automation-before>p:last-child {
  font-size:18px;
  margin-top:26px
}

.automation-after {
  background:#f0f6ff;
  border-color:#d4e3f9;
  position:relative
}

.automation-after>.service {
  position:absolute;
  right:24px;
  top:18px
}

.automation-after>.service img {
  width:32px;
  height:32px
}

.automation-after>.service>span {
  font-size:12px
}

.automation-after h3 {
  margin-top:21px;
  font-size:27px
}

.trigger-flow {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:22px;
  gap:8px
}

.trigger-flow>span {
  background:#fff;
  border:1px solid #dce6f5;
  border-radius:9px;
  padding:13px;
  font-size:20px;
  text-align:center;
  flex:1
}

.trigger-flow small {
  font-size:14px;
  color:#7b8dab
}

.trigger-flow b {
  font-weight:400;
  color:#a2b9d9
}

.automation-examples {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9px 18px;
  font-size:17px;
  color:#5877a1;
  margin-top:22px
}

.appsheet-layout {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  margin-top:-4px
}

.appsheet-side {
  width:310px
}

.appsheet-side>.service {
  margin-top:14px
}

.appsheet-side>.service img {
  width:41px;
  height:41px
}

.appsheet-side h3 {
  font-size:28px;
  margin:12px 0 10px
}

.appsheet-side p {
  font-size:18px;
  color:var(--muted)
}

.appsheet-side small {
  font-size:14px
}

.appsheet-side .service-row {
  margin:19px 0 11px;
  gap:22px
}

.appsheet-side .service-row img {
  width:32px;
  height:32px
}

.appsheet-side .service-row .service {
  font-size:13px
}

.appsheet-side .tags {
  margin-top:18px;
  gap:7px
}

.appsheet-side .tag {
  font-size:15px;
  padding:4px 11px
}

.mini-table {
  display:grid;
  grid-template-columns:1fr 1fr;
  border:1px solid #dbe7df;
  border-radius:8px;
  overflow:hidden;
  font-size:16px;
  margin-top:17px
}

.mini-table>span {
  padding:7px 12px;
  border-bottom:1px solid #e1ebe5
}

.mini-table>span:nth-child(-n+2) {
  background:#eaf4ed;
  color:#377b4e
}

.phone-mock {
  width:268px;
  height:424px;
  border:7px solid #25334a;
  border-radius:31px;
  background:#fff;
  position:relative;
  overflow:hidden;
  box-shadow:0 13px 28px #182e4e13;
  flex-shrink:0
}

.phone-speaker {
  width:75px;
  height:13px;
  border-radius:0 0 12px 12px;
  background:#25334a;
  position:absolute;
  top:0;
  left:89px
}

.phone-header {
  display:flex;
  justify-content:space-between;
  font-size:9px;
  padding:11px 16px 5px
}

.phone-title {
  background:#f1f6fd;
  padding:16px 17px
}

.phone-title small {
  font-size:9px;
  color:#6286b6;
  letter-spacing:.1em
}

.phone-title h3 {
  font-size:26px;
  margin:4px 0
}

.phone-title>span {
  font-size:12px;
  color:#677892
}

.phone-body {
  padding:12px 17px
}

.phone-body label {
  font-size:11px;
  color:#7e899c;
  display:block;
  margin-top:6px;
  margin-bottom:5px
}

.phone-field {
  padding:7px 10px;
  font-size:14px;
  border:1px solid #dce5f0;
  border-radius:5px
}

.phone-options {
  display:flex;
  gap:8px;
  font-size:12px
}

.phone-options>span {
  padding:7px 18px;
  border:1px solid #d9e2ef;
  border-radius:6px
}

.phone-options>.selected {
  background:#e9f4ec;
  color:#368653;
  border-color:#b9dac3
}

.photo-field {
  font-size:12px;
  color:#6481a8;
  border:1px dashed #c5d5e9;
  border-radius:6px;
  padding:14px;
  text-align:center
}

.mock-submit {
  background:#3172d1;
  color:#fff;
  border-radius:6px;
  font-size:12px;
  text-align:center;
  padding:10px;
  margin-top:15px
}

.phone-home {
  position:absolute;
  bottom:6px;
  left:87px;
  width:80px;
  height:3px;
  background:#b4bcc8;
  border-radius:4px
}

.workflow-label {
  display:flex;
  align-items:center;
  font-size:16px;
  color:#6682a5;
  gap:20px;
  margin-top:-2px
}

.workflow-label>span {
  padding-bottom:8px;
  border-bottom:2px solid #d1e0f4;
  flex:1;
  text-align:center
}

.workflow-label>span:nth-child(2) {
  flex:2
}

.connected-flow {
  margin-top:16px;
  gap:17px
}

.connected-flow .flow-node {
  background:#f5f9ff;
  border-color:#d8e4f6;
  min-height:228px;
  padding:14px 5px
}

.connected-flow .flow-node:not(:last-child):after {
  right:-18px;
  font-size:24px
}

.connected-flow .flow-node h3 {
  font-size:23px;
  margin-bottom:7px
}

.connected-flow .flow-node p {
  font-size:17px
}

.connected-flow .flow-node .service {
  margin:14px 0 11px
}

.connected-flow .service img {
  width:41px;
  height:41px
}

.connected-flow .service {
  font-size:14px
}

.connected-flow .flow-node:nth-child(4) {
  background:#eaf3ff;
  border-color:#a7c8fa
}

.role-comparison {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-top:20px
}

.role-comparison>div {
  display:flex;
  align-items:center;
  gap:18px;
  padding:18px 19px;
  border:1px solid var(--line);
  border-radius:12px
}

.role-comparison .service {
  font-size:12px;
  min-width:76px
}

.role-comparison .service img {
  width:33px;
  height:33px
}

.role-comparison p {
  display:flex;
  flex-direction:column;
  gap:5px
}

.role-comparison strong {
  font-size:20px
}

.role-comparison p span {
  font-size:17px;
  color:var(--muted)
}

.slide-workflow .takeaway {
  font-size:22px;
  margin-top:18px
}

.ai-layout {
  display:flex;
  align-items:center;
  gap:25px;
  margin-top:6px
}

.ai-input {
  width:280px
}

.ai-input .service-row {
  gap:16px;
  margin:25px 0 21px
}

.ai-input .service-row .service {
  min-width:40px;
  font-size:12px
}

.ai-input .service img {
  width:33px;
  height:33px
}

.ai-input h3 {
  font-size:28px
}

.ai-input>p:last-child {
  font-size:17px;
  color:var(--muted);
  margin-top:14px
}

.gemini-center {
  width:270px;
  height:268px;
  border-radius:27px;
  border:1px solid #d9e6f8;
  background:#f2f7ff;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:18px
}

.gemini-center .service img {
  width:72px;
  height:72px
}

.gemini-center .service {
  font-size:23px
}

.gemini-center h3 {
  text-align:center;
  font-size:27px
}

.ai-output {
  flex:1
}

.ai-output>div {
  padding:12px 0;
  border-bottom:1px solid #e1e8f2
}

.ai-output h3 {
  font-size:23px
}

.ai-output p {
  font-size:17px;
  color:var(--muted);
  margin-top:3px
}

.human-check {
  background:#f6f8fc;
  border-radius:12px;
  padding:17px 23px;
  display:flex;
  gap:25px;
  align-items:center;
  margin-top:26px
}

.human-check>span {
  font-size:22px;
  font-weight:600
}

.human-check p {
  font-size:18px;
  color:var(--muted)
}

.roadmap {
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:12px;
  margin-top:14px;
  position:relative
}

.roadmap:before {
  content:"";
  position:absolute;
  height:2px;
  top:17px;
  left:7%;
  right:7%;
  background:#d3deec
}

.roadmap-phase {
  padding:0 12px 10px;
  position:relative;
  text-align:center
}

.phase-marker {
  width:36px;
  height:36px;
  border-radius:50%;
  color:#fff;
  background:var(--blue);
  display:block;
  margin:0 auto 10px;
  font-size:17px;
  line-height:36px;
  position:relative;
  border:3px solid white;
  box-sizing:content-box
}

.roadmap-phase.green .phase-marker {
  background:var(--green)
}

.roadmap-phase.yellow .phase-marker {
  background:var(--yellow);
  color:#4e4210
}

.roadmap-phase.red .phase-marker {
  background:var(--red)
}

.roadmap-phase>small {
  display:block;
  line-height:1.4;
  font-size:12px;
  color:#8393a9;
  letter-spacing:.06em
}

.roadmap-phase h3 {
  font-size:23px;
  white-space:nowrap;
  margin:8px -5px 10px
}

.roadmap-phase p {
  font-size:20px;
  color:var(--muted)
}

.roadmap-phase .service-row {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:13px 15px;
  margin-top:16px;
  align-content:flex-start
}

.roadmap-phase .service-row .service {
  min-width:45px;
  font-size:11px
}

.roadmap-phase .service img {
  width:29px;
  height:29px
}

.roadmap-message {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  margin-top:8px;
  border-radius:13px;
  padding:15px;
  background:var(--blue-soft);
  font-size:23px
}

.roadmap-message b {
  font-weight:400;
  color:#8daed8
}

.roadmap-message strong {
  color:#2968c3;
  font-size:25px
}

.roadmap-note {
  font-size:17px;
  text-align:center;
  color:#7b899d;
  margin-top:15px
}

.closing-layout {
  padding-top:47px
}

.closing-before {
  font-size:22px;
  color:#8793a5;
  margin:42px 0 19px
}

.closing-layout h2 {
  font-size:48px;
  line-height:1.5;
  font-weight:700;
  letter-spacing:-.025em
}

.closing-layout em {
  color:#3276d8
}

.closing-pillars {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:33px;
  margin-top:39px;
  border-top:1px solid #dfe7f2;
  padding-top:26px
}

.closing-pillars>div {
  display:grid;
  grid-template-columns:8px 1fr;
  column-gap:12px;
  row-gap:9px;
  align-items:center
}

.closing-pillars strong {
  font-size:22px
}

.closing-pillars small {
  grid-column:2;
  font-size:17px;
  color:var(--muted)
}

/* Viewer */
body.is-presenting {
  overflow:hidden
}

#presentation {
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  max-width:none;
  max-height:none;
  margin:0;
  padding:0;
  border:0;
  background:#1b2230;
  color:white;
  overflow:hidden
}

#presentation[open] {
  display:block
}

.presentation-surface {
  position:relative;
  width:100%;
  height:100%;
  min-width:0;
  min-height:0;
  display:grid;
  grid-template-rows:66px minmax(0,1fr) 66px;
  gap:0;
  background:#1b2230;
  color:white;
  overflow:hidden
}

.presentation-surface:fullscreen {
  width:100vw;
  height:100dvh;
  max-width:none;
  max-height:none
}

#presentation::backdrop {
  background:#1b2230
}

.presentation-toolbar {
  padding:0 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px
}

.presentation-toolbar>span {
  font-size:12px;
  color:#aeb8c9;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}

.viewer-tools {
  display:flex;
  gap:7px
}

.viewer-button {
  background:transparent;
  color:#e3e9f3;
  border:1px solid #536075;
  border-radius:7px;
  min-height:40px;
  padding:9px 14px;
  font-size:13px;
  white-space:nowrap
}

.viewer-button:hover:not(:disabled) {
  background:#354158
}

.viewer-button:focus-visible {
  outline-color:#91b8ff
}

.viewer-button[aria-pressed=true] {
  background:#3e5c84
}

.stage-viewport {
  min-width:0;
  min-height:0;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px 28px;
  touch-action:pan-y pinch-zoom;
  overscroll-behavior:contain
}

.presentation-stage {
  width:var(--stage-width,1280px);
  height:var(--stage-height,720px);
  position:relative;
  flex-shrink:0;
  box-shadow:0 16px 60px #070e2159;
  /* Focus inside a scaled slide must not scroll the clipping frame. */
  overflow:clip;
  border-radius:2px
}

.presentation-stage>.slide {
  transform:scale(var(--stage-scale,1));
  transform-origin:top left
}

.presentation-surface.is-zoomed {
  grid-template-rows:46px minmax(0,1fr) 46px
}

.presentation-surface.is-zoomed .stage-viewport {
  padding:2px 4px
}

.presentation-surface.is-zoomed .presentation-toolbar,
.presentation-surface.is-zoomed .presentation-footer {
  padding-inline:10px
}

.presentation-surface.is-zoomed .mobile-hint {
  display:none
}

.presentation-footer {
  padding:0 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  position:relative
}

.keyboard-hint {
  color:#a8b4c9;
  font-size:11px
}

.keyboard-hint span {
  margin:0 12px;
  color:#52617b
}

.slide-navigation {
  display:flex;
  gap:22px;
  align-items:center;
  position:absolute;
  left:50%;
  transform:translateX(-50%)
}

.slide-navigation .viewer-button {
  font-size:21px;
  width:42px;
  padding:4px
}

.slide-navigation output {
  font-size:14px;
  letter-spacing:.06em;
  font-variant-numeric:tabular-nums;
  min-width:66px;
  text-align:center
}

.presentation-progress {
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:3px;
  background:#303d53
}

.presentation-progress>span {
  height:100%;
  display:block;
  background:var(--blue);
  width:0;
  transition:width .25s
}

.mobile-hint {
  display:none
}

#viewer-status {
  font-size:11px;
  color:#bdcce3;
  margin-left:auto;
  max-width:270px
}

.presentation-stage .reveal {
  animation:appear .5s both;
  animation-delay:calc(var(--order,0)*100ms)
}

@keyframes appear {
  from {
    opacity:0;
    transform:translateY(8px)
  }
  to {
    opacity:1;
    transform:translateY(0)
  }
}

@media(min-width:1600px) {
  .hero {
    padding-top:67px;
    padding-bottom:80px;
    gap:85px
  }
  .hero h1 {
    font-size:60px
  }
  .hero-diagram {
    padding:29px 32px 22px
  }
  .hero-step {
    padding:23px
  }
  .hero-services .service img {
    width:32px;
    height:32px
  }
}

@media(max-width:1150px) {
  .wrap {
    width:calc(100% - 64px)
  }
  .hero {
    gap:35px;
    padding-top:40px
  }
  .hero h1 {
    font-size:40px
  }
  .hero-diagram {
    padding:23px 19px
  }
  .hero-step {
    padding:18px 14px;
    gap:10px
  }
  .hero-step-label strong {
    font-size:19px
  }
  .hero-step-label small {
    font-size:9px
  }
  .hero-services {
    gap:9px
  }
  .hero-services .service img {
    width:23px;
    height:23px
  }
  .diagram-heading {
    font-size:12px
  }
  .hero-actions {
    gap:12px
  }
  .primary-button {
    font-size:12px;
    padding:17px
  }
  .gallery-track {
    padding-inline:32px;
    scroll-padding-inline:32px
  }
  .chapter-bar {
    gap:24px
  }
  .gallery-heading h2 {
    font-size:23px
  }
}

@media(max-width:800px) {
  .wrap {
    width:calc(100% - 40px)
  }
  .site-header {
    height:auto;
    min-height:72px;
    flex-wrap:wrap;
    padding-block:12px
  }
  .wordmark {
    font-size:19px
  }
  .wordmark small,.brand-divider {
    display:none
  }
  .site-header nav {
    gap:18px;
    font-size:12px
  }
  .hero {
    grid-template-columns:1fr;
    gap:35px;
    padding-top:35px;
    padding-bottom:42px
  }
  .hero h1 {
    font-size:clamp(33px,6.8vw,48px);
    margin-top:20px
  }
  .hero-description {
    font-size:16px;
    margin-top:18px
  }
  .hero-actions {
    margin-top:23px
  }
  .primary-button {
    font-size:13px;
    padding:17px 20px
  }
  .hero-diagram {
    max-width:560px;
    width:100%;
    justify-self:center
  }
  .hero-step {
    padding:16px 18px
  }
  .hero-step-label strong {
    font-size:21px
  }
  .hero-step-label small {
    font-size:11px
  }
  .hero-services {
    gap:14px
  }
  .hero-services .service img {
    width:30px;
    height:30px
  }
  .diagram-heading {
    font-size:13px;
    padding-bottom:17px
  }
  .step-connector {
    height:33px
  }
  .diagram-footnote {
    padding-top:15px
  }
  .gallery-section {
    padding-top:29px
  }
  .gallery-heading {
    gap:10px
  }
  .gallery-heading h2 {
    font-size:21px;
    line-height:1.6;
    display:block;
    margin-top:8px
  }
  .count-pill {
    display:none
  }
  .gallery-heading .eyebrow {
    font-size:9px
  }
  .chapter-bar {
    gap:20px;
    overflow:auto;
    padding:4px 0 8px;
    margin-top:20px;
    margin-bottom:10px;
    scrollbar-width:none
  }
  .chapter-button {
    font-size:11px
  }
  .chapter-button small {
    display:none
  }
  .gallery-track {
    padding-inline:20px;
    scroll-padding-inline:20px;
    gap:16px
  }
  .gallery-card {
    flex-basis:calc(100vw - 44px);
    max-width:none
  }
  .gallery-bottom {
    font-size:10px;
    gap:20px
  }
  .page-note {
    display:block;
    padding-block:28px
  }
  .page-note strong {
    font-size:14px
  }
  .page-note p {
    font-size:11px;
    line-height:1.8
  }
  .page-note a {
    display:inline-block;
    margin-top:15px;
    font-size:11px
  }
  .site-footer {
    flex-direction:column;
    gap:8px;
    font-size:9px;
    padding-top:18px
  }
  .presentation-toolbar {
    padding:0 12px;
    gap:12px
  }
  .presentation-toolbar>span {
    display:none
  }
  .stage-viewport {
    padding:6px 10px
  }
  .presentation-footer {
    padding:0 12px
  }
  .keyboard-hint {
    display:none
  }
  .mobile-hint {
    display:block;
    position:absolute;
    bottom:9px;
    left:0;
    right:0;
    text-align:center;
    font-size:9px;
    color:#a8b4c9
  }
  .slide-navigation {
    top:2px
  }
  .slide-navigation .viewer-button {
    min-height:33px;
    height:33px
  }
  #viewer-status {
    position:absolute;
    top:-30px;
    right:12px;
    background:#26334a;
    border-radius:5px
  }
  #viewer-status:empty {
    display:none
  }
}

@media(max-height:550px) and (orientation:landscape) {
  .presentation-surface {
    grid-template-rows:43px minmax(0,1fr) 43px
  }
  .presentation-surface.is-zoomed {
    grid-template-rows:36px minmax(0,1fr) 36px
  }
  .presentation-toolbar {
    padding-inline:10px
  }
  .viewer-button {
    min-height:30px;
    padding:5px 10px;
    font-size:11px
  }
  .presentation-footer {
    padding-inline:10px
  }
  .slide-navigation {
    top:4px
  }
  .slide-navigation .viewer-button {
    height:30px;
    min-height:30px
  }
  .mobile-hint {
    display:none
  }
  .stage-viewport {
    padding:0 8px
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }
  *,*:before,*:after {
    animation:none!important;
    transition:none!important;
    scroll-behavior:auto!important
  }
}

.hero-copy,.hero-diagram {
  min-width:0
}

.site-header nav a,.site-header nav button {
  white-space:nowrap
}

@media(max-width:500px) {
  .hero {
    grid-template-columns:minmax(0,1fr)
  }
  .hero-diagram {
    padding:21px 16px 18px
  }
  .hero-step {
    padding:15px 13px;
    gap:10px
  }
  .hero-step-label {
    flex:1;
    min-width:0;
    grid-template-columns:18px minmax(0,1fr);
    gap:6px
  }
  .hero-step-label small {
    font-size:10px;
    white-space:normal;
    line-height:1.6
  }
  .hero-step-label strong {
    font-size:19px;
    white-space:nowrap
  }
  .hero-services {
    gap:8px;
    flex-shrink:0
  }
  .hero-services .service img {
    width:24px;
    height:24px
  }
  .diagram-heading {
    font-size:12px
  }
  .diagram-index {
    font-size:9px
  }
  .step-connector {
    font-size:9px;
    padding-left:26px
  }
  .site-header nav {
    gap:13px;
    font-size:11px
  }
  .site-header {
    height:auto;
    min-height:72px;
    flex-wrap:wrap;
    gap:0 16px;
    padding-block:12px
  }
  .site-header nav span {
    margin-left:3px
  }
  .wordmark {
    font-size:18px
  }
  .gallery-heading h2 {
    font-size:19px
  }
}

.highlight-text {
  max-width:340px;
  font-size:16px
}

@media(max-width:360px) {
  .site-header {
    height:auto;
    padding-block:20px;
    flex-wrap:wrap
  }
  .site-header nav {
    gap:20px;
    margin-left:auto
  }
  .hero {
    padding-top:20px
  }
  .hero h1 {
    font-size:27px
  }
  .hero-actions {
    flex-wrap:wrap
  }
  .hero-services .service img {
    width:20px;
    height:20px
  }
  .hero-services {
    gap:6px
  }
  .hero-step-label strong {
    font-size:17px
  }
  .diagram-heading {
    font-size:10px
  }
  .diagram-footnote {
    font-size:9px
  }
  .step-connector {
    font-size:8px
  }
  .gallery-heading h2 {
    font-size:17px
  }
}

@page {
  size:338.6667mm 190.5mm;
  margin:0
}

@media print {
  html,body {
    margin:0!important;
    padding:0!important;
    background:white!important;
    overflow:visible!important;
    width:1280px!important
  }
  * {
    -webkit-print-color-adjust:exact;
    print-color-adjust:exact;
    animation:none!important;
    transition:none!important
  }
  .color-rule,.skip-link,.site-header,.hero,.gallery-heading,.chapter-bar,.gallery-bottom,.page-note,.site-footer,#presentation,.presentation-surface,noscript {
    display:none!important
  }
  #homepage,main,.gallery-section {
    display:block!important;
    width:1280px!important;
    margin:0!important;
    padding:0!important;
    border:0!important;
    overflow:visible!important
  }
  .gallery-track {
    display:block!important;
    width:1280px!important;
    overflow:visible!important;
    padding:0!important;
    margin:0!important;
    list-style:none!important
  }
  .gallery-card {
    width:1280px!important;
    height:720px!important;
    max-width:none!important;
    margin:0!important;
    padding:0!important;
    break-after:page;
    break-inside:avoid;
    page-break-after:always;
    position:relative!important
  }
  .gallery-card:last-child {
    break-after:auto;
    page-break-after:auto
  }
  .preview {
    width:1280px!important;
    height:720px!important;
    aspect-ratio:auto!important;
    border:0!important;
    border-radius:0!important;
    box-shadow:none!important;
    overflow:hidden!important
  }
  .preview .slide {
    transform:none!important
  }
  .card-open {
    display:none!important
  }
  .slide {
    width:1280px!important;
    height:720px!important
  }
  .slide-color-rule {
    display:block!important
  }
}
