:root {
  --green-900: #183b34;
  --green-800: #294d41;
  --green-700: #496b59;
  --green-500: #79ae91;
  --green-300: #c8ddd0;
  --green-100: #edf6ef;
  --mist: #f7faf5;
  --paper: #fbfaf4;
  --ink: #172b28;
  --muted: #687a72;
  --line: rgba(83, 113, 94, .18);
  --glass: rgba(255, 255, 255, .72);
  --soft-red: #c8322b;
  --gold: #d4bb6f;
  --shadow: 0 22px 55px rgba(37, 64, 55, .14);
  --serif: "Noto Serif TC", "Source Han Serif TC", "PMingLiU", serif;
  --sans: "Microsoft JhengHei", "PingFang TC", "Noto Sans TC", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  font-family: var(--sans);
  background: var(--mist);
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(24px, 6vw, 86px);
  pointer-events: none;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(237, 248, 242, .78), rgba(237, 248, 242, .22) 68%, transparent);
  backdrop-filter: blur(10px);
  mask-image: linear-gradient(180deg, #000 62%, transparent);
}

.brand-mark,
.top-links {
  pointer-events: auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: clamp(136px, 10vw, 178px);
  height: auto;
}

.brand-ring {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 54px;
  padding-left: 16px;
  color: var(--green-800);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: .08em;
}

.brand-ring::before {
  content: "";
  position: absolute;
  left: 0;
  width: 54px;
  height: 54px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
}

.top-links {
  display: flex;
  gap: 30px;
  align-items: center;
  color: rgba(23, 43, 40, .72);
  font-size: 15px;
}

.top-links a {
  transition: color .25s ease, transform .25s ease;
}

.top-links a:hover {
  color: var(--green-800);
  transform: translateY(-1px);
}

.download-link {
  padding: 10px 18px;
  border: 1px solid rgba(73, 107, 89, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .54);
  box-shadow: 0 10px 28px rgba(37, 64, 55, .08);
  backdrop-filter: blur(14px);
}

.slides {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.profile-slide {
  position: relative;
  min-height: 100vh;
  scroll-snap-align: start;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 110px clamp(42px, 7vw, 132px) 58px;
  background:
    radial-gradient(circle at 72% 18%, rgba(246, 235, 192, .55), transparent 30%),
    radial-gradient(circle at 13% 88%, rgba(184, 216, 198, .38), transparent 22%),
    linear-gradient(130deg, #eff8f4 0%, #fbfaf2 48%, #eaf5ee 100%);
}

.profile-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(115deg, rgba(255,255,255,.16), rgba(255,255,255,0) 38%),
    url("source/e7way-main-og-image-02.jpg");
  background-size: cover;
  background-position: center;
  mix-blend-mode: soft-light;
}

.profile-slide::after {
  content: "";
  position: absolute;
  right: -9vw;
  top: -20vh;
  width: 39vw;
  height: 39vw;
  border-radius: 50%;
  background: rgba(204, 225, 212, .38);
  pointer-events: none;
}

.slide-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1420px);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--green-500);
  font-size: 18px;
  letter-spacing: .08em;
}

.eyebrow.pill {
  display: table;
  margin: 0 auto 20px;
  padding: 9px 30px;
  color: var(--green-700);
  border: 1px solid rgba(73, 107, 89, .23);
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1.18;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(38px, 2.8vw, 46px);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(36px, 2.45vw, 44px);
  line-height: 1.34;
}

.title-balanced {
  line-break: strict;
  word-break: keep-all;
  text-wrap: balance;
}

.title-line {
  display: block;
}

.keep-tail {
  white-space: nowrap;
}

h3 {
  color: var(--green-900);
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 500;
}

p {
  color: rgba(23, 43, 40, .82);
  font-size: 20px;
  line-height: 1.95;
}

.lead {
  font-size: clamp(24px, 1.7vw, 30px);
  line-height: 1.55;
}

.green {
  color: var(--green-500);
}

.closing-line {
  margin-top: 22px;
  font-weight: 500;
}

.wide-heading {
  max-width: 1120px;
}

.section-intro {
  max-width: 1120px;
  margin-bottom: 34px;
}

.ambient {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(.2px);
}

.ambient::before,
.ambient::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}

.ambient-large {
  left: 5vw;
  bottom: 8vh;
  width: 34vw;
  height: 34vw;
  border: 1px solid rgba(73, 107, 89, .12);
}

.top-right {
  right: 8vw;
  top: 10vh;
  width: 28vw;
  height: 28vw;
  background: rgba(221, 237, 226, .44);
}

.bottom-left {
  left: -8vw;
  bottom: -18vh;
  width: 28vw;
  height: 28vw;
  background: rgba(221, 237, 226, .48);
}

.plan-bg {
  inset: 0;
  border-radius: 0;
  background: url("source/方案背景圖.png") center / cover no-repeat;
  opacity: .75;
}

.slide-number,
.slide-caption {
  position: absolute;
  right: clamp(28px, 5vw, 88px);
  bottom: 28px;
  z-index: 2;
  margin: 0;
  color: rgba(23, 43, 40, .52);
  font-size: 15px;
}

.slide-caption {
  left: clamp(42px, 7vw, 132px);
  right: auto;
}

.slide-hero {
  background:
    linear-gradient(90deg, rgba(237, 248, 242, .16), rgba(246, 250, 244, .08)),
    url("assets/hero-homepage.jpg") center top / cover no-repeat;
}

.slide-hero::before {
  opacity: .72;
  background:
    linear-gradient(180deg, rgba(237, 248, 242, .1), rgba(247, 250, 245, .62) 83%),
    radial-gradient(circle at 58% 33%, rgba(255, 248, 214, .36), transparent 28%);
}

.slide-hero::after {
  display: none;
}

@media screen and (min-width: 821px) {
  .slide-hero {
    background:
      linear-gradient(90deg, rgba(237, 248, 242, .16), rgba(246, 250, 244, .08)),
      url("source/e7way-banner-clear.jpg") center center / cover no-repeat;
  }

  .slide-hero .hero-tagline {
    font-family: var(--sans);
    font-size: clamp(26px, 1.8vw, 34px);
    line-height: 1.45;
    letter-spacing: .04em;
    white-space: nowrap;
  }
}

.hero-copy {
  width: min(720px, 44vw);
  margin: 58vh 0 0 12vw;
  transform: translateY(14px);
}

.hero-copy h1 {
  margin-bottom: 10px;
  font-size: clamp(38px, 2.8vw, 46px);
}

.hero-tagline {
  color: rgba(23, 43, 40, .78);
  font-family: var(--sans);
  font-size: clamp(26px, 1.8vw, 34px);
  line-height: 1.45;
  letter-spacing: .04em;
}

.handwritten {
  color: rgba(23, 43, 40, .78);
  font-family: var(--sans);
  font-size: clamp(28px, 2vw, 36px);
  line-height: 1.45;
  letter-spacing: .04em;
}

.service-line {
  color: rgba(23, 43, 40, .68);
  font-size: 24px;
  letter-spacing: .04em;
}

.hero-circle {
  display: none;
}

.hero-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.22);
}

.hero-keywords {
  display: none;
}

.statement-layout,
.two-column,
.problem-layout,
.works-layout,
.ai-layout,
.closing-layout {
  display: grid;
  gap: 70px;
  align-items: center;
}

.statement-layout,
.two-column,
.problem-layout,
.ai-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
}

.statement-body {
  max-width: 720px;
}

.growth-path {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  width: min(100%, 1420px);
  margin: 30px auto 0;
  padding-right: clamp(0px, 6vw, 110px);
}

.growth-path span {
  position: relative;
  display: grid;
  place-items: center;
  width: 98px;
  height: 98px;
  color: var(--green-800);
  border: 3px solid rgba(105, 174, 134, .7);
  border-radius: 50%;
  background: rgba(255, 255, 255, .34);
  backdrop-filter: blur(10px);
  font-size: 20px;
  font-weight: 500;
}

.growth-path span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -35px;
  top: 50%;
  width: 30px;
  height: 3px;
  transform: translateY(-50%);
  background: rgba(105, 174, 134, .7);
}

.glass-panel,
.dark-panel,
.contrast-card,
.ability-grid article,
.result-card,
.plan-card {
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.glass-panel {
  border: 1px solid rgba(73, 107, 89, .14);
  background: var(--glass);
  backdrop-filter: blur(18px);
}

.company-card {
  padding: 42px 46px;
}

.method-card {
  padding: 42px;
}

.method-label {
  display: inline-flex;
  margin: 0 0 24px;
  padding: 8px 20px;
  color: var(--green-700);
  border: 1px solid rgba(73, 107, 89, .16);
  border-radius: 999px;
  background: rgba(237, 246, 239, .78);
  font-size: 16px;
  line-height: 1.2;
}

.method-list {
  display: grid;
  gap: 18px;
}

.method-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 18px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(73, 107, 89, .12);
}

.method-list article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.method-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--green-700);
  border: 1px solid rgba(73, 107, 89, .2);
  border-radius: 50%;
  background: rgba(237, 246, 239, .82);
  font-size: 14px;
}

.method-list h3 {
  margin: 0 0 4px;
  font-size: 22px;
}

.method-list p {
  grid-column: 2;
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
}

dl {
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(73, 107, 89, .12);
}

dl div:last-child {
  border-bottom: 0;
}

dt {
  color: rgba(23, 43, 40, .55);
  font-size: 16px;
}

dd {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.7;
}

.problem-copy {
  max-width: 760px;
}

.contrast-board {
  display: grid;
  gap: 26px;
}

.contrast-card {
  padding: 34px;
  border: 1px solid rgba(73, 107, 89, .14);
  background: rgba(255, 255, 255, .58);
}

.contrast-card.active {
  background: rgba(255, 255, 255, .76);
}

.contrast-card h3 {
  margin-bottom: 20px;
}

.contrast-card p {
  margin-bottom: 8px;
}

.contrast-card span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 16px 0;
  background: var(--line);
}

.contrast-card ul,
.ability-grid,
.result-card ul,
.plan-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contrast-card li,
.plan-card li {
  position: relative;
  padding-left: 26px;
  color: rgba(23, 43, 40, .78);
  font-size: 19px;
  line-height: 1.75;
}

.contrast-card li::before,
.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
}

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

.ability-grid article {
  min-height: 260px;
  padding: 30px 26px;
  border: 1px solid rgba(73, 107, 89, .14);
  background: rgba(255, 255, 255, .68);
  backdrop-filter: blur(14px);
}

.ability-grid p {
  font-size: 17px;
  line-height: 1.75;
}

.icon-line {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  color: var(--green-700);
  border: 1px solid rgba(73, 107, 89, .22);
  border-radius: 50%;
  background: rgba(237, 246, 239, .8);
  font-family: var(--serif);
  font-size: 22px;
}

.works-layout {
  grid-template-columns: minmax(330px, .58fr) minmax(690px, 1.1fr);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.work-grid figure,
.ai-evidence figure {
  margin: 0;
}

.work-grid figure {
  padding: 10px;
  border: 1px solid rgba(73, 107, 89, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .66);
  box-shadow: 0 16px 34px rgba(37, 64, 55, .1);
}

.work-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 13px;
}

.work-grid figcaption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 11px 4px 0;
  color: var(--green-900);
  font-size: 15px;
  text-align: center;
}

.work-grid span {
  color: rgba(23, 43, 40, .52);
  font-size: 13px;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.result-card {
  padding: 34px 34px 30px;
  border: 1px solid rgba(73, 107, 89, .14);
  background: rgba(255, 255, 255, .72);
}

.result-card.featured {
  border-color: rgba(105, 174, 134, .46);
}

.result-card li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(73, 107, 89, .11);
  color: rgba(23, 43, 40, .74);
  font-size: 17px;
}

.result-card li:last-child {
  border-bottom: 0;
}

.result-card b {
  font-weight: 500;
}

.result-card span {
  color: var(--green-700);
  font-weight: 600;
  white-space: nowrap;
}

.ai-layout {
  grid-template-columns: minmax(390px, .72fr) minmax(660px, 1.08fr);
}

.ai-evidence {
  display: grid;
  gap: 20px;
}

.ai-evidence figure {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(73, 107, 89, .14);
  border-radius: 22px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 16px 34px rgba(37, 64, 55, .1);
}

.ai-evidence img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  object-position: top center;
}

.ai-evidence figcaption {
  position: absolute;
  left: 18px;
  bottom: 14px;
  padding: 7px 14px;
  color: var(--green-900);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  font-size: 15px;
  box-shadow: 0 8px 22px rgba(37, 64, 55, .12);
}

.center-heading,
.center-copy {
  text-align: center;
}

.center-heading {
  margin-bottom: 12px;
  font-size: clamp(38px, 2.8vw, 48px);
}

.center-copy {
  margin-bottom: 34px;
}

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

.plan-card {
  position: relative;
  padding: 34px 36px 30px;
  border: 1px solid rgba(73, 107, 89, .14);
  background: rgba(255, 255, 255, .76);
  backdrop-filter: blur(16px);
}

.plan-card.recommended {
  transform: translateY(-14px);
  border-color: rgba(191, 167, 80, .66);
  box-shadow: 0 28px 70px rgba(72, 85, 55, .18);
}

.plan-type {
  display: inline-flex;
  padding: 8px 22px;
  margin-bottom: 20px;
  color: var(--green-800);
  border: 1px solid rgba(73, 107, 89, .14);
  border-radius: 999px;
  background: rgba(237, 246, 239, .72);
  font-size: 16px;
  line-height: 1.2;
}

.recommend-label {
  position: absolute;
  right: 28px;
  top: 30px;
  padding: 9px 20px;
  color: white;
  border: 1px solid rgba(255, 231, 153, .44);
  border-radius: 999px;
  background: linear-gradient(135deg, #496b32, #6d8b3e);
  box-shadow: 0 10px 24px rgba(85, 91, 43, .24);
  font-size: 17px;
}

.plan-card h3 {
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 42px;
}

.price {
  margin-bottom: 8px;
  color: var(--soft-red);
  font-family: var(--sans);
  font-size: 39px;
  font-weight: 700;
  line-height: 1.25;
}

.price span {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 400;
}

.duration {
  margin-bottom: 22px;
  color: rgba(23, 43, 40, .62);
  font-size: 18px;
  line-height: 1.4;
}

.plan-for {
  min-height: 74px;
  color: rgba(23, 43, 40, .72);
  font-size: 17px;
  line-height: 1.7;
}

.value-badge {
  margin: 28px 0 0;
  padding: 13px 16px;
  color: var(--green-900);
  border: 1px solid rgba(73, 107, 89, .14);
  border-radius: 15px;
  background: rgba(237, 246, 239, .8);
  font-size: 17px;
  line-height: 1.35;
  text-align: center;
}

.plan-note {
  margin: 22px auto 0;
  color: rgba(23, 43, 40, .72);
  font-size: 18px;
  text-align: center;
}

.closing-layout {
  grid-template-columns: minmax(310px, .48fr) minmax(780px, 1.28fr);
  align-items: start;
}

.contact-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.dark-panel {
  padding: 42px 46px;
  background: var(--green-900);
  color: white;
}

.dark-panel dt {
  color: rgba(213, 235, 221, .66);
}

.dark-panel dd {
  color: rgba(255, 255, 255, .93);
  overflow-wrap: anywhere;
}

.dark-panel dl div {
  border-bottom-color: rgba(255, 255, 255, .12);
}

.closing-panel {
  padding: 34px 38px;
}

.closing-slide .company-card {
  background: rgba(255, 255, 255, .8);
}

.closing-slide .contact-card {
  border: 1px solid rgba(121, 174, 145, .22);
  background:
    linear-gradient(135deg, rgba(236, 245, 239, .95), rgba(247, 250, 245, .86)),
    radial-gradient(circle at 88% 22%, rgba(200, 221, 208, .36), transparent 34%);
}

.closing-slide .contact-panels dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
}

.closing-slide .contact-panels dl div {
  align-items: start;
  grid-template-columns: 132px 1fr;
  gap: 20px;
  padding: 16px 0;
}

.closing-slide .contact-panels dt {
  font-size: 14px;
}

.closing-slide .contact-panels dd {
  font-size: 15px;
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.closing-slide .contact-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .24s ease, border-color .24s ease, opacity .24s ease;
}

.closing-slide .contact-link:hover,
.closing-slide .contact-link:focus-visible {
  color: var(--green-800);
  border-bottom-color: rgba(95, 148, 126, .42);
  outline: none;
}

.closing-slide .contact-card dt {
  color: rgba(41, 77, 65, .62);
}

.closing-slide .contact-card dd {
  color: rgba(23, 43, 40, .9);
}

.closing-slide .handwritten {
  font-size: 25px;
  line-height: 1.4;
  white-space: nowrap;
}

.page-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  z-index: 50;
  display: grid;
  gap: 7px;
  transform: translateY(-50%);
}

.page-nav button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 28px;
  padding: 0;
  color: rgba(23, 43, 40, .42);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.page-nav span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 12px;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.page-nav button.active span,
.page-nav button:hover span {
  color: var(--green-900);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 8px 18px rgba(37, 64, 55, .1);
  transform: scale(1.08);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .18s;
}

@media (max-width: 1180px) {
  .top-links {
    gap: 18px;
  }

  .statement-layout,
  .two-column,
  .problem-layout,
  .works-layout,
  .ai-layout,
  .closing-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-copy {
    width: min(760px, 70vw);
    margin-left: 8vw;
  }

  .growth-path {
    position: relative;
    right: auto;
    top: auto;
    margin: 34px auto 0;
  }

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

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

@media (max-width: 1440px) and (min-width: 821px) {
  .closing-slide .contact-panels dl {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .closing-slide .contact-panels dl div {
    grid-template-columns: 148px 1fr;
    gap: 18px;
  }

  .closing-slide .contact-panels dd {
    font-size: 15px;
  }
}

@media (max-width: 820px) {
  body {
    overflow: hidden;
  }

  .slide-hero {
    background:
      linear-gradient(90deg, rgba(237, 248, 242, .16), rgba(246, 250, 244, .08)),
      url("source/e7way-banner-mobile.jpg") center top / cover no-repeat !important;
  }

  .site-header {
    padding: 18px 20px;
  }

  .brand-logo {
    width: 124px;
  }

  .top-links a:not(.download-link) {
    display: none;
  }

  .download-link {
    display: none;
  }

  .slides {
    scroll-snap-type: y proximity;
    overflow-x: clip;
  }

  .profile-slide {
    min-height: 100svh;
    padding: 128px 22px 116px;
    scroll-snap-align: start;
    overflow-x: clip;
  }

  .profile-slide::after,
  .hero-keywords {
    display: none;
  }

  .slide-content {
    width: 100%;
    max-width: 100%;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .title-balanced {
    word-break: normal;
    line-break: auto;
    text-wrap: pretty;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 1.38;
  }

  p {
    font-size: 16px;
    line-height: 1.85;
  }

  .lead,
  .handwritten,
  .hero-tagline {
    font-size: 24px;
  }

  .closing-slide .handwritten {
    white-space: normal;
  }

  .hero-copy {
    width: 100%;
    margin: 62vh 0 0;
  }

  .growth-path {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
    width: 100%;
  }

  .growth-path span {
    width: auto;
    height: auto;
    aspect-ratio: 1;
    border-width: 1px;
    font-size: 13px;
  }

  .growth-path span::after {
    display: none;
  }

  .glass-panel,
  .dark-panel,
  .contrast-card,
  .ability-grid article,
  .result-card,
  .plan-card {
    border-radius: 18px;
  }

  .company-card,
  .method-card,
  .dark-panel,
  .contrast-card,
  .result-card,
  .plan-card {
    padding: 24px;
  }

  .method-label {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .method-list {
    gap: 14px;
  }

  .method-list article {
    grid-template-columns: 38px 1fr;
    column-gap: 14px;
    padding-bottom: 14px;
  }

  .method-list span {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .method-list h3 {
    font-size: 18px;
  }

  .method-list p {
    font-size: 15px;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 13px 0;
  }

  dt {
    font-size: 13px;
  }

  dd {
    font-size: 16px;
  }

  .ability-grid,
  .result-grid,
  .plan-grid,
  .contact-panels {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .closing-slide .contact-panels dl {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .closing-slide .contact-panels dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .closing-panel {
    padding: 24px;
  }

  .contrast-board,
  .contrast-card,
  .ability-grid article {
    max-width: 100%;
  }

  .ability-grid article {
    min-height: auto;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .work-grid figure {
    padding: 7px;
    border-radius: 15px;
  }

  .work-grid figcaption {
    font-size: 12px;
  }

  .work-grid span {
    font-size: 11px;
  }

  .result-card li {
    grid-template-columns: 1fr;
    gap: 4px;
    font-size: 15px;
  }

  .ai-evidence img {
    height: auto;
    max-height: 220px;
  }

  .plan-grid {
    gap: 20px;
  }

  .plan-card.recommended {
    transform: none;
  }

  .price {
    font-size: 34px;
  }

  .plan-for {
    min-height: auto;
  }

  .page-nav {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 12px;
    display: flex;
    gap: 4px;
    padding: 7px 9px;
    border: 1px solid rgba(73, 107, 89, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .54);
    box-shadow: 0 10px 28px rgba(37, 64, 55, .1);
    backdrop-filter: blur(14px);
    transform: translateX(-50%);
  }

  .page-nav button {
    width: 16px;
    height: 16px;
  }

  .page-nav span {
    width: 8px;
    height: 8px;
    color: transparent;
    background: rgba(73, 107, 89, .24);
    font-size: 0;
  }

  .page-nav button.active span,
  .page-nav button:hover span {
    width: 18px;
    border-radius: 999px;
    background: var(--green-700);
    transform: none;
  }

  .slide-number,
  .slide-caption {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-device-width: 820px) {
  .slide-hero {
    background:
      linear-gradient(90deg, rgba(237, 248, 242, .16), rgba(246, 250, 244, .08)),
      url("source/e7way-banner-mobile.jpg") center top / cover no-repeat !important;
  }
}

@media print {
  @page {
    size: 13.333in 7.5in;
    margin: 0;
  }

  html,
  body {
    width: 13.333in;
    height: 7.5in;
    overflow: visible;
    background: white;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .site-header,
  .page-nav {
    display: none !important;
  }

  .slides {
    height: auto;
    overflow: visible;
    scroll-snap-type: none;
  }

  .profile-slide {
    width: 13.333in;
    height: 7.5in;
    min-height: 7.5in;
    padding: .72in .82in .45in;
    page-break-after: always;
    break-after: page;
    scroll-snap-align: none;
  }

  .profile-slide::before {
    display: none;
  }

  .profile-slide,
  .profile-slide *,
  .profile-slide::before,
  .profile-slide::after,
  .profile-slide *::before,
  .profile-slide *::after {
    box-shadow: none !important;
    filter: none !important;
    backdrop-filter: none !important;
    mix-blend-mode: normal !important;
    text-shadow: none !important;
  }

  .glass-panel,
  .contrast-card,
  .ability-grid article,
  .result-card,
  .plan-card,
  .work-grid figure,
  .ai-evidence figure,
  .ai-evidence figcaption,
  .value-badge,
  .plan-type,
  .eyebrow.pill {
    background: rgba(255, 255, 255, .82) !important;
  }

  .dark-panel {
    background: #183b34 !important;
  }

  .profile-slide:last-child {
    page-break-after: auto;
    break-after: auto;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  h1 {
    font-size: 58pt;
  }

  h2 {
    font-size: 38pt;
  }

  p {
    font-size: 13pt;
    line-height: 1.6;
  }

  .eyebrow {
    font-size: 10pt;
    margin-bottom: 12pt;
  }

  .hero-copy {
    width: 6.2in;
    margin-left: 2.2in;
  }

  .hero-keywords,
  .hero-circle {
    display: none;
  }

  .statement-layout,
  .two-column,
  .problem-layout,
  .works-layout,
  .ai-layout,
  .closing-layout {
    gap: .42in;
  }

  .statement-layout,
  .two-column,
  .problem-layout,
  .ai-layout {
    grid-template-columns: 1fr .95fr;
  }

  .works-layout {
    grid-template-columns: .52fr 1.12fr;
  }

  .closing-layout {
    grid-template-columns: .48fr 1.25fr;
  }

  .growth-path {
    right: 1.1in;
    top: 4.95in;
    gap: .08in;
  }

  .growth-path span {
    width: .56in;
    height: .56in;
    border-width: 1.5pt;
    font-size: 8pt;
  }

  .ability-grid {
    gap: .16in;
  }

  .ability-grid article {
    min-height: 1.85in;
    padding: .22in;
  }

  .ability-grid p,
  .plan-card li,
  .result-card li,
  .plan-for,
  .duration,
  .value-badge,
  dd,
  dt {
    font-size: 9pt;
  }

  .work-grid {
    gap: .12in;
  }

  .work-grid figure {
    padding: .06in;
    border-radius: 10pt;
  }

  .work-grid figcaption {
    font-size: 8pt;
  }

  .result-grid,
  .plan-grid,
  .contact-panels {
    gap: .22in;
  }

  .result-card,
  .plan-card,
  .company-card,
  .dark-panel {
    padding: .24in;
  }

  .ai-evidence {
    gap: .13in;
  }

  .ai-evidence img {
    height: 1.25in;
  }

  .plan-card.recommended {
    transform: translateY(-.08in);
  }

  .plans-slide .slide-content {
    width: 100%;
    margin-left: 0;
    zoom: .9;
  }

  .plans-slide .eyebrow.pill {
    margin-bottom: 8pt;
    padding: 5pt 18pt;
  }

  .plans-slide .center-heading {
    margin-bottom: 4pt;
    font-size: 28pt;
  }

  .plans-slide .center-copy {
    margin-bottom: 12pt;
    font-size: 9pt;
  }

  .plans-slide .plan-grid {
    gap: .14in;
  }

  .plans-slide .plan-card {
    padding: .16in;
  }

  .plans-slide .plan-type {
    margin-bottom: 10pt;
    padding: 5pt 14pt;
    font-size: 8pt;
  }

  .plans-slide .recommend-label {
    right: 14pt;
    top: 14pt;
    padding: 5pt 12pt;
    font-size: 8pt;
  }

  .plans-slide .plan-card h3 {
    font-size: 21pt;
  }

  .plans-slide .price {
    font-size: 21pt;
  }

  .plans-slide .duration {
    margin-bottom: 8pt;
    font-size: 8pt;
  }

  .plans-slide .plan-for {
    min-height: .35in;
    font-size: 8pt;
    line-height: 1.45;
  }

  .plans-slide .plan-card li {
    font-size: 8pt;
    line-height: 1.45;
  }

  .plans-slide .value-badge {
    margin-top: 12pt;
    padding: 7pt 8pt;
    font-size: 8pt;
  }

  .plans-slide .plan-note {
    margin-top: 8pt;
    font-size: 8pt;
  }

  .price {
    font-size: 25pt;
  }

  .plan-card h3 {
    font-size: 25pt;
  }

  .slide-number,
  .slide-caption {
    font-size: 9pt;
  }
}
